@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&family=Noto+Kufi+Arabic:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --gold: #c9a84c;
  --gold-light: #e8d48b;
  --gold-dark: #a07d2e;
  --dark: #0a0a0a;
  --dark-2: #141414;
  --dark-3: #1e1e1e;
  --dark-4: #2a2a2a;
  --white: #ffffff;
  --off-white: #f5f0e8;
  --cream: #faf7f0;
  --text-light: #b0a89e;
  --text-muted: #7a7470;
  --border: rgba(201, 168, 76, 0.15);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.15);
  --radius: 12px;
  --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --gold-rgb: 201, 168, 76;
  --gold-dark-rgb: 160, 125, 46;

  /* Semantic theme tokens (default = dark mode) */
  --bg-body: #0a0a0a;
  --bg-surface: #141414;
  --bg-surface-2: #1e1e1e;
  --bg-surface-3: #2a2a2a;
  --text-primary: #ffffff;
  --text-secondary: #b0a89e;
  --text-dim: #7a7470;
  --nav-bg: rgba(10, 10, 10, 0.85);
  --nav-bg-scrolled: rgba(10, 10, 10, 0.95);
  --mobile-menu-bg: rgba(10, 10, 10, 0.98);
  --card-bg: #141414;
  --modal-bg: #141414;
  --cart-bg: #141414;
  --footer-bg: #141414;
  --scrollbar-track: #141414;
  --border-color: rgba(201, 168, 76, 0.15);
}

/* ============================
   LIGHT MODE OVERRIDES
   ============================ */
body.light-mode {
  --dark: #f8f5ef;
  --dark-2: #efe9dc;
  --dark-3: #e4dcd0;
  --dark-4: #d9d0c4;
  --white: #1a1208;
  --off-white: #2d220a;
  --cream: #faf7f0;
  --text-light: #5a5048;
  --text-muted: #8a8078;
  --border: rgba(201, 168, 76, 0.25);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 10px 40px rgba(201, 168, 76, 0.2);
  --bg-body: #f8f5ef;
  --bg-surface: #efe9dc;
  --bg-surface-2: #e4dcd0;
  --text-primary: #1a1208;
  --text-secondary: #5a5048;
  --nav-bg: rgba(248, 245, 239, 0.88);
  --nav-bg-scrolled: rgba(248, 245, 239, 0.97);
  --mobile-menu-bg: rgba(248, 245, 239, 0.99);
  --card-bg: #efe9dc;
  --modal-bg: #efe9dc;
  --cart-bg: #efe9dc;
  --footer-bg: #efe9dc;
  --scrollbar-track: #e4dcd0;
  --border-color: rgba(201, 168, 76, 0.3);
}

body.light-mode {
  background: var(--bg-body);
  color: var(--text-primary);
}

body.light-mode ::-webkit-scrollbar-track {
  background: var(--scrollbar-track);
}

body.light-mode .page-loader {
  background: var(--bg-body);
}

body.light-mode .loader-spinner {
  border-color: var(--dark-3);
  border-top-color: var(--gold);
}

body.light-mode .navbar {
  background: var(--nav-bg);
  border-bottom-color: var(--border);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body.light-mode .navbar.scrolled {
  background: var(--nav-bg-scrolled);
}

body.light-mode .nav-links a {
  color: var(--text-secondary);
}

body.light-mode .nav-links a:hover,
body.light-mode .nav-links a.active {
  color: var(--gold-dark);
}

body.light-mode .nav-links a::after {
  background: var(--gold-dark);
}

body.light-mode .menu-toggle span {
  background: var(--text-primary);
}

body.light-mode .mobile-menu {
  background: var(--mobile-menu-bg);
}

body.light-mode .mobile-menu a {
  color: var(--text-primary);
}

body.light-mode .cart-icon {
  color: var(--text-primary);
}

body.light-mode .cart-icon:hover {
  color: var(--gold-dark);
}

body.light-mode .wishlist-icon {
  color: var(--text-primary);
}

body.light-mode .wishlist-icon:hover {
  color: #ff4757;
}

body.light-mode .section-dark {
  background: var(--dark-2);
}

body.light-mode .section-pattern {
  background-color: var(--bg-body);
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

body.light-mode .section-desc {
  color: var(--text-secondary);
}

body.light-mode .product-card {
  background: var(--card-bg);
  border-color: var(--border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
}

body.light-mode .product-card:hover {
  border-color: var(--gold);
}

body.light-mode .product-category {
  color: var(--gold-dark);
}

body.light-mode .product-card:hover .product-name {
  color: var(--gold-dark);
}

body.light-mode .price-current {
  color: var(--gold-dark);
}

body.light-mode .price-old {
  color: var(--text-dim);
}

body.light-mode .process-step {
  background: var(--dark-3);
  border-color: var(--border);
}

body.light-mode .process-step p {
  color: var(--text-secondary);
}

body.light-mode .about-content p {
  color: var(--text-secondary);
}

body.light-mode .stat-label {
  color: var(--text-dim);
}

body.light-mode .footer {
  background: var(--dark-2);
  border-top-color: var(--border);
}

body.light-mode .footer-brand p {
  color: var(--text-secondary);
}

body.light-mode .footer-links a {
  color: var(--text-secondary);
}

body.light-mode .footer-links a:hover {
  color: var(--gold-dark);
}

body.light-mode .footer-bottom {
  border-top-color: var(--border);
}

body.light-mode .footer-bottom p {
  color: var(--text-dim);
}

body.light-mode .footer-social a {
  background: var(--dark-3);
  color: var(--text-secondary);
}

body.light-mode .footer-social a:hover {
  background: var(--gold);
  color: var(--bg-body);
}

body.light-mode .fab-tooltip {
  background: var(--dark-3);
  color: var(--text-primary);
}

body.light-mode .modal {
  background: var(--modal-bg);
  border-color: var(--border);
}

body.light-mode .modal-close {
  background: var(--dark-3);
  border-color: var(--border);
  color: var(--text-primary);
}

body.light-mode .modal-close:hover {
  background: var(--gold);
  color: var(--bg-body);
}

body.light-mode .modal-info p {
  color: var(--text-secondary);
}

body.light-mode .size-btn {
  color: var(--text-primary);
  border-color: var(--border);
}

body.light-mode .size-btn:hover,
body.light-mode .size-btn.active {
  background: var(--gold);
  color: var(--bg-body);
  border-color: var(--gold);
}

body.light-mode .qty-btn {
  color: var(--text-primary);
  border-color: var(--border);
}

body.light-mode .qty-btn:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

body.light-mode .hero-overlay {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 50%, rgba(255, 255, 255, 0.7) 100%);
}

body.light-mode .hero-desc {
  color: var(--text-secondary);
}

body.light-mode .hero-title {
  color: var(--dark-white);
}

body.light-mode .btn-outline {
  border-color: rgba(0, 0, 0, 0.2);
  color: var(--text-primary);
}

body.light-mode .cart-sidebar {
  background: var(--cart-bg);
  border-left-color: var(--border);
}

body.light-mode .cart-sidebar-overlay {
  background: rgba(0, 0, 0, 0.3);
}

body.light-mode .cart-header {
  border-bottom-color: var(--border);
}

body.light-mode .cart-close {
  color: var(--text-secondary);
}

body.light-mode .cart-close:hover {
  color: var(--gold-dark);
}

body.light-mode .cart-item {
  border-bottom-color: var(--border);
}

body.light-mode .cart-item-info .price {
  color: var(--gold-dark);
}

body.light-mode .cart-item-remove {
  color: var(--text-dim);
}

body.light-mode .cart-footer {
  border-top-color: var(--border);
}

body.light-mode .cart-total span:last-child {
  color: var(--gold-dark);
}

body.light-mode .cart-empty {
  color: var(--text-dim);
}

body.light-mode .filter-tab {
  color: var(--text-secondary);
  border-color: var(--border);
}

/* Removed old products page header styles */

body.light-mode .content-page h2 {
  color: var(--gold-dark);
}

body.light-mode .content-page p,
body.light-mode .content-page li {
  color: var(--text-secondary);
}

body.light-mode .breadcrumb {
  color: var(--text-dim);
}

body.light-mode .breadcrumb a {
  color: var(--gold-dark);
}

body.light-mode .page-hero p {
  color: var(--text-secondary);
}

body.light-mode .hero-desc {
  color: rgba(248, 245, 239, 0.85);
}

body.light-mode .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}

body.light-mode .btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}

/* ============================
   LANGUAGE TOGGLE SWITCH (EN/AR)
   ============================ */
.lang-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-right: 10px;
}

.lang-toggle-track {
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background: rgba(var(--gold-rgb), 0.1);
  border: 2px solid var(--gold);
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 0 10px rgba(var(--gold-rgb), 0.1);
}

.lang-toggle-thumb {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

body.rtl .lang-toggle-thumb {
  transform: translateX(24px);
}

.lang-label {
  position: absolute;
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--dark);
  transition: all 0.4s ease;
  user-select: none;
}

body:not(.rtl) #lang-label-ar {
  opacity: 0;
  transform: scale(0) rotate(-90deg);
}

body:not(.rtl) #lang-label-en {
  opacity: 1;
  transform: scale(1) rotate(0);
}

body.rtl #lang-label-en {
  opacity: 0;
  transform: scale(0) rotate(90deg);
}

body.rtl #lang-label-ar {
  opacity: 1;
  transform: scale(1) rotate(0);
}

.theme-toggle-btn {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  margin-left: 10px;
}

.theme-toggle-track {
  width: 52px;
  height: 28px;
  border-radius: 14px;
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border: 2px solid var(--gold);
  position: relative;
  transition: background 0.4s ease, border-color 0.4s ease;
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.2);
}

body.light-mode .theme-toggle-track {
  background: linear-gradient(135deg, #87ceeb, #e0f4ff);
  border-color: var(--gold-dark);
  box-shadow: 0 0 10px rgba(201, 168, 76, 0.15);
}

.theme-toggle-thumb {
  position: absolute;
  top: 1px;
  left: 1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5e642, var(--gold));
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 0 15px rgba(255, 230, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-thumb .theme-toggle-icon {
  position: absolute;
  font-size: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: #000;
}

body:not(.light-mode) #theme-icon-sun {
  opacity: 0;
  transform: scale(0) rotate(-90deg);
}

body:not(.light-mode) #theme-icon-moon {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

body.light-mode #theme-icon-moon {
  opacity: 0;
  transform: scale(0) rotate(90deg);
}

body.light-mode #theme-icon-sun {
  opacity: 1;
  transform: scale(1) rotate(0deg);
}

body.light-mode .theme-toggle-thumb {
  transform: translateX(24px);
  background: linear-gradient(135deg, #fff9c4, #ffe082);
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.3);
}


/* Page Transitions */
.page {
  display: none;
  animation: fadeIn 0.5s ease;
}

.page.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================================= */
/*  SHOPPING CART PAGE STYLES                                */
/* ========================================================= */
#page-cart {
  padding-bottom: 100px;
}

.cart-page-grid {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
  margin-top: 40px;
}

@media (max-width: 992px) {
  .cart-page-grid {
    grid-template-columns: 1fr;
  }
}

.cart-header-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  padding: 15px 0;
  border-bottom: 1px solid var(--border);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-dim);
  text-transform: uppercase;
}

.cart-page-item {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid var(--border);
}

.cart-p-info {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-p-info img {
  width: 80px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--border);
}

.cart-p-info h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.remove-p-btn {
  background: none;
  border: none;
  color: #ff5252;
  font-size: 0.8rem;
  cursor: pointer;
  text-decoration: underline;
  padding: 0;
}

.cart-p-price,
.cart-p-sub {
  font-weight: 700;
  color: var(--gold);
}

.qty-control-p {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--dark-3);
  width: fit-content;
  padding: 5px 15px;
  border-radius: 50px;
  border: 1px solid var(--border);
}

.qty-control-p button {
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.2rem;
  cursor: pointer;
  width: 25px;
}

.summary-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  position: sticky;
  top: 100px;
  box-shadow: var(--shadow);
}

.summary-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.summary-row.total {
  border-top: 1px solid var(--border);
  padding-top: 15px;
  margin-top: 15px;
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--white);
}

.summary-row.total span:last-child {
  color: var(--gold);
}

body.light-mode .summary-card {
  background: var(--white);
  background-color: #fff;
}

body.light-mode .qty-control-p {
  background: #fff;
}

@media (max-width: 600px) {
  .cart-header-row {
    display: none;
  }

  .cart-page-item {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }

  .cart-p-info {
    flex-direction: column;
  }

  .qty-control-p {
    margin: 0 auto;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}

body.rtl {
  font-family: 'Noto Kufi Arabic', 'Inter', sans-serif;
  direction: rtl;
  text-align: right;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* Loader */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: opacity 0.6s, visibility 0.6s;
}

.page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid var(--dark-3);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 60px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.95);
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-logo-img {
  height: 60px;
  width: 60px;
  flex-shrink: 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.logo-text span {
  color: var(--white);
  font-weight: 300;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: capitalize;
  position: relative;
  transition: var(--transition);
  padding: 5px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-book-btn-switch {
  text-decoration: none;
  margin-left: 20px;
}

.book-switch-track {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(10px);
  border: 2px solid var(--gold);
  border-radius: 50px;
  height: 28px;
  width: 52px;
  padding: 0;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  overflow: hidden;
}

.book-switch-thumb {
  width: 22px;
  height: 22px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.book-switch-text {
  position: absolute;
  left: 50px;
  right: 15px;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.4s ease;
  z-index: 1;
}

.nav-book-btn-switch:hover .book-switch-track {
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(var(--gold-rgb), 0.6);
  background: rgba(var(--gold-rgb), 0.15);
  animation: navBounce 0.5s ease-in-out;
}

.nav-book-btn-switch:hover .book-switch-thumb {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
  box-shadow: 0 0 20px var(--gold);
}

@keyframes navBounce {

  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }
}

@keyframes glowPulse {
  0% {
    box-shadow: 0 0 5px var(--gold);
  }

  50% {
    box-shadow: 0 0 20px var(--gold), 0 0 30px var(--gold-dark);
  }

  100% {
    box-shadow: 0 0 5px var(--gold);
  }
}

.book-switch-track::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: 0.5s;
}

.nav-book-btn-switch:hover .book-switch-track::before {
  left: 100%;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Removed old lang toggle */

.cart-icon {
  position: relative;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.cart-icon:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wishlist-icon {
  position: relative;
  color: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
}

.wishlist-icon:hover {
  color: #ff4757;
}

.track-icon {
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
}

.track-icon:hover {
  color: var(--gold);
  transform: scale(1.1);
}

.wishlist-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #ff4757;
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px;
}

.menu-toggle span {
  width: 25px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.98);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  display: flex;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: capitalize;
  transition: var(--transition);
}

.mobile-menu a:hover {
  color: var(--gold);
}

.mobile-book-btn-switch {
  text-decoration: none;
  margin: 10px auto;
}

.mobile-book-btn-switch .book-switch-track {
  width: 52px;
  height: 28px;
  padding: 0;
  background: rgba(var(--gold-rgb), 0.1);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-book-btn-switch .book-switch-thumb {
  width: 22px;
  height: 22px;
}



/* Hero Slider */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 1.2s ease, visibility 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-slide.active img {
  transform: scale(1);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.8) 0%, rgba(10, 10, 10, 0.4) 50%, rgba(10, 10, 10, 0.7) 100%);
}

.hero-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  z-index: 2;
}

.hero-subtitle {
  font-size: 0.9rem;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  font-weight: 500;
  animation: fadeUp 0.8s ease 0.2s both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  max-width: 800px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-title span {
  color: var(--gold);
}

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 550px;
  margin-bottom: 40px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  animation: fadeUp 0.8s ease 0.8s both;
}

.btn-primary {
  background: var(--gold);
  color: var(--dark);
  padding: 16px 40px;
  border: none;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-confirm {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
  color: white !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3) !important;
}

.btn-confirm:hover {
  background: linear-gradient(135deg, #34d399 0%, #10b981 100%) !important;
  box-shadow: 0 6px 25px rgba(16, 185, 129, 0.5) !important;
}

.btn-whatsapp {
  background: #25d366 !important;
  color: white !important;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp:hover {
  background: #20ba5a !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

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

.slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot.active {
  background: var(--gold);
  transform: scale(1.2);
}

.slider-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 30px;
  transform: translateY(-50%);
  z-index: 5;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

/* Sections */
.section {
  padding: 100px 60px;
}

/* Booking page: reduce side padding so Step 3 fills the full width */
#page-booking .booking-section.section {
  padding-left: 24px;
  padding-right: 24px;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-label {
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-desc {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
}

.section-dark {
  background: var(--dark-2);
}

.section-pattern {
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  height: 350px;
  cursor: pointer;
}

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

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

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  transition: var(--transition);
}

.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 5px;
  transition: transform 0.4s ease;
}

.category-card:hover .category-name {
  transform: translateY(-5px);
  color: var(--gold-light);
}

.category-count {
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.8;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  transition: all 0.5s ease;
}

/* Custom Grid Columns */
.products-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.products-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.products-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 992px) {
  .products-grid.cols-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {

  .products-grid.cols-2,
  .products-grid.cols-3,
  .products-grid.cols-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.products-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  background: rgba(var(--gold-rgb), 0.05);
  backdrop-filter: blur(20px);
  padding: 20px 40px;
  border-radius: 60px;
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25), inset 0 0 20px rgba(var(--gold-rgb), 0.05);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.products-controls:focus-within {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3), 0 0 20px rgba(var(--gold-rgb), 0.1);
}

[data-theme='light'] .products-controls {
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.advanced-filters {
  display: flex;
  gap: 20px;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.filter-group label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.filter-group select {
  background: var(--dark-2);
  color: var(--text-light);
  border: 1px solid var(--border);
  padding: 8px 20px;
  border-radius: 50px;
  /* Pill shape */
  outline: none;
  font-family: inherit;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.filter-group select:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(201, 168, 76, 0.1);
}

.filter-group select:focus {
  border-color: var(--gold);
}

.grid-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.grid-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.grid-btn {
  width: 44px;
  height: 44px;
  background: var(--dark-2);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 50px;
  /* Round shape */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.grid-btn:hover {
  transform: scale(1.1);
}

.grid-btn.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.filter-group.range-filter {
  min-width: 220px;
}

.range-container {
  position: relative;
  height: 24px;
  display: flex;
  align-items: center;
  margin-top: 10px;
}

/* Base slider styles */
.range-container input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  outline: none;
  position: relative;
  z-index: 5;
}

[data-theme='light'] .range-container input[type="range"] {
  background: rgba(0, 0, 0, 0.1);
}

/* Thumb */
.range-container input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
  transition: transform 0.2s;
  border: 4px solid var(--gold);
}

.range-container input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  cursor: pointer;
  border: 4px solid var(--gold);
}

/* Steps and Track Overlay */
.range-track {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
  z-index: 1;
}

.step-dot {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

.category-filters-outer {
  width: 100%;
  margin-bottom: 50px;
  padding: 10px 0;
  position: relative;
}

.filter-tabs-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  overflow-x: auto;
  padding: 10px 20px;
  scrollbar-width: none;
  /* Hide scrollbar */
}

.filter-tabs-container::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-light);
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.filter-tab .tab-icon {
  font-size: 1.1rem;
  transition: transform 0.3s ease;
}

.filter-tab:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(var(--gold-rgb), 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.filter-tab:hover .tab-icon {
  transform: scale(1.2) rotate(10deg);
}

.filter-tab.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.4);
  transform: translateY(-2px);
}

.filter-tab.active .tab-icon {
  transform: scale(1.1);
}

/* Special New Products Pill */
.filter-tab.new-pill {
  border-color: rgba(255, 71, 87, 0.3);
  color: #ff4757;
}

.filter-tab.new-pill.active {
  background: #ff4757;
  color: white;
  border-color: #ff4757;
  box-shadow: 0 0 25px rgba(255, 71, 87, 0.4);
}

@media (max-width: 900px) {
  .filter-tabs-container {
    justify-content: flex-start;
    /* Start from left on mobile scroll */
  }
}


/* Best Attractive Filter Toolbar */
.filter-toolbar-pill {
  background: rgba(15, 15, 15, 0.8);
  backdrop-filter: blur(30px);
  border: 1.5px solid rgba(var(--gold-rgb), 0.25);
  border-radius: 120px;
  padding: 12px 12px 12px 45px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto 60px;
  max-width: 1100px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), inset 0 0 30px rgba(var(--gold-rgb), 0.08);
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.filter-toolbar-pill:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 25px rgba(var(--gold-rgb), 0.15);
}

@media (max-width: 768px) {
  .filter-toolbar-pill {
    flex-direction: column;
    border-radius: 30px;
    padding: 20px;
    gap: 15px;
    margin-bottom: 40px;
  }

  .toolbar-divider {
    display: none;
  }

  .toolbar-section {
    width: 100%;
    justify-content: center;
  }
}

/* Light Mode Overrides for Toolbar */
.light-mode .filter-toolbar-pill {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08), inset 0 0 20px rgba(var(--gold-rgb), 0.02);
  border-color: rgba(var(--gold-rgb), 0.3);
}

.light-mode .toolbar-section label {
  color: #333;
}

.light-mode .origin-bubble {
  background: rgba(0, 0, 0, 0.04);
  color: #333;
}

.light-mode .grid-bubble {
  background: rgba(0, 0, 0, 0.04);
  color: #333;
  border-color: transparent;
}

.light-mode .toolbar-divider {
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), 0.5), transparent);
}

.toolbar-section {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}

.toolbar-section label {
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 1.2px;
  opacity: 0.8;
}

.toolbar-divider {
  width: 1px;
  height: 35px;
  background: linear-gradient(to bottom, transparent, rgba(var(--gold-rgb), 0.3), transparent);
  margin: 0 15px;
}

.origin-bubble-filter {
  display: flex;
  gap: 8px;
}

.origin-bubble {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.origin-bubble:hover,
.origin-bubble.active {
  background: var(--gold);
  color: var(--dark);
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.4);
  border-color: var(--gold);
}

.toolbar-badge {
  background: rgba(var(--gold-rgb), 0.1);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 800;
}

.grid-bubble-filter {
  display: flex;
  gap: 6px;
}

.grid-bubble {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
}

/* ========================================================= */
/*  PRODUCT CARD PREMIUM OVERLAY & HOVER                    */
/* ========================================================= */

.product-img {
  position: relative;
  overflow: hidden;
}

.product-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.6);
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  z-index: 4;
}

.product-card:hover .product-card-overlay {
  opacity: 1;
}

.view-btn-eye {
  font-size: 1.8rem;
  margin-bottom: 8px;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-card:hover .view-btn-eye {
  transform: translateY(0);
}

.view-btn-text {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  color: var(--gold);
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s;
}

.product-card:hover .view-btn-text {
  transform: translateY(0);
}

.product-price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
}

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

.st-stats {
  display: flex;
  gap: 12px;
  font-size: 0.75rem;
}

.stat-item {
  color: var(--text-muted);
  font-weight: 500;
}

.stat-item .icon {
  margin-right: 2px;
}

.product-info {
  cursor: pointer;
}

.product-card:hover .product-name {
  color: var(--gold);
}

.product-card {
  transition: transform 0.4s, box-shadow 0.4s;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}


.grid-bubble.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.toolbar-results-badge {
  background: var(--gold);
  color: var(--dark);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 1rem;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(var(--gold-rgb), 0.4);
  margin-left: 20px;
}

@media (max-width: 1050px) {
  .filter-toolbar-pill {
    flex-direction: column;
    border-radius: 30px;
    padding: 30px;
    gap: 20px;
  }

  .toolbar-divider {
    display: none;
  }

  .toolbar-results-badge {
    margin: 0;
    width: 100%;
    text-align: center;
  }
}

.product-card {
  background: var(--dark-2);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

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

.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  background: var(--gold);
  color: var(--dark);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rtl .product-badge {
  left: auto;
  right: 16px;
}

.product-img {
  position: relative;
  height: 380px;
  overflow: hidden;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.6s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.1);
}

.product-actions {
  position: absolute;
  bottom: -60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 12px;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: 10;
}

.product-card:hover .product-actions {
  bottom: 20px;
}

.product-action-btn {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  /* Square-ish like modern cart buttons */
  background: rgba(255, 255, 255, 0.9);
  color: var(--dark);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.product-action-btn:hover {
  background: var(--gold);
  color: white;
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 12px 25px rgba(var(--gold-rgb), 0.4);
}

/* Wishlist button - transparent by default, red when active */
.wishlist-btn {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: white !important;
}

.wishlist-btn.active {
  background: transparent !important;
  color: #ff4757 !important;
  border: none !important;
  box-shadow: none !important;
}

/* Re-styling like Add To Cart button */
.product-card .add-cart-btn-main {
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
}

@keyframes pulse-heart {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1.1);
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  transition: all 0.5s ease;
}

.products-grid.cols-2 {
  grid-template-columns: repeat(2, 1fr);
}

.products-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.products-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {

  .products-grid.cols-2,
  .products-grid.cols-3,
  .products-grid.cols-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.product-info {
  padding: 20px;
  display: flex;
  flex-direction: column;
  min-height: 101px;
}

.product-category {
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
}

.product-name {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
  transition: var(--transition);
  height: 2.8rem;
  /* Uniform title height (2 lines) */
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-card:hover .product-name {
  color: var(--gold);
}

.product-price-row {
  display: flex;
  flex-wrap: nowrap;
  /* Forced single line */
  align-items: center;
  gap: 8px;
  margin-top: auto;
  /* Push to bottom */
  padding-top: 12px;
  border-top: 1px solid rgba(var(--gold-rgb), 0.1);
}

.sr-icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-top: -3px;
  color: var(--gold);
}

.price-current {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  white-space: nowrap;
}

.price-old {
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 2px;
}

.price-old .sr-icon {
  width: 10px;
  height: 10px;
  opacity: 0.5;
}

.stat-item {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.02);
  padding: 3px 5px;
  border-radius: 4px;
  white-space: nowrap;
}

.stat-item:hover {
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
}

.stat-item .icon {
  font-size: 0.75rem;
}

.stat-item small {
  font-weight: 500;
  opacity: 0.7;
  scale: 0.9;
  transform-origin: left;
}


.wishlist-btn.active {
  background: #ff4757 !important;
  color: white !important;
  animation: pulse-heart 0.3s ease-in-out;
}

@keyframes pulse-heart {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1.1);
  }
}


/* Process/Craftsmanship */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  position: relative;
}

.process-step {
  text-align: center;
  padding: 30px;
  background: var(--dark-3);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
}

.process-step:hover {
  transform: translateY(-5px);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.process-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
  border: 2px solid var(--gold);
}

.process-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.process-number {
  position: absolute;
  top: 16px;
  right: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.2;
}

.rtl .process-number {
  right: auto;
  left: 16px;
}

.process-step h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* About Section */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--gold);
  color: var(--dark);
  padding: 20px 30px;
  border-radius: var(--radius);
  text-align: center;
}

.rtl .about-image-badge {
  right: auto;
  left: 30px;
}

.about-image-badge .badge-number {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1rem;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Footer */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
  padding: 80px 60px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand .nav-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-brand p {
  color: var(--text-light);
  font-size: 0.9rem;
  max-width: 300px;
}

.footer h4 {
  color: var(--gold);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar.nav-hidden {
  transform: translateY(-100%);
  opacity: 0;
}

.navbar.scrolled {
  padding: 15px 80px;
  background: rgba(10, 10, 10, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  color: var(--text-light);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--gold);
  color: var(--dark);
}

/* Floating Social Button */
.social-fab {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 900;
}

.rtl .social-fab {
  right: auto;
  left: 30px;
}

.fab-main {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(201, 168, 76, 0.4);
  transition: var(--transition);
  position: relative;
  z-index: 2;
}

.fab-main:hover {
  transform: scale(1.1);
}

.fab-main.active {
  transform: rotate(45deg);
}

.fab-options {
  position: absolute;
  bottom: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
}

.rtl .fab-options {
  right: auto;
  left: 0;
}

.fab-options.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.fab-option {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  text-decoration: none;
  transition: var(--transition);
  position: relative;
}

.fab-option:hover {
  transform: scale(1.15);
}

.fab-option.whatsapp {
  background: #25D366;
}

.fab-option.instagram {
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.fab-option.facebook {
  background: #1877F2;
}

.fab-option.tiktok {
  background: #010101;
  border: 1px solid #333;
}

.fab-option.livechat {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
}

.fab-tooltip {
  position: absolute;
  right: 60px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--dark-3);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  white-space: nowrap;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.rtl .fab-tooltip {
  right: auto;
  left: 60px;
}

.fab-option:hover .fab-tooltip {
  opacity: 1;
}

/* Live Chat Modal */
.live-chat-modal {
  max-width: 400px;
  width: 90%;
  height: 500px;
  display: flex;
  flex-direction: column;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.live-chat-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.18), rgba(212, 175, 55, 0.08));
  color: var(--text-primary);
  border-bottom: 1px solid var(--border);
}

.live-chat-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.live-chat-title h3 {
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
}

.live-chat-subtitle {
  margin-top: 3px;
  font-size: 0.76rem;
  color: var(--text-tertiary);
  font-weight: 500;
}

.live-chat-icon {
  font-size: 1.5rem;
}

.live-chat-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.live-chat-action-btn {
  background: none;
  border: none;
  color: var(--dark);
  cursor: pointer;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.2s;
}

.live-chat-action-btn:hover {
  background: rgba(0, 0, 0, 0.1);
}

.live-chat-clear-btn {
  background: var(--dark-2);
  border: 1px solid var(--border);
  color: var(--text-primary);
  cursor: pointer;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.live-chat-clear-btn:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.live-chat-close {
  background: none;
  border: none;
  font-size: 24px;
  color: var(--dark);
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.live-chat-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.live-chat-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.live-chat-messages {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  background:
    radial-gradient(circle at top, rgba(212, 175, 55, 0.06), transparent 28%),
    var(--dark-1);
}

.live-chat-empty {
  margin: auto;
  max-width: 260px;
  text-align: center;
  padding: 22px 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.live-chat-empty-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
}

.live-chat-empty h4 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: var(--text-primary);
}

.live-chat-empty p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--text-tertiary);
}

.chat-message {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}

.chat-message-admin {
  align-items: flex-start;
}

.chat-message-user {
  align-items: flex-end;
}

.chat-message-content {
  max-width: 80%;
  padding: 12px 16px;
  border-radius: 12px;
  background: var(--dark-2);
  color: var(--text-primary);
  font-size: 0.9rem;
  line-height: 1.5;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.10);
}

.chat-message-admin .chat-message-content {
  background: var(--dark-3);
  border-bottom-left-radius: 4px;
}

.chat-message-user .chat-message-content {
  background: var(--gold);
  color: var(--dark);
  border-bottom-right-radius: 4px;
}

.chat-message-time {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  margin-top: 4px;
}

.chat-message-admin .chat-message-time {
  margin-left: 4px;
}

.chat-message-user .chat-message-time {
  margin-right: 4px;
}

.live-chat-input-area {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.live-chat-attach {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  color: var(--text-primary);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.live-chat-attach:hover {
  transform: scale(1.1);
  background: var(--dark-1);
}

.live-chat-input {
  flex: 1;
  background: var(--dark-1);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 10px 16px;
  color: var(--text-primary);
  font-size: 0.9rem;
  outline: none;
}

.live-chat-input:focus {
  border-color: var(--gold);
}

.live-chat-input::placeholder {
  color: var(--text-tertiary);
}

.live-chat-send {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s, background 0.2s;
}

.live-chat-send:hover {
  transform: scale(1.1);
  background: var(--gold-light);
}

.live-chat-send:active {
  transform: scale(0.95);
}

/* Live Chat Minimized */
.live-chat-minimized {
  position: fixed;
  bottom: 100px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark);
  padding: 12px 20px;
  border-radius: 50px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  z-index: 999;
  display: none;
}

.live-chat-minimized:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(201, 168, 76, 0.5);
}

.live-chat-minimized-icon {
  font-size: 1.5rem;
}

.live-chat-minimized-text {
  font-weight: 600;
  font-size: 0.9rem;
}

.live-chat-minimized-badge {
  background: var(--dark);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
  min-width: 18px;
  text-align: center;
}

.rtl .live-chat-minimized {
  right: auto;
  left: 20px;
}

/* Chat attachment preview */
.chat-attachment {
  margin-top: 8px;
  padding: 12px;
  background: var(--dark-2);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.chat-attachment-image {
  max-width: 100%;
  max-height: 200px;
  border-radius: 4px;
  display: block;
}

.chat-attachment-file {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-primary);
  font-size: 0.85rem;
}

/* Product Details Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.modal {
  background: var(--dark-2);
  border-radius: var(--radius);
  max-width: 900px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  border: 1px solid var(--border);
  position: relative;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: var(--transition);
}

.rtl .modal-close {
  right: auto;
  left: 20px;
}

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

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.modal-img {
  height: 100%;
  min-height: 400px;
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}

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

.modal-img.zoomed {
  cursor: zoom-out;
}

.modal-img.zoomed img {
  transform: scale(2.5);
  transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
  transition: none;
}

/* Zoom hint badge */
.zoom-hint {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.7);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.75rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  pointer-events: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.zoom-hint::before {
  content: '🔍';
}

.modal-img.zoomed .zoom-hint {
  opacity: 0;
}

.modal-info {
  padding: 40px;
}

.modal-info .product-category {
  margin-bottom: 8px;
}

.modal-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 16px;
}

.modal-info .product-price {
  margin-bottom: 20px;
}

.modal-info p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}

.size-options {
  display: flex;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.size-btn {
  padding: 10px 20px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  border-radius: 6px;
  cursor: pointer;
  transition: var(--transition);
  font-size: 0.9rem;
}

.size-btn:hover,
.size-btn.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

.qty-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.qty-btn {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--white);
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.qty-btn:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.qty-value {
  font-size: 1.1rem;
  font-weight: 600;
  min-width: 30px;
  text-align: center;
}

/* Pages */
.page {
  display: none;
  padding-top: 80px;
  min-height: 100vh;
}

.page.active {
  display: block;
}

.page-hero {
  height: 40vh;
  min-height: 300px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.5rem);
  margin-bottom: 12px;
}

.page-hero p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.breadcrumb {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 16px;
  font-size: 0.85rem;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
}

/* Filter Tabs */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 10px 24px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-light);
  border-radius: 30px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
}

.filter-tab:hover,
.filter-tab.active {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
}

/* Privacy/About Pages Content */
.content-page {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 20px;
}

.content-page h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 40px 0 16px;
  color: var(--gold);
}

.content-page h3 {
  font-size: 1.2rem;
  margin: 24px 0 12px;
}

.content-page p,
.content-page li {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.content-page ul {
  padding-left: 24px;
}

.rtl .content-page ul {
  padding-left: 0;
  padding-right: 24px;
}

/* Animations */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Cart Sidebar */
.cart-sidebar {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: var(--dark-2);
  border-left: 1px solid var(--border);
  z-index: 1500;
  transition: right 0.4s ease;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

.rtl .cart-sidebar {
  right: auto;
  left: -420px;
  border-left: none;
  border-right: 1px solid var(--border);
  transition: left 0.4s ease;
}

.cart-sidebar.active {
  right: 0;
}

.rtl .cart-sidebar.active {
  left: 0;
}

.cart-sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1400;
  display: none;
  opacity: 0;
  transition: opacity 0.3s;
}

.cart-sidebar-overlay.active {
  display: block;
  opacity: 1;
}

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.cart-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.cart-close {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
  transition: var(--transition);
}

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

.cart-items {
  flex: 1;
  overflow-y: auto;
}

.cart-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
}

.cart-item img {
  width: 70px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cart-item-info .price {
  color: var(--gold);
  font-weight: 600;
}

.cart-item-remove {
  background: none;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  transition: var(--transition);
}

.cart-item-remove:hover {
  color: #e74c3c;
}

.cart-footer {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 1.1rem;
  font-weight: 600;
}

.cart-total span:last-child {
  color: var(--gold);
}

.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: var(--text-muted);
}

.cart-empty svg {
  font-size: 3rem;
  margin-bottom: 16px;
}

/* Responsive */
@media (max-width: 1024px) {
  .section {
    padding: 80px 30px;
  }

  .navbar {
    padding: 0 30px;
  }

  .footer {
    padding: 60px 30px 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .modal-body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .section {
    padding: 60px 20px;
  }

  .navbar {
    padding: 0 20px;
  }

  .footer {
    padding: 40px 20px 20px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .slider-arrows {
    display: none;
  }

  .about-grid {
    gap: 30px;
  }

  .about-image img {
    height: 300px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .cart-sidebar {
    width: 100%;
    right: -100%;
  }

  .rtl .cart-sidebar {
    left: -100%;
  }
}

/* ======================================================
   BOOKING SYSTEM STYLES
   ====================================================== */

/* Nav Book Now button */
.nav-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--dark) !important;
  padding: 7px 18px !important;
  border-radius: 20px !important;
  font-weight: 700 !important;
  letter-spacing: 0.3px !important;
  transition: var(--transition) !important;
  white-space: nowrap;
}

.nav-book-btn:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
}

.nav-book-btn::after {
  display: none !important;
}

.mobile-book-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  padding: 14px 40px !important;
  border-radius: 30px !important;
  font-weight: 700 !important;
}

/* ---- Progress Steps ---- */
.booking-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 32px 20px 0;
  max-width: 700px;
  margin: 0 auto;
}

.bp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: default;
  flex: 1;
  max-width: 120px;
}

.bp-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--dark-4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition);
  background: var(--dark-3);
}

.bp-step span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.bp-step.active .bp-num {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.4);
}

.bp-step.active span {
  color: var(--gold);
  font-weight: 600;
}

.bp-step.done .bp-num {
  border-color: var(--gold-dark);
  background: transparent;
  color: var(--gold);
}

.bp-step.done span {
  color: var(--gold-dark);
}

.bp-line {
  flex: 1;
  height: 2px;
  background: var(--dark-4);
  margin-bottom: 30px;
  max-width: 80px;
  transition: background 0.4s;
}

/* ---- Booking Section ---- */
.booking-section {
  max-width: 100%;
  margin: 0;
  padding: 0 30px 60px;
}

/* Step 3 specific: override .section padding to maximize card space */
#bstep-3 .step3-grid-3 {
  width: 100%;
}

.booking-step {
  display: none;
}

.booking-step.active {
  display: block;
  animation: fadeUp 0.5s ease;
}

.booking-step-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-step-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 10px;
  color: var(--white);
}

.booking-step-header p {
  color: var(--text-light);
  font-size: 1rem;
}

/* ---- Service Cards ---- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.service-card {
  background: var(--dark-2);
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 24px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.4s;
}

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

.service-card:hover::before {
  opacity: 1;
}

.service-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.08);
  box-shadow: var(--shadow-gold);
}

.service-card.selected::after {
  content: '✓';
  position: absolute;
  top: 12px;
  right: 12px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px;
}

.service-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--white);
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 14px;
}

.service-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ---- Calendar ---- */
.datetime-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 40px;
}

.calendar-wrapper {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.calendar-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calendar-nav h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
}

.cal-arrow {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: var(--text-light);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.3rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cal-arrow:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.calendar-days-header {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 8px;
}

.calendar-days-header span {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  padding: 4px 0;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--white);
  font-weight: 500;
}

.cal-day:not(.disabled):not(.empty):hover {
  background: rgba(201, 168, 76, 0.2);
  color: var(--gold);
}

.cal-day.today {
  color: var(--gold);
  font-weight: 700;
}

.cal-day.selected {
  background: var(--gold);
  color: var(--dark);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(201, 168, 76, 0.4);
}

.cal-day.disabled {
  color: var(--dark-4);
  cursor: default;
  opacity: 0.4;
}

.cal-day.empty {
  pointer-events: none;
}

/* ---- Time Slots ---- */
.time-slots-wrapper {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.time-slots-wrapper h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.time-slot {
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: transparent;
  color: var(--text-light);
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.time-slot:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.time-slot.selected {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 700;
}

.selected-datetime {
  margin-top: 8px;
  padding: 12px 16px;
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.dt-confirm-icon {
  font-size: 1rem;
}

/* ---- Booking Form ---- */
.booking-form {
  max-width: 680px;
  margin: 0 auto 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select option {
  background: var(--dark-2);
}

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

.form-whatsapp {
  margin-top: 4px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--text-light);
}

.checkbox-label input[type=checkbox] {
  width: 18px;
  height: 18px;
  accent-color: var(--gold);
  cursor: pointer;
}

/* ---- Booking Nav Buttons ---- */
.booking-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

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

.btn-confirm {
  min-width: 180px;
}

/* ---- Summary Card ---- */
.booking-summary {
  max-width: 660px;
  margin: 0 auto 32px;
}

.summary-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.bk-summary-row {
  display: grid;
  grid-template-columns: 32px 140px 1fr;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  transition: background 0.2s;
}

.bk-summary-row:last-child {
  border-bottom: none;
}

.bk-summary-row:hover {
  background: rgba(201, 168, 76, 0.04);
}

.sum-icon {
  font-size: 1.1rem;
  text-align: center;
}

.sum-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

.sum-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 500;
}

/* ---- Success State ---- */
.booking-success {
  text-align: center;
  padding: 60px 20px;
  animation: fadeUp 0.6s ease;
}

.success-icon {
  font-size: 5rem;
  margin-bottom: 24px;
  animation: bounceIn 0.6s ease;
}

.booking-success h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
}

.booking-success p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.success-ref {
  display: inline-block;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.ref-code {
  color: var(--gold);
  font-family: monospace;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-left: 8px;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }

  70% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---- Light Mode: Booking ---- */
body.light-mode .service-card {
  background: var(--card-bg);
  border-color: var(--border);
}

body.light-mode .service-card:hover {
  border-color: var(--gold);
}

body.light-mode .service-card.selected {
  background: rgba(201, 168, 76, 0.07);
}

body.light-mode .service-card h3 {
  color: var(--text-primary);
}

body.light-mode .service-card p {
  color: var(--text-secondary);
}

body.light-mode .booking-step-header h2 {
  color: var(--text-primary);
}

body.light-mode .booking-step-header p {
  color: var(--text-secondary);
}

body.light-mode .calendar-wrapper,
body.light-mode .time-slots-wrapper {
  background: var(--card-bg);
  border-color: var(--border);
}

body.light-mode .calendar-nav h3 {
  color: var(--text-primary);
}

body.light-mode .cal-arrow {
  background: var(--dark-3);
  color: var(--text-secondary);
  border-color: var(--border);
}

body.light-mode .cal-day {
  color: var(--text-primary);
}

body.light-mode .cal-day.disabled {
  color: var(--text-dim);
}

body.light-mode .cal-day.today {
  color: var(--gold-dark);
}

body.light-mode .cal-day.selected {
  background: var(--gold);
  color: var(--dark);
}

body.light-mode .time-slot {
  color: var(--text-secondary);
  border-color: var(--border);
  background: var(--dark-3);
}

body.light-mode .time-slot:hover {
  border-color: var(--gold-dark);
  color: var(--gold-dark);
}

body.light-mode .time-slot.selected {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

body.light-mode .selected-datetime {
  background: rgba(201, 168, 76, 0.06);
  border-color: rgba(201, 168, 76, 0.2);
  color: var(--text-primary);
}

body.light-mode .form-group label {
  color: var(--text-secondary);
}

body.light-mode .form-group input,
body.light-mode .form-group select,
body.light-mode .form-group textarea {
  background: var(--dark-3);
  border-color: var(--border);
  color: var(--text-primary);
}

body.light-mode .form-group select option {
  background: var(--dark-3);
}

body.light-mode .checkbox-label {
  color: var(--text-secondary);
}

body.light-mode .summary-card {
  background: var(--card-bg);
  border-color: var(--border);
}

body.light-mode .bk-summary-row {
  border-bottom-color: var(--border);
}

body.light-mode .sum-label {
  color: var(--text-dim);
}

body.light-mode .sum-value {
  color: var(--text-primary);
}

body.light-mode .booking-success h2 {
  color: var(--gold-dark);
}

body.light-mode .booking-success p {
  color: var(--text-secondary);
}

body.light-mode .success-ref {
  background: var(--card-bg);
  border-color: var(--border);
  color: var(--text-secondary);
}

body.light-mode .bp-num {
  background: var(--dark-3);
  border-color: var(--dark-3);
  color: var(--text-secondary);
}

body.light-mode .bp-step span {
  color: var(--text-secondary);
}

body.light-mode .bp-line {
  background: var(--dark-3);
}

body.light-mode .booking-step-header h2 {
  color: var(--text-primary);
}

body.light-mode .booking-glass-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(201, 168, 76, 0.2);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.06);
}

body.light-mode #page-booking {
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.1), #fcfcfc 100%);
}

body.light-mode .step-circle {
  background: #f0f0f0;
  border-color: #ddd;
  color: #888;
}

body.light-mode .step-item span {
  color: #888;
}

body.light-mode .step-item.active .step-circle {
  border-color: var(--gold);
  color: var(--gold);
  background: #fff;
}

body.light-mode .step-item.active span {
  color: var(--text-primary);
}

body.light-mode .stepper-track {
  background: #eee;
}

body.light-mode .svc-item-new {
  background: #fff;
  border-color: #eee;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
}

body.light-mode .svc-info h4 {
  color: var(--text-primary);
}

body.light-mode .svc-icon-box {
  background: rgba(201, 168, 76, 0.08);
}

body.light-mode .inner-step-sub h3 {
  color: var(--gold-dark);
}

body.light-mode .fab-name {
  color: var(--text-primary);
}

body.light-mode .fabric-item-card {
  background: #fff;
  border-color: #eee;
}

body.light-mode .cost-preview-box {
  background: #fff;
  border-color: #eee;
}


/* ---- Responsive: Booking ---- */
@media (max-width: 768px) {
  .datetime-container {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .booking-nav {
    flex-direction: column;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }

  .bk-summary-row {
    grid-template-columns: 28px 1fr;
  }

  .sum-value {
    grid-column: 2;
  }

  .booking-progress {
    gap: 0;
  }

  .bp-step span {
    font-size: 0.65rem;
  }
}

/* ========================================================= */
/*  GEOLOCATION BUTTON & STATUS                              */
/* ========================================================= */
.address-input-wrapper {
  display: flex;
  gap: 8px;
  align-items: stretch;
}

.address-input-wrapper input {
  flex: 1;
}

.geo-btn {
  background: var(--gold-dark);
  color: #111;
  border: none;
  font-family: var(--font-main);
  padding: 0 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
  white-space: nowrap;
}

.geo-btn:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.geo-btn.geo-loading {
  opacity: 0.7;
  pointer-events: none;
  animation: pulseLight 1.5s infinite;
}

.geo-btn.geo-done {
  background: #28a745;
  color: white;
}

.geo-status {
  margin-top: 8px;
  font-size: 0.85rem;
  padding: 8px 12px;
  border-radius: 6px;
  display: none;
  transition: opacity 0.5s ease;
}

.geo-info {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.geo-success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
}

.geo-error {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}

/* ========================================================= */
/*  BOOKING STEP 3 SPLIT LAYOUT & FABRIC CHOOSER             */
/* ========================================================= */
.step3-layout {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media(min-width: 900px) {
  .step3-layout {
    flex-direction: row;
    align-items: stretch;
  }

  .step3-left {
    flex: 1.2;
  }

  .step3-right {
    flex: 1;
  }
}

.fabric-chooser-panel {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

[data-theme='light'] .fabric-chooser-panel {
  background: white;
  border-color: rgba(0, 0, 0, 0.1);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.fabric-panel-title {
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.fabric-panel-sub {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.fabric-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ftag {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s;
}

[data-theme='light'] .ftag {
  background: rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.1);
  color: var(--text-dark);
}

.ftag:hover {
  background: rgba(255, 255, 255, 0.1);
}

.ftag.active {
  background: var(--gold-dark);
  color: #111;
  border-color: var(--gold-dark);
}

.fabric-panel-list {
  flex: 1;
  overflow-y: auto;
  max-height: 400px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-right: 8px;
}

.fabric-panel-list::-webkit-scrollbar {
  width: 6px;
}

.fabric-panel-list::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
}

.fabric-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
}

[data-theme='light'] .fabric-item {
  background: #f8f9fa;
  border-color: rgba(0, 0, 0, 0.05);
}

.fabric-item:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-dark);
}

.fabric-item.selected {
  background: rgba(var(--gold-dark-rgb), 0.1);
  border-color: var(--gold-light);
  box-shadow: 0 0 15px rgba(var(--gold-dark-rgb), 0.2);
}

.fi-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.fi-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 6px;
}

.fi-tag {
  font-size: 0.7rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 700;
}

.fi-tag.new {
  background: #e3f2fd;
  color: #1976d2;
}

.fi-tag.hot {
  background: #fff3e0;
  color: #e65100;
}

.fi-tag.disc {
  background: #ffebee;
  color: #c62828;
}

.fi-sales {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fi-sales strong {
  color: var(--gold-light);
}

.fi-price-wrap {
  text-align: right;
}

.fi-price {
  font-weight: 700;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
}

.fi-old {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: line-through;
}

.fabric-selected-info {
  margin-top: 20px;
  padding: 16px;
  background: rgba(var(--gold-dark-rgb), 0.1);
  border: 1px solid var(--gold-dark);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  animation: fadeInUp 0.4s ease forwards;
}

.fsi-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.fsi-name {
  font-weight: 600;
  color: var(--gold-light);
  font-size: 1.1rem;
}

.fsi-clear {
  background: none;
  border: none;
  color: #ff4757;
  font-size: 0.8rem;
  cursor: pointer;
  padding: 4px 8px;
}

.step3-nav {
  margin-top: 30px;
}

/* ========================================================= */
/*  TESTIMONIALS                                             */
/* ========================================================= */
/* Vertical Marquee Testimonials */
.testimonials-section {
  overflow: hidden;
}

.testimonials-marquee-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  height: 700px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  /* Top-Bottom Fade Mask */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.marquee-column {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 320px;
}

.marquee-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: marquee-vertical var(--duration, 20s) linear infinite;
}

@keyframes marquee-vertical {
  from {
    transform: translateY(0);
  }

  to {
    transform: translateY(-50%);
  }
}

.testimonial-card-v {
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

[data-theme='light'] .testimonial-card-v {
  background: #fff;
}

.testimonial-card-v:hover {
  border-color: var(--gold);
  transform: scale(1.02);
}

/* ============ CHECKOUT PAGE STYLES ============ */
.checkout-section {
  padding: 60px 0;
}

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 40px;
  align-items: flex-start;
}

.checkout-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 35px;
  margin-bottom: 30px;
}

.form-h {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-bottom: 25px;
  color: var(--gold);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.full-width {
  grid-column: span 2;
}

.input-group label {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 700;
}

.input-group input,
.input-group select {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  color: white;
  padding: 14px 18px;
  border-radius: 12px;
  outline: none;
  transition: 0.3s;
}

.input-group input:focus {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.05);
}

.payment-methods {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.pay-option input {
  display: none;
}

.pay-box {
  background: rgba(255, 255, 255, 0.03);
  border: 2px solid var(--border);
  padding: 20px;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.pay-option input:checked+.pay-box {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
  color: var(--gold);
}

.submit-order-btn {
  width: 100%;
  padding: 20px;
  font-size: 1.1rem;
  border-radius: 15px;
}

.summary-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 25px;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.summary-totals {
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--text-muted);
}

.grand-total {
  font-size: 1.4rem;
  color: var(--gold);
  font-weight: 900;
  margin-top: 10px;
}

@media (max-width: 1000px) {
  .checkout-grid {
    grid-template-columns: 1fr;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  padding: 20px;
}

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

.modal-container {
  background: var(--dark-2);
  width: 100%;
  max-width: 900px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.5);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.modal-overlay.active .modal-container {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 2rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10;
}

.product-modal-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 768px) {
  .product-modal-grid {
    grid-template-columns: 1fr;
  }
}

.modal-img {
  background: #000;
  height: 100%;
  min-height: 400px;
  position: relative;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-info {
  padding: 40px;
}

/* Cart Drawer */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.cart-drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -450px;
  width: 450px;
  height: 100%;
  background: var(--dark-2);
  z-index: 3001;
  transition: 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  border-left: 1px solid var(--border);
}

.cart-drawer.active {
  right: 0;
}

@media (max-width: 450px) {
  .cart-drawer {
    width: 100%;
    right: -100%;
  }
}

.cart-header {
  padding: 25px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cart-items {
  flex: 1;
  padding: 25px;
  overflow-y: auto;
}

.cart-footer {
  padding: 25px;
  border-top: 1px solid var(--border);
  background: var(--dark-3);
}

.cart-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold);
}

.cart-close {
  font-size: 1.8rem;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* Booking Modal Custom Styles */
.wide-modal {
  max-width: 1000px;
}

.booking-wrapper {
  padding: 40px;
}

.booking-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 30px;
}

.step-indicator {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--text-muted);
}

.step-indicator.active {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(var(--gold-rgb), 0.1);
}

.booking-content {
  min-height: 300px;
}

.tc-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 24px;
}

.tc-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tc-avatar-v {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.tc-name-v {
  font-weight: 700;
  font-size: 0.95rem;
}

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

.testimonial-badge-wrapper {
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.testimonial-badge {
  border: 1px solid var(--border);
  padding: 4px 16px;
  border-radius: 8px;
  font-size: 0.8rem;
  font-weight: 600;
}

.md-show {
  display: none;
}

.lg-show {
  display: none;
}

@media (min-width: 768px) {
  .md-show {
    display: flex;
  }
}

@media (min-width: 1200px) {
  .lg-show {
    display: flex;
  }
}

.testimonials-track-wrapper {
  margin-top: 40px;
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  gap: 24px;
}

.testimonial-card {
  flex: 0 0 calc(100% - 24px);
  max-width: calc(100% - 24px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-top: 4px solid var(--gold-light);
  border-radius: 16px;
  padding: 30px;
  display: flex;
  flex-direction: column;
}

@media(min-width: 768px) {
  .testimonial-card {
    flex: 0 0 calc(50% - 12px);
    max-width: calc(50% - 12px);
  }
}

@media(min-width: 1100px) {
  .testimonial-card {
    flex: 0 0 calc(33.333% - 16px);
    max-width: calc(33.333% - 16px);
  }
}

[data-theme='light'] .testimonial-card {
  background: white;
  border-color: rgba(0, 0, 0, 0.05);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.tc-top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.tc-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  border: 2px solid;
}

.tc-info {
  flex: 1;
}

.tc-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--text-light);
}

[data-theme='light'] .tc-name {
  color: var(--text-dark);
}

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

.tc-stars {
  margin-top: 4px;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.tc-text {
  font-style: italic;
  line-height: 1.7;
  color: var(--text-light);
  opacity: 0.9;
}

[data-theme='light'] .tc-text {
  color: var(--text-dark);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.t-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

[data-theme='light'] .t-dot {
  background: rgba(0, 0, 0, 0.2);
}

.t-dot.active {
  background: var(--gold-light);
  transform: scale(1.3);
}

/* ========================================================= */
/*  CORPORATE CLIENTS                                        */
/* ========================================================= */
.corporate-section {
  background: var(--bg-dark-gradient);
  position: relative;
  overflow: hidden;
}

[data-theme='light'] .corporate-section {
  background: var(--bg-body);
}

.corporate-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.corp-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 24px;
  display: flex;
  gap: 16px;
  align-items: center;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.corp-card:hover {
  transform: translateY(-8px);
  background: var(--bg-surface-2);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

.corp-emoji {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid;
}

.corp-info {
  flex: 1;
}

.corp-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.corp-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.4;
  margin-bottom: 12px;
}

.corp-orders-badge {
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 20px;
  font-weight: 600;
}

.corporate-strip {
  margin-top: 60px;
  background: rgba(var(--gold-dark-rgb), 0.1);
  border-top: 1px solid var(--gold-dark);
  border-bottom: 1px solid var(--gold-dark);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
}

[data-theme='light'] .corporate-strip {
  background: rgba(var(--gold-dark-rgb), 0.05);
}

.corporate-logos {
  display: inline-block;
  animation: scrollLogos 25s linear infinite;
}

.corp-logo-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--text-muted);
  margin: 0 40px;
  opacity: 0.5;
  transition: opacity 0.3s;
}

.corp-logo-item:hover {
  opacity: 1;
}

@keyframes scrollLogos {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Checkout Page Styles (Minimalist Card Redesign) */
.checkout-section {
  background: var(--bg-body);
  padding: 60px 20px;
}

.checkout-grid-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: start;
}

.checkout-left-side,
.checkout-right-side {
  width: 100%;
}

@media (max-width: 900px) {
  .checkout-grid-split {
    grid-template-columns: 1fr;
  }
}

.checkout-card-new {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

[data-theme='light'] .checkout-card-new {
  background: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.checkout-card-header {
  padding: 24px 32px 12px;
}

.card-title-new {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
}

.checkout-card-content {
  padding: 0 32px 32px;
}

.checkout-group {
  margin-top: 24px;
}

.group-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.group-icon {
  font-size: 1rem;
  opacity: 0.6;
}

.group-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
}

.group-text {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 2px;
}

.group-text.secondary {
  font-size: 0.85rem;
  opacity: 0.7;
}

.chk-separator {
  height: 1px;
  width: 100%;
  background: var(--border-color);
  margin: 24px 0;
}

.promo-wrap {
  display: flex;
  gap: 8px;
}

.promo-input {
  flex: 1;
  min-width: 0;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 0.85rem;
  color: var(--text-primary);
}

.btn-redeem {
  background: var(--bg-surface-3);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 0 16px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.btn-redeem:hover {
  background: var(--gold);
  color: var(--dark);
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding-top: 4px;
}

.detail-label {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.detail-val {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-primary);
  text-align: right;
}

.payment-box-new {
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 12px;
  background: var(--bg-surface-2);
  transition: 0.2s;
  font-size: 0.9rem;
}

.payment-option input:checked+.payment-box-new {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.checkout-footer-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 16px 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

[data-theme='light'] .checkout-footer-bar {
  background: white;
}

.total-amount {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--text-primary);
}

.btn-place-order {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 10px;
  padding: 10px 24px;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.btn-place-order:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 80vh;
}

.mt-6 {
  margin-top: 24px;
}

.my-6 {
  margin: 24px 0;
}

.mb-4 {
  margin-bottom: 16px;
}

/* Order Success Page Styles */
.success-container {
  min-height: 80vh;
  padding: 40px 20px;
}

.confirmation-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 24px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.success-icon-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.success-circle {
  width: 80px;
  height: 80px;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  color: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* Floating Corporate Elements */
.corporate-section {
  padding: 100px 0;
  /* Perfectly balanced spacing */
  background: var(--bg-body);
}

.floating-logo-area {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.floating-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: center;
  align-items: center;
}

.floating-bubble {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface-2);
  border: 1px solid var(--border-color);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: transform 0.1s linear, box-shadow 0.3s;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

[data-theme='light'] .floating-bubble {
  background: white;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.floating-bubble img {
  width: 100px;
  height: 100px;
  object-fit: contain;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-bubble:hover {
  box-shadow: 0 20px 45px rgba(201, 168, 76, 0.2);
  z-index: 10;
}

.floating-bubble:hover img {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .floating-bubble {
    width: 110px;
    height: 110px;
  }

  .floating-bubble img {
    width: 70px;
    height: 70px;
  }
}

@keyframes scaleUp {
  from {
    transform: scale(0.5);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

.success-title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.success-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

.order-details-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 20px;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: var(--text-secondary);
}

.order-detail-row:last-child {
  border-bottom: none;
}

.order-detail-row.total {
  font-weight: 800;
  color: var(--gold);
  font-size: 1.1rem;
  padding-top: 16px;
}

.w-full {
  width: 100%;
}

/* ========================================================= */
/*  PRODUCT CARD SALES OVERLAYS                              */
/* ========================================================= */
.product-sales {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: white;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 5;
}

.product-sales strong {
  color: var(--gold-light);
}

/* ========================================================= */
/*  MODERN BOOKING SLIDER & UI                               */
/* ========================================================= */
.booking-section {
  padding: 80px 0;
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .booking-section {
  background: #f9f9f9;
}

.booking-container {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
  position: relative;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-theme="light"] .booking-container {
  background: #ffffff;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.05);
}

.booking-viewport {
  overflow: hidden;
  width: 100%;
  position: relative;
}

.booking-slider {
  display: flex;
  transition: transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  width: 400%;
}

.booking-step {
  flex: 0 0 25%;
  padding: 60px 40px;
  min-height: 550px;
  opacity: 0.2;
  transform: scale(0.95);
  transition: all 0.8s cubic-bezier(0.77, 0, 0.175, 1);
  filter: blur(4px);
}

.booking-step.active {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}

.booking-step-header {
  text-align: center;
  margin-bottom: 40px;
}

.booking-step-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 12px;
}

.booking-footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 50px;
  background: var(--dark-3);
  border-top: 1px solid var(--border);
}

[data-theme="light"] .booking-footer-nav {
  background: #f5f5f5;
}

.booking-footer-nav .btn-primary {
  min-width: 150px;
  border-radius: 50px;
}

.booking-footer-nav .btn-outline {
  border-radius: 50px;
}

.summary-box {
  background: rgba(201, 168, 76, 0.05);
  padding: 30px;
  border-radius: 20px;
  border: 1px dashed var(--gold);
  margin-bottom: 30px;
}

.booking-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
}

@media (max-width: 768px) {
  .booking-slider {
    width: 400%;
  }

  .booking-step {
    padding: 30px 20px;
  }

  .booking-footer-nav {
    padding: 20px;
  }

  .booking-step-header h2 {
    font-size: 1.8rem;
  }
}

/* Review System */
.review-modal-content {
  background: var(--dark-2) !important;
  border: 1px solid var(--border) !important;
}

.star-rating {
  font-size: 2rem;
  color: var(--gold);
  cursor: pointer;
}

.star {
  transition: transform 0.2s;
  display: inline-block;
  padding: 0 4px;
}

.star:hover {
  transform: scale(1.2);
}

.star.filled {
  content: '★';
}

.star-rating .star:before {
  content: '☆';
}

.star-rating .star.active:before {
  content: '★';
}

#review-form input,
#review-form textarea {
  background: var(--dark-3);
  border: 1px solid var(--border);
  color: #fff;
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  transition: var(--transition);
}

#review-form input:focus,
#review-form textarea:focus {
  border-color: var(--gold);
  outline: none;
}

.marquee-column:hover .marquee-content {
  animation-play-state: paused;
}

/* ========================================================= */
/*  BOOKING FORM NEW SPLIT LAYOUT                           */
/* ========================================================= */
.booking-form-split-wrap {
  display: flex;
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  transition: var(--transition);
}

.booking-form-info-side {
  flex: 0.5;
  /* Much narrower sidebar */
  background: linear-gradient(165deg, rgba(var(--gold-rgb), 0.15) 0%, rgba(10, 10, 10, 0.8) 100%);
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}


.booking-form-info-side h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  /* Smaller title to fit narrow side */
  color: var(--gold);
  margin-bottom: 15px;
  line-height: 1.2;
}


.booking-form-info-side p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 250px;
  position: relative;
  z-index: 2;
}

.form-badge-icon {
  font-size: 10rem;
  position: absolute;
  bottom: -20px;
  left: -20px;
  opacity: 0.05;
  transform: rotate(-10deg);
  filter: grayscale(1) brightness(1.5);
  pointer-events: none;
  z-index: 1;
}



.booking-form-inputs-side {
  flex: 1.5;
  /* More room for the form */
  padding: 40px;
  min-width: 0;
}


.form-group {
  margin-bottom: 22px;
  position: relative;
}

.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
  letter-spacing: 1.2px;
  opacity: 0.9;
}

.booking-form-inputs-side input,
.booking-form-inputs-side select,
.booking-form-inputs-side textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.03);
  border: 1.5px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  padding: 12px 18px;
  color: var(--white);
  font-size: 0.95rem;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-family: inherit;
}

.booking-form-inputs-side input:focus,
.booking-form-inputs-side select:focus,
.booking-form-inputs-side textarea:focus {
  background: rgba(var(--gold-rgb), 0.05);
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 25px rgba(var(--gold-rgb), 0.15);
  transform: translateY(-1px);
}

.address-input-wrapper-new {
  display: flex;
  gap: 12px;
  align-items: stretch;
  width: 100%;
}

.address-input-wrapper-new input {
  flex: 1 !important;
  width: 100% !important;
  min-width: 150px !important;
}




.geo-btn-mini {
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  color: var(--gold);
  padding: 0 20px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}


.geo-btn-mini:hover {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.3);
}

.checkbox-label-new {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-size: 0.95rem;
  color: var(--text-light);
  margin-top: 10px;
}

.checkbox-label-new input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--gold);
}

@media (max-width: 800px) {
  .booking-form-split-wrap {
    flex-direction: column;
    border-radius: 20px;
  }

  .booking-form-info-side {
    padding: 40px;
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .booking-form-inputs-side {
    padding: 30px;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }
}


/* ========================================================= */
/*  TRACKING ENHANCEMENTS                                  */
/* ========================================================= */
.tracking-timeline {
  display: flex;
  justify-content: space-between;
  margin: 30px 0;
  position: relative;
  padding: 0 10px;
}

.tracking-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 40px;
  right: 40px;
  height: 3px;
  background: var(--border);
  z-index: 1;
}

.timeline-step {
  position: relative;
  z-index: 2;
  text-align: center;
  flex: 1;
}

.step-dot {
  width: 32px;
  height: 32px;
  background: var(--dark-3);
  border: 3px solid var(--border);
  border-radius: 50%;
  margin: 0 auto 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  transition: all 0.4s ease;
}

.timeline-step.active .step-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.4);
  color: var(--dark);
}

.step-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  text-transform: uppercase;
}

.timeline-step.active .step-label {
  color: var(--gold);
}

.tracking-items-list {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 20px;
  margin-top: 20px;
}

.track-item-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.track-item-row:last-child {
  border-bottom: none;
}

.track-item-name {
  font-weight: 600;
  color: var(--white);
}

.track-item-price {
  color: var(--gold);
}

.tracking-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}

.info-box {
  background: var(--dark-3);
  padding: 15px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.info-box label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 5px;
}

.info-box span {
  font-size: 0.9rem;
  color: var(--white);
  font-weight: 600;
}

@media (max-width: 600px) {
  .tracking-info-grid {
    grid-template-columns: 1fr;
  }

  .tracking-timeline::before {
    left: 20px;
    right: 20px;
  }

  .step-label {
    font-size: 0.6rem;
  }
}

/* ============================================================ */
/*  COMPLETE TRACKING SYSTEM STYLES                          */
/* ============================================================ */

/* --- Hero --- */
.track-page-hero {
  min-height: 300px;
  background: linear-gradient(135deg, var(--dark-1) 0%, var(--dark-2) 50%, rgba(201, 168, 76, 0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.track-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin-bottom: 16px;
}

.track-hero-content p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

.track-hero-badge {
  display: inline-block;
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 6px 20px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 20px;
}

/* --- Search Panel --- */
.track-search-panel {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  max-width: 860px;
  margin: 0 auto;
}

.track-search-inner {
  display: flex;
  gap: 30px;
  align-items: flex-start;
}

.track-search-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
  margin-top: 8px;
}

.track-search-form {
  flex: 1;
}

.track-search-form>label {
  display: block;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.track-input-row {
  display: flex;
  gap: 12px;
}

.track-search-input {
  flex: 1;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: 16px 20px;
  color: var(--white);
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  outline: none;
}

.track-search-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.track-search-btn {
  border-radius: 12px;
  padding: 16px 30px;
  white-space: nowrap;
}

.track-demo-ids {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.demo-id-btn {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  color: var(--gold);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-weight: 600;
}

.demo-id-btn:hover {
  background: rgba(201, 168, 76, 0.2);
}

/* --- Result Card --- */
.track-result-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  max-width: 860px;
  margin: 0 auto;
}

.track-result-header {
  background: var(--dark-3);
  padding: 30px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
}

.track-result-id h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-top: 8px;
}

.track-type-badge {
  padding: 5px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
}

.order-badge {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.booking-badge {
  background: rgba(23, 162, 184, 0.15);
  color: #17a2b8;
  border: 1px solid rgba(23, 162, 184, 0.3);
}

.track-status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.status-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

/* --- Sections --- */
.track-section {
  padding: 30px 40px;
  border-bottom: 1px solid var(--border);
}

.track-section:last-child {
  border-bottom: none;
}

.track-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

/* --- New Timeline --- */
.track-timeline-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
  overflow-x: auto;
  gap: 0;
}

.track-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 80px;
}

.track-step-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--dark-3);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.track-step.done .track-step-dot {
  background: var(--dark-3);
  border-color: var(--gold);
}

.track-step.current .track-step-dot {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
  font-size: 1.1rem;
  animation: stepPulse 2s infinite;
}

@keyframes stepPulse {

  0%,
  100% {
    box-shadow: 0 0 20px rgba(201, 168, 76, 0.5);
  }

  50% {
    box-shadow: 0 0 35px rgba(201, 168, 76, 0.8);
  }
}

.track-step-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-align: center;
  color: var(--text-muted);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  max-width: 80px;
}

.track-step.done .track-step-label,
.track-step.current .track-step-label {
  color: var(--gold);
}

.track-step-line {
  height: 3px;
  flex: 1;
  background: var(--border);
  margin-bottom: 28px;
  min-width: 20px;
  transition: background 0.4s;
}

.track-step-line.done {
  background: var(--gold);
}

/* --- Info Grid --- */
.track-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 16px;
}

.track-info-box {
  background: var(--dark-3);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.track-info-box label {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}

.track-info-box span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
}

/* --- Product Rows --- */
.track-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.track-product-row:last-child {
  border-bottom: none;
}

.track-product-img {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

.track-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.track-product-info {
  flex: 1;
}

.track-product-name {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.track-product-meta {
  display: block;
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 3px;
}

.track-product-price {
  color: var(--gold);
  font-weight: 700;
}

.track-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.track-grand {
  color: var(--gold);
  font-size: 1.2rem;
  font-weight: 800;
}

/* --- History Feed --- */
.track-history {
  position: relative;
  padding-left: 24px;
}

.track-history::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.track-history-item {
  position: relative;
  padding-bottom: 24px;
  padding-left: 20px;
}

.track-history-item:last-child {
  padding-bottom: 0;
}

.history-dot {
  position: absolute;
  left: -20px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--dark-2);
  transition: var(--transition);
}

.track-history-item.latest .history-dot {
  background: var(--gold);
}

.history-status {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.history-note {
  color: var(--text-light);
  font-size: 0.9rem;
}

.history-date {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 4px;
}

/* --- Action Buttons --- */
.track-actions-section {
  background: rgba(201, 168, 76, 0.03);
}

.track-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

.track-action-btn {
  padding: 16px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.track-action-btn.primary {
  background: var(--gold);
  color: var(--dark);
}

.track-action-btn.primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.3);
}

.track-action-btn.success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.track-action-btn.success:hover {
  background: rgba(40, 167, 69, 0.2);
  transform: translateY(-2px);
}

.track-action-btn.secondary {
  background: var(--dark-3);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.track-action-btn.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.track-action-btn.danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.track-action-btn.danger:hover {
  background: rgba(220, 53, 69, 0.2);
  transform: translateY(-2px);
}

.track-action-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  text-align: center;
  margin-top: 12px;
}

.track-action-done {
  background: rgba(40, 167, 69, 0.1);
  border: 1px solid rgba(40, 167, 69, 0.3);
  color: #28a745;
  padding: 20px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
}

/* --- Empty / Not Found --- */
.track-empty {
  text-align: center;
  padding: 60px 20px;
  max-width: 860px;
  margin: 0 auto;
}

.track-empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
}

.track-empty h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.track-empty p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 40px;
}

.track-how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.track-how-card {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px 20px;
  transition: var(--transition);
}

.track-how-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}

.how-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.track-how-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.track-how-card p {
  color: var(--text-light);
  font-size: 0.85rem;
}

.track-not-found {
  background: rgba(255, 60, 60, 0.06);
  border: 1px solid rgba(255, 60, 60, 0.2);
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.track-not-found h3 {
  font-size: 1.5rem;
  margin: 16px 0 10px;
}

.track-not-found p {
  color: var(--text-light);
}

/* --- Delivery Modal --- */
.delivery-modal-box {
  max-width: 520px;
  border-radius: 24px;
  background: var(--dark-2);
  border: 1px solid var(--border);
}

.delivery-modal-header {
  text-align: center;
  padding: 30px 40px 20px;
  border-bottom: 1px solid var(--border);
}

.delivery-modal-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin: 12px 0 8px;
}

.delivery-modal-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.form-control-styled {
  width: 100%;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  color: var(--white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
  outline: none;
  resize: vertical;
}

.form-control-styled:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

/* --- Responsive --- */
@media (max-width: 768px) {
  .track-search-inner {
    flex-direction: column;
    gap: 16px;
  }

  .track-input-row {
    flex-direction: column;
  }

  .track-search-input,
  .track-search-btn {
    width: 100%;
  }

  .track-result-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    padding: 24px;
  }

  .track-section {
    padding: 24px 20px;
  }

  .track-actions-grid {
    grid-template-columns: 1fr;
  }

  .track-how-grid {
    grid-template-columns: 1fr;
  }

  .track-hero-content h1 {
    font-size: 2rem;
  }

  .delivery-modal-box {
    margin: 10px;
  }
}

/* ============================================================ */
/*  TRACKING SYSTEM V2 — PREMIUM DESIGN                        */
/* ============================================================ */

/* ---- Hero V2 ---- */
.track-page-hero-v2 {
  min-height: 380px;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 60%, rgba(201, 168, 76, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 20px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

.track-hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 168, 76, 0.04) 0%, transparent 40%);
  pointer-events: none;
}

.track-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.track-hero-badge-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 50px;
  padding: 8px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  animation: fadeUp 0.6s ease 0.1s both;
}

.track-hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  animation: fadeUp 0.6s ease 0.2s both;
}

.track-hero-title span {
  color: var(--gold);
}

.track-hero-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
  animation: fadeUp 0.6s ease 0.3s both;
}

.track-hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px 40px;
  backdrop-filter: blur(10px);
  animation: fadeUp 0.6s ease 0.4s both;
}

.ths {
  text-align: center;
  padding: 0 36px;
}

.ths-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.ths-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.ths-divider {
  width: 1px;
  min-height: 50px;
  background: var(--border);
  flex-shrink: 0;
}

/* ---- Main Section ---- */
.track-main-section {
  padding-top: 50px;
}

/* ---- Search Panel V2 ---- */
.track-search-panel-v2 {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 168, 76, 0.06);
  max-width: 900px;
  margin: 0 auto;
  transition: box-shadow 0.3s ease;
}

.track-search-panel-v2:focus-within {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 2px rgba(201, 168, 76, 0.3);
}

.tsp-top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 36px 40px 28px;
}

.tsp-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 4px;
}

.tsp-form {
  flex: 1;
}

.tsp-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.tsp-row {
  display: flex;
  gap: 12px;
}

.tsp-input {
  flex: 1;
  background: var(--dark-3);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 16px 22px;
  color: var(--white);
  font-size: 1.05rem;
  font-family: inherit;
  outline: none;
  transition: all 0.3s ease;
}

.tsp-input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.03);
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

.tsp-input::placeholder {
  color: var(--text-muted);
}

.tsp-search-btn {
  background: var(--gold);
  color: var(--dark);
  border: none;
  border-radius: 14px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  font-family: inherit;
}

.tsp-search-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 168, 76, 0.35);
}

.tsp-recent {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  min-height: 0;
}

.tsp-recent-pill {
  background: var(--dark-4);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 4px 14px;
  font-size: 0.78rem;
  color: var(--text-light);
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}

.tsp-recent-pill:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.tsp-demos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  background: var(--dark-3);
  padding: 16px 40px;
  border-top: 1px solid rgba(201, 168, 76, 0.08);
}

.tsp-demo-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
}

.tsp-demo-pill {
  background: rgba(201, 168, 76, 0.08);
  border: 1px solid rgba(201, 168, 76, 0.2);
  color: var(--gold);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.25s;
  font-weight: 600;
  font-family: inherit;
}

.tsp-demo-pill:hover {
  background: rgba(201, 168, 76, 0.18);
  transform: translateY(-1px);
}

/* ---- Empty State V2 ---- */
.track-empty-v2 {
  max-width: 900px;
  margin: 0 auto;
}

.tev-hero {
  text-align: center;
  padding: 50px 20px 40px;
}

.tev-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

.tev-hero h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}

.tev-hero p {
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto;
}

.tev-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.tev-step {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px 24px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  max-width: 260px;
  position: relative;
  transition: all 0.3s ease;
}

.tev-step:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
  box-shadow: 0 15px 40px rgba(201, 168, 76, 0.12);
}

.tev-step-num {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-weight: 800;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tev-step-icon {
  font-size: 2rem;
  margin-bottom: 12px;
}

.tev-step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tev-step p {
  color: var(--text-light);
  font-size: 0.85rem;
  line-height: 1.5;
}

.tev-arrow {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 60px;
  flex-shrink: 0;
  opacity: 0.6;
}

.tev-whatsapp-box {
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(37, 211, 102, 0.06);
  border: 1px solid rgba(37, 211, 102, 0.2);
  border-radius: 20px;
  padding: 24px 30px;
}

.tev-wa-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tev-wa-text {
  flex: 1;
}

.tev-wa-text strong {
  display: block;
  font-weight: 700;
  margin-bottom: 4px;
}

.tev-wa-text p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

.tev-wa-btn {
  background: #25d366;
  color: white;
  border: none;
  border-radius: 14px;
  padding: 12px 24px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s;
  white-space: nowrap;
}

.tev-wa-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ---- Result Card V2 ---- */
.track-result-card-v2 {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  max-width: 900px;
  margin: 0 auto;
}

.trc-header {
  background: var(--dark-3);
  padding: 32px 40px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 20px;
}

.trc-id-block {
  flex: 1;
}

.trc-type-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.trc-type-tag.order {
  background: rgba(201, 168, 76, 0.12);
  color: var(--gold);
  border: 1px solid rgba(201, 168, 76, 0.25);
}

.trc-type-tag.booking {
  background: rgba(23, 162, 184, 0.12);
  color: #17a2b8;
  border: 1px solid rgba(23, 162, 184, 0.25);
}

.trc-id-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
}

.trc-submitted {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 6px;
}

.trc-status-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
}

.trc-pulse {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  animation: pulseGreen 2s infinite;
}

/* Progress Bar */
.trc-progress-section {
  padding: 36px 40px 28px;
  border-bottom: 1px solid var(--border);
}

.trc-progress-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
  margin-bottom: 14px;
  display: flex;
  justify-content: space-between;
}

.trc-progress-bar-wrap {
  background: var(--dark-4);
  border-radius: 50px;
  height: 8px;
  overflow: visible;
  margin-bottom: 28px;
  position: relative;
}

.trc-progress-bar {
  height: 100%;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--gold-dark) 0%, var(--gold) 60%, var(--gold-light) 100%);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.trc-progress-bar::after {
  content: '';
  position: absolute;
  right: -4px;
  top: -4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px rgba(201, 168, 76, 0.7);
}

.trc-steps {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.trc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.trc-step-dot {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark-4);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.5s ease;
  z-index: 2;
}

.trc-step.done .trc-step-dot {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold);
  color: var(--gold);
}

.trc-step.current .trc-step-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
  animation: stepPulse 2s infinite;
}

.trc-step-conn {
  flex: 1;
  height: 3px;
  background: var(--border);
  margin-top: 22px;
  transition: background 0.5s 0.3s;
}

.trc-step-conn.done {
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.trc-step-text {
  margin-top: 10px;
  text-align: center;
}

.trc-step-name {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  max-width: 72px;
  line-height: 1.3;
}

.trc-step.done .trc-step-name,
.trc-step.current .trc-step-name {
  color: var(--gold);
}

.trc-step-date {
  font-size: 0.6rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Generic sections */
.trc-section {
  padding: 28px 40px;
  border-bottom: 1px solid var(--border);
}

.trc-section:last-child {
  border-bottom: none;
}

.trc-section-title {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}

/* Info Grid */
.trc-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(175px, 1fr));
  gap: 14px;
}

.trc-info-box {
  background: var(--dark-3);
  padding: 16px 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
  transition: all 0.25s;
}

.trc-info-box:hover {
  border-color: rgba(201, 168, 76, 0.3);
}

.trc-info-box label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gold);
  margin-bottom: 6px;
}

.trc-info-box span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

/* Product Rows */
.trc-product-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.trc-product-row:last-child {
  border-bottom: none;
}

.trc-product-img {
  width: 62px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
}

.trc-product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trc-product-info {
  flex: 1;
}

.trc-product-name {
  display: block;
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.trc-product-meta {
  color: var(--text-muted);
  font-size: 0.8rem;
}

.trc-product-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 1rem;
}

.trc-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-weight: 700;
}

.trc-grand {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 800;
}

/* History */
.trc-history {
  position: relative;
  padding-left: 28px;
}

.trc-history::before {
  content: '';
  position: absolute;
  left: 10px;
  top: 8px;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.trc-history-item {
  position: relative;
  padding-bottom: 26px;
}

.trc-history-item:last-child {
  padding-bottom: 0;
}

.trc-history-dot {
  position: absolute;
  left: -22px;
  top: 5px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--border);
  border: 2px solid var(--dark-2);
  transition: all 0.3s;
}

.trc-history-item.latest .trc-history-dot {
  background: var(--gold);
  box-shadow: 0 0 8px rgba(201, 168, 76, 0.5);
}

.trc-history-status {
  font-weight: 700;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.trc-history-note {
  color: var(--text-light);
  font-size: 0.85rem;
}

.trc-history-date {
  color: var(--text-muted);
  font-size: 0.75rem;
  margin-top: 4px;
}

/* Action Buttons V2 */
.trc-actions-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 6px;
}

.trc-action-btn {
  padding: 16px 20px;
  border-radius: 16px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.trc-action-btn.primary {
  background: var(--gold);
  color: var(--dark);
}

.trc-action-btn.primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}

.trc-action-btn.success {
  background: rgba(40, 167, 69, 0.1);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.trc-action-btn.success:hover {
  background: rgba(40, 167, 69, 0.2);
  transform: translateY(-2px);
}

.trc-action-btn.secondary {
  background: var(--dark-3);
  color: var(--text-light);
  border: 1px solid var(--border);
}

.trc-action-btn.secondary:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

.trc-action-btn.danger {
  background: rgba(220, 53, 69, 0.1);
  color: #dc3545;
  border: 1px solid rgba(220, 53, 69, 0.3);
}

.trc-action-btn.danger:hover {
  background: rgba(220, 53, 69, 0.2);
  transform: translateY(-2px);
}

.trc-action-btn.wa {
  background: rgba(37, 211, 102, 0.1);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.trc-action-btn.wa:hover {
  background: rgba(37, 211, 102, 0.2);
  transform: translateY(-2px);
}

.trc-action-done {
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid rgba(40, 167, 69, 0.25);
  color: #28a745;
  padding: 20px;
  border-radius: 16px;
  text-align: center;
  font-weight: 600;
}

.trc-action-note {
  color: var(--text-muted);
  font-size: 0.78rem;
  margin-top: 12px;
  text-align: center;
}

/* ETA Bar */
.trc-eta-bar {
  background: rgba(201, 168, 76, 0.06);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 16px;
  padding: 18px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trc-eta-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trc-eta-icon {
  font-size: 2rem;
}

.trc-eta-text strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.trc-eta-text span {
  color: var(--text-muted);
  font-size: 0.82rem;
}

.trc-eta-countdown {
  text-align: right;
}

.trc-eta-days {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.trc-eta-days-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 2px;
}

/* Not Found */
.trc-not-found {
  background: rgba(255, 60, 60, 0.05);
  border: 1px solid rgba(255, 60, 60, 0.15);
  border-radius: 24px;
  padding: 60px 30px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.trc-not-found h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  margin: 16px 0 12px;
}

.trc-not-found p {
  color: var(--text-light);
  margin-bottom: 8px;
}

/* Rate Modal */
.rate-modal-box {
  max-width: 480px;
  border-radius: 28px;
  background: var(--dark-2);
  border: 1px solid var(--border);
}

.rate-stars-row {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 4px;
}

.rate-star {
  font-size: 2.4rem;
  cursor: pointer;
  color: var(--border);
  transition: all 0.2s;
  user-select: none;
  line-height: 1;
}

.rate-star.active {
  color: var(--gold);
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

.rate-star:hover {
  transform: scale(1.15);
}

/* Responsive v2 */
@media (max-width: 768px) {
  .track-hero-stats {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }

  .ths-divider {
    width: 60px;
    height: 1px;
    min-height: unset;
  }

  .ths {
    padding: 0;
  }

  .tsp-top {
    flex-direction: column;
    padding: 24px;
    gap: 16px;
  }

  .tsp-row {
    flex-direction: column;
  }

  .tsp-search-btn {
    justify-content: center;
    width: 100%;
  }

  .tsp-demos {
    padding: 16px 24px;
  }

  .tsp-icon-wrap {
    display: none;
  }

  .tev-steps {
    flex-direction: column;
    align-items: center;
  }

  .tev-arrow {
    margin-top: 0;
    transform: rotate(90deg);
  }

  .tev-whatsapp-box {
    flex-direction: column;
    text-align: center;
  }

  .tev-wa-btn {
    width: 100%;
  }

  .trc-header {
    padding: 24px 20px;
  }

  .trc-progress-section,
  .trc-section {
    padding: 24px 20px;
  }

  .trc-id-num {
    font-size: 1.5rem;
  }

  .trc-actions-grid {
    grid-template-columns: 1fr;
  }

  .trc-steps {
    overflow-x: auto;
    gap: 0;
  }

  .trc-step {
    min-width: 72px;
  }

  .trc-step-conn {
    min-width: 20px;
  }
}

/* Light mode */
body.light-mode .track-page-hero-v2 {
  background: linear-gradient(135deg, var(--bg-surface) 0%, var(--bg-surface-2) 60%, rgba(201, 168, 76, 0.08) 100%);
}

body.light-mode .track-search-panel-v2 {
  background: var(--card-bg);
}

body.light-mode .tsp-input {
  background: var(--bg-body);
  color: var(--text-primary);
}

body.light-mode .tsp-input::placeholder {
  color: var(--text-dim);
}

body.light-mode .tsp-demos {
  background: var(--bg-surface-2);
}

body.light-mode .track-result-card-v2 {
  background: var(--card-bg);
}

body.light-mode .trc-header {
  background: var(--bg-surface-2);
}

body.light-mode .trc-info-box {
  background: var(--bg-surface-2);
}

body.light-mode .trc-info-box span {
  color: var(--text-primary);
}

body.light-mode .trc-step-dot {
  background: var(--bg-surface-2);
}

body.light-mode .trc-progress-bar-wrap {
  background: var(--bg-surface-2);
}

body.light-mode .tev-step {
  background: var(--card-bg);
}

body.light-mode .rate-modal-box {
  background: var(--card-bg);
}

body.light-mode .trc-action-btn.secondary {
  background: var(--bg-surface-2);
}

body.light-mode .trc-history-dot {
  border-color: var(--card-bg);
}

body.light-mode .tsp-recent-pill {
  background: var(--bg-surface-2);
}

/* --- Advanced Map & Services V2 --- */
.map-v2-hero {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 5%;
}

.map-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.map-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(16, 16, 16, 0.3) 0%, var(--dark) 100%);
}

.map-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 800px;
  padding-top: 60px;
}

.store-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--white);
  margin-bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.map-hero-content h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.map-hero-content h1 span {
  color: var(--gold);
}

.store-address {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 24px;
}

.store-ratings {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.store-ratings .stars {
  color: #fbbc04;
  font-size: 1.4rem;
  letter-spacing: 2px;
}

.store-ratings .rating-score {
  font-weight: 800;
  font-size: 1.2rem;
}

.rating-reviews {
  color: var(--text-muted);
  text-decoration: underline;
  font-size: 0.9rem;
}

.rating-reviews:hover {
  color: var(--white);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

/* Interactive Route Panel */
/* Store Schedule Chart */
.store-schedule-wrapper {
  background: var(--dark-2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 30px;
  margin: 40px auto;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  max-width: 700px;
}

.schedule-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.schedule-icon {
  font-size: 2.5rem;
  color: var(--gold);
}

.schedule-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  margin-bottom: 4px;
}

.schedule-header p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.schedule-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.schedule-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 12px;
  transition: background 0.3s;
  background: rgba(255, 255, 255, 0.02);
}

.schedule-row:hover {
  background: rgba(201, 168, 76, 0.05);
  border-color: var(--gold);
}

.schedule-row.highlight {
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.s-day {
  font-weight: 700;
  font-size: 0.95rem;
  width: 120px;
}

.s-time {
  flex: 1;
  color: var(--text-light);
  text-align: center;
  font-variant-numeric: tabular-nums;
}

.s-status {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  width: 110px;
  text-align: center;
}

.s-status.open {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
  border: 1px solid rgba(40, 167, 69, 0.3);
}

.s-status.half {
  background: rgba(255, 193, 7, 0.15);
  color: #ffc107;
  border: 1px solid rgba(255, 193, 7, 0.3);
}

body.light-mode .store-schedule-wrapper {
  background: var(--bg-surface-2);
}

body.light-mode .schedule-row {
  background: var(--card-bg);
}

body.light-mode .schedule-row.highlight {
  background: rgba(201, 168, 76, 0.15);
}

.route-panel-v2 {
  background: var(--dark-2);
  border: 1px solid var(--gold);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 40px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.route-panel-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.route-panel-header h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--gold);
}

.close-route {
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}

.close-route:hover {
  color: var(--white);
}

.route-stats {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.rs-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rs-icon {
  font-size: 2rem;
}

.rs-info label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.rs-info h4 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}

.route-msg {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-light);
  font-style: italic;
}

/* 3D Simulated Road */
.sim-road-wrapper {
  position: relative;
  height: 100px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 0 20px;
  border: 1px solid rgba(201, 168, 76, 0.2);
  transform: perspective(600px) rotateX(40deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  margin-top: 10px;
  transform-style: preserve-3d;
}

.sim-marker-start,
.sim-marker-end {
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--dark-3);
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 2;
  transform: rotateX(-40deg);
  border: 1px solid var(--gold);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}

.sim-road-line {
  flex: 1;
  height: 8px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  background-size: 40px 100%;
  animation: moveRoad 1.5s linear infinite;
  margin: 0 20px;
  position: relative;
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.6);
}

@keyframes moveRoad {
  from {
    background-position: 0 0;
  }

  to {
    background-position: -40px 0;
  }
}

.sim-car-moving {
  position: absolute;
  top: -30px;
  left: 0;
  font-size: 2.2rem;
  filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.6));
  transition: left 4s cubic-bezier(0.25, 0.1, 0.25, 1);
  transform: rotateX(-40deg) rotateY(15deg);
}

/* Service Matrix */
.services-matrix-v2 {
  margin-top: 20px;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}

.matrix-card {
  background: var(--dark-2);
  border-radius: 24px;
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
}

.matrix-card:hover {
  transform: translateY(-8px);
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.highlight-card {
  border: 1px solid var(--gold);
  box-shadow: 0 10px 30px rgba(201, 168, 76, 0.1);
  position: relative;
}

.matrix-img {
  height: 220px;
  overflow: hidden;
}

.matrix-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s;
}

.matrix-card:hover .matrix-img img {
  transform: scale(1.05);
}

.matrix-body {
  padding: 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.matrix-badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-light);
}

.matrix-badge.gold {
  background: var(--gold);
  color: var(--dark);
}

.matrix-badge.outline {
  border: 1px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.matrix-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.matrix-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.matrix-perks {
  list-style: none;
  padding: 0;
  margin: 0 0 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
}

.matrix-perks li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.matrix-perks li:last-child {
  margin-bottom: 0;
}

body.light-mode .map-hero-overlay {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.1) 0%, var(--bg-body) 100%);
}

body.light-mode .map-hero-content h1 {
  text-shadow: none;
  color: var(--dark);
}

body.light-mode .store-badge {
  border-color: var(--dark-3);
  color: var(--dark);
}

body.light-mode .store-address {
  color: var(--dark-2);
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.8);
}

body.light-mode .sim-marker-start,
body.light-mode .sim-marker-end {
  background: var(--white);
  border: 1px solid var(--border);
}

body.light-mode .matrix-card {
  background: var(--card-bg);
  border-color: var(--border);
}

body.light-mode .route-panel-v2 {
  background: var(--bg-surface-2);
  border-color: var(--gold);
}

@media (max-width: 992px) {
  .matrix-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 40px auto;
  }

  .map-hero-content h1 {
    font-size: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
  }
}

/* ========================================================= */
/*  BOOKING STEP 3 - PREMIUM 3-COLUMN GRID                  */
/* ========================================================= */

.step3-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-top: 30px;
  width: 100%;
  box-sizing: border-box;
}

@media (max-width: 1200px) {
  .step3-grid-3 {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}

@media (max-width: 800px) {
  .step3-grid-3 {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* Removed previous 900px breakpoint as 1100px handles stacking */


.s3-card {
  background: var(--dark-2);
  border: 1px solid rgba(var(--gold-rgb), 0.2);
  border-radius: 28px;
  padding: 36px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.s3-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(var(--gold-rgb), 0.3);
}


/* Col 1: Sidebar Info */
.s3-card-info {
  background: linear-gradient(145deg, rgba(var(--gold-rgb), 0.15) 0%, rgba(var(--gold-rgb), 0.04) 40%, rgba(10, 10, 10, 0.85) 100%);
  border-color: rgba(var(--gold-rgb), 0.35);
  text-align: left;
}

.s3-card-info::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  border-radius: 28px 28px 0 0;
}

.s3-card-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--gold);
  margin-bottom: 15px;
}

.s3-card-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.s3-info-icon {
  font-size: 5rem;
  color: var(--gold);
  opacity: 0.1;
  position: absolute;
  bottom: -10px;
  right: -10px;
  transform: rotate(-10deg);
}

.s3-tips {
  margin-top: 25px;
  list-style: none;
  padding: 0;
}

.s3-tips li {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Col 2: Form Input */
.s3-card-form {
  background: var(--dark-2);
  border-color: rgba(100, 160, 255, 0.2);
}

.s3-card-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #4f8ef7, #8ab4f8, #4f8ef7);
  border-radius: 28px 28px 0 0;
}

/* Col 3: Fabric */
.s3-col-fabrics .s3-card {
  border-color: rgba(16, 185, 129, 0.25);
}

.s3-col-fabrics .s3-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #10b981, #34d399, #10b981);
  border-radius: 28px 28px 0 0;
}

/* Light mode overrides for Step 3 cards */
body.light-mode .s3-card {
  background: #ffffff;
  border-color: rgba(var(--gold-rgb), 0.25);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

body.light-mode .s3-card-info {
  background: linear-gradient(145deg, rgba(var(--gold-rgb), 0.08) 0%, rgba(var(--gold-rgb), 0.02) 60%, #ffffff 100%);
}

body.light-mode .s3-card-form {
  background: #fafafa;
}



.s3-col-form .form-group label {
  font-size: 0.75rem;
  letter-spacing: 1px;
}

.s3-col-form .booking-form-new input,
.s3-col-form .booking-form-new select,
.s3-col-form .booking-form-new textarea {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px 16px;
  transition: all 0.3s;
}

.s3-col-form .booking-form-new input:focus {
  border-color: var(--gold);
  background: rgba(var(--gold-rgb), 0.05);
  box-shadow: 0 0 15px rgba(var(--gold-rgb), 0.1);
}

/* Force hide any blocking drawers globally unless active */
.cart-drawer,
.cart-sidebar,
.cart-drawer-overlay,
.sidebar {
  display: none;
}

.cart-drawer.active,
.cart-sidebar.active,
.cart-drawer-overlay.active {
  display: block;
}

/* Col 3: Fabrics */
.s3-col-fabrics {
  min-width: 0;
  /* Prevents flex/grid squashing */
}



.fabric-panel-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 5px;
}

.fabric-panel-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.fabric-filter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.ftag {
  font-size: 0.75rem;
  padding: 6px 14px;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s;
}

.ftag.active {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}

.fabric-panel-list {
  max-height: 450px;
  /* Increased height for better visibility */
  overflow-y: auto;
  padding-right: 8px;
}


.fabric-panel-list::-webkit-scrollbar {
  width: 4px;
}

.fabric-panel-list::-webkit-scrollbar-thumb {
  background: rgba(var(--gold-rgb), 0.3);
  border-radius: 10px;
}

.fabric-item {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 12px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid transparent;
  border-radius: 16px;
  margin-bottom: 10px;
  cursor: pointer;
  transition: all 0.3s;
}

.fabric-item:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(var(--gold-rgb), 0.3);
}

.fabric-item.selected {
  background: rgba(var(--gold-rgb), 0.1);
  border-color: var(--gold);
}

.fi-img-wrap {
  width: 50px;
  height: 50px;
  border-radius: 8px;
  overflow: hidden;
}

.fi-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fi-name {
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fi-meta {
  display: flex;
  gap: 6px;
  margin-top: 4px;
}

.fi-tag {
  font-size: 0.6rem;
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 800;
  text-transform: uppercase;
}

.fi-tag.new {
  background: #3b82f6;
  color: #fff;
}

.fi-tag.hot {
  background: #ef4444;
  color: #fff;
}

.fi-tag.disc {
  background: #10b981;
  color: #fff;
}

.fi-price-wrap {
  text-align: right;
  flex-shrink: 0;
  min-width: 70px;
}

.fi-price {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.fi-old {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.7rem;
}

.fabric-selected-info {
  margin-top: 20px;
  padding: 15px;
  background: rgba(var(--gold-rgb), 0.05);
  border-radius: 12px;
  border: 1px dashed var(--gold);
}

.fsi-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
}

.fsi-price {
  color: var(--gold);
  font-size: 0.85rem;
}

.fsi-clear {
  margin-top: 10px;
  padding: 6px 12px;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid #ef4444;
  color: #ef4444;
}

.step3-nav-final {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--border);
}

.step3-nav-final button {
  min-width: 200px;
  padding: 18px 30px;
  font-size: 1rem;
}

/* ======================================================
   PREMIUM REDESIGNED BOOKING (GLASSMORPHISM)
   ====================================================== */
#page-booking {
  background: radial-gradient(circle at top right, rgba(201, 168, 76, 0.05), transparent 40%),
    radial-gradient(circle at bottom left, rgba(201, 168, 76, 0.05), transparent 40%);
  padding-top: 100px;
}

.booking-redesign-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px;
}

.booking-glass-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-top: 40px;
}

/* Stepper */
.booking-stepper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  max-width: 600px;
  margin: 0 auto 40px;
}

.stepper-track {
  position: absolute;
  top: 25px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.stepper-progress {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: var(--gold);
  width: 0%;
  transition: width 0.4s ease;
}

.step-item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.step-circle {
  width: 50px;
  height: 50px;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: var(--text-muted);
  transition: all 0.3s ease;
}

.step-item.active .step-circle {
  border-color: var(--gold);
  color: var(--gold);
  box-shadow: 0 0 20px rgba(201, 168, 76, 0.3);
  transform: scale(1.1);
}

.step-item.done .step-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

.step-item span {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.step-item.active span {
  color: var(--white);
  font-weight: 600;
}

/* Service Grid Redesign */
.booking-grid-unified {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 40px;
}

@media (max-width: 900px) {
  .booking-grid-unified {
    grid-template-columns: 1fr;
  }
}

.svc-item-new {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 12px;
}

.svc-item-new:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateX(10px);
}

.svc-item-new.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.svc-icon-box {
  width: 50px;
  height: 50px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.svc-info h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}

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

/* Calendar Unified Refined */
.cal-container-unified {
  padding: 20px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.cal-month-header-unified {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.calendar-grid-unified {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.cal-day-unified {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cal-day-unified:hover:not(.disabled) {
  background: rgba(255, 255, 255, 0.1);
}

.cal-day-unified.selected {
  background: var(--gold);
  color: var(--dark);
  font-weight: bold;
}

.cal-day-unified.today {
  border: 1px solid var(--gold);
  color: var(--gold);
}

/* Time Slots Redesign */
.time-slots-unified {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
  gap: 10px;
  margin-top: 20px;
}

.time-chip {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.2s;
}

.time-chip:hover {
  background: rgba(255, 255, 255, 0.1);
}

.time-chip.selected {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: bold;
}

/* Summary Box */
.booking-summary-unified {
  background: rgba(201, 168, 76, 0.05);
  border: 1px dashed rgba(201, 168, 76, 0.3);
  border-radius: 20px;
  padding: 20px;
  margin-top: 30px;
}

.booking-header-redesign {
  text-align: center;
  margin-bottom: 30px;
}

.booking-header-redesign h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--gold);
  margin-bottom: 10px;
}

.booking-header-redesign p {
  color: var(--text-muted);
}

.step-inner-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: var(--white);
  position: relative;
  padding-bottom: 10px;
}

.step-inner-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--gold);
}

.btn-primary-redesign {
  background: linear-gradient(135deg, var(--gold), #b38f2d);
  color: var(--dark);
  border: none;
  padding: 16px 32px;
  border-radius: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  width: 100%;
  margin-top: 20px;
  box-shadow: 0 10px 20px -5px rgba(201, 168, 76, 0.4);
}

.btn-primary-redesign:hover:not(:disabled) {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px -5px rgba(201, 168, 76, 0.5);
}

.btn-primary-redesign:disabled {
  background: #333;
  color: #666;
  cursor: not-allowed;
  box-shadow: none;
}

.booking-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.form-group-redesign {
  margin-bottom: 24px;
}

.form-group-redesign label {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.form-group-redesign input,
.form-group-redesign select,
.form-group-redesign textarea {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 18px;
  border-radius: 14px;
  color: var(--white);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group-redesign input:focus {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.input-with-action {
  display: flex;
  gap: 10px;
}

.btn-geo {
  background: rgba(201, 168, 76, 0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
  padding: 0 15px;
  border-radius: 14px;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.btn-geo:hover {
  background: var(--gold);
  color: var(--dark);
}

.form-actions-redesign,
.form-actions-center {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.form-actions-center {
  justify-content: center;
}

.btn-secondary-redesign {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 16px;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary-redesign:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* Success Animation */
.success-animation-box {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.checkmark-svg {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: block;
  stroke-width: 2;
  stroke: #fff;
  stroke-miterlimit: 10;
  box-shadow: inset 0px 0px 0px #7ac142;
  animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
}

.checkmark-circle {
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-width: 2;
  stroke-miterlimit: 10;
  stroke: #7ac142;
  fill: none;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes scale {

  0%,
  100% {
    transform: none;
  }

  50% {
    transform: scale3d(1.1, 1.1, 1);
  }
}

@keyframes fill {
  100% {
    box-shadow: inset 0px 0px 0px 80px #7ac142;
  }
}

.success-ref-box {
  background: rgba(255, 255, 255, 0.05);
  padding: 15px 25px;
  border-radius: 16px;
  margin: 20px 0 40px;
}

.ref-label {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-right: 10px;
}

.ref-id {
  color: var(--gold);
  font-weight: bold;
  font-family: monospace;
  font-size: 1.2rem;
}

/* Summary Grid Redesign */
/* Fabric Item Card with Images */
.fabric-item-card {
  display: flex;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 12px;
  margin-bottom: 2px;
}

.fab-img-wrap {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.fab-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fab-badge {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 0.55rem;
  padding: 2px 6px;
  border-radius: 0 0 8px 0;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
}

.fab-badge.hot {
  background: #ff4d4d;
}

.fab-badge.new {
  background: #00d2ff;
}

.fab-badge.sale {
  background: #2ecc71;
}

.fab-badge.premium {
  background: var(--gold);
  color: var(--dark);
}

.fab-badge.best {
  background: #f1c40f;
  color: var(--dark);
}

.fab-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fab-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 5px;
  font-size: 0.7rem;
  color: var(--text-muted);
}

.fab-rating {
  color: #f1c40f;
  font-weight: 600;
}

/* Step 4 Professional Invoice Design */
.booking-summary-redesign {
  max-width: 700px;
  margin: 0 auto 40px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.booking-summary-redesign::before {
  content: 'INVOICE / SUMMARY';
  position: absolute;
  top: 20px;
  right: -30px;
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--dark);
  font-size: 0.6rem;
  font-weight: 900;
  padding: 5px 40px;
}

.summary-grid-redesign {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.summary-item-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(255, 255, 255, 0.05);
  background: transparent;
  border-radius: 0;
}

.summary-item-new:last-child {
  border-bottom: none;
  margin-top: 10px;
  padding-top: 25px;
}

.summary-item-new .si-icon {
  display: none;
  /* Hide icons for a cleaner table look */
}

.summary-item-new .si-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.summary-item-new .si-label {
  font-size: 0.9rem;
  color: var(--text-muted);
  text-transform: none;
}

.summary-item-new .si-value {
  font-size: 1rem;
  color: var(--white);
  font-weight: 600;
}

/* Highlighted Total row in summary */
.summary-item-new:nth-last-child(1) .si-label,
.summary-item-new:nth-last-child(1) .si-value {
  color: var(--gold);
  font-size: 1.25rem;
  font-weight: 800;
}

.page.active .reveal {
  opacity: 1 !important;
  transform: translateY(0) !important;
  transition: all 0.8s ease;
}

/* Premium Booking Hero */
.booking-hero-refined {
  border-radius: 32px;
  overflow: hidden;
  position: relative;
  height: 300px;
  margin-bottom: -60px;
  /* Overlap with progress */
  z-index: 1;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6);
}

.hero-content-glass {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.4));
}

.booking-header-redesign {
  text-align: center;
  padding: 20px;
}

/* Adjust Glass Card for overlap */
.booking-glass-card {
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px 40px 40px;
  /* Extra top padding for overlap */
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-top: 0;
  position: relative;
  z-index: 2;
}

.booking-stepper {
  position: relative;
  z-index: 3;
  margin-bottom: 30px;
}

/* --- Advanced Premium Refinements --- */
.svc-item-new {
  position: relative;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
  overflow: hidden;
}

.svc-item-new::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.15), transparent 70%);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
  z-index: 0;
}

.svc-item-new:hover {
  transform: translateY(-5px) scale(1.02);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), 0 0 15px rgba(201, 168, 76, 0.1);
}

.svc-item-new:hover::before {
  width: 300px;
  height: 300px;
}

.svc-item-new.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.12) !important;
  box-shadow: 0 0 25px rgba(201, 168, 76, 0.2);
}

.svc-icon-box {
  position: relative;
  z-index: 1;
  transition: transform 0.5s ease;
}

.svc-item-new:hover .svc-icon-box {
  transform: rotate(10deg) scale(1.1);
}

.svc-info {
  position: relative;
  z-index: 1;
}

/* Calendar Day Refinement */
.cal-day-unified {
  font-weight: 500;
  color: var(--white);
  position: relative;
}

.cal-day-unified.today::after {
  content: '';
  position: absolute;
  bottom: 5px;
  width: 4px;
  height: 4px;
  background: var(--gold);
  border-radius: 50%;
}

.cal-day-unified.selected {
  background: linear-gradient(135deg, var(--gold), #b38f2d) !important;
  box-shadow: 0 8px 15px rgba(201, 168, 76, 0.3);
}

/* Glass Card Entrance */
.booking-step {
  animation: stepIn 0.6s cubic-bezier(0.2, 1, 0.3, 1) both;
}

@keyframes stepIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Navbar Button Fix */
/* Step 3 - Dual Column */
.booking-form-grid.dual-column {
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: start;
}

@media (max-width: 900px) {
  .booking-form-grid.dual-column {
    grid-template-columns: 1fr;
  }
}

.inner-step-sub {
  margin-bottom: 30px;
}

.inner-step-sub h3 {
  font-size: 1.4rem;
  color: var(--gold);
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}

.inner-step-sub p {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Fabric Selection Step 3 */
.fabric-selection-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
  margin-bottom: 30px;
}

.fabric-selection-grid::-webkit-scrollbar {
  width: 4px;
}

.fabric-selection-grid::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 4px;
}

.fabric-item-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 15px;
  cursor: pointer;
  transition: all 0.3s;
}

.fabric-item-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
}

.fabric-item-card.selected {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.fab-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.fab-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}

.fab-price {
  color: var(--gold);
  font-weight: 700;
}

.fab-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Cost Preview Box */
.cost-preview-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(201, 168, 76, 0.2);
  border-radius: 20px;
  padding: 25px;
  position: sticky;
  top: 20px;
}

.cost-placeholder {
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
  font-size: 0.9rem;
}

.cost-breakdown {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cost-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.cost-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold);
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cost-note {
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 10px;
  font-style: italic;
}

.form-actions-full {
  grid-column: 1 / -1;
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

/* ========================================================= */
/*  SEARCH OVERLAY & AJAX BUTTON                            */
/* ========================================================= */

.nav-icon-btn {
  background: none;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  padding: 8px;
  border-radius: 50%;
  margin: 0 5px;
}

.nav-icon-btn:hover {
  color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  z-index: 3000;
  display: flex;
  justify-content: center;
  padding-top: 100px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.search-overlay.active {
  opacity: 1;
  visibility: visible;
}

.search-container {
  width: 90%;
  max-width: 1000px;
  transform: translateY(30px);
  transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1) 0.1s;
}

.search-overlay.active .search-container {
  transform: translateY(0);
}

.search-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 50px;
}

.search-input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 20px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(201, 168, 76, 0.3);
  border-radius: 60px;
  padding: 12px 30px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.search-input-wrap:focus-within {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--gold);
  box-shadow: 0 15px 50px rgba(201, 168, 76, 0.2);
  transform: translateY(-2px);
}

.search-icon-inner {
  color: var(--gold);
  opacity: 0.9;
}

#ajax-search-input {
  width: 100%;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--white);
  outline: none;
  font-family: inherit;
  font-weight: 400;
}

#ajax-search-input::placeholder {
  color: rgba(255, 255, 255, 0.15);
}

.search-close-btn {
  background: rgba(255, 255, 255, 0.05);
  border: none;
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.4s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close-btn:hover {
  background: var(--gold);
  color: var(--dark);
  transform: rotate(90deg);
}

.search-results-wrapper {
  max-height: calc(100vh - 250px);
  overflow-y: auto;
  padding-right: 15px;
}

.search-results-wrapper::-webkit-scrollbar {
  width: 5px;
}

.search-results-wrapper::-webkit-scrollbar-thumb {
  background: rgba(201, 168, 76, 0.3);
  border-radius: 10px;
}

.search-results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}

.search-result-item {
  display: flex;
  gap: 15px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  cursor: pointer;
  transition: 0.3s;
  align-items: center;
}

.search-result-item:hover {
  background: rgba(201, 168, 76, 0.08);
  border-color: rgba(201, 168, 76, 0.3);
  transform: scale(1.02);
}

.search-result-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.search-result-info {
  flex: 1;
}

.search-result-info h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  color: var(--white);
  font-weight: 600;
}

.search-result-info .cat {
  font-size: 0.7rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 2px;
}

.search-result-info .price {
  color: var(--gold);
  font-weight: 800;
  font-size: 0.9rem;
}

.search-empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-muted);
}

.empty-icon {
  font-size: 4rem;
  margin-bottom: 20px;
  opacity: 0.3;
}


/* ================================================================
   MOBILE APP-STYLE DESIGN  (Android E-Commerce)
   All rules inside @media (max-width: 768px) — desktop unchanged
   ================================================================ */

/* ---- Bottom Nav Bar ---- */
.mobile-bottom-nav {
  display: none;
  /* hidden on desktop */
}

@media (max-width: 768px) {

  #who-we-are-section,
  #corporate-section {
    display: none !important;
  }


  /* ---- Safe area padding for content above bottom nav ---- */
  body {
    padding-bottom: 72px;
  }

  /* ---- Hide desktop-only elements on mobile ---- */
  .navbar .nav-book-btn-switch,
  .navbar .search-switch,
  .navbar .theme-toggle-btn,
  .navbar .cart-icon,
  .navbar ul.nav-links {
    display: none !important;
  }

  /* ---- Mobile Navbar: slim app-style top bar ---- */
  .navbar {
    padding: 0 16px !important;
    height: 56px !important;
    background: rgba(10, 10, 10, 0.96) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 168, 76, 0.15) !important;
    justify-content: space-between;
  }

  .navbar.scrolled {
    height: 52px !important;
    padding: 0 16px !important;
  }

  .nav-logo-img {
    height: 36px !important;
    width: 36px !important;
  }

  .logo-text {
    font-size: 1rem !important;
  }

  /* Show hamburger only if needed for extra overflow pages */
  .menu-toggle {
    display: none !important;
  }

  /* ---- Bottom Navigation Bar ---- */
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background: rgba(12, 12, 12, 0.97);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-top: 1px solid rgba(201, 168, 76, 0.18);
    height: 64px;
    padding-bottom: env(safe-area-inset-bottom);
    justify-content: space-around;
    align-items: center;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
  }

  .mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    flex: 1;
    padding: 8px 4px;
  }

  .mob-nav-item svg {
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
  }

  .mob-nav-item.active {
    color: var(--gold);
  }

  .mob-nav-item.active svg {
    stroke: var(--gold);
    filter: drop-shadow(0 0 6px rgba(201, 168, 76, 0.5));
  }

  .mob-nav-item:not(.mob-nav-center):active {
    transform: scale(0.85);
  }

  /* Center search FAB button */
  .mob-nav-center-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.5);
    margin-top: -18px;
    border: 3px solid rgba(12, 12, 12, 0.97);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .mob-nav-center-btn svg {
    stroke: #111;
  }

  .mob-nav-item.mob-nav-center:active .mob-nav-center-btn {
    transform: scale(0.9);
    box-shadow: 0 2px 10px rgba(201, 168, 76, 0.3);
  }

  .mob-cart-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--gold);
    color: var(--dark);
    font-size: 0.55rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(12, 12, 12, 0.97);
  }

  .mob-wishlist-badge {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #ff4757;
    color: white;
    font-size: 0.55rem;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(12, 12, 12, 0.97);
  }

  /* ---- Light mode bottom nav ---- */
  body.light-mode .mobile-bottom-nav {
    background: rgba(255, 255, 255, 0.97);
    border-top-color: rgba(201, 168, 76, 0.25);
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.08);
  }

  body.light-mode .mob-nav-item {
    color: rgba(0, 0, 0, 0.35);
  }

  body.light-mode .mob-nav-item.active {
    color: var(--gold-dark);
  }

  body.light-mode .mob-nav-center-btn {
    border-color: rgba(255, 255, 255, 0.97);
  }

  body.light-mode .mob-cart-badge {
    border-color: rgba(255, 255, 255, 0.97);
  }

  body.light-mode .mob-wishlist-badge {
    border-color: rgba(255, 255, 255, 0.97);
  }

  /* ---- HERO: Compact app-style banner ---- */
  .hero {
    height: 55vh !important;
    min-height: 320px !important;
  }

  .hero-content {
    padding: 0 24px !important;
    align-items: flex-start !important;
    justify-content: flex-end !important;
    padding-bottom: 40px !important;
  }

  .hero-subtitle {
    font-size: 0.7rem !important;
    letter-spacing: 3px !important;
    margin-bottom: 8px !important;
  }

  .hero-title {
    font-size: 1.8rem !important;
    line-height: 1.2 !important;
    margin-bottom: 12px !important;
    text-align: left !important;
  }

  .hero-desc {
    font-size: 0.82rem !important;
    margin-bottom: 20px !important;
    max-width: 280px !important;
    text-align: left !important;
  }

  .hero-btns {
    flex-direction: row !important;
    gap: 10px !important;
    align-items: center !important;
  }

  .hero-btns .btn-primary,
  .hero-btns .btn-outline {
    padding: 10px 18px !important;
    font-size: 0.75rem !important;
    border-radius: 24px !important;
  }

  /* Remove fullscreen overlay gradient to reveal image better */
  .hero-overlay {
    background: linear-gradient(to top, rgba(10, 10, 10, 0.9) 0%, rgba(10, 10, 10, 0.1) 50%, transparent 100%) !important;
  }

  .slider-dots {
    bottom: 16px !important;
  }

  .slider-dot {
    width: 6px;
    height: 6px;
  }

  /* ---- SECTIONS: App-style padding ---- */
  .section {
    padding: 32px 16px !important;
  }

  .section-header {
    margin-bottom: 24px !important;
    text-align: left !important;
  }

  .section-label {
    font-size: 0.65rem !important;
    letter-spacing: 3px !important;
    margin-bottom: 6px !important;
  }

  .section-title {
    font-size: 1.4rem !important;
    margin-bottom: 8px !important;
  }

  .section-desc {
    font-size: 0.82rem !important;
  }

  /* ---- PRODUCT GRID: App-style 2-col cards ---- */
  .products-grid,
  #featured-grid,
  #new-grid,
  #all-products-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }

  .product-card {
    border-radius: 12px !important;
    border: 0.5px solid rgba(var(--gold-rgb), 0.1) !important;
  }

  /* Hide Quick View overlay on mobile */
  .product-card-overlay {
    display: none !important;
  }

  .product-img {
    height: 180px !important;
  }


  .product-info {
    padding: 0px !important;
  }

  .product-name {
    font-size: 0.65rem !important;
    margin-bottom: 0px !important;
    height: 1.8rem !important;
    line-height: 0.9rem !important;
  }


  .product-category {
    font-size: 0.65rem !important;
  }

  .product-price {
    font-size: 0.75rem !important;
  }

  .price-current {
    font-size: 0.8rem !important;
  }

  .price-old {
    font-size: 0.55rem !important;
  }

  .product-badge {
    font-size: 0.5rem !important;
    padding: 2px 5px !important;
    top: 8px !important;
    left: 8px !important;
  }


  /* Action buttons in product image on mobile */
  .product-actions {
    top: 10px !important;
    right: 10px !important;
    bottom: auto !important;
    left: auto !important;
    justify-content: flex-end !important;
    padding: 0 !important;
  }

  /* Hide add to cart button on mobile */
  .add-to-cart-btn {
    display: none !important;
  }

  .product-action-btn {
    width: 38px !important;
    height: 38px !important;
    font-size: 1rem !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3) !important;
  }

  /* Wishlist button transparent on mobile */
  .wishlist-btn {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    color: white !important;
  }

  .wishlist-btn.active {
    background: transparent !important;
    color: #ff4757 !important;
    border: none !important;
    box-shadow: none !important;
  }

  /* Show tracking icon on mobile */
  .track-icon {
    display: flex !important;
  }

  /* ---- CATEGORY CARDS: Horizontal scroll strip ---- */
  .categories-grid {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding-bottom: 12px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }

  .categories-grid::-webkit-scrollbar {
    display: none !important;
  }

  .category-card {
    flex: 0 0 200px !important;
    height: 240px !important;
    border-radius: 20px !important;
    scroll-snap-align: start;
  }

  /* ---- PRODUCTS PAGE: App-style filter bar ---- */
  .filter-toolbar-pill {
    border-radius: 16px !important;
    padding: 16px !important;
    gap: 12px !important;
    margin-bottom: 20px !important;
  }

  .filter-tabs-container {
    padding: 0 !important;
    gap: 8px !important;
    justify-content: flex-start !important;
  }

  .filter-tab {
    padding: 8px 14px !important;
    font-size: 0.72rem !important;
    border-radius: 60px !important;
  }

  .products-controls {
    padding: 14px 16px !important;
    border-radius: 16px !important;
    gap: 12px !important;
    margin-bottom: 16px !important;
  }

  /* ---- PROCESS STEPS: App-style horizontal scroll ---- */
  .process-timeline {
    display: flex !important;
    overflow-x: auto !important;
    gap: 12px !important;
    padding-bottom: 12px !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch;
  }

  .process-timeline::-webkit-scrollbar {
    display: none !important;
  }

  .process-step {
    flex: 0 0 150px !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 20px !important;
    padding: 20px 12px !important;
  }

  .process-icon img {
    width: 60px !important;
    height: 60px !important;
  }

  .process-step h3 {
    font-size: 0.85rem !important;
  }

  .process-step p {
    font-size: 0.72rem !important;
  }

  /* ---- ABOUT SECTION ---- */
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .about-image img {
    height: 220px !important;
    border-radius: 20px !important;
  }

  .about-stats {
    gap: 12px !important;
  }

  .stat-number {
    font-size: 1.8rem !important;
  }

  /* ---- TESTIMONIALS: single column on mobile ---- */
  .testimonials-marquee-container {
    height: 500px !important;
    gap: 12px !important;
  }

  .md-show,
  .lg-show {
    display: none !important;
  }

  /* ---- FOOTER: compact app-style ---- */
  .footer {
    padding: 32px 16px 20px !important;
  }

  .footer-grid {
    display: none !important;
  }


  .footer-bottom {
    flex-direction: column !important;
    gap: 12px !important;
    text-align: center !important;
    font-size: 0.75rem !important;
  }

  /* ---- FLOATING FAB: keep but reposition ---- */
  .social-fab {
    bottom: 80px !important;
    /* above bottom nav */
    right: 16px !important;
  }

  .fab-main {
    width: 48px !important;
    height: 48px !important;
    font-size: 1.2rem !important;
  }

  /* ---- PRODUCT PAGE SECTION padding ---- */
  .product-page-section {
    padding: 70px 12px 32px !important;
  }

  /* ---- MODAL: full-screen on mobile ---- */
  .modal {
    max-width: 100% !important;
    width: 100% !important;
    max-height: 100vh !important;
    border-radius: 24px 24px 0 0 !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    overflow-y: auto !important;
  }

  .modal-body {
    grid-template-columns: 1fr !important;
  }

  .modal-img {
    min-height: 260px !important;
  }

  .modal-info {
    padding: 20px !important;
  }

  /* ---- CART SIDEBAR: full-width bottom sheet ---- */
  .cart-sidebar {
    width: 100% !important;
    height: 85vh !important;
    top: auto !important;
    bottom: -100% !important;
    right: 0 !important;
    left: 0 !important;
    border-radius: 24px 24px 0 0 !important;
    border-left: none !important;
    border-top: 1px solid var(--border) !important;
    transition: bottom 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .cart-sidebar.active {
    bottom: 0 !important;
    right: auto !important;
  }

  /* ---- BOOKING PAGE: compact on mobile ---- */
  .booking-redesign-container {
    padding: 10px !important;
  }

  .booking-glass-card {
    padding: 24px 16px !important;
    border-radius: 20px !important;
  }

  .booking-stepper {
    max-width: 100% !important;
    margin: 0 auto 24px !important;
  }

  .step-circle {
    width: 38px !important;
    height: 38px !important;
    font-size: 0.8rem !important;
  }

  .step-item span {
    font-size: 0.6rem !important;
  }

  /* ---- Search overlay: full-screen on mobile ---- */
  .search-overlay {
    padding-top: 70px !important;
  }

  .search-input-wrap {
    padding: 10px 20px !important;
    border-radius: 50px !important;
  }

  #ajax-search-input {
    font-size: 1rem !important;
  }

  .search-results-grid {
    grid-template-columns: 1fr !important;
  }

  /* ---- App-style home section separator ---- */
  .section-dark {
    border-radius: 0 !important;
  }

  /* ---- Page padding: account for fixed top + bottom nav ---- */
  .page {
    padding-top: 56px !important;
  }

  /* ---- Prevent horizontal scroll & momentum scrolling ---- */
  body {
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-behavior: smooth;
  }


  /* ---- Mobile-specific Product card badge ---- */
  .product-badge {
    font-size: 0.6rem !important;
    padding: 3px 8px !important;
  }

  /* ---- grid-bubble smaller on mobile ---- */
  .grid-bubble {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.9rem !important;
  }

  .origin-bubble {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.75rem !important;
  }

  /* ---- Booking progress steps ---- */
  .booking-progress {
    padding: 20px 12px 0 !important;
  }

  .bp-step span {
    font-size: 0.6rem !important;
  }

  .bp-num {
    width: 36px !important;
    height: 36px !important;
    font-size: 0.85rem !important;
  }

  /* ---- Booking form split: stack vertically ---- */
  .booking-form-split-wrap {
    border-radius: 16px !important;
  }

  .booking-form-inputs-side {
    padding: 20px 16px !important;
  }

  .booking-form-info-side {
    padding: 20px 16px !important;
  }

  /* ---- S3 cards: single column ---- */
  .step3-grid-3 {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .s3-card {
    padding: 20px 16px !important;
    border-radius: 18px !important;
  }

}

/* END @media (max-width: 768px) */

/* Light mode mobile bottom nav item active */
@media (max-width: 768px) {
  body.light-mode .mob-nav-item.active svg {
    stroke: var(--gold-dark);
  }
}
/* ==============================================================
   REDESIGNED PRODUCTS HEADER (CATEGORIES + FILTERS)
   ============================================================== */
.products-header-redesign {
  max-width: 1200px;
  margin: 0 auto 50px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Categories Row */
.category-tabs-modern {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 12px;
  padding: 10px 0;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.category-tabs-modern::-webkit-scrollbar {
  display: none;
}

.cat-tab-new {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.cat-tab-new:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.cat-tab-new.active {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  border-color: transparent;
  color: #000;
  box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.cat-tab-new.active .cat-icon {
  filter: brightness(0.2);
}

.cat-icon {
  font-size: 1.2rem;
  line-height: 1;
}

.new-cat-badge {
  border: 1px solid rgba(255, 71, 87, 0.3);
  color: #ff4757;
}

.new-cat-badge.active {
  background: linear-gradient(135deg, #ff4757, #ff6b81);
  color: #fff;
  box-shadow: 0 10px 25px rgba(255, 71, 87, 0.3);
}
.new-cat-badge.active .cat-icon {
  filter: none;
}


/* Advanced Filter Row */
.filter-controls-modern {
  background: rgba(20, 20, 20, 0.8);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.filter-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.filter-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.filter-divider {
  width: 1px;
  height: 50px;
  background: rgba(255,255,255,0.1);
}

/* Select Box */
.modern-select {
  appearance: none;
  background: rgba(0,0,0,0.3) url("data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23D4AF37%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E") no-repeat right 12px top 50%;
  background-size: 10px auto;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  padding: 10px 30px 10px 15px;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  transition: all 0.3s;
}
.modern-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

/* Range Slider */
.price-block {
  min-width: 200px;
}
.fb-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.price-val-badge {
  background: rgba(212,175,55,0.15);
  color: var(--gold);
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
}
.modern-range {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: rgba(255,255,255,0.1);
  border-radius: 5px;
  outline: none;
  margin-top: 5px;
}
.modern-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  cursor: pointer;
  box-shadow: 0 0 10px rgba(212,175,55,0.5);
}

/* View Toggles */
.view-toggles-modern {
  display: flex;
  gap: 8px;
  background: rgba(0,0,0,0.3);
  padding: 4px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.05);
}
.v-btn {
  background: transparent;
  border: none;
  color: var(--text-muted);
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 1.1rem;
}
.v-btn:hover {
  color: var(--white);
}
.v-btn.active {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 4px 10px rgba(212,175,55,0.3);
}

/* Light Mode Overrides */
.light-mode .cat-tab-new {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #4a5568;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.light-mode .cat-tab-new:hover {
  background: #f8fafc;
}
.light-mode .filter-controls-modern {
  background: rgba(255,255,255,0.85);
  border-color: rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.light-mode .filter-label {
  color: #64748b;
}
.light-mode .filter-divider {
  background: rgba(0,0,0,0.1);
}
.light-mode .modern-select {
  background-color: #f8fafc;
  border-color: #e2e8f0;
  color: #1e293b;
}
.light-mode .view-toggles-modern {
  background: #f1f5f9;
  border-color: #e2e8f0;
}
.light-mode .v-btn {
  color: #94a3b8;
}
.light-mode .v-btn:hover {
  color: #0f172a;
}
.light-mode .v-btn.active {
  color: #000;
}
.light-mode .modern-range {
  background: #e2e8f0;
}

/* Responsive */
@media (max-width: 900px) {
  .filter-controls-modern {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    gap: 20px;
  }
  .filter-divider {
    display: none;
  }
  .filter-block {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .view-toggle-block {
    justify-content: flex-start;
    gap: 20px;
  }
}


/* ==============================================================
   MOBILE FILTERS FOR PRODUCTS PAGE
   ============================================================== */
@media (max-width: 900px) {
  .desktop-only-filters {
    display: none !important;
  }
  .mobile-only-filters {
    display: flex !important;
  }
}
@media (min-width: 901px) {
  .desktop-only-filters {
    display: flex !important;
  }
  .mobile-only-filters {
    display: none !important;
  }
}

.mobile-only-filters {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 20px;
}

.mobile-cat-scroll {
  display: flex;
  overflow-x: auto;
  gap: 10px;
  padding-bottom: 5px;
  scrollbar-width: none;
}
.mobile-cat-scroll::-webkit-scrollbar {
  display: none;
}

.mobile-cat-btn {
  white-space: nowrap;
  padding: 8px 16px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  color: var(--text-light);
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s;
}
.mobile-cat-btn.active {
  background: linear-gradient(135deg, var(--gold), #b8860b);
  color: #000;
  border-color: transparent;
  box-shadow: 0 4px 10px rgba(212,175,55,0.2);
}

.mobile-filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--dark-2);
  padding: 10px 15px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.05);
}

.mobile-filter-btn {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.mobile-view-toggles {
  display: flex;
  gap: 5px;
  background: rgba(0,0,0,0.3);
  padding: 4px;
  border-radius: 8px;
}
.mobile-view-toggles .v-btn {
  width: 32px;
  height: 32px;
  font-size: 1rem;
}

/* Bottom Sheet Modal for Mobile Filters */
.mobile-filter-sheet {
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  background: var(--dark-1);
  border-top-left-radius: 24px;
  border-top-right-radius: 24px;
  padding: 25px 20px 40px;
  z-index: 9999;
  transition: bottom 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  box-shadow: 0 -10px 40px rgba(0,0,0,0.5);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.mobile-filter-sheet.open {
  bottom: 0;
}
.sheet-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  z-index: 9998;
  display: none;
  backdrop-filter: blur(4px);
}
.sheet-overlay.open {
  display: block;
}
.sheet-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.sheet-header h3 {
  font-size: 1.2rem;
  color: var(--white);
  margin: 0;
}
.sheet-close {
  background: rgba(255,255,255,0.1);
  border: none;
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sheet-body {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-height: 60vh;
  overflow-y: auto;
}
/* Light Mode additions for mobile filters */
.light-mode .mobile-cat-btn {
  background: #ffffff;
  border-color: #e2e8f0;
  color: #4a5568;
}
.light-mode .mobile-cat-btn.active {
  background: var(--gold);
  color: #000;
  border-color: transparent;
}
.light-mode .mobile-filter-bar {
  background: #ffffff;
  border-color: #e2e8f0;
}
.light-mode .mobile-filter-btn {
  color: #0f172a;
}
.light-mode .mobile-filter-sheet {
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 -10px 40px rgba(0,0,0,0.1);
}
.light-mode .sheet-header h3 {
  color: #0f172a;
}
.light-mode .sheet-close {
  background: #f1f5f9;
  color: #475569;
}

