/*==================== SOCIAL GUEST GALLERY ====================*/
:root {
  --social-glass: rgba(18, 22, 33, 0.7);
  --social-border: rgba(255, 255, 255, 0.05);
}

.guest-gallery__container {
  padding-top: 8rem;
}

/* --- Unified Controls Bar --- */
.guest-gallery__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
  flex-wrap: wrap;
}

@media screen and (max-width: 650px) {
  .guest-gallery__controls {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 0 1rem;
  }
}

.guest-gallery__dropdown-wrap {
  position: relative;
  flex: 1;
  max-width: 400px;
}

@media screen and (max-width: 650px) {
  .guest-gallery__dropdown-wrap {
    max-width: none;
  }
}

/* Custom Guest Dropdown */
.guest-dropdown {
  position: relative;
  width: 100%;
  cursor: pointer;
  user-select: none;
}

.guest-dropdown__selected {
  background: var(--social-glass);
  border: 1px solid var(--social-border);
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  font-weight: 500;
  transition: .3s;
  backdrop-filter: blur(10px);
}

.guest-dropdown__selected i {
  font-size: 1.5rem;
  transition: .3s;
}

.guest-dropdown.active .guest-dropdown__selected {
  border-color: var(--first-color);
  border-radius: 25px 25px 0 0;
}

.guest-dropdown.active .guest-dropdown__selected i {
  transform: rotate(180deg);
}

.guest-dropdown__menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #1a1e26;
  border: 1px solid var(--social-border);
  border-top: none;
  border-radius: 0 0 25px 25px;
  z-index: 100;
  display: none;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(15px);
}

.guest-dropdown.active .guest-dropdown__menu {
  display: block;
}

.guest-dropdown__search {
  padding: 1rem;
  border-bottom: 1px solid var(--social-border);
  position: relative;
}

.guest-dropdown__search i.bx-search {
  position: absolute;
  left: 2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-light);
}

.guest-dropdown__search i#dropdown-search-clear {
  position: absolute;
  right: 2rem;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-color-light);
  transition: 0.3s;
}

.guest-dropdown__search i#dropdown-search-clear:hover {
  color: #fff;
}

.guest-dropdown__search input {
  width: 100%;
  padding: 0.6rem 1rem 0.6rem 2.5rem;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--social-border);
  border-radius: 12px;
  color: #fff;
  outline: none;
  font-family: inherit;
  font-size: 0.9rem;
}

.guest-dropdown__list {
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.guest-dropdown__list::-webkit-scrollbar {
  width: 6px;
}

.guest-dropdown__list::-webkit-scrollbar-thumb {
  background: var(--social-border);
  border-radius: 10px;
}

.guest-dropdown__item {
  padding: 0.8rem 1.5rem;
  transition: .3s;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color-light);
}

.guest-dropdown__item:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--second-color);
}

.guest-dropdown__item.active {
  background: var(--first-color);
  color: #fff;
}

/* Empty State Styling */
.guest-gallery__empty {
  text-align: center;
  padding: 5rem 2rem;
  color: #666;
  background: #fff;
  border: 1px solid #eee;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border-radius: 2rem;
  margin: 2rem 0;
}

.guest-gallery__empty i {
  font-size: 4rem;
  color: var(--first-color);
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.guest-gallery__empty h3 {
  color: #1a1a1a;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.guest-gallery__empty p {
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto;
}

/* Card Improvements */
.guest-card {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transition: .4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
  min-width: 0;
  /* Prevent grid blowout */
  overflow: hidden;
  /* Keep content inside card */
}

.guest-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

/* Force Dark Text for Name and Meta */
.guest-card .guest-card__name {
  color: #111827 !important;
  font-size: 1.15rem !important;
  font-weight: 700 !important;
  margin-bottom: 0.2rem !important;
  display: block !important;
}

.guest-card .guest-card__country {
  color: #374151 !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
}

.guest-card .guest-card__date-top {
  color: #6b7280 !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
  display: inline-block !important;
}

.country-flag-icon {
  width: 18px;
  height: auto;
  border-radius: 2px;
  margin-right: 3px;
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

.guest-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* Mobile: Stack name, country, date vertically */
@media (max-width: 532px) {
  .guest-card__header {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .guest-card__user-info {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    text-align: left !important;
    width: 100% !important;
    margin: 0 !important;
    gap: 0.1rem !important;
    /* Reduced gap between name and meta */
  }

  .guest-card__name {
    width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }

  .guest-card__meta {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
    /* Reduced gap between country and date */
  }

  .guest-card .guest-card__country {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    width: 100% !important;
    max-width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }

  .guest-card .guest-card__date-top {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.2 !important;
  }
}

/* Desktop Date Bullet */
@media (min-width: 533px) {
  .guest-card__date-top::before {
    content: "•";
    margin-right: 0.5rem;
  }
}

/* Profiles */
.guest-card__dp {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--first-color);
}

/* --- Status Banner --- */
.guest-status-banner {
  display: none;
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #60a5fa;
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  align-items: center;
  gap: 0.75rem;
  animation: slideInDown 0.5s ease;
}

.guest-status-banner.show {
  display: flex;
}

/* --- Modals --- */
.guest-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  /* Controlled by JS */
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  overscroll-behavior: contain;
}

.guest-modal__card {
  background: #1a1e26;
  border: 1px solid var(--social-border);
  border-radius: 2rem;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  padding: 1rem;
  overscroll-behavior: contain;
}

.guest-modal__card::-webkit-scrollbar {
  display: none;
}

.guest-modal__card--large {
  max-width: 700px;
}

.guest-modal__header {
  padding: 1.2rem 1.5rem;
  border-bottom: 1px solid var(--social-border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}

.guest-modal__header h3 {
  color: #fff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.guest-modal__header h3 i {
  color: var(--first-color);
}

.guest-modal__close {
  background: transparent;
  border: none;
  color: var(--text-color-light);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}

.guest-modal__body {
  padding: 2rem;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  overscroll-behavior: contain;
}
.guest-modal__body::-webkit-scrollbar {
  display: none;
}

.guest-modal__form-flex {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}

.guest-modal__scroll-area {
  flex: 1;
  overflow-y: auto;
  padding: 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--first-color) transparent;
  -ms-overflow-style: auto;
  overscroll-behavior: contain;
}
.guest-modal__scroll-area::-webkit-scrollbar {
  width: 6px;
  display: block;
}
.guest-modal__scroll-area::-webkit-scrollbar-thumb {
  background: var(--social-border);
  border-radius: 10px;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.5rem;
}

.required {
  color: #ef4444;
  margin-left: 2px;
}

.username-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

#username-valid-icon {
  position: absolute;
  right: 1.25rem;
  color: #22c55e;
  font-size: 1.25rem;
  opacity: 0;
  transform: scale(0.5);
  transition: .3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#username-valid-icon.visible {
  opacity: 1;
  transform: scale(1);
}

.form-hint {
  display: block;
  font-size: 0.75rem;
  color: var(--text-color-light);
  margin-top: 0.4rem;
  opacity: 0.8;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1.25rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--social-border);
  border-radius: 12px;
  color: #fff;
  font-family: inherit;
  outline: none;
  transition: .3s;
  appearance: none;
  /* Reset native select */
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238b8fa3' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1.25rem center;
  padding-right: 2.5rem;
}

.form-group select option {
  background: #1a1e26;
  color: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--first-color);
  background: rgba(255, 255, 255, 0.06);
}

/* Password Toggle */
.password-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.password-toggle {
  position: absolute;
  right: 1.25rem;
  color: var(--text-color-light);
  cursor: pointer;
  font-size: 1.4rem;
  transition: .3s;
  z-index: 10;
}

.password-toggle:hover {
  color: var(--first-color);
}

/* Multi-step Logic */
.guest-step {
  display: none;
}

.guest-step.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

.guest-modal__progress {
  padding: 1rem 1.5rem 0;
  position: relative;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}

.progress-track {
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 2px;
  position: absolute;
  top: calc(1rem + 18px);
  left: 1.5rem;
  right: 1.5rem;
  z-index: 1;
}

.progress-fill {
  height: 100%;
  background: var(--first-color);
  width: 0%;
  transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  border-radius: 2px;
  box-shadow: 0 0 15px var(--first-color);
}

.step-indicators {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.step-indicator {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #1a1e26;
  border: 2px solid var(--social-border);
  color: var(--text-color-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.9rem;
  transition: .3s;
}

.step-indicator.active {
  background: var(--first-color);
  border-color: var(--first-color);
  color: #fff;
  box-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
  transform: scale(1.1);
}

/* DP Upload */
.dp-upload-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
}

.dp-preview-container {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid var(--social-border);
  padding: 3px;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  cursor: pointer;
}

.dp-preview-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.dp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: .3s;
  cursor: pointer;
}

.dp-preview-container:hover .dp-overlay {
  opacity: 1;
}

.dp-overlay i {
  color: #fff;
  font-size: 1.5rem;
}

.dp-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  border-radius: 50%;
}

.dp-loading-overlay i {
  color: #fff;
  font-size: 1.5rem;
}

/* Tag Input System */
.tag-input-wrapper {
  display: flex;
  gap: 0.5rem;
}

.tag-input-wrapper input {
  flex: 1;
}

.tag-input-wrapper button {
  background: var(--first-color);
  color: #fff;
  border: none;
  border-radius: 12px;
  width: 45px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  transition: .3s;
}

.tag-input-wrapper button:hover {
  filter: brightness(1.1);
}

.tags-container {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
  overflow-x: auto;
  padding-bottom: 0.8rem;
  scrollbar-width: thin;
  scrollbar-color: #00a699 transparent;
  white-space: nowrap;
}

.m-tag {
  flex-shrink: 0;
  background: #00a699;
  border: none;
  color: #fff !important;
  padding: 0.45rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}

.m-tag i {
  cursor: pointer;
  opacity: 0.7;
  font-size: 1rem;
}

.m-tag i:hover {
  opacity: 1;
}

/* Upload Zone */
.upload-zone {
  border: 2px dashed var(--social-border);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  cursor: pointer;
  transition: .3s;
  background: rgba(255, 255, 255, 0.02);
}

.upload-zone--compact {
  padding: 1.5rem 1rem;
}

.upload-zone--compact i {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.upload-zone--compact p {
  font-size: 0.9rem;
  margin-bottom: 0.25rem;
}

.upload-zone:hover, .upload-zone.dragover {
  border-color: var(--first-color);
  background: rgba(255, 107, 53, 0.05);
}

.upload-zone i {
  font-size: 3rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

/* Char Counter */
.char-counter {
  display: block;
  font-size: 0.7rem;
  color: var(--text-color-light);
  opacity: 0.6;
  margin-top: 0.35rem;
  text-align: right;
}

/* Recommendations scroll */
.guest-card__recs {
  max-height: 5em;
  overflow-y: auto;
  scrollbar-width: none;
}

.guest-card__recs::-webkit-scrollbar {
  display: none;
}

/* Horizontal Upload Preview Slider */
.upload-preview-grid {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--first-color) transparent;
}

.upload-preview-grid::-webkit-scrollbar {
  height: 4px;
}

.upload-preview-grid::-webkit-scrollbar-thumb {
  background: var(--first-color);
  border-radius: 10px;
}

.preview-item {
  flex: 0 0 150px;
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--social-border);
  scroll-snap-align: start;
}

.preview-item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.preview-tag-input {
  width: 100% !important;
  padding: 0.5rem !important;
  font-size: 0.75rem !important;
  border-radius: 0 0 12px 12px !important;
  border: none !important;
  border-top: 1px solid var(--social-border) !important;
}

.remove-img-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  z-index: 5;
  transition: .3s;
}

.remove-img-btn:hover {
  background: #ef4444;
  transform: scale(1.1);
}

/* ═══ PUBLIC FEED — Horizontal Image Slider ═══ */
/* ═══ PUBLIC FEED — Horizontal Image Slider ═══ */
.guest-card__header {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.gallery__container .section__container {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Guest Feed Layout */
.guest-gallery__feed,
#guest-feed {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  max-width: 1200px;
  margin: 0 auto;
}

.validation-note {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.5rem;
  font-style: italic;
}

.validation-note.error {
  color: #ef4444;
  font-weight: 600;
}

/* Smart Desktop Grid: Real Masonry via JS Columns */
@media (min-width: 860px) {
  .guest-gallery__feed.has-multiple,
  #guest-feed.has-multiple {
    display: flex !important;
    flex-direction: row !important;
    align-items: flex-start !important;
    gap: 1.25rem !important;
    padding: 0 !important;
  }
  
  .guest-gallery__column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    min-width: 0; /* Prevent flex blowout */
  }

  /* Specific tweak for 3-column mode on Ultra-Wide screens */
  @media (min-width: 1668px) {
    .guest-gallery__feed.has-multiple,
    #guest-feed.has-multiple {
      max-width: 1600px !important;
      gap: 1rem !important; /* Half of previous 2rem */
    }
    .guest-gallery__column {
      gap: 1rem;
    }
  }

  .guest-card {
    margin-bottom: 0 !important; /* Gap handled by column container */
    width: 100% !important;
  }
}

/* Country truncation is now handled in the mobile section above (max-width: 532px) */

.guest-card__user-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.guest-card__name {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin: 0;
}

.guest-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.guest-card__country {
  color: var(--text-color-light);
  font-size: 0.85rem;
  font-weight: 500;
}

.guest-card__date-top {
  color: #fff;
  opacity: 0.5;
  font-size: 0.75rem;
}

.guest-card__avatar {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--first-color);
}

.guest-card__media {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: #00a699 rgba(255, 255, 255, 0.05);
  scroll-behavior: smooth;
  position: relative;
  -webkit-overflow-scrolling: touch;
  /* Native momentum */
  scroll-snap-type: x mandatory;
  /* Better mobile feel */
}

/* Hide Arrows on Mobile/Touch Devices */
@media (pointer: coarse),
(max-width: 900px) {
  .scroll-nav-btn {
    display: none !important;
  }

  .guest-card__media {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: 100% !important;
  }
}

/* Floating Navigation Buttons - Only for Desktop Mouse */
@media (pointer: fine) {
  .scroll-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: rgba(0, 166, 153, 0.9);
    color: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: 0.3s;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  }

  .guest-card:hover .scroll-nav-btn,
  .section-card:hover .scroll-nav-btn,
  .guest-mod-images-wrapper:hover .scroll-nav-btn {
    opacity: 1;
  }

  .scroll-nav-btn.hidden {
    opacity: 0 !important;
    pointer-events: none;
  }
}

.scroll-nav-btn--left {
  left: 5px;
}

.scroll-nav-btn--right {
  right: 5px;
}

.scroll-nav-btn:hover {
  background: #008f84;
  transform: translateY(-50%) scale(1.1);
}

.scroll-nav-btn i {
  font-size: 1.25rem;
}

.guest-card__img-wrap {
  flex: 0 0 160px;
  height: 130px;
  scroll-snap-align: center;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: #f1f5f9;
}

.guest-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.guest-card__tag-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: #fff;
  padding: 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0 0 12px 12px;
  box-sizing: border-box;
  z-index: 2;
  transition: background-color 0.3s, color 0.3s;
}

.guest-card__tag-bar span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  flex-grow: 1;
  text-align: left;
}

.guest-card__tag-bar i {
  font-size: 0.95rem;
  margin-left: 6px;
  opacity: 0.7;
  flex-shrink: 0;
}

.guest-card__img-wrap:hover .guest-card__tag-bar {
  background: rgba(0, 166, 153, 0.85);
  color: #fff;
}

.guest-card__img-wrap:hover .guest-card__tag-bar i {
  opacity: 1;
}

.guest-card__body {
  padding-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.guest-card__message-box {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.25rem;
  max-height: 8.8rem;
  /* Visible 3.5 lines accounting for 2.5rem padding */
  overflow-y: scroll !important;
  /* Force scrollbar */
  scrollbar-width: thin;
  scrollbar-color: #00a699 #f1f5f9;
  -webkit-overflow-scrolling: touch;
}

/* Force visible scrollbar on mobile/tablets (WebKit) */
.guest-card__message-box::-webkit-scrollbar {
  width: 6px !important;
  height: 6px !important;
  display: block !important;
  background-color: #f1f5f9;
  border-radius: 10px;
}

.guest-card__message-box::-webkit-scrollbar-thumb {
  background: #00a699 !important;
  border-radius: 10px;
  border: 1px solid #f8fafc;
}

.guest-card__message-box::-webkit-scrollbar-track {
  background: #f1f5f9;
  border-radius: 10px;
}

.guest-card__message {
  color: #1f2937 !important;
  font-style: italic;
  line-height: 1.7;
  font-size: 1.05rem;
  margin: 0;
  display: block !important;
}

.guest-card__message-wrapper {
  position: relative;
  margin-top: 0.25rem;
  /* Reduced to match previous gap */
}

.guest-card__message-actions {
  position: absolute;
  top: -16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.guest-copy-btn--floating {
  position: relative;
  top: auto;
  right: auto;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.guest-msg-lang-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.guest-msg-lang-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: #ffffff !important;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 0.5rem 1.6rem 0.5rem 0.75rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: .3s;
  outline: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.75rem;
}

.guest-msg-lang-select:hover,
.guest-msg-lang-select:focus {
  background-color: #ffffff !important;
  border-color: var(--first-color);
  color: var(--first-color);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff6b35'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

.guest-msg-lang-select.active-translated {
  background-color: #fff9f6 !important; /* 100% Solid opaque */
  border-color: var(--first-color) !important;
  color: var(--first-color) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff6b35'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

.guest-msg-lang-select option {
  background-color: #ffffff !important;
  color: #1e293b !important;
}

.guest-card__message.msg-translating {
  opacity: 0.35;
  transition: opacity 0.2s ease;
}

.guest-copy-btn {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: .3s;
}

.guest-copy-btn:hover {
  background: #fff;
  border-color: var(--first-color);
  color: var(--first-color);
}

.guest-copy-btn.copied {
  background: #22c55e;
  border-color: #22c55e;
  color: #fff;
}

/* Recommendations Auto-Swiper */
.tags-slider {
  overflow-x: auto;
  white-space: nowrap;
  scrollbar-width: none;
  display: flex;
  gap: 0.5rem;
}

.tags-slider::-webkit-scrollbar {
  display: none;
}

.guest-card__footer-social {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0.5rem;
  /* Reduced from 1.5rem */
  border-top: 1px solid #f1f5f9;
  margin-top: 0.25rem;
  /* Reduced from 0.5rem */
  gap: 1.25rem;
  /* Space between Share label and Icons */
}

.share-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1rem;
}

.share-label i {
  font-size: 1.25rem;
  color: #1a1a1a;
}

.social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.share-icon {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 1.1rem;
  transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (hover: hover) {
  .share-icon:hover {
    background: var(--first-color);
    border-color: var(--first-color);
    color: #fff;
    transform: translateY(-3px);
  }
}

.share-icon.active-share {
  background: var(--first-color) !important;
  border-color: var(--first-color) !important;
  color: #fff !important;
  transform: translateY(-3px) !important;
}

.share-icon.copied {
  background: #22c55e !important;
  border-color: #22c55e !important;
  color: #fff !important;
  transform: scale(1.05) !important;
}

.copy-tooltip {
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%) translateY(5px);
  background: #22c55e;
  color: #fff;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 100;
}

.copy-tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: #22c55e;
}

.copy-tooltip.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Modal Loading Overlay */
.modal-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 30, 38, 0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  border-radius: 2rem;
}

.modal-loading-overlay i {
  font-size: 3rem;
  color: var(--first-color);
  margin-bottom: 1rem;
}

.modal-loading-overlay p {
  color: #fff;
  font-size: 1rem;
}

.btn-loader {
  margin-left: 0.5rem;
}

/* Footer Actions */
.guest-modal__footer {
  padding: 1rem 1.5rem;
  background: rgba(255, 255, 255, 0.02);
  border-top: 1px solid var(--social-border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-shrink: 0;
}

.footer-left,
.footer-right {
  flex: 0 0 auto;
}

.footer-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.btn-text {
  background: none;
  border: none;
  color: var(--text-color-light);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: .3s;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  line-height: 1;
}

.btn-text:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.btn-text i {
  font-size: 1.25rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInDown {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* --- Toast Notifications --- */
.guest-toast-container {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.guest-toast {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  background: var(--social-glass);
  border: 1px solid var(--social-border);
  border-radius: 12px;
  color: #fff;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(15px);
  min-width: 300px;
  max-width: 450px;
  animation: toastIn 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

.guest-toast i {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.guest-toast--success i {
  color: #22c55e;
}

.guest-toast--error i {
  color: #ef4444;
}

.guest-toast--info i {
  color: var(--first-color);
}

.guest-toast.exit {
  animation: toastOut 0.3s ease forwards;
}

@keyframes toastIn {
  from {
    transform: translateX(100%);
    opacity: 0;
  }

  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes toastOut {
  from {
    transform: translateX(0);
    opacity: 1;
  }

  to {
    transform: translateX(100%);
    opacity: 0;
  }
}

/* --- Button Variants --- */
.button--ghost {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--social-border);
  color: var(--text-color-light);
}

.button--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.button--outline {
  background: transparent;
  border: 1px solid var(--first-color);
  color: var(--first-color);
}

.button--outline:hover {
  background: var(--first-color);
  color: #fff;
}

.button-full {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.upload-hint {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: var(--text-color-light);
  opacity: 0.7;
}

/* Dropdown Search Fix */
.guest-dropdown__list .guest-dropdown__item {
  color: #fff;
}

.guest-dropdown__list .guest-dropdown__item:hover {
  background: rgba(255, 107, 53, 0.2);
}

/* Upload Preview Slider */
.upload-preview-slider {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  padding: 1rem 0 1.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--first-color) transparent;
}

.upload-preview-slider::-webkit-scrollbar {
  height: 4px;
}

.upload-preview-slider::-webkit-scrollbar-thumb {
  background: var(--first-color);
  border-radius: 10px;
}

.upload-preview-slider .preview-item {
  flex: 0 0 150px;
  scroll-snap-align: start;
  position: relative; /* For absolute children */
  cursor: grab;
  user-select: none;
  touch-action: pan-y;
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s ease;
}

.upload-preview-slider .preview-item:active {
  cursor: grabbing;
}

.upload-preview-slider.is-sorting {
  scroll-snap-type: none !important;
}

.sortable-ghost {
  opacity: 0.25 !important;
  transform: scale(0.92) !important;
  border: 2px dashed var(--first-color) !important;
  background: rgba(255, 107, 53, 0.1) !important;
}

.sortable-chosen {
  cursor: grabbing !important;
  z-index: 100 !important;
}

.sortable-drag {
  opacity: 0 !important;
}

.sortable-fallback {
  opacity: 0.95 !important;
  cursor: grabbing !important;
  transform: scale(1.08) rotate(2deg) !important;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.7), 0 0 25px rgba(255, 107, 53, 0.5) !important;
  border: 1px solid var(--first-color) !important;
  border-radius: 12px !important;
  z-index: 99999 !important;
  pointer-events: none !important;
}

.drag-handle-hint {
  position: absolute;
  top: 5px;
  right: 36px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.2s ease, color 0.2s ease;
  z-index: 9;
}

.preview-item:hover .drag-handle-hint {
  opacity: 1;
  color: var(--first-color);
}

.cover-selector {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.75rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  padding: 0.2rem 0.5rem;
  border-radius: 20px;
  position: absolute;
  top: 5px;
  left: 5px;
  cursor: pointer;
  z-index: 10;
}

.cover-selector input {
  cursor: pointer;
  accent-color: var(--first-color);
  width: 14px;
  height: 14px;
}

/* Mobile Responsive Fixes */
@media screen and (max-width: 768px) {

  /* Maximize screen space for gallery */
  .gallery__container .section__container {
    padding-left: 0.5rem !important;
    padding-right: 0.5rem !important;
  }

  .gallery__header,
  .guest-gallery__controls {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .guest-card {
    padding: 1.25rem 1rem !important;
  }

  .guest-modal__card {
    padding: 0.75rem;
    border-radius: 1.5rem;
    max-height: 95vh;
  }

  .guest-modal__card--large {
    max-width: 100%;
  }

  .guest-modal__progress {
    padding: 0.75rem 1.5rem 0;
    z-index: 10;
    position: relative;
    margin-bottom: 0.5rem;
  }

  .step-indicators {
    z-index: 10;
  }

  .guest-modal__header {
    padding: 1rem 1.5rem;
  }

  .guest-step {
    padding: 0 0.5rem;
  }

  .upload-zone--compact {
    padding: 1rem 0.75rem;
  }

  .guest-modal__footer {
    padding: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .footer-left,
  .footer-center,
  .footer-right {
    flex: 1 1 auto;
  }

  .footer-left {
    order: 1;
  }

  .footer-center {
    order: 3;
    flex-basis: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .footer-right {
    order: 2;
    display: flex;
    justify-content: flex-end;
  }

  .footer-right .button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    white-space: nowrap;
  }

  .guest-card__img-wrap {
    flex: 0 0 140px;
    height: 120px;
  }

  .guest-card__media {
    -webkit-overflow-scrolling: touch;
  }

  .upload-zone {
    padding: 1.5rem 1rem;
  }

  .upload-preview-slider .preview-item {
    flex: 0 0 115px; /* Sized specifically to show ~2.5 images and hint at swiping */
  }

  .guest-card__message-box {
    padding-right: 1rem;
    max-height: 8.8rem !important;
    /* Force 3.5 lines on mobile */
  }

  .guest-copy-btn--inline {
    position: static;
    margin-top: 0.5rem;
    display: flex;
    width: fit-content;
  }
}

/* Tags Slider Dragging */
.tags-slider {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: none;
  cursor: grab;
}

.tags-slider::-webkit-scrollbar {
  display: none;
}

.tags-slider.is-dragging {
  cursor: grabbing;
}

/* ── Skeleton Loading ── */
.guest-feed__skeleton {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.skeleton-shimmer {
  background: linear-gradient(110deg, #f0f0f0 30%, #f8f8f8 50%, #f0f0f0 70%);
  background-size: 200% 100%;
  animation: guest-shimmer 1.5s ease-in-out infinite;
  border-radius: 8px;
}

@keyframes guest-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skel-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.skel-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.skel-name {
  width: 120px;
  height: 18px;
}

.skel-meta {
  width: 80px;
  height: 12px;
  margin-top: 6px;
}

.skel-media {
  width: 100%;
  height: 250px;
  border-radius: 1rem;
}

.skel-text {
  width: 100%;
  height: 60px;
}

/* ── Heart Button ── */
.guest-card__heart-btn {
  background: rgba(255, 107, 53, 0.05);
  border: 1px solid rgba(255, 107, 53, 0.2);
  color: #666;
  border-radius: 50px;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
  font-weight: 600;
  font-size: 0.9rem;
  overflow: hidden;
  white-space: nowrap;
  flex-shrink: 0;
  min-width: max-content;
}

.guest-card__heart-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--first-color);
  transform: translateY(-2px);
}

.guest-card__heart-btn i.bx-heart {
  font-size: 1.25rem;
  transition: all 0.3s ease;
  animation: heartFlip 2s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartFlip {
  0%, 80% { transform: rotateY(0deg); }
  90% { transform: rotateY(180deg) scale(1.1); color: var(--first-color); }
  100% { transform: rotateY(360deg); }
}

.guest-card__heart-btn.liked {
  background: var(--first-color);
  color: #fff;
  border-color: var(--first-color);
}

.guest-card__heart-btn.liked i.bxs-heart {
  font-size: 1.25rem;
  animation: heartFlipLiked 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes heartFlipLiked {
  0%, 80% { transform: rotateY(0deg); }
  90% { transform: rotateY(180deg) scale(1.1); }
  100% { transform: rotateY(360deg); }
}

.heart-pop-anim {
  animation: heartPop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPop {
  0% { transform: scale(1); }
  30% { transform: scale(1.6) rotate(-15deg); }
  60% { transform: scale(1.3) rotate(15deg); }
  100% { transform: scale(1) rotate(0deg); }
}

/* Card glow animation when liked */
.guest-card.card-liked-anim {
  animation: cardLikeGlow 0.8s ease-out;
}

@keyframes cardLikeGlow {
  0% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); border-color: #eee; transform: translateY(0); }
  50% { box-shadow: 0 15px 50px rgba(255, 107, 53, 0.3); border-color: var(--first-color); transform: translateY(-5px); }
  100% { box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04); border-color: #eee; transform: translateY(0); }
}

/* ── Country Leaderboard ── */
.leaderboard-header #total-hearts-badge {
  text-shadow: 0 0 8px rgba(255, 107, 53, 0.6);
  box-shadow: 0 0 10px rgba(255, 107, 53, 0.2);
  transition: .3s;
  display: inline-block;
  white-space: nowrap;
}

.country-leaderboard {
  display: flex;
  justify-content: center;
  gap: 1rem;
  padding-bottom: 0.5rem;
}

@media screen and (max-width: 768px) {
  .country-leaderboard {
    justify-content: flex-start;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    padding: 0 1rem 0.5rem 1rem;
  }
  
  .country-leaderboard::-webkit-scrollbar {
    display: none;
  }
  
  .leaderboard-item {
    scroll-snap-align: center;
    flex-shrink: 0;
  }
}

.leaderboard-item {
  background: #fff;
  border: 1px solid #eee;
  padding: 0.6rem 1.2rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
  font-size: 0.9rem;
  font-weight: 600;
  transition: transform 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.leaderboard-item.rank-1 {
  animation: borderGlowGold 2s infinite alternate;
}
.leaderboard-item.rank-2 {
  animation: borderGlowSilver 2.5s infinite alternate;
}
.leaderboard-item.rank-3 {
  animation: borderGlowBronze 3s infinite alternate;
}

@keyframes borderGlowGold {
  0% { box-shadow: 0 0 5px rgba(255, 215, 0, 0.2); border-color: rgba(255, 215, 0, 0.3); }
  100% { box-shadow: 0 0 15px rgba(255, 215, 0, 0.6); border-color: rgba(255, 215, 0, 0.8); }
}

@keyframes borderGlowSilver {
  0% { box-shadow: 0 0 5px rgba(192, 192, 192, 0.2); border-color: rgba(192, 192, 192, 0.3); }
  100% { box-shadow: 0 0 15px rgba(192, 192, 192, 0.6); border-color: rgba(192, 192, 192, 0.8); }
}

@keyframes borderGlowBronze {
  0% { box-shadow: 0 0 5px rgba(205, 127, 50, 0.2); border-color: rgba(205, 127, 50, 0.3); }
  100% { box-shadow: 0 0 15px rgba(205, 127, 50, 0.6); border-color: rgba(205, 127, 50, 0.8); }
}

.leaderboard-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
}

.lb-medal {
  font-size: 1.2rem;
}

.lb-country {
  color: #333;
}

.lb-hearts {
  color: var(--first-color);
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

/* =============== SHARED MEMORY POPUP STYLING (PREMIUM DARK THEME) =============== */
.shared-guest-card {
  background: transparent;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  width: 100%;
}

.shared-guest-card .guest-card__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.shared-guest-card .guest-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--first-color);
  box-shadow: 0 4px 12px rgba(0, 166, 153, 0.2);
}

.shared-guest-card .guest-card__user-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.shared-guest-card .guest-card__name {
  color: #ffffff !important;
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  margin: 0 !important;
}

.shared-guest-card .guest-card__meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.shared-guest-card .guest-card__country {
  color: var(--text-color-light) !important;
  font-size: 0.85rem !important;
  font-weight: 500 !important;
}

.shared-guest-card .guest-card__date-top {
  color: rgba(255, 255, 255, 0.4) !important;
  font-size: 0.8rem !important;
  font-weight: 500 !important;
}

.shared-guest-card .guest-card__message {
  font-family: var(--body-font);
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: #e2e8f0 !important;
  background: rgba(255, 255, 255, 0.03);
  padding: 1.25rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 1.5rem;
  position: relative;
}

.shared-guest-card .guest-card__message::before {
  content: '"';
  font-family: var(--title-font);
  position: absolute;
  top: -10px;
  left: 15px;
  font-size: 3rem;
  color: rgba(0, 166, 153, 0.15);
  line-height: 1;
}

/* Shared Memory Popup Media Layout */
.shared-popup-media {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scrollbar-width: thin;
  scrollbar-color: var(--first-color) rgba(255, 255, 255, 0.05);
  scroll-behavior: smooth;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  width: 100%;
}

.shared-popup-media::-webkit-scrollbar {
  height: 6px;
}

.shared-popup-media::-webkit-scrollbar-thumb {
  background-color: var(--first-color);
  border-radius: 3px;
}

.shared-popup-media.single-image .guest-card__img-wrap {
  flex: 0 0 100% !important;
  height: 280px !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

.shared-popup-media.multi-image .guest-card__img-wrap {
  flex: 0 0 85% !important;
  height: 240px !important;
  scroll-snap-align: start !important;
  border-radius: 16px !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3) !important;
}

/* Make sure modal card transitions nicely */
.shared-memory-card {
  transition: all 0.3s ease;
}

.guest-modal__body {
  padding: 1.5rem !important; /* Balanced margins to prevent cut-off */
}

/* Hover state for modal scroll buttons */
.guest-modal__card:hover .scroll-nav-btn {
  opacity: 1 !important;
}

.scroll-nav-btn {
  transition: all 0.3s ease;
}

/* Popup Love/Reaction Button Styling */
.love-popup-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.05rem;
  padding: 0.8rem 2.2rem;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--first-color);
  color: #fff;
  border: 2px solid var(--first-color);
  box-shadow: 0 4px 15px rgba(0, 166, 153, 0.3);
}

.love-popup-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 166, 153, 0.4);
  background: var(--first-color-alt);
  border-color: var(--first-color-alt);
}

.love-popup-btn.liked {
  background: rgba(255, 107, 53, 0.1) !important;
  color: var(--second-color) !important;
  border: 2px solid var(--second-color) !important;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.2) !important;
}

.love-popup-btn.liked:hover {
  background: rgba(255, 107, 53, 0.15) !important;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3) !important;
  transform: translateY(-2px);
}

.love-popup-btn.liked i {
  color: var(--second-color) !important;
}

/* Fix popup language select dropdown list style in dark theme */
#popup-lang-select option {
  background: #1a1e26;
  color: #ffffff;
}

/* Media query rules for screen widths under 668px in shared memory popup */
@media (max-width: 668px) {
  .guest-modal {
    padding: 0.5rem !important;
  }
  
  .shared-memory-card {
    max-height: 95vh !important;
    border-radius: 1.5rem !important;
    padding: 0.5rem !important;
  }
  
  .shared-memory-card .guest-modal__header {
    position: relative;
    padding-bottom: 0.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  
  /* Prevent title wrapping in header */
  .shared-memory-card .guest-modal__header h3 {
    font-size: 1.15rem !important;
    white-space: nowrap;
  }

  /* Place language select dropdown next to name line at the right end */
  .shared-memory-card .guest-modal__header-actions {
    position: absolute;
    top: 3.4rem !important; /* Positions it nicely on the guest card name line */
    right: 0.75rem !important;
    margin: 0 !important;
    z-index: 10;
  }

  .shared-memory-card .popup-translator select {
    padding: 3px 6px !important;
    font-size: 11px !important;
    border-radius: 4px !important;
  }

  .shared-memory-card .popup-translator i {
    font-size: 14px !important;
  }

  /* Body paddings and spacing */
  .shared-memory-card .guest-modal__body {
    padding: 0.75rem 0.5rem 0.5rem 0.5rem !important;
  }

  .shared-memory-card .guest-card__header {
    margin-bottom: 0.75rem !important;
    padding-right: 6.5rem !important; /* Prevent guest info from overlapping absolute translator */
  }

  .shared-memory-card .guest-card__name {
    font-size: 0.95rem !important;
  }

  .shared-memory-card .guest-card__meta {
    font-size: 0.75rem !important;
  }

  .shared-memory-card .guest-card__media-wrapper {
    margin-bottom: 0.75rem !important;
  }

  .shared-popup-media.single-image .guest-card__img-wrap {
    height: 200px !important;
  }

  .shared-popup-media.multi-image .guest-card__img-wrap {
    height: 180px !important;
  }

  /* Footer styling */
  .guest-modal__footer {
    padding: 0.5rem 1rem !important;
  }

  /* Love trigger button optimization */
  .love-popup-btn {
    padding: 0.5rem 1rem !important;
    font-size: 0.85rem !important;
    gap: 6px !important;
    border-radius: 30px !important;
    width: 100% !important; /* Fill footer width */
    max-width: 280px;
    height: auto !important;
    min-height: auto !important;
  }

  .love-popup-btn i {
    font-size: 1.1rem !important;
  }

  .love-popup-btn span[id="popup-heart-count"] {
    font-size: 0.8rem !important;
  }
}

/* ========================================================
   CELEBRATION SUCCESS MODAL & 1-CLICK GOOGLE REVIEW FLOW
   ======================================================== */

.celebration-modal__card {
  max-width: 520px !important;
  width: 92% !important;
  background: linear-gradient(165deg, rgba(22, 28, 38, 0.98) 0%, rgba(12, 16, 23, 0.99) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 50px rgba(255, 107, 53, 0.12) !important;
  border-radius: 24px !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 2.2rem 1.8rem 1.8rem !important;
  animation: celebrationModalIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

@keyframes celebrationModalIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

/* --- Ambient Floating Particles (Dots rising bottom-to-top) --- */
.celebration-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.celebration-dot {
  position: absolute;
  border-radius: 50%;
  opacity: 0;
  animation: celebrationParticleFloatUp linear infinite;
}

.celebration-dot:nth-child(1) {
  width: 6px;
  height: 6px;
  left: 12%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.8), transparent 70%);
  animation-duration: 5.5s;
  animation-delay: 0s;
}

.celebration-dot:nth-child(2) {
  width: 4px;
  height: 4px;
  left: 28%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.85), transparent 70%);
  animation-duration: 7s;
  animation-delay: 0.8s;
}

.celebration-dot:nth-child(3) {
  width: 7px;
  height: 7px;
  left: 45%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.75), transparent 70%);
  animation-duration: 6s;
  animation-delay: 1.5s;
}

.celebration-dot:nth-child(4) {
  width: 5px;
  height: 5px;
  left: 62%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.7), transparent 70%);
  animation-duration: 5s;
  animation-delay: 0.3s;
}

.celebration-dot:nth-child(5) {
  width: 8px;
  height: 8px;
  left: 78%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.9), transparent 70%);
  animation-duration: 6.5s;
  animation-delay: 2.1s;
}

.celebration-dot:nth-child(6) {
  width: 4px;
  height: 4px;
  left: 88%;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.7), transparent 70%);
  animation-duration: 4.8s;
  animation-delay: 1.1s;
}

.celebration-dot:nth-child(7) {
  width: 5px;
  height: 5px;
  left: 36%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.8), transparent 70%);
  animation-duration: 7.2s;
  animation-delay: 2.8s;
}

.celebration-dot:nth-child(8) {
  width: 6px;
  height: 6px;
  left: 92%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent 70%);
  animation-duration: 5.8s;
  animation-delay: 0.6s;
}

@keyframes celebrationParticleFloatUp {
  0% {
    top: 105%;
    opacity: 0;
    transform: translateX(0) scale(0.6);
  }
  15% {
    opacity: 0.9;
    transform: translateX(5px) scale(1);
  }
  85% {
    opacity: 0.8;
    transform: translateX(-8px) scale(1.1);
  }
  100% {
    top: -10%;
    opacity: 0;
    transform: translateX(6px) scale(0.5);
  }
}

/* --- Close Button --- */
.celebration-close-btn {
  position: absolute !important;
  top: 1.25rem !important;
  right: 1.25rem !important;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.06) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  color: rgba(255, 255, 255, 0.75) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  cursor: pointer !important;
  font-size: 1.35rem !important;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1) !important;
  z-index: 10 !important;
}

.celebration-close-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  color: #fff !important;
  transform: rotate(90deg) scale(1.08) !important;
}

/* --- Modal Inner Content --- */
.celebration-modal__content {
  position: relative;
  z-index: 2;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Hero Icon */
.celebration-hero-icon {
  position: relative;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b35 0%, #e8a838 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  animation: heroIconBounce 0.8s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.celebration-hero-icon i {
  font-size: 2.2rem;
  color: #fff;
}

.celebration-icon-glow {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.45), transparent 70%);
  animation: pulseGlow 2.5s infinite alternate ease-in-out;
  z-index: -1;
}

.celebration-icon-sparkle {
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 1.3rem;
  animation: sparkleRotate 3s infinite ease-in-out;
}

@keyframes heroIconBounce {
  0% {
    transform: scale(0.3) rotate(-20deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(0.95);
    opacity: 0.4;
  }
  100% {
    transform: scale(1.2);
    opacity: 0.85;
  }
}

@keyframes sparkleRotate {
  0%, 100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.25) rotate(15deg);
  }
}

/* Badge & Headings */
.celebration-badge {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  background: rgba(74, 222, 128, 0.12);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}

.celebration-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.celebration-subtitle {
  font-size: 0.92rem;
  color: var(--text-color-light, #a0aec0);
  margin-bottom: 1.25rem;
  line-height: 1.45;
}

.celebration-subtitle strong {
  color: #fff;
  font-weight: 600;
}

/* --- Google Review Spotlight Card --- */
.celebration-google-card {
  width: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.02) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 1.25rem 1.25rem 1.15rem;
  margin-bottom: 1.1rem;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  position: relative;
}

.google-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.65rem;
}

.google-stars {
  display: flex;
  gap: 3px;
  color: #f59e0b;
  font-size: 1.15rem;
  filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.45));
}

.google-tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: #e2e8f0;
  background: rgba(255, 255, 255, 0.07);
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.google-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.3rem;
}

.google-card-desc {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.google-card-desc .desc-break {
  display: block;
  margin-top: 1px;
}

/* Snippet Preview */
.celebration-review-snippet {
  position: relative;
  background: rgba(0, 0, 0, 0.3);
  border: 1px dashed rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 0.75rem 1rem 0.75rem 2.2rem;
  margin-bottom: 1rem;
}

.celebration-review-snippet .quote-icon {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  font-size: 1.1rem;
  color: var(--first-color, #ff6b35);
  opacity: 0.75;
}

.celebration-review-snippet p {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.85);
  font-style: italic;
  line-height: 1.4;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Action Button */
.celebration-google-btn {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.38);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.celebration-google-btn:hover {
  background: linear-gradient(135deg, #ff7a47 0%, #ffa05c 100%);
  box-shadow: 0 10px 28px rgba(255, 107, 53, 0.55);
  transform: translateY(-2px);
}

.celebration-google-btn:active {
  transform: translateY(0);
}

.celebration-google-btn.copied-state {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  box-shadow: 0 6px 22px rgba(16, 185, 129, 0.45) !important;
}

.celebration-google-btn .btn-main-content,
.celebration-google-btn .btn-copied-content {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

.celebration-google-btn i {
  font-size: 1.18rem;
}

.google-paste-hint {
  display: block;
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  margin-top: 0.55rem;
  line-height: 1.4;
}

@media screen and (max-width: 568px) {
  .google-paste-hint .hint-break {
    display: block;
  }
}

@media screen and (max-width: 458px) {
  .google-card-desc .desc-break {
    display: inline;
  }
}

.google-paste-hint strong {
  color: #e2e8f0;
}

.google-paste-hint i {
  font-size: 0.88rem;
  vertical-align: middle;
  margin-right: 2px;
  color: var(--first-color, #ff6b35);
}

.celebration-modal__card {
  max-width: 550px !important;
  width: 92% !important;
  max-height: calc(100vh - 2rem) !important;
  overflow-y: auto !important;
  background: linear-gradient(165deg, rgba(22, 28, 38, 0.98) 0%, rgba(12, 16, 23, 0.99) 100%) !important;
  border: 1px solid rgba(255, 255, 255, 0.09) !important;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 50px rgba(255, 107, 53, 0.12) !important;
  border-radius: 22px !important;
  position: relative !important;
  padding: 1.9rem 1.65rem 1.6rem !important;
  animation: celebrationModalIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

/* Responsive Styles for Celebration Modal */
@media screen and (max-width: 520px) {
  .celebration-modal__card {
    padding: 1.55rem 1.15rem 1.25rem !important;
    border-radius: 18px !important;
    width: 94% !important;
  }

  .celebration-close-btn {
    top: 0.85rem !important;
    right: 0.85rem !important;
    width: 32px !important;
    height: 32px !important;
    font-size: 1.2rem !important;
  }

  .celebration-hero-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 0.6rem;
  }

  .celebration-hero-icon i {
    font-size: 1.55rem;
  }

  .celebration-icon-sparkle {
    font-size: 0.95rem;
    top: -5px;
    right: -5px;
  }

  .celebration-badge {
    padding: 0.22rem 0.7rem;
    font-size: 0.68rem;
    margin-bottom: 0.48rem;
  }

  .celebration-title {
    font-size: 1.18rem;
    margin-bottom: 0.25rem;
  }

  .celebration-subtitle {
    font-size: 0.8rem;
    margin-bottom: 0.95rem;
    line-height: 1.35;
  }

  .celebration-google-card {
    padding: 1rem 0.95rem;
    border-radius: 14px;
    margin-bottom: 0;
  }

  .google-card-header {
    margin-bottom: 0.55rem;
  }

  .google-stars {
    font-size: 0.95rem;
    gap: 2px;
  }

  .google-tag {
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
  }

  .google-card-title {
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
  }

  .google-card-desc {
    font-size: 0.76rem;
    margin-bottom: 0.75rem;
    line-height: 1.35;
  }

  .celebration-review-snippet {
    padding: 0.5rem 0.7rem 0.5rem 1.7rem;
    margin-bottom: 0.82rem;
    border-radius: 9px;
  }

  .celebration-review-snippet .quote-icon {
    left: 0.55rem;
    top: 0.5rem;
    font-size: 0.95rem;
  }

  .celebration-review-snippet p {
    font-size: 0.76rem;
    line-height: 1.35;
  }

  .celebration-google-btn {
    font-size: clamp(0.72rem, 3.1vw, 0.8rem);
    padding: 0.68rem 0.65rem;
    border-radius: 35px;
    white-space: nowrap;
  }

  .celebration-google-btn .btn-main-content,
  .celebration-google-btn .btn-copied-content {
    gap: 6px;
    letter-spacing: -0.15px;
  }

  .celebration-google-btn i {
    font-size: 1rem;
  }

  .google-paste-hint {
    font-size: 0.7rem;
    margin-top: 0.6rem;
    line-height: 1.35;
  }
}

/* Extra optimization for 350px - 415px Mobile Screen Range */
@media screen and (max-width: 415px) {
  .celebration-modal__card {
    padding: 1.35rem 0.95rem 1.15rem !important;
    width: 95% !important;
  }

  .celebration-hero-icon {
    margin-bottom: 0.5rem;
  }

  .celebration-badge {
    margin-bottom: 0.42rem;
  }

  .celebration-subtitle {
    margin-bottom: 0.85rem;
  }

  .celebration-google-card {
    padding: 0.85rem 0.85rem !important;
  }

  .google-card-header {
    margin-bottom: 0.45rem;
  }

  .google-card-desc {
    margin-bottom: 0.65rem;
  }

  .celebration-review-snippet {
    margin-bottom: 0.75rem;
  }

  .celebration-google-btn {
    font-size: 0.73rem !important;
    padding: 0.64rem 0.45rem !important;
    white-space: nowrap !important;
  }

  .celebration-google-btn .btn-main-content,
  .celebration-google-btn .btn-copied-content {
    gap: 5px !important;
    letter-spacing: -0.2px !important;
  }

  .celebration-google-btn i {
    font-size: 0.92rem !important;
  }

  .google-paste-hint {
    margin-top: 0.55rem;
  }
}