/**
 * Jai Balaji Namkeen & Gajak Bhandar
 * Complete Visual Design System Components
 * 
 * Reusable Styles for:
 * - Buttons (Primary, Secondary, Outline, Small, Full Width, Gold, WhatsApp)
 * - Cards (Product Card, Category Card, Feature Card, Review Card)
 * - Forms (Input, Select, Textarea, Quantity Selector, Labels, Helpers)
 * - Components (Header, Footer, Breadcrumb, Badges, Price, Rating, Cart Drawer, Modal, Toast Notification)
 */

/* ==========================================================================
   1. BUTTON SYSTEM
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  padding: 11px 22px;
  border-radius: var(--radius-md);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  letter-spacing: 0.03em;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  line-height: 1.2;
  transition: all var(--transition-fast);
  text-decoration: none;
  user-select: none;
  touch-action: manipulation;
}

.btn:active {
  transform: scale(0.98);
}

.btn:disabled, .btn.is-disabled {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}

/* Primary Button (Deep Maroon with Gold glow) */
.btn-primary {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  border-color: var(--color-secondary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* Secondary Button (Warm Cream with Maroon text & Gold border) */
.btn-secondary {
  background-color: var(--color-cream);
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
  box-shadow: var(--shadow-xs);
  font-weight: var(--font-semibold);
}

.btn-secondary:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  border-color: var(--color-primary-dark);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Outline Button (Transparent with Maroon border) */
.btn-outline {
  background-color: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-primary);
  font-weight: var(--font-semibold);
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: #FFFFFF;
  transform: translateY(-1px);
}

/* Gold Accent Button */
.btn-gold {
  background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
  color: #3D0B12;
  font-weight: var(--font-bold);
  border: 1px solid var(--color-gold-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-dark));
  color: #FFFFFF;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

/* WhatsApp Direct Button */
.btn-whatsapp {
  background-color: var(--color-green);
  color: #FFFFFF;
  border-color: var(--color-green-dark);
  font-weight: var(--font-semibold);
}

.btn-whatsapp:hover {
  background-color: var(--color-green-dark);
  color: #FFFFFF;
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

/* Delivery Platform Buttons: Zomato & Swiggy */
.btn-delivery-zomato {
  background-color: #FFF5F5;
  color: #B91C1C;
  border: 1.5px solid #EF4444;
  font-weight: var(--font-bold);
}

.btn-delivery-zomato:hover {
  background-color: #E23744;
  color: #FFFFFF;
  border-color: #DC2626;
  box-shadow: 0 4px 12px rgba(226, 55, 68, 0.25);
  transform: translateY(-1px);
}

.btn-delivery-swiggy {
  background-color: #FFF8F2;
  color: #C2410C;
  border: 1.5px solid #F97316;
  font-weight: var(--font-bold);
}

.btn-delivery-swiggy:hover {
  background-color: #FC8019;
  color: #FFFFFF;
  border-color: #EA580C;
  box-shadow: 0 4px 12px rgba(252, 128, 25, 0.25);
  transform: translateY(-1px);
}

/* Header Order Online Dropdown */
.order-online-dropdown-wrap {
  position: relative;
  display: inline-block;
}

.order-online-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 10px;
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 8px;
  z-index: var(--z-dropdown, 999);
}

.order-online-dropdown-menu.is-open {
  display: flex;
  animation: fadeIn 0.2s ease-out;
}

/* Button Sizing */
.btn-sm {
  padding: 7px 14px;
  font-size: var(--text-xs);
  border-radius: var(--radius-sm);
}

.btn-lg {
  padding: 15px 30px;
  font-size: var(--text-base);
  border-radius: var(--radius-md);
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-pill {
  border-radius: var(--radius-pill);
}

.btn-icon {
  width: 40px;
  height: 40px;
  padding: 0;
  border-radius: var(--radius-md);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   2. BADGE SYSTEM
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: var(--radius-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.badge-bestseller {
  background-color: #F3CA65;
  color: #4E1018;
  border: 1px solid #D9A835;
}

.badge-festive {
  background-color: #8E2330;
  color: #FFFFFF;
}

.badge-pure-ghee {
  background-color: #F8ECD1;
  color: #4A2718;
  border: 1px solid var(--color-border);
}

.badge-discount {
  background-color: var(--color-green);
  color: #FFFFFF;
}

.badge-veg {
  background-color: var(--color-green-light);
  color: var(--color-green-dark);
  border: 1px solid var(--color-green);
}

/* Pure Vegetarian FSSAI Dot Mark */
.veg-mark {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--color-green);
  border-radius: 2px;
  background-color: #FFFFFF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.veg-mark::after {
  content: '';
  width: 8px;
  height: 8px;
  background-color: var(--color-green);
  border-radius: var(--radius-pill);
}

/* ==========================================================================
   3. PRICE & RATING COMPONENTS
   ========================================================================== */
.price-wrap {
  display: flex;
  align-items: baseline;
  gap: var(--space-2);
  flex-wrap: wrap;
}

.price-current {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  line-height: 1;
}

.price-original {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-muted);
  font-weight: 500;
  text-decoration: line-through;
}

.price-discount-tag {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: var(--font-bold);
  color: var(--color-green-dark);
  background-color: var(--color-green-light);
  padding: 1px 5px;
  border-radius: var(--radius-xs);
}

.price-unit {
  font-family: var(--font-sans);
  font-size: var(--text-xs);
  color: var(--color-muted);
  font-weight: 500;
}

/* Rating Component */
.rating-wrap {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--text-xs);
}

.rating-stars {
  color: #B45309;
  letter-spacing: 2px;
  line-height: 1;
}

.rating-score {
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
}

.rating-count {
  color: var(--color-muted);
  font-weight: 500;
}

.rating-verified {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  color: var(--color-green-dark);
  font-weight: var(--font-bold);
}

/* ==========================================================================
   4. CARD SYSTEM
   ========================================================================== */

/* A. Product Card */
.product-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--transition-normal);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.product-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-warm);
  transform: translateY(-3px);
}

.product-card-top {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  background-color: var(--color-cream-light);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-card-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.product-card-veg {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.product-card-icon {
  font-size: 4rem;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-icon {
  transform: scale(1.08);
}

.product-card-body {
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-category {
  font-size: 11px;
  color: var(--color-gold-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.product-card-title {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 1.2vw + 0.4rem, 1.5rem);
  color: var(--color-primary);
  line-height: 1.25;
  margin-bottom: var(--space-2);
  font-weight: 400;
}

.product-card-title a:hover {
  color: var(--color-secondary);
}

.product-card-desc {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  line-height: 1.5;
  margin-bottom: var(--space-3);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Weight Selector Pills */
.weight-selector {
  display: flex;
  gap: 6px;
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
}

.weight-pill {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xs);
  background-color: #FFFFFF;
  color: var(--color-text-dark);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.weight-pill.is-active,
.weight-pill:hover {
  border-color: var(--color-primary);
  background-color: var(--color-cream);
  color: var(--color-primary);
  font-weight: 700;
}

.product-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  padding-top: var(--space-3);
  border-top: 1px dashed var(--color-border);
}

/* B. Category Card */
.category-card {
  background: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-arch);
  padding: var(--space-6) var(--space-4) var(--space-4) var(--space-4);
  text-align: center;
  text-decoration: none;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xs);
}

.category-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-primary));
}

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

.category-card-icon-wrap {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-pill);
  background-color: var(--color-cream);
  border: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
  font-size: 2.25rem;
  transition: transform var(--transition-normal);
}

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

.category-card-title {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  color: var(--color-primary);
  margin-bottom: 2px;
}

.category-card-count {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

/* C. Feature / Trust Card */
.feature-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.feature-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.feature-card-icon {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-pill);
  background-color: var(--color-cream);
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  flex-shrink: 0;
}

.feature-card-title {
  font-family: var(--font-serif);
  font-size: var(--text-base);
  color: var(--color-primary);
  margin-bottom: 2px;
}

.feature-card-text {
  font-size: var(--text-xs);
  color: var(--color-muted);
  line-height: var(--leading-normal);
  margin-bottom: 0;
}

/* D. Review / Testimonial Card */
.review-card {
  background-color: var(--color-surface-card);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  box-shadow: var(--shadow-xs);
  transition: all var(--transition-fast);
}

.review-card:hover {
  border-color: var(--color-gold);
  box-shadow: var(--shadow-sm);
}

.review-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.review-quote {
  font-size: var(--text-sm);
  color: var(--color-text-body);
  line-height: var(--leading-relaxed);
  font-style: italic;
  margin-bottom: 0;
}

.review-author-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px dashed var(--color-border);
  padding-top: var(--space-3);
  margin-top: auto;
}

.review-author-name {
  font-family: var(--font-sans);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  color: var(--color-primary);
}

.review-author-loc {
  font-size: var(--text-xs);
  color: var(--color-muted);
}

.review-product-tag {
  font-size: 11px;
  color: var(--color-gold-dark);
  font-weight: var(--font-medium);
}

/* ==========================================================================
   5. FORM SYSTEM
   ========================================================================== */
.form-group {
  margin-bottom: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.form-label {
  font-size: var(--text-xs);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  letter-spacing: 0.02em;
}

.form-label .required-star {
  color: var(--color-secondary);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 10px 14px;
  background-color: var(--color-cream-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  transition: all var(--transition-fast);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  background-color: #FFFFFF;
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-muted);
  opacity: 0.7;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23741B26' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.form-textarea {
  resize: vertical;
  min-height: 90px;
}

.form-helper {
  font-size: 11px;
  color: var(--color-muted);
}

.form-error {
  font-size: 11px;
  color: var(--color-error);
  font-weight: var(--font-medium);
}

/* Quantity Selector Stepper Component */
.qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--color-cream-light);
  overflow: hidden;
}

.qty-btn {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: var(--font-bold);
  font-size: 15px;
  color: var(--color-primary);
  background-color: transparent;
  transition: background-color var(--transition-fast);
}

.qty-btn:hover {
  background-color: var(--color-cream);
}

.qty-input {
  width: 38px;
  height: 32px;
  text-align: center;
  border: none;
  background: transparent;
  font-size: var(--text-sm);
  font-weight: var(--font-bold);
  color: var(--color-text-dark);
  -moz-appearance: textfield;
}

.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ==========================================================================
   6. BREADCRUMB COMPONENT
   ========================================================================== */
.breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--text-xs);
  color: var(--color-muted);
  margin-bottom: var(--space-2);
}

.breadcrumb-link {
  color: var(--color-primary);
  font-weight: var(--font-medium);
  transition: color var(--transition-fast);
}

.breadcrumb-link:hover {
  color: var(--color-gold);
}

.breadcrumb-separator {
  color: var(--color-border-dark);
  user-select: none;
}

.breadcrumb-current {
  color: var(--color-text-dark);
  font-weight: var(--font-semibold);
}

/* ==========================================================================
   7. HEADER & NAVIGATION
   ========================================================================== */
.announcement-bar {
  background-color: var(--color-primary-dark);
  color: #FFFFFF;
  font-size: var(--text-sm);
  padding: 8px 0;
  border-bottom: 1px solid rgba(200, 154, 67, 0.4);
  position: relative;
  z-index: var(--z-sticky);
  text-align: center;
}

.announcement-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.announcement-text {
  margin-bottom: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.4;
  color: #FFFFFF;
  font-weight: var(--font-semibold);
  letter-spacing: 0.02em;
}

.announcement-highlight {
  color: var(--color-gold-light);
  font-weight: var(--font-bold);
}

.site-header {
  background-color: var(--color-surface-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  box-shadow: var(--shadow-xs);
  transition: box-shadow var(--transition-normal);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
}

.header-main {
  padding: 10px 0;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-3);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-cream-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  flex-shrink: 0;
  padding: 0;
}

.mobile-menu-toggle:hover {
  background-color: var(--color-cream);
  border-color: var(--color-gold);
  color: var(--color-secondary);
}

@media (min-width: 1024px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Brand Logo */
.brand-logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 0;
}

.brand-name-wrap {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-hindi {
  font-family: var(--font-hindi);
  font-size: 11px;
  color: var(--color-gold-dark);
  line-height: 1;
  font-weight: var(--font-bold);
  letter-spacing: 0.04em;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 1.6vw + 0.5rem, 1.45rem);
  font-weight: var(--font-bold);
  color: var(--color-primary);
  line-height: 1.1;
  margin: 1px 0 0 0;
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 11px;
  font-weight: var(--font-medium);
  color: var(--color-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 480px) {
  .brand-tagline {
    display: none;
  }
}

.brand-emblem {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: 2px solid var(--color-gold);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-light);
  box-shadow: var(--shadow-xs);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .brand-emblem {
    width: 46px;
    height: 46px;
  }
}

/* Header Center Search Bar (Desktop) */
.header-search {
  display: none;
  flex: 1;
  max-width: 460px;
  margin: 0 var(--space-4);
}

@media (min-width: 1024px) {
  .header-search {
    display: block;
  }
}

.search-form {
  width: 100%;
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.search-input {
  width: 100%;
  height: 40px;
  padding: 8px 42px 8px 18px;
  background-color: var(--color-cream-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  outline: none;
  transition: all var(--transition-fast);
}

.search-input:focus {
  background-color: #FFFFFF;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(200, 154, 67, 0.18);
}

.search-input::placeholder {
  color: var(--color-muted);
  opacity: 0.9;
}

.search-button {
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-pill);
  background-color: var(--color-primary);
  color: var(--color-gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.search-button:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.05);
}

/* Mobile Quick Search Bar (Directly below Header) */
.mobile-search-bar {
  display: block;
  padding: 8px 0;
  background-color: var(--color-cream-light);
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 1024px) {
  .mobile-search-bar {
    display: none !important;
  }
}

/* Header Actions (Clean Right-aligned Action Icons) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 10px;
  }
}

/* Header Action Buttons (Account, Favorites, Cart) */
.header-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  background-color: var(--color-cream-light);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  text-decoration: none;
  font-size: var(--text-xs);
  font-weight: var(--font-semibold);
  white-space: nowrap;
}

.header-action-btn:hover {
  background-color: var(--color-primary);
  border-color: var(--color-primary-dark);
  color: var(--color-cream-light);
}

.header-action-btn.header-account-btn {
  display: none;
}

@media (min-width: 768px) {
  .header-action-btn.header-account-btn {
    display: inline-flex;
  }
}

.header-action-icon {
  font-size: 16px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Favorites and Cart Badges */
.header-badge {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--font-bold);
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  line-height: 1;
}

.cart-badge,
.favorites-badge-count {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: var(--font-bold);
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
}

/* Desktop Navigation Bar (Strictly 6 essential links) */
.site-nav {
  display: none;
  background-color: var(--color-primary);
  border-top: 1px solid var(--color-primary-dark);
  border-bottom: 2px solid var(--color-gold);
  position: relative;
  z-index: calc(var(--z-header) - 1);
}

@media (min-width: 1024px) {
  .site-nav {
    display: block !important;
  }
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 18px;
  color: #FFFFFF;
  font-family: var(--font-sans);
  font-size: 15.5px;
  font-weight: 700;
  letter-spacing: 0.03em;
  position: relative;
  transition: color var(--transition-fast);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: var(--color-gold-light);
  transition: all var(--transition-fast);
  transform: translateX(-50%);
  border-radius: 2px 2px 0 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-gold-light);
  font-weight: 700;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 70%;
}

/* Categories Dropdown in Main Nav */
.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #FFFFFF;
  min-width: 220px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-border);
  border-top: 2px solid var(--color-gold);
  padding: 8px 0;
  display: none;
  z-index: 100;
}

.nav-item:hover .nav-dropdown {
  display: block;
}

.nav-dropdown-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  color: var(--color-text-dark);
  font-size: var(--text-sm);
  font-weight: 500;
  text-decoration: none;
  transition: all var(--transition-fast);
}

.nav-dropdown-link:hover {
  background-color: var(--color-cream-light);
  color: var(--color-primary);
  padding-left: 22px;
}

/* Product Card Floating Heart Button */
.product-card-fav-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  background: rgba(255, 255, 255, 0.94);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-primary);
  cursor: pointer;
  transition: all var(--transition-fast);
  z-index: 4;
  box-shadow: var(--shadow-xs);
  padding: 0;
  line-height: 1;
}

.product-card-fav-btn:hover {
  transform: scale(1.14);
  background: #FFFFFF;
  border-color: var(--color-primary);
  color: var(--color-primary-dark);
}

.product-card-fav-btn.is-favorite {
  background: #FFF0F2;
  border-color: #E53935;
  color: #D32F2F;
  animation: heartPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

/* Product Detail Favorite Button */
.btn-fav-large {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: var(--radius-pill);
  background-color: var(--color-cream-light);
  border: 1.5px solid var(--color-border);
  color: var(--color-primary);
  font-weight: var(--font-bold);
  font-size: var(--text-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-fav-large:hover {
  background-color: var(--color-cream);
  border-color: var(--color-primary);
  color: var(--color-secondary);
}

.btn-fav-large.is-favorite {
  background-color: #FFF0F2;
  border-color: #E53935;
  color: #D32F2F;
}

/* Global Toast Notification */
.jb-toast-notification {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #2C1B15;
  color: #FFFFFF;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--color-gold);
  box-shadow: var(--shadow-lg);
  font-size: var(--text-sm);
  font-weight: var(--font-medium);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
}

.jb-toast-notification.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* ==========================================================================
   AUTH & ACCOUNT DASHBOARD STYLES
   ========================================================================== */
.auth-wrapper {
  max-width: 480px;
  margin: var(--space-8) auto;
}

.auth-card {
  background: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 5vw, var(--space-8));
  box-shadow: var(--shadow-md);
}

.auth-header {
  text-align: center;
  margin-bottom: var(--space-6);
}

.auth-switch-text {
  text-align: center;
  font-size: var(--text-sm);
  color: var(--color-text-body);
  margin-top: var(--space-5);
  padding-top: var(--space-4);
  border-top: 1px dashed var(--color-border);
}

.auth-switch-text a {
  color: var(--color-primary);
  font-weight: var(--font-bold);
  text-decoration: underline;
}

/* Account Dashboard */
.account-hero-card {
  background: linear-gradient(135deg, #5C141E 0%, #38080E 100%);
  border: 1.5px solid var(--color-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-6) var(--space-8);
  color: #FFFFFF;
  margin-bottom: var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.account-tabs-nav {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-6);
  overflow-x: auto;
}

.account-tab-btn {
  padding: 10px 18px;
  border: none;
  background: none;
  font-family: var(--font-serif);
  font-size: var(--text-base);
  font-weight: var(--font-bold);
  color: var(--color-muted);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.account-tab-btn.is-active,
.account-tab-btn:hover {
  color: var(--color-primary);
}

.account-tab-btn.is-active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--color-primary);
  border-radius: 2px 2px 0 0;
}

.orders-card {
  background: #FFFFFF;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  margin-bottom: var(--space-4);
  box-shadow: var(--shadow-xs);
}

.orders-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: var(--space-3);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: var(--space-3);
  flex-wrap: wrap;
  gap: 8px;
}

.order-badge-status {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: bold;
  background-color: #E8F5E9;
  color: #2E6822;
}

/* Favorites Grid & Empty State */
.favorites-empty-box {
  text-align: center;
  padding: var(--space-12) var(--space-6);
  background: #FFFFFF;
  border: 1.5px dashed var(--color-border);
  border-radius: var(--radius-xl);
  max-width: 540px;
  margin: var(--space-6) auto;
}

/* ==========================================================================
   8. MOBILE NAVIGATION DRAWER & BACKDROP (HIDDEN BY DEFAULT)
   ========================================================================== */
.drawer-backdrop,
.mobile-drawer-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(44, 27, 21, 0.65);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: var(--z-drawer);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-backdrop.is-open,
.mobile-drawer-backdrop.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-drawer,
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: min(340px, 86vw);
  background-color: var(--color-primary);
  color: var(--color-cream);
  z-index: calc(var(--z-drawer) + 2);
  transform: translateX(-100%);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  overflow-y: auto;
  border-right: 2px solid var(--color-gold);
}

.mobile-drawer.is-open,
.mobile-menu.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

@media (min-width: 1024px) {
  .mobile-drawer,
  .mobile-menu,
  .mobile-drawer-backdrop {
    display: none !important;
  }
}

.drawer-header {
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-primary-dark);
  border-bottom: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.drawer-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  color: var(--color-cream-light);
  margin: 0;
}

.drawer-close-btn {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid rgba(200, 154, 67, 0.3);
  cursor: pointer;
  transition: all var(--transition-fast);
}

.drawer-close-btn:hover {
  background-color: var(--color-secondary);
  color: #FFFFFF;
  border-color: var(--color-gold);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-search-wrap {
  margin-bottom: var(--space-2);
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  color: var(--color-cream-light);
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
  background: rgba(200, 154, 67, 0.18);
  color: var(--color-gold-light);
  border-color: rgba(200, 154, 67, 0.35);
  transform: translateX(3px);
}

.drawer-footer {
  padding: var(--space-4);
  background-color: var(--color-primary-dark);
  border-top: 1px solid rgba(200, 154, 67, 0.3);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* ==========================================================================
   8.1. SLIDE-OUT CART DRAWER
   ========================================================================== */
.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background-color: var(--color-surface-white);
  z-index: calc(var(--z-drawer) + 2);
  transform: translateX(100%);
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.25s ease, visibility 0.25s ease;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl);
  border-left: 2px solid var(--color-gold);
}

.cart-drawer.is-open {
  transform: translateX(0);
  visibility: visible;
  pointer-events: auto;
  opacity: 1;
}

.cart-drawer-header {
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-primary);
  color: var(--color-cream);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--color-gold);
}

.cart-drawer-title {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  color: var(--color-cream);
  margin-bottom: 0;
}

.cart-shipping-bar {
  padding: 10px 16px;
  background-color: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  font-size: var(--text-xs);
  color: var(--color-text-dark);
}

.shipping-progress-bg {
  width: 100%;
  height: 6px;
  background-color: var(--color-border);
  border-radius: var(--radius-pill);
  margin-top: 6px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-gold), var(--color-green));
  width: 0%;
  transition: width var(--transition-normal);
}

.cart-items-list {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.cart-drawer-footer {
  padding: var(--space-4);
  background-color: var(--color-cream-light);
  border-top: 1px solid var(--color-border);
}

/* ==========================================================================
   8.2. ORDER ONLINE SECTION (CARDS & RESPONSIVE GRID)
   ========================================================================== */
.order-online-section {
  background-color: #FFF9F2;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: var(--space-12) 0;
}

.order-online-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  max-width: 1100px;
  margin: 0 auto;
}

.order-card-whatsapp,
.order-card-call {
  grid-column: 1 / -1;
}

@media (min-width: 768px) {
  .order-online-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .order-card-whatsapp,
  .order-card-call {
    grid-column: auto;
  }
}

@media (min-width: 1024px) {
  .order-online-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
  }
  .order-card-whatsapp,
  .order-card-call {
    grid-column: auto;
  }
}

.order-card {
  background-color: #FFFFFF;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.order-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.order-card-zomato {
  border-color: #FECACA;
}
.order-card-zomato:hover {
  border-color: #E23744;
}

.order-card-swiggy {
  border-color: #FED7AA;
}
.order-card-swiggy:hover {
  border-color: #FC8019;
}

.order-card-whatsapp {
  border-color: #BBF7D0;
}
.order-card-whatsapp:hover {
  border-color: #25D366;
}

.order-card-call {
  border-color: var(--color-border);
}
.order-card-call:hover {
  border-color: var(--color-primary);
}

.order-card-icon-wrap {
  width: 58px;
  height: 58px;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--space-3);
}

.order-card-zomato .order-card-icon-wrap {
  background-color: #FFF5F5;
  border: 1px solid #FECACA;
}
.order-card-swiggy .order-card-icon-wrap {
  background-color: #FFF8F2;
  border: 1px solid #FFEDD5;
}
.order-card-whatsapp .order-card-icon-wrap {
  background-color: #F0FDF4;
  border: 1px solid #BBF7D0;
}
.order-card-call .order-card-icon-wrap {
  background-color: var(--color-cream-light);
  border: 1px solid var(--color-border);
}

.order-card-badge {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}
.order-card-zomato .order-card-badge { color: #CB202D; }
.order-card-swiggy .order-card-badge { color: #D35400; }
.order-card-whatsapp .order-card-badge { color: var(--color-green-dark); }
.order-card-call .order-card-badge { color: var(--color-primary); }

.order-card-title {
  font-family: var(--font-serif);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--color-primary);
}

.order-card-desc {
  font-size: var(--text-xs);
  color: var(--color-muted);
  line-height: 1.4;
  margin-bottom: var(--space-4);
  flex-grow: 1;
}

.order-card-action {
  width: 100%;
  margin-top: auto;
}

/* ==========================================================================
   9. MODAL DIALOG COMPONENT
   ========================================================================== */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background-color: rgba(44, 27, 21, 0.6);
  backdrop-filter: blur(3px);
  z-index: var(--z-modal);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-backdrop.is-open {
  opacity: 1;
  visibility: visible;
}

.modal-dialog {
  background-color: var(--color-surface-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.96);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-backdrop.is-open .modal-dialog {
  transform: translateY(0) scale(1);
}

.modal-header {
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-primary);
  color: var(--color-cream-light);
  border-bottom: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: var(--text-md);
  color: var(--color-cream);
  margin-bottom: 0;
}

.modal-close {
  color: var(--color-cream-light);
  font-size: 1.25rem;
  padding: 4px;
  line-height: 1;
  background: none;
  border: none;
  cursor: pointer;
}

.modal-close:hover {
  color: var(--color-gold);
}

.modal-body {
  padding: var(--space-5);
  overflow-y: auto;
  max-height: 70vh;
}

.modal-footer {
  padding: var(--space-4) var(--space-5);
  background-color: var(--color-cream-light);
  border-top: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3);
}

/* ==========================================================================
   10. TOAST NOTIFICATION COMPONENT
   ========================================================================== */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-toast);
  display: flex;
  flex-direction: column;
  gap: 10px;
  pointer-events: none;
  max-width: calc(100vw - 48px);
}

.toast {
  pointer-events: auto;
  min-width: 280px;
  max-width: 400px;
  background-color: var(--color-surface-white);
  border-left: 4px solid var(--color-primary);
  border-top: 1px solid var(--color-border);
  border-right: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastSlideIn 0.3s ease-out forwards;
}

.toast-success { border-left-color: var(--color-green); }
.toast-error   { border-left-color: var(--color-error); }
.toast-warning { border-left-color: var(--color-warning); }
.toast-info    { border-left-color: var(--color-info); }

.toast-icon {
  font-size: 1.25rem;
  line-height: 1;
  flex-shrink: 0;
}

.toast-message {
  font-size: var(--text-sm);
  color: var(--color-text-dark);
  font-weight: var(--font-medium);
  margin-bottom: 0;
  line-height: 1.4;
}

@keyframes toastSlideIn {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ==========================================================================
   11. SITE FOOTER
   ========================================================================== */
.site-footer {
  margin-top: auto;
  background-color: var(--color-primary-dark);
  color: var(--color-cream-light);
  border-top: 3px solid var(--color-gold);
  position: relative;
}

.footer-top {
  padding: var(--space-12) 0 var(--space-8) 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
}

/* Tablet */
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Desktop */
@media (min-width: 1200px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-col-title {
  font-family: var(--font-serif);
  color: var(--color-gold-light);
  font-size: var(--text-md);
  font-weight: 700;
  margin-bottom: var(--space-4);
  position: relative;
  display: inline-block;
}

.footer-col-title::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background-color: var(--color-gold);
  margin-top: 4px;
}

.footer-about-text {
  font-size: var(--text-sm);
  color: #F8EDE0;
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
  opacity: 1;
}

.footer-links-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer-link {
  color: #F8EDE0;
  font-size: var(--text-sm);
  transition: color var(--transition-fast), transform var(--transition-fast);
  display: inline-block;
  opacity: 0.95;
}

.footer-link:hover {
  color: var(--color-gold-light);
  opacity: 1;
  text-decoration: underline;
  transform: translateX(4px);
}

.footer-bottom {
  padding: var(--space-4) 0;
  border-top: 1px solid rgba(200, 154, 67, 0.3);
  font-size: var(--text-xs);
  color: #F8EDE0;
  opacity: 0.9;
}

.footer-bottom .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-bottom .container {
    flex-direction: row;
    text-align: left;
  }
}

.footer-designer {
  font-size: var(--text-xs);
  color: var(--color-gold-light);
  font-weight: var(--font-semibold);
  letter-spacing: 0.03em;
}
