/* ====================================================================
   TONIQUE LUXURY SPIRIT BOUTIQUE - UI COMPONENTS & INTERACTIVE STYLES
   ==================================================================== */

/* Premium Luxury Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  text-decoration: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  border: 1px solid transparent;
  outline: none;
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, #E6C687 0%, #D4AF37 50%, #B38E2A 100%);
  color: #0A0A0E;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.35);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
  background: linear-gradient(135deg, #F4E297 0%, #E6C687 50%, #C5A059 100%);
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
}

.btn-glass:hover {
  background: var(--bg-glass-gold);
  border-color: var(--accent-gold);
  color: var(--accent-gold-light);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
}

.btn-whatsapp:hover {
  background: #1EBE57;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-call {
  background: rgba(212, 175, 55, 0.15);
  border: 1px solid var(--border-gold-bright);
  color: var(--accent-champagne);
}

.btn-call:hover {
  background: var(--accent-gold);
  color: #090A0E;
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold-glow);
}

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.85rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}

/* Floating Quick Action Widget (Call & WhatsApp) */
.floating-actions {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.floating-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  transition: var(--transition-smooth);
  position: relative;
}

.floating-btn:hover {
  transform: scale(1.12);
}

.floating-whatsapp {
  background: #25D366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.floating-call {
  background: linear-gradient(135deg, #D4AF37 0%, #9A7B1C 100%);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.floating-tooltip {
  position: absolute;
  right: 70px;
  background: var(--bg-card);
  color: var(--text-main);
  padding: 0.4rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid var(--border-gold);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-smooth);
}

.floating-btn:hover .floating-tooltip {
  opacity: 1;
  right: 68px;
}

/* SECTION 1: HERO SECTION */
.hero-section {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(to bottom, rgba(9, 10, 14, 0.4), rgba(9, 10, 14, 0.95)), 
              url('../images/hero-bg.png') center/cover no-repeat;
  padding: 4rem 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, transparent 0%, rgba(9, 10, 14, 0.8) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-full);
  color: var(--accent-gold-light);
  font-size: clamp(0.75rem, 1.2vw, 0.875rem);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2rem, 5.5vw + 0.5rem, 4rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: #FFFFFF;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.8);
}

.hero-title span {
  display: block;
}

.hero-description {
  font-size: clamp(0.95rem, 1.5vw + 0.3rem, 1.25rem);
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  font-weight: 300;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--border-glass);
}

.stat-item h3 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--accent-gold);
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.stat-item p {
  font-size: clamp(0.75rem, 1.1vw, 0.875rem);
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* SECTION 2: ABOUT SECTION */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-card);
}

.about-image-wrapper img {
  width: 100%;
  height: clamp(260px, 45vh, 480px);
  object-fit: cover;
  display: block;
  transition: var(--transition-smooth);
}

.about-image-wrapper:hover img {
  transform: scale(1.04);
}

.about-card-overlay {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--bg-glass);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-gold);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  max-width: 240px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.feature-box {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: 1.25rem;
  border-radius: var(--radius-md);
  transition: var(--transition-smooth);
}

.feature-box:hover {
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.feature-icon {
  font-size: 1.75rem;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
}

/* SECTION 3: CURATED WORLD CATEGORIES SHOWCASE */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.category-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

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

.category-img {
  height: clamp(180px, 30vh, 220px);
  position: relative;
  overflow: hidden;
}

.category-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

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

.category-badge-pill {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(9, 10, 14, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-gold);
  color: var(--accent-gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.category-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.category-content h3 {
  font-size: 1.35rem;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.category-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  line-height: 1.6;
}

.category-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.category-actions .btn {
  flex: 1 1 calc(50% - 0.375rem);
  min-width: 110px;
}

/* SECTION 5: BY THE NUMBERS & MILESTONES (STATISTICS GRID) */
.milestones-section {
  background: linear-gradient(180deg, rgba(18, 20, 29, 0.6) 0%, rgba(9, 10, 14, 0.9) 100%);
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  position: relative;
}

.milestones-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.milestone-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.5rem);
  text-align: center;
  position: relative;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.milestone-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-gold-glow);
  border-color: var(--accent-gold);
}

.milestone-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background: var(--bg-glass-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--accent-gold);
}

.milestone-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 2.75rem);
  font-weight: 900;
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  line-height: 1;
}

.milestone-label {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-main);
  margin-bottom: 0.35rem;
}

.milestone-desc {
  font-size: 0.825rem;
  color: var(--text-muted);
}

/* SECTION 4: STORE GALLERY & AMBIANCE */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  height: clamp(200px, 35vh, 280px);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9, 10, 14, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item:hover .gallery-overlay,
.gallery-item:active .gallery-overlay {
  opacity: 1;
}

.gallery-caption h4 {
  font-size: 1.15rem;
  color: var(--accent-champagne);
}

.gallery-caption p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* SECTION 6: VIP CONCIERGE & SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  text-align: center;
  transition: var(--transition-smooth);
}

.service-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-5px);
  background: var(--bg-card-hover);
}

.service-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 1.5rem auto;
  border-radius: 50%;
  background: var(--bg-glass-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--accent-gold);
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
  color: var(--text-main);
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

/* SECTION 7: CUSTOMER REVIEWS & ACCOLADES */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  padding: clamp(1.5rem, 3vw, 2rem);
  border-radius: var(--radius-md);
  position: relative;
}

.review-stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-main);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--accent-gold-dark);
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.reviewer-name {
  font-weight: 600;
  color: var(--accent-champagne);
}

.reviewer-role {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* SECTION 8: LOCATION, HOURS & CONTACT */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: clamp(1.5rem, 4vw, 2.5rem);
}

.info-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: var(--bg-glass-gold);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--accent-gold);
  flex-shrink: 0;
}

.info-details h4 {
  font-size: 1.1rem;
  color: var(--accent-champagne);
  margin-bottom: 0.25rem;
}

.info-details p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.map-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  height: clamp(260px, 40vh, 440px);
  box-shadow: var(--shadow-card);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* LIGHTBOX MODAL */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-img {
  max-width: 95%;
  max-height: 85vh;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  object-fit: contain;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #FFF;
  font-size: 1.75rem;
  background: rgba(18, 20, 29, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
}

/* Responsive Media Adjustments */
@media (max-width: 992px) {
  .about-grid, .location-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-stats, .milestones-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .categories-grid, .gallery-grid, .services-grid, .reviews-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

@media (max-width: 768px) {
  .floating-actions {
    bottom: 5.25rem;
    right: 1rem;
    gap: 0.6rem;
  }
  .floating-btn {
    width: 48px;
    height: 48px;
    font-size: 1.35rem;
  }
  .floating-tooltip {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-features { grid-template-columns: 1fr; gap: 1rem; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .milestones-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .categories-grid, .gallery-grid, .services-grid, .reviews-grid { grid-template-columns: 1fr; }
  .category-content { padding: 1.25rem; }
  .hero-ctas { flex-direction: column; width: 100%; gap: 0.75rem; }
  .hero-ctas .btn { width: 100%; }
  .about-card-overlay {
    position: relative;
    bottom: auto;
    right: auto;
    max-width: 100%;
    margin-top: -2rem;
    margin-left: 1rem;
    margin-right: 1rem;
    z-index: 2;
  }
}

/* ====================================================================
   LEGAL COMPLIANCE & AGE GATE MODAL (KARNATAKA EXCISE LAWS)
   ==================================================================== */
.legal-disclaimer-bar {
  background: linear-gradient(90deg, #1b160c 0%, #2e2210 50%, #1b160c 100%);
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  color: #E2D7BF;
  font-size: 0.82rem;
  padding: 0.5rem 1rem;
  text-align: center;
  position: relative;
  z-index: 1001;
}

.legal-disclaimer-bar strong {
  color: var(--accent-gold);
}

.statutory-warning-strip {
  background: #110d05;
  border-top: 1px solid var(--border-gold);
  border-bottom: 1px solid var(--border-gold);
  padding: 1.25rem 1rem;
  text-align: center;
  color: #D4AF37;
  font-weight: 600;
  letter-spacing: 0.5px;
  font-size: 0.95rem;
}

.modal-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

/* ====================================================================
   PRODUCT DETAIL MODAL & INTERACTIVE CATALOGUE STYLES
   ==================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(8, 9, 14, 0.92);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-overlay.active {
  display: flex;
}

.product-detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border-gold-bright);
  border-radius: var(--radius-lg);
  max-width: 900px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9), 0 0 35px rgba(212, 175, 55, 0.15);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  overflow: hidden;
}

.product-modal-img {
  background: #0d0f17;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.product-modal-img img {
  max-width: 100%;
  max-height: 380px;
  object-fit: contain;
  filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.6));
}

.product-modal-content {
  padding: 2rem 2.25rem;
  display: flex;
  flex-direction: column;
}

.product-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: var(--transition-smooth);
}

.product-modal-close:hover {
  background: var(--accent-gold);
  color: #090A0E;
}

.product-spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.product-spec-badge {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-glass);
  padding: 0.6rem 0.85rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.product-spec-label {
  color: var(--text-muted);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: block;
}

.product-spec-val {
  color: var(--accent-champagne);
  font-weight: 600;
}

.jurisdiction-notice-pill {
  background: rgba(212, 175, 55, 0.08);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  color: var(--accent-champagne);
  font-size: 0.82rem;
  margin-top: auto;
  line-height: 1.5;
}

/* ====================================================================
   SEARCH & CATEGORY FILTERS
   ==================================================================== */
.catalogue-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  background: rgba(18, 20, 29, 0.6);
  border: 1px solid var(--border-glass);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
}

.search-box-wrapper {
  position: relative;
  min-width: 280px;
  flex: 1;
}

.search-box-wrapper input {
  width: 100%;
  background: rgba(9, 10, 14, 0.8);
  border: 1px solid var(--border-gold);
  padding: 0.65rem 1rem 0.65rem 2.5rem;
  border-radius: var(--radius-full);
  color: var(--text-main);
  outline: none;
  font-family: var(--font-body);
}

.search-box-wrapper input:focus {
  border-color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(212, 175, 55, 0.2);
}

.search-box-wrapper i {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent-gold);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-pill {
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-muted);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-pill.active, .filter-pill:hover {
  background: var(--accent-gold);
  color: #090A0E;
  font-weight: 600;
  border-color: var(--accent-gold);
}

/* ====================================================================
   ADMIN DASHBOARD & FORM STYLES
   ==================================================================== */
.admin-wrapper {
  min-height: 100vh;
  background: var(--bg-dark);
  color: var(--text-main);
  display: flex;
}

.admin-sidebar {
  width: 260px;
  background: #0d0f17;
  border-right: 1px solid var(--border-glass);
  padding: 2rem 1.25rem;
  display: flex;
  flex-direction: column;
}

.admin-nav-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition-smooth);
  margin-bottom: 0.35rem;
  text-decoration: none;
  font-size: 0.9rem;
}

.admin-nav-item.active, .admin-nav-item:hover {
  background: rgba(212, 175, 55, 0.12);
  color: var(--accent-gold);
  font-weight: 600;
}

.admin-content {
  flex: 1;
  padding: 2.5rem 3rem;
  overflow-y: auto;
}

.admin-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.admin-table-wrapper {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  background: rgba(9, 10, 14, 0.8);
  color: var(--accent-gold);
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-gold);
}

.admin-table td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border-glass);
  color: var(--text-main);
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
  font-weight: 500;
}

.form-control {
  width: 100%;
  background: #090a0e;
  border: 1px solid var(--border-glass);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: var(--text-main);
  outline: none;
  font-family: var(--font-body);
}

.form-control:focus {
  border-color: var(--accent-gold);
}

.legal-placeholder-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.15);
  border: 1px dashed var(--accent-gold);
  color: var(--accent-gold-light);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  font-family: monospace;
  font-size: 0.82rem;
}

/* ====================================================================
   RESPONSIBLE DRINKING & COOKIE BANNER
   ==================================================================== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(12, 14, 20, 0.96);
  border-top: 1px solid var(--border-gold);
  backdrop-filter: blur(12px);
  padding: 1rem 1.5rem;
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cookie-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ====================================================================
   RESPONSIVE MODAL FIXES
   ==================================================================== */
@media (max-width: 850px) {
  .product-detail-card {
    grid-template-columns: 1fr;
  }
  .product-modal-img {
    height: 240px;
  }
  .admin-wrapper {
    flex-direction: column;
  }
  .admin-sidebar {
    width: 100%;
  }
}


