/* ==========================================================================
   TRIVOY ATTRACTIONS & EXPERIENCES CSS
   Luxury design system for curated global attractions, tours, and sights.
   ========================================================================== */

:root {
  --att-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --att-font-serif: 'Fraunces', Georgia, serif;

  /* Color Palette */
  --brand-emerald-dark: #071a12;
  --brand-emerald: #164e33;
  --brand-emerald-light: #237b51;
  --brand-sage: #8da396;
  --brand-sage-light: #e6f0e9;
  --brand-sage-tint: #f2f7f4;
  --brand-gold: #d4af37;
  --brand-gold-light: #fef9e7;
  
  --accent-blue: #1d4ed8;
  --accent-blue-light: #eff6ff;
  --accent-rose: #e11d48;
  --accent-rose-light: #ffe4e6;
  --accent-amber: #d97706;
  --accent-amber-light: #fef3c7;
  --accent-teal: #0d9488;
  --accent-teal-light: #f0fdfa;

  /* Neutrals */
  --att-bg: #f8faf9;
  --att-bg-subtle: #f0f4f2;
  --att-border-light: rgba(22, 78, 51, 0.12);
  --att-border-hover: rgba(22, 78, 51, 0.28);
  --att-card-bg: #ffffff;
  
  /* Radii & Shadows */
  --att-radius-sm: 8px;
  --att-radius-md: 14px;
  --att-radius-lg: 20px;
  --att-radius-full: 9999px;

  --att-shadow-card: 0 4px 20px -2px rgba(7, 26, 18, 0.06), 0 2px 6px -1px rgba(7, 26, 18, 0.04);
  --att-shadow-hover: 0 16px 36px -6px rgba(7, 26, 18, 0.14), 0 6px 16px -2px rgba(7, 26, 18, 0.08);
  --att-shadow-drawer: -8px 0 32px rgba(7, 26, 18, 0.16);
}

/* Base resets for attractions container */
.attractions-page {
  background-color: var(--att-bg);
  min-height: 100vh;
}

.attractions-container {
  max-width: 1380px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .attractions-container {
    padding: 0 16px;
  }
}

/* ==========================================================================
   1. ATTRACTIONS HERO SECTION
   ========================================================================== */
.attractions-hero {
  position: relative;
  background: 
    radial-gradient(circle at 85% 15%, rgba(35, 123, 81, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 10% 90%, rgba(212, 175, 55, 0.12) 0%, transparent 40%),
    linear-gradient(135deg, #ffffff 0%, var(--brand-sage-tint) 100%);
  border-bottom: 1px solid var(--att-border-light);
  padding: 44px 0 36px;
  margin-bottom: 32px;
}

.hero-layout {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-main {
  flex: 1 1 560px;
}

.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-sage-light);
  color: var(--brand-emerald-light);
  padding: 6px 14px;
  border-radius: var(--att-radius-full);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--att-font-serif);
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 800;
  color: var(--brand-emerald-dark);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin: 0 0 12px;
}

.hero-subtitle {
  font-size: 16px;
  line-height: 1.6;
  color: #5c6e64;
  max-width: 620px;
  margin: 0;
}

.hero-stats-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: var(--att-radius-md);
  border: 1px solid var(--att-border-light);
  box-shadow: 0 4px 16px rgba(7, 26, 18, 0.05);
}

.stat-metric {
  display: flex;
  flex-direction: column;
}

.stat-metric-val {
  font-size: 22px;
  font-weight: 800;
  color: var(--brand-emerald-dark);
  font-family: var(--att-font-serif);
}

.stat-metric-lbl {
  font-size: 12px;
  font-weight: 600;
  color: #6a7b72;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==========================================================================
   2. CATEGORIES CAROUSEL
   ========================================================================== */
.categories-section {
  margin-bottom: 28px;
}

.categories-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.section-eyebrow {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--brand-emerald-light);
}

.categories-scroll-container {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.categories-scroll-container::-webkit-scrollbar {
  height: 6px;
}
.categories-scroll-container::-webkit-scrollbar-thumb {
  background: var(--att-border-hover);
  border-radius: 10px;
}

.category-card {
  flex: 0 0 210px;
  background: #ffffff;
  border: 1px solid var(--att-border-light);
  border-radius: var(--att-radius-md);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  position: relative;
  transition: all 0.28s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(7, 26, 18, 0.03);
  user-select: none;
}

.category-card:hover {
  transform: translateY(-3px);
  border-color: var(--brand-sage);
  box-shadow: var(--att-shadow-card);
}

.category-card.active {
  border-color: var(--brand-emerald-light);
  background: var(--brand-sage-tint);
  box-shadow: 0 0 0 2px var(--brand-emerald-light), var(--att-shadow-card);
}

.category-card-cover {
  width: 100%;
  height: 110px;
  border-radius: var(--att-radius-sm);
  overflow: hidden;
  position: relative;
  background: var(--att-bg-subtle);
}

.category-cover-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.category-card:hover .category-cover-img {
  transform: scale(1.06);
}

.category-badge-count {
  position: absolute;
  bottom: 6px;
  right: 6px;
  padding: 2px 8px;
  background: rgba(7, 26, 18, 0.8);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  border-radius: var(--att-radius-full);
}

.category-info {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 2px 4px;
}

.category-emoji {
  font-size: 16px;
}

.category-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--brand-emerald-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ==========================================================================
   3. TOOLBAR: SEARCH, FILTER, SORT & VIEW TOGGLES
   ========================================================================== */
.attractions-toolbar {
  padding: 16px 0;
  position: relative;
  background: #ffffff;
  border-top: 1px solid var(--att-border-light);
  border-bottom: 1px solid var(--att-border-light);
  margin-bottom: 28px;
  box-shadow: 0 1px 3px rgba(7, 26, 18, 0.02);
}

.toolbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

/* Search input */
.search-input-wrap {
  position: relative;
  flex: 1 1 260px;
  max-width: 380px;
}

.search-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #6a7b72;
  font-size: 16px;
  pointer-events: none;
}

.search-input-att {
  width: 100%;
  height: 42px;
  background: var(--att-bg-subtle);
  border: 1px solid var(--att-border-light);
  border-radius: var(--att-radius-full);
  padding: 0 38px 0 40px;
  font-size: 14px;
  font-family: inherit;
  color: var(--brand-emerald-dark);
  transition: all 0.2s ease;
  outline: none;
}

.search-input-att:focus {
  background: #ffffff;
  border-color: var(--brand-emerald-light);
  box-shadow: 0 0 0 3px rgba(35, 123, 81, 0.12);
}

.search-clear-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #8da396;
  font-size: 16px;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
}

.search-clear-btn.visible {
  display: flex;
}

/* Filter Chips Group */
.filter-chips-group {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 2px 0;
}

.chip-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: var(--att-radius-full);
  background: var(--att-bg-subtle);
  border: 1px solid transparent;
  color: #4b5d52;
  font-size: 13.5px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.chip-btn:hover {
  background: var(--brand-sage-light);
  color: var(--brand-emerald-dark);
}

.chip-btn.active {
  background: var(--brand-emerald-dark);
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(7, 26, 18, 0.18);
}

/* Secondary controls */
.toolbar-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.select-wrap {
  position: relative;
}

.toolbar-select-att {
  appearance: none;
  -webkit-appearance: none;
  background: var(--att-bg-subtle);
  border: 1px solid var(--att-border-light);
  border-radius: var(--att-radius-full);
  padding: 8px 32px 8px 14px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-emerald-dark);
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: all 0.2s ease;
}

.toolbar-select-att:focus {
  border-color: var(--brand-emerald-light);
  background: #ffffff;
}

.select-arrow {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  color: #6a7b72;
  pointer-events: none;
}

/* View Toggle (Grid / List) */
.view-toggle-group {
  display: flex;
  align-items: center;
  background: var(--att-bg-subtle);
  border: 1px solid var(--att-border-light);
  border-radius: var(--att-radius-full);
  padding: 2px;
}

.view-toggle-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--att-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5c6e64;
  font-size: 15px;
  transition: all 0.2s ease;
  border: none;
  background: none;
  cursor: pointer;
}

.view-toggle-btn.active {
  background: #ffffff;
  color: var(--brand-emerald);
  box-shadow: 0 2px 6px rgba(7, 26, 18, 0.08);
}

/* Results header */
.attractions-results-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.results-count-text {
  font-size: 15px;
  font-weight: 600;
  color: #5c6e64;
}

.results-count-number {
  color: var(--brand-emerald-dark);
  font-weight: 700;
}

.active-category-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--brand-emerald);
  background: var(--brand-sage-light);
  padding: 4px 14px;
  border-radius: var(--att-radius-full);
}

/* ==========================================================================
   4. ATTRACTIONS GRID & LUXURY CARDS
   ========================================================================== */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
  margin-bottom: 60px;
}

@media (min-width: 1200px) {
  .attractions-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1440px) {
  .attractions-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Luxury Attraction Card */
.attraction-card {
  background: #ffffff;
  border: 1px solid var(--att-border-light);
  border-radius: var(--att-radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--att-shadow-card);
}

.attraction-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--att-shadow-hover);
  border-color: var(--att-border-hover);
}

/* Card Media Carousel */
.card-media {
  position: relative;
  width: 100%;
  height: 240px;
  background: var(--att-bg-subtle);
  overflow: hidden;
}

.card-img-slider {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-img-slide {
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
}

.card-img-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Slider arrows & dots */
.card-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-emerald-dark);
  font-size: 16px;
  cursor: pointer;
  opacity: 0;
  transition: all 0.2s ease;
  z-index: 2;
}

.attraction-card:hover .card-slider-arrow {
  opacity: 1;
}

.card-slider-arrow.prev { left: 10px; }
.card-slider-arrow.next { right: 10px; }

.card-slider-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 5px;
  z-index: 2;
}

.slider-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.6);
  transition: all 0.2s ease;
}

.slider-dot.active {
  width: 18px;
  border-radius: 10px;
  background: #ffffff;
}

/* Badges on card media */
.card-badge-top-left {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.card-pill-tag {
  background: rgba(7, 26, 18, 0.85);
  backdrop-filter: blur(6px);
  color: #ffffff;
  padding: 4px 10px;
  border-radius: var(--att-radius-full);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.card-pill-tag.deal {
  background: var(--accent-rose);
}

.card-pill-tag.vip {
  background: linear-gradient(135deg, #d4af37 0%, #b8860b 100%);
  color: #000;
}

/* Heart Save button */
.btn-card-heart {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(6px);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8da396;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.btn-card-heart:hover {
  transform: scale(1.15);
  background: #ffffff;
  color: var(--accent-rose);
}

.btn-card-heart.saved {
  color: var(--accent-rose);
}

.btn-card-heart.saved i {
  animation: heartPop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes heartPop {
  0% { transform: scale(1); }
  50% { transform: scale(1.35); }
  100% { transform: scale(1); }
}

/* Card Content Area */
.card-content {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-location-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 6px;
}

.card-location {
  font-size: 12.5px;
  font-weight: 600;
  color: #6a7b72;
  display: flex;
  align-items: center;
  gap: 4px;
}

.card-duration-badge {
  font-size: 11.5px;
  font-weight: 700;
  color: var(--brand-emerald);
  background: var(--brand-sage-light);
  padding: 2px 8px;
  border-radius: var(--att-radius-full);
}

.card-title {
  font-family: var(--att-font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--brand-emerald-dark);
  line-height: 1.35;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Rating row */
.card-rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.rating-score-badge {
  background: var(--brand-emerald);
  color: #ffffff;
  font-size: 12.5px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rating-score-badge i {
  font-size: 11px;
}

.rating-label-text {
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-emerald-dark);
}

.rating-count-text {
  font-size: 12.5px;
  color: #8da396;
}

/* Feature tags */
.card-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.feature-tag {
  background: var(--att-bg-subtle);
  color: #4b5d52;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 9px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Card Footer */
.card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--att-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.card-price-group {
  display: flex;
  flex-direction: column;
}

.price-original {
  font-size: 12px;
  color: #8da396;
  text-decoration: line-through;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 4px;
}

.price-amount {
  font-size: 20px;
  font-weight: 800;
  color: var(--brand-emerald-dark);
  font-family: var(--att-font-serif);
}

.price-period {
  font-size: 12.5px;
  color: #6a7b72;
}

.price-sub {
  font-size: 11px;
  color: #8da396;
}

.btn-card-view {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--brand-sage-light);
  color: var(--brand-emerald-dark);
  border: 1px solid var(--att-border-light);
  border-radius: var(--att-radius-full);
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-card-view:hover {
  background: var(--brand-emerald);
  color: #ffffff;
  border-color: var(--brand-emerald);
}

/* ==========================================================================
   5. LIST VIEW STYLES
   ========================================================================== */
.attractions-grid.list-view {
  display: flex !important;
  flex-direction: column !important;
  gap: 20px !important;
}

.attractions-grid.list-view .attraction-card {
  display: flex !important;
  flex-direction: row !important;
  min-height: 240px;
  align-items: stretch;
  border-radius: var(--att-radius-lg);
}

.attractions-grid.list-view .card-media {
  flex: 0 0 340px;
  width: 340px;
  height: auto;
  min-height: 240px;
}

.attractions-grid.list-view .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 22px 28px;
}

.attractions-grid.list-view .card-title {
  font-size: 20px;
  margin: 4px 0 8px;
}

.attractions-grid.list-view .card-features-list {
  margin: 10px 0 12px;
}

.attractions-grid.list-view .card-footer {
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--att-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .attractions-grid.list-view .attraction-card {
    flex-direction: column !important;
  }
  .attractions-grid.list-view .card-media {
    flex: none;
    width: 100%;
    height: 220px;
    min-height: 220px;
  }
  .attractions-grid.list-view .card-content {
    padding: 16px;
  }
}

/* ==========================================================================
   6. EMPTY STATE
   ========================================================================== */
.empty-attractions-container {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px 80px;
  background: #ffffff;
  border-radius: var(--att-radius-lg);
  border: 1px dashed var(--att-border-hover);
  margin-bottom: 60px;
}

.empty-attractions-container.visible {
  display: flex;
}

.empty-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--brand-sage-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--brand-emerald);
  margin-bottom: 20px;
}

.empty-title {
  font-family: var(--att-font-serif);
  font-size: 24px;
  font-weight: 700;
  color: var(--brand-emerald-dark);
  margin: 0 0 10px;
}

.empty-subtitle {
  font-size: 15px;
  color: #6a7b72;
  max-width: 480px;
  margin: 0 0 24px;
}

/* ==========================================================================
   7. SLIDE-OVER DETAIL DRAWER
   ========================================================================== */
.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(7, 26, 18, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  pointer-events: auto;
}

.detail-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 580px;
  max-width: 92vw;
  height: 100vh;
  background: #ffffff;
  z-index: 1001;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: var(--att-shadow-drawer);
  display: flex;
  flex-direction: column;
}

.detail-drawer.open {
  transform: translateX(0);
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--att-border-light);
}

.btn-drawer-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--att-border-light);
  background: var(--att-bg-subtle);
  color: var(--brand-emerald-dark);
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-drawer-close:hover {
  background: var(--brand-sage-light);
  transform: scale(1.05);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.drawer-gallery-main {
  width: 100%;
  height: 280px;
  border-radius: var(--att-radius-md);
  overflow: hidden;
  background: var(--att-bg-subtle);
}

.drawer-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-gallery-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
}

.gallery-thumb-btn {
  flex: 0 0 76px;
  height: 56px;
  border-radius: var(--att-radius-sm);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: none;
}

.gallery-thumb-btn.active {
  border-color: var(--brand-emerald);
}

.gallery-thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.drawer-footer {
  padding: 18px 24px;
  border-top: 1px solid var(--att-border-light);
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Primary and Secondary Action Buttons */
.btn-primary-att {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--brand-emerald);
  color: #ffffff;
  border: none;
  border-radius: var(--att-radius-full);
  padding: 10px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 2px 8px rgba(22, 78, 51, 0.24);
}

.btn-primary-att:hover {
  background: var(--brand-emerald-dark);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(22, 78, 51, 0.3);
}

.btn-secondary-att {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #ffffff;
  color: var(--brand-emerald-dark);
  border: 1px solid var(--att-border-light);
  border-radius: var(--att-radius-full);
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-secondary-att:hover {
  background: var(--brand-sage-light);
  border-color: var(--brand-sage);
}

/* ==========================================================================
   8. TOAST NOTIFICATION CONTAINER
   ========================================================================== */
.toast-container {
  position: fixed;
  top: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}

.toast {
  pointer-events: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: rgba(10, 32, 22, 0.82);
  color: #ffffff;
  padding: 13px 20px;
  border-radius: 16px;
  backdrop-filter: blur(20px) saturate(190%);
  -webkit-backdrop-filter: blur(20px) saturate(190%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 45px -10px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.08) inset, 0 8px 20px rgba(16, 185, 129, 0.14);
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: -0.01em;
  animation: toastSlideInTopRight 0.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast-icon {
  color: #34d399;
  font-size: 18px;
  filter: drop-shadow(0 0 8px rgba(52, 211, 153, 0.5));
}

@keyframes toastSlideInTopRight {
  from {
    opacity: 0;
    transform: translateX(45px) translateY(-10px) scale(0.94);
  }
  to {
    opacity: 1;
    transform: translateX(0) translateY(0) scale(1);
  }
}

@media (max-width: 576px) {
  .toast-container {
    top: 16px;
    right: 16px;
    left: 16px;
    align-items: stretch;
    max-width: 100%;
  }
  .toast {
    min-width: 0;
    max-width: 100%;
  }
}
