@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Mono:wght@400;700&display=swap");

/* 1. VARIABLES */
:root {
  /* Primary Black (from new logo) */
  --primary: #121212;
  --primary-mid: #1e1e1e;
  --primary-light: #2b2b2b;

  /* Accent — soft sand/gold, used sparingly for highlights only */
  --accent: #b8955a;
  --accent-dark: #8f6f3f;
  --accent-light: #f7f0e3;
  --accent-xlight: #fdfbf7;
  --accent2: #cbb07b;
  --accent2-light: #f9f3e6;

  /* Supporting tones */
  --coral: #e84a2a;
  --emerald: #2ecc71;
  --sky: #3498db;

  /* Neutrals */
  --bg-body: #faf9f7;
  --bg-white: #ffffff;
  --bg-light: #f3f2f0;
  --bg-card: #ffffff;

  /* Text */
  --text-dark: #121212;
  --text-body: #262626;
  --text-muted: #6b6b6b;
  --text-light: #a8a8a8;

  /* Border */
  --border: #e2e0dc;
  --border-light: #eeece8;

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(18, 18, 18, .05);
  --shadow-sm: 0 4px 16px rgba(18, 18, 18, .08), 0 2px 6px rgba(0, 0, 0, .04);
  --shadow-md: 0 8px 32px rgba(18, 18, 18, .1), 0 4px 12px rgba(0, 0, 0, .05);
  --shadow-lg: 0 20px 56px rgba(18, 18, 18, .13), 0 8px 24px rgba(0, 0, 0, .06);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-pill: 999px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  --transition: 0.28s var(--ease);
  --font: 'Cairo', system-ui, sans-serif;
}

/* Utility face for signage / tag numerals */
.cx-mono {
  font-family: 'Space Mono', ui-monospace, monospace;
}

/* Utilities */
.footer-app-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.nav-cat-link--hot {
  color: #e84a2a;
  font-weight: 800;
}

.testimonials-section--soft {
  background: var(--bg-light);
}

.cta-code {
  color: var(--accent2);
  font-size: 1.1em;
}

.pay-icon--vodafone {
  color: #e8063c;
}

.pay-icon--cash {
  color: #2ecc71;
}

.app-icon--apple {
  font-size: 1.1rem;
}

.app-icon--google {
  color: #2ecc71;
}

.policy-link {
  color: var(--accent-dark);
  font-weight: 800;
}

/* Hero slide backgrounds (index) */
.hero-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide--1 {
  background-image: url(../images/hero1.png);
}

.hero-slide--2 {
  background-image: url(../images/hero2.png);
}

.hero-slide--3 {
  background-image: url(../images/hero3.png);
}

/* Category tiles backgrounds (index) */
.cat-img--1 {
  background-image: url(../images/cat1.png);
}

.cat-img--2 {
  background-image: url(../images/cat2.png);
}

.cat-img--3 {
  background-image: url(../images/product4.png);
}

.cat-img--4 {
  background-image: url(../images/cat4.png);
}

/* Feature icon colors (index) */
.feat-icon-wrap--orange {
  --c: #b8955a;
}

.feat-icon-wrap--green {
  --c: #1a1a1a;
}

.feat-icon-wrap--blue {
  --c: #4a4a4a;
}

.feat-icon-wrap--brown {
  --c: #8f6f3f;
}

/* Footer brand logo */
.footer-brand__logo {
  width: 36px;
  height: 36px;
  object-fit: contain;
  border-radius: 8px;
}

/* 2. BASE */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  direction: rtl;
  text-align: right;
  background: var(--bg-body);
  color: var(--text-body);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font);
}

::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-track {
  background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
}

.dropdown-menu[data-bs-popper] {
  top: 137% !important;
}

/* 3. PRELOADER */
#loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 60%, #2b2b2b 100%);
  transition: opacity 0.65s var(--ease), visibility 0.65s var(--ease);
}

#loading-screen.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-content {
  text-align: center;
}

.drop-loader {
  width: 72px;
  margin: 0 auto 20px;
  animation: dropBounce 1.5s ease-in-out infinite;
}

.drop-loader svg {
  width: 100%;
  filter: drop-shadow(0 8px 20px rgba(184, 149, 90, .5));
}

@keyframes dropBounce {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-16px)
  }
}

.loader-brand {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 5px;
}

.loader-tagline {
  font-size: 0.92rem;
  color: #9ca3af;
  font-weight: 500;
}

/* 4. PROMO BANNER */
.promo-banner {
  background: linear-gradient(90deg, #121212, #1e1e1e, #2b2b2b);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.88rem;
  font-weight: 700;
  position: relative;
  z-index: 1001;
}

.promo-banner a {
  color: var(--accent2);
}

.promo-banner span {
  margin: 0 12px;
  opacity: 0.5;
}

/* 5. NAVBAR */
#mainNav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1050;
  padding: 14px 0 0;
  background: transparent;
  border: none;
  box-shadow: none;
  transition: padding var(--transition);
}

#mainNav>.container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px !important;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .97);
  backdrop-filter: blur(24px) saturate(1.5);
  -webkit-backdrop-filter: blur(24px) saturate(1.5);
  border: 1.5px solid rgba(184, 149, 90, .15);
  box-shadow: 0 4px 24px rgba(143, 111, 63, .09), inset 0 1px 0 rgba(255, 255, 255, .9);
  transition: var(--transition);
}

#mainNav.scrolled {
  padding-top: 10px;
}

#mainNav.scrolled>.container {
  box-shadow: 0 8px 32px rgba(143, 111, 63, .14);
  border-color: rgba(184, 149, 90, .2);
}

.logo-wrap {
  display: flex;
  align-items: center;
}

.logo-icon-ring {
  width: 200px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  overflow: hidden;
}

.logo-icon-ring img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* padding: 4px; */
}

.navbar-brand:hover .logo-icon-ring {
  transform: rotate(-5deg) scale(1.07);
}

.brand-text {
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: -0.4px;
  background: linear-gradient(115deg, var(--primary) 0%, var(--accent-dark) 50%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar-nav {
  gap: 2px;
}

@media (max-width: 991.9px) {
  #mainNav {
    width: 96%;
    margin: auto;
  }
}

@media (min-width: 992px) {
  #mainNav .navbar-nav {
    gap: 3px;
    background: transparent;
    border: none;
    box-shadow: none;
  }
}

.nav-link {
  color: var(--text-body) !important;
  font-weight: 600;
  font-size: 0.87rem;
  padding: 9px 13px !important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
  color: var(--accent-dark) !important;
  background: var(--accent-light);
}

/* Dropdown */
.dropdown-menu {
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  padding: 8px;
  background: var(--bg-white);
  min-width: 200px;
}

.dropdown-item {
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text-body);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-item i {
  color: var(--accent);
  width: 16px;
}

.dropdown-item:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

/* Cart icon */
.cart-icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-body);
  font-size: 1rem;
  background: var(--bg-light);
  transition: var(--transition);
  border: 1.5px solid var(--border);
}

.cart-icon-btn:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
  border-color: var(--accent);
}

.cart-icon-btn.active-cart {
  color: var(--accent-dark);
  background: var(--accent-light);
  border-color: var(--accent);
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--coral);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 800;
  min-width: 18px;
  height: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid var(--bg-white);
  transition: transform 0.3s var(--ease);
}

/* Hamburger */
.navbar-toggler {
  border: none;
  background: transparent;
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.tog-bar {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar-toggler.open .tog-bar:nth-child(1) {
  transform: rotate(45deg) translate(5.5px, 5.5px);
}

.navbar-toggler.open .tog-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar-toggler.open .tog-bar:nth-child(3) {
  transform: rotate(-45deg) translate(5.5px, -5.5px);
}

@media (max-width: 991.9px) {
  .navbar-collapse {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 16px;
    margin-top: 12px;
    border: 1.5px solid var(--border);
    box-shadow: var(--shadow-md);
  }
}

/* 6. CATEGORY NAV STRIP */
.nav-cats {
  position: fixed;
  top: 82px;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(16px);
  border-bottom: 1.5px solid var(--border-light);
  overflow-x: auto;
  white-space: nowrap;
  padding: 10px 0;
  scrollbar-width: none;
}

.nav-cats::-webkit-scrollbar {
  display: none;
}

.nav-cats .container {
  display: flex;
  gap: 6px;
  align-items: center;
}

.nav-cat-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--text-muted);
  background: transparent;
  transition: var(--transition);
  flex-shrink: 0;
  border: 1.5px solid transparent;
}

.nav-cat-link:hover,
.nav-cat-link.active {
  color: var(--accent-dark);
  background: var(--accent-light);
  border-color: var(--accent);
}

.nav-cat-link i {
  font-size: 0.8rem;
}

/* 7. HERO SECTION */
.hero-section {
  margin-top: 0;
  position: relative;
}

.heroSwiper {
  height: 100vh;
}

.swiper-slide {
  background-size: cover;
  background-position: center;
  position: relative;
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(18, 18, 18, .78) 0%, rgba(143, 111, 63, .4) 100%);
}

.slide-overlay--warm {
  background: linear-gradient(135deg, rgba(18, 18, 18, .72) 0%, rgba(203, 176, 123, .35) 100%);
}

.slide-overlay--dark {
  background: linear-gradient(135deg, rgba(10, 6, 2, .88) 0%, rgba(18, 18, 18, .65) 100%);
}

.slide-content {
  position: relative;
  z-index: 2;
  color: #fff;
  padding-top: 160px;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 149, 90, .2);
  border: 1.5px solid rgba(184, 149, 90, .4);
  backdrop-filter: blur(8px);
  color: var(--accent2);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 16px;
}

.slide-content h1 span {
  color: var(--accent2);
}

.slide-content p {
  font-size: 1.05rem;
  opacity: .85;
  margin-bottom: 30px;
  max-width: 520px;
  line-height: 1.7;
}

.slide-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  border: 1.5px solid var(--accent);
  color: #fff;
  font-weight: 800;
  font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(184, 149, 90, .45);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(184, 149, 90, .55);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid rgba(255, 255, 255, .45);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  transition: var(--transition);
}

.btn-hero-ghost:hover {
  border-color: var(--accent2);
  color: var(--accent2);
  background: rgba(184, 149, 90, .1);
}

.arrows {
  position: absolute;
  bottom: 30px;
  display: flex;
  gap: 50px;
  justify-content: flex-end;
  z-index: 10;
}

.hero-btn-next,
.hero-btn-prev {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .15);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  top: auto;
  bottom: auto;
  left: auto;
  right: auto;
  margin: 0;
}

.hero-btn-next:hover,
.hero-btn-prev:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-btn-next::after,
.hero-btn-prev::after {
  display: none;
}

/* 8. SECTION HEADERS */
.section-badge {
  display: inline-block;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1.5px solid rgba(184, 149, 90, .25);
  padding: 5px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: .5px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.7;
}

/* 9. PRODUCT CARDS */
.products-section {
  padding-top: 70px;
}

.products-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
  box-shadow: var(--shadow-sm);
}

.product-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-xs);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 149, 90, .3);
}

.product-item {
  transition:
    opacity 220ms var(--ease),
    transform 220ms var(--ease);
  will-change: opacity, transform;
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-item.is-hiding {
  opacity: 0;
  transform: translateY(8px) scale(0.97);
}

.product-item.is-showing {
  opacity: 0;
  transform: translateY(8px) scale(0.97);
  transition: none;
}

.product-item.hidden {
  display: none;
}

.prod-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
}

.prod-badge.new-badge {
  background: linear-gradient(135deg, #2ecc71, #27ae60);
  color: #fff;
}

.prod-badge.hot-badge {
  background: linear-gradient(135deg, #e84a2a, #c0392b);
  color: #fff;
}

.prod-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}

.prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.product-card:hover .prod-img-wrap img {
  transform: scale(1.07);
}

[data-aos] {
  will-change: opacity, transform;
}

@media (prefers-reduced-motion: reduce) {
  [data-aos] {
    transition: none !important;
    transform: none !important;
  }
}

.prod-actions {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 10px;
  padding: 14px;
  opacity: 0;
  transition: var(--transition);
  background: rgba(18, 18, 18, .28);
}

.product-card:hover .prod-actions {
  opacity: 1;
}

.prod-action-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.prod-action-btn:hover {
  background: var(--accent);
  color: #fff;
}

.prod-action-btn.wishlist-btn.active {
  background: #fee2e2;
  color: var(--coral);
}

.prod-info {
  padding: 14px 16px 16px;
}

.prod-cat {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.prod-name {
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--text-dark);
  margin: 5px 0 8px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}

.prod-name a {
  color: inherit;
}

.prod-name a:hover {
  color: var(--accent-dark);
}

.prod-price-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}

.prod-price {
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.prod-old-price {
  font-size: 0.8rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.btn-add-cart {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.btn-add-cart:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  transform: translateY(-1px);
}

.btn-add-cart.adding {
  background: var(--emerald);
}

.btn-view-all {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  border: 2.5px solid var(--accent-dark);
  color: var(--accent-dark);
  font-weight: 800;
  font-size: 0.95rem;
  transition: var(--transition);
}

.btn-view-all:hover {
  background: var(--accent-dark);
  color: #fff;
}

/* 10. CATEGORY CARDS */
.cats-section {
  background: var(--bg-light) !important;
}

.cat-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  display: block;
  aspect-ratio: .85;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1.5px solid var(--border-light);
}

.cat-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: var(--shadow-md);
}

.cat-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform .45s;
}

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

.cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(18, 18, 18, .85) 0%, rgba(18, 18, 18, .2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 16px;
  color: #fff;
  text-align: center;
}

.cat-icon {
  font-size: 1.6rem;
  color: var(--accent2);
  margin-bottom: 8px;
}

.cat-overlay h5 {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.cat-overlay span {
  font-size: 0.77rem;
  opacity: .8;
}

/* 11. METRICS SECTION */
.metrics-section {
  background: linear-gradient(135deg, #121212 0%, #1e1e1e 50%, #2b2b2b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  color: #fff;
}

.metrics-section__mesh {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: 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='%23f07010' fill-opacity='0.04'%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");
}

.metrics-head {
  text-align: center;
  margin-bottom: 56px;
}

.metrics-kicker {
  display: inline-block;
  color: var(--accent2);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.metrics-title {
  font-size: clamp(1.6rem, 3.5vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.metrics-lead {
  font-size: 1rem;
  opacity: .75;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.metrics-bento {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}

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

.metric-tile {
  background: rgba(255, 255, 255, .07);
  border: 1.5px solid rgba(255, 255, 255, .1);
  border-radius: var(--radius);
  padding: 28px 24px;
  backdrop-filter: blur(8px);
  text-align: center;
  transition: var(--transition);
}

.metric-tile:hover {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(184, 149, 90, .4);
  transform: translateY(-4px);
}

.metric-tile__tag {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--accent2);
  text-transform: uppercase;
  letter-spacing: .5px;
}

.metric-tile__icon {
  font-size: 1.8rem;
  color: var(--accent2);
  margin-bottom: 8px;
}

.metric-tile__icon--mint {
  color: #2ecc71;
}

.metric-tile__icon--sky {
  color: #3498db;
}

.metric-tile__value {
  font-size: 2.6rem;
  font-weight: 900;
  line-height: 1;
  margin: 8px 0;
  color: #fff;
}

.metric-tile__value--xl {
  font-size: 3rem;
}

.metric-suffix {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--accent2);
}

.metric-tile__label {
  font-size: 0.85rem;
  opacity: .8;
  line-height: 1.5;
}

.metric-tile__foot {
  margin-top: 14px;
}

.metric-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(184, 149, 90, .18);
  color: var(--accent2);
  border-radius: var(--radius-pill);
  padding: 4px 12px;
  font-size: 0.77rem;
  font-weight: 700;
}

/* 12. FEATURES SECTION */
.feature-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow-xs);
  transition: var(--transition);
}

.feature-card:hover {
  border-color: rgba(184, 149, 90, .3);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.feat-icon-wrap {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  margin: 0 auto 16px;
  background: color-mix(in srgb, var(--c) 15%, #fff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--c);
  transition: var(--transition);
}

.feature-card:hover .feat-icon-wrap {
  background: var(--c);
  color: #fff;
}

.feature-card h5 {
  font-weight: 800;
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0;
}

/* 13. TESTIMONIALS */
.testi-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  padding: 28px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  height: 100%;
}

.testi-stars {
  color: var(--accent);
  font-size: 0.9rem;
  margin-bottom: 14px;
  display: flex;
  gap: 3px;
}

.testi-text {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  font-weight: 900;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testi-author strong {
  display: block;
  font-size: 0.87rem;
  color: var(--text-dark);
  font-weight: 800;
}

.testi-author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testi-pagination {
  margin-top: 24px !important;
}

.swiper-pagination-bullet {
  background: var(--border);
  opacity: 1;
  width: 8px;
  height: 8px;
}

.swiper-pagination-bullet-active {
  background: var(--accent);
  width: 22px;
  border-radius: var(--radius-pill);
}

/* 14. CTA SECTION */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
}

.cta-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='white' stroke-opacity='0.04' stroke-width='1'/%3E%3C/svg%3E") repeat;
  background-size: 80px;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-section p {
  opacity: .88;
  font-size: 0.97rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.btn-cta-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #fff;
  color: var(--accent-dark);
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-weight: 900;
  font-size: 0.97rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
  transition: var(--transition);
}

.btn-cta-main:hover {
  background: var(--accent2);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-cta-ghost {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(255, 255, 255, .45);
  color: #fff;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.92rem;
  transition: var(--transition);
}

.btn-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, .15);
  color: #fff;
}

/* 15. BRANDS / brandS */
.brands-head {
  margin-bottom: 36px;
}

.brands-kicker {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent-dark);
  font-size: 0.82rem;
  font-weight: 800;
}

.brands-heading {
  font-size: 1.7rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 8px 0 6px;
}

.brands-sub {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.brand-card {
  background: var(--bg-white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 18px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 70px;
  min-width: 130px;
  transition: var(--transition);
}

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

.brand-card img {
  max-height: 30px;
  object-fit: contain;
  filter: grayscale(1) opacity(.6);
  transition: filter .3s;
}

.brand-card:hover img {
  filter: none;
}

/* 16. FOOTER */
.main-footer {
  background: linear-gradient(180deg, #121212 0%, #0a0a0a 100%);
  color: rgba(255, 255, 255, .8);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.3rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 5px !important;
}

.footer-brand i {
  color: var(--accent);
}

.footer-desc {
  font-size: 0.87rem;
  line-height: 1.75;
  opacity: .75;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-socials a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.footer-pay-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, .55);
  margin-bottom: 10px;
}

.payment-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pay-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .85);
  border-radius: 8px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 700;
  transition: var(--transition);
}

.pay-badge:hover {
  border-color: var(--accent);
  color: var(--accent2);
}

.visa-text {
  font-weight: 900;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.footer-heading {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin-right: -15px;
}

.footer-links li a {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, .65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-links li a:hover {
  color: var(--accent2);
  transform: translateX(-5px);
}

.footer-links li a::before {
  content: "\f060";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 0.7rem;
  opacity: 0;
  transition: var(--transition);
}

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

.footer-links li a:hover::before {
  opacity: 1;
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fcontact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.fcontact-item i {
  color: var(--accent2);
  width: 16px;
  flex-shrink: 0;
  font-size: 0.9rem;
}

.fcontact-item a,
.fcontact-item span {
  font-size: 0.87rem;
  color: rgba(255, 255, 255, .7);
  transition: var(--transition);
}

.fcontact-item a:hover {
  color: var(--accent2);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .45);
}

.footer-bottom a {
  color: var(--accent2);
  font-weight: 700;
}

@media (max-width:767.9px) {
  .footer-bottom {
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  .footer-bottom p {
    margin-bottom: 0;
  }
}

/* 17. CART TOAST */
.toast {
  background: var(--bg-card);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  color: var(--text-body);
}

.toast-body {
  font-weight: 700;
  font-size: 0.9rem;
}

/* 18. SCROLL TOP BUTTON */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1000;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-dark);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.scroll-top:hover {
  background: var(--accent);
  transform: translateY(-2px);
}

/* 19. FLOATING CONTACT */
.float-contact-stack {
  position: fixed;
  bottom: 24px;
  left: 20px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.whatsapp-btn,
.float-phone-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #fff;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  position: relative;
}

.whatsapp-btn {
  background: #25d366;
}

.float-phone-btn {
  background: var(--accent);
}

.whatsapp-btn:hover,
.float-phone-btn:hover {
  transform: scale(1.1);
  color: #fff;
}

.wa-tooltip,
.float-phone-tooltip {
  position: absolute;
  left: 58px;
  background: var(--text-dark);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

.whatsapp-btn:hover .wa-tooltip,
.float-phone-btn:hover .float-phone-tooltip {
  opacity: 1;
}

/* 20. BREADCRUMB BAR */
.breadcrumb-bar {
  background: #ffffffa3;
  border-bottom: 1.5px solid var(--border-light);
  padding: 12px 20px;
  margin-top: 50px;
  width: fit-content;
  min-width: 20%;
  border-radius: 20px 0 0 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(8px);
  z-index: 10;
  position: relative;
}

.breadcrumb {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
}

.breadcrumb-item a {
  color: var(--accent-dark);
}

.breadcrumb-item.active {
  color: var(--text-muted);
}

.breadcrumb-item+.breadcrumb-item {
  padding: 0 !important;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: var(--text-light);
  float: none !important;
  content: "/";
  padding: 0 5px !important;
}

/* 21. CART DRAWER */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(18, 18, 18, .55);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  max-width: 95vw;
  height: 100vh;
  z-index: 2001;
  background: var(--bg-white);
  box-shadow: -8px 0 48px rgba(143, 111, 63, .18);
  transition: right .38s var(--ease);
  display: flex;
  flex-direction: column;
}

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

.cart-drawer-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.cart-drawer-header {
  padding: 20px 22px;
  border-bottom: 1.5px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--bg-white);
  flex-shrink: 0;
}

.cart-drawer-header h5 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--text-dark);
}

#closeCart {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
}

#closeCart:hover {
  background: #fee2e2;
  border-color: var(--coral);
  color: var(--coral);
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
}

.cart-drawer-body::-webkit-scrollbar {
  width: 4px;
}

.cart-drawer-body::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.cart-item {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin-bottom: 10px;
  background: var(--bg-body);
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border-light);
  align-items: flex-start;
}

.cart-item-image {
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}

.cart-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-details {
  flex: 1;
  min-width: 0;
}

.cart-item-details h4 {
  font-size: 0.9rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 4px;
  line-height: 1.3;
}

.cart-item-details h4 a {
  color: inherit;
}

.cart-item-details h4 a:hover {
  color: var(--accent-dark);
}

.variant-info {
  font-size: 0.75rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.cart-item-price {
  font-size: 0.92rem;
  font-weight: 900;
  color: var(--accent-dark);
  margin-bottom: 8px;
}

.cart-item-quantity {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  font-weight: 800;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.qty-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-light);
}

.qty {
  font-weight: 800;
  font-size: 0.95rem;
  color: var(--text-dark);
  min-width: 20px;
  text-align: center;
}

.remove-item {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--coral);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--transition);
}

.remove-item:hover {
  color: #c0392b;
}

.cart-drawer-footer {
  padding: 16px 22px;
  border-top: 1.5px solid var(--border-light);
  background: var(--bg-white);
  flex-shrink: 0;
}

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

.cart-total span:first-child {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
}

#cartTotal {
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  font-weight: 900;
  font-size: 0.97rem;
  transition: var(--transition);
  box-shadow: 0 6px 20px rgba(18, 18, 18, .25);
  border: 1.5px solid var(--accent);
}

.checkout-btn:hover {
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(184, 149, 90, .4);
}

/* 22. PRODUCT DETAILS PAGE */
.pd-section {
  padding-top: 30px;
}

.pd-gallery {
  position: sticky;
  top: 90px;
}

.pdMainSwiper {
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 12px;
  height: 480px;
  background: #f3f2f0;
  box-shadow: 0 8px 40px rgba(143, 111, 63, .13);
}

.pdMainSwiper .swiper-slide {
  overflow: hidden;
}

.pdMainSwiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.55s cubic-bezier(.2, .8, .2, 1);
  display: block;
}

.pdMainSwiper .swiper-slide-active img {
  transform: scale(1.03);
}

.pdThumbSwiper {
  padding: 2px 2px 4px;
}

.pdThumbSwiper .swiper-wrapper {
  gap: 0;
}

.pdThumbSwiper .swiper-slide {
  border-radius: 12px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  transition: all 0.22s ease;
  height: 82px !important;
  background: #f3f2f0;
  opacity: 0.72;
}

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

.pdThumbSwiper .swiper-slide:hover {
  opacity: 1;
  border-color: rgba(184, 149, 90, .45);
}

.pdThumbSwiper .swiper-slide-thumb-active {
  border-color: var(--accent);
  opacity: 1;
  box-shadow: 0 4px 14px rgba(184, 149, 90, .25);
}

.pd-next,
.pd-prev {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  border: 1.5px solid var(--border);
  color: var(--text-body);
  box-shadow: 0 3px 12px rgba(0, 0, 0, .12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}

.pd-next:hover,
.pd-prev:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: scale(1.08);
}

.pd-next::after,
.pd-prev::after {
  display: none;
}

@media (max-width: 991px) {
  .pdMainSwiper {
    height: 360px;
  }

  .pdThumbSwiper .swiper-slide {
    height: 62px !important;
  }
}

@media (max-width: 575px) {
  .pdMainSwiper {
    height: 280px;
    border-radius: 14px;
  }

  .pdThumbSwiper .swiper-slide {
    height: 54px !important;
  }
}

.desc-about-box {
  background: var(--bg-light, #f8f9fa);
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light, #eee);
  padding: 28px 30px;
}

.desc-about-title {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 16px;
  text-align: right;
}

.desc-about-box p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 14px;
}

.desc-features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 20px;
  margin-top: 18px;
}

.desc-feature-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-body);
  flex-direction: row;
}

.desc-feature-item i {
  color: var(--accent, #b8955a);
  font-size: 1rem;
  flex-shrink: 0;
}

@media (max-width: 575px) {
  .desc-features-grid {
    grid-template-columns: 1fr;
  }
}

.pd-title {
  font-size: 1.65rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.pd-cat {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--accent-dark);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 10px;
}

.pd-price {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
  background: var(--bg-light, #f8f9fa);
  border-radius: var(--radius);
  padding: 14px 18px;
  border: 1.5px solid var(--border-light, #eee);
}

.pd-price .current {
  font-size: 1.85rem;
  font-weight: 900;
  color: var(--accent-dark);
}

.pd-price .original {
  font-size: 1rem;
  color: var(--text-light);
  text-decoration: line-through;
  margin-right: 4px;
}

.pd-price .discount {
  font-size: 0.82rem;
  font-weight: 800;
  color: #fff;
  background: var(--emerald, #27ae60);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  margin-right: 4px;
}

.pd-divider {
  border: none;
  border-top: 1.5px solid var(--border-light);
  margin: 20px 0;
}

.pd-filter-label {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.pd-filter-label span {
  color: var(--text-muted);
  font-weight: 600;
}

.color-options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.color-swatch {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  border: 2.5px solid transparent;
  transition: all 0.2s ease;
  position: relative;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.color-swatch::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 6px;
  opacity: 0;
  background: rgba(255, 255, 255, 0.25) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center/60% no-repeat;
  transition: opacity 0.2s ease;
}

.color-swatch:hover {
  transform: scale(1.15);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  border-color: rgba(255, 255, 255, 0.6);
}

.color-swatch.active {
  border-color: var(--accent);
  transform: scale(1.12);
  box-shadow: 0 0 0 3px rgba(184, 149, 90, 0.25), 0 4px 10px rgba(0, 0, 0, 0.2);
}

.color-swatch.active::after {
  opacity: 1;
}

.size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.size-btn {
  min-width: 46px;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  color: var(--text-body);
  font-size: 0.85rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
}

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

.size-btn.unavailable {
  opacity: .4;
  cursor: not-allowed;
  text-decoration: line-through;
}

.pd-qty-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.pd-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

.pd-qty-ctrl button {
  width: 40px;
  height: 44px;
  border: none;
  background: var(--bg-light);
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
}

.pd-qty-ctrl button:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

#pdQtyDisplay {
  min-width: 40px;
  text-align: center;
  font-weight: 900;
  font-size: 1rem;
}

.btn-pd-cart {
  flex: 1;
  padding: 13px 22px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  border: none;
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn-pd-cart:hover {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(184, 149, 90, .35);
}

.btn-pd-wish {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  color: var(--text-muted);
  cursor: pointer;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.btn-pd-wish:hover,
.btn-pd-wish.active {
  border-color: var(--coral);
  background: #fee2e2;
  color: var(--coral);
}

.stock-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

.stock-badge.in-stock {
  background: #dcfce7;
  color: #166534;
}

.stock-badge.low-stock {
  background: #fef3c7;
  color: #92400e;
}

.stock-badge.out-stock {
  background: #fee2e2;
  color: #991b1b;
}

.pd-tabs {
  margin-top: 40px;
}

.pd-tab-btns {
  display: flex;
  gap: 0;
  border-bottom: 2px solid var(--border-light);
  margin-bottom: 24px;
}

.pd-tab-btn {
  padding: 10px 22px;
  background: none;
  border: none;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--text-muted);
  cursor: pointer;
  position: relative;
  transition: var(--transition);
}

.pd-tab-btn.active {
  color: var(--accent-dark);
}

.pd-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent);
}

.pd-tab-pane {
  display: none;
}

.pd-tab-pane.active {
  display: block;
}

.related-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.related-swiper-wrap {
  position: relative;
  overflow: hidden;
}

.relatedSwiper {
  padding-bottom: 10px;
  overflow: hidden;
}

.relatedSwiper .swiper-wrapper {
  align-items: stretch;
}

.relatedSwiper .swiper-slide {
  height: auto;
  display: flex;
}

.relatedSwiper .product-card {
  width: 100%;
  height: 100%;
}

/* 23. ABOUT PAGE */
.about-hero {
  padding: 160px 0 5px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-hero-bg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  display: block;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(18, 18, 18, 0.9) 0%,
      rgba(18, 18, 18, 0.75) 55%,
      rgba(143, 111, 63, 0.4) 100%);
}

.about-hero .container {
  position: relative;
  z-index: 2;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: radial-gradient(ellipse 70% 60% at 50% 0%, rgba(203, 176, 123, .10) 0%, transparent 70%);
}

.about-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, .15);
  border: 1.5px solid rgba(255, 255, 255, .3);
  color: #fff;
  padding: 6px 18px;
  border-radius: var(--radius-pill);
  font-size: 0.83rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.about-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.about-hero h1 span {
  color: var(--accent2);
}

.about-hero p {
  font-size: 1.05rem;
  opacity: .85;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}

.about-story {
  padding: 80px 0;
}

.about-story-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-story-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.about-story .lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 18px;
}

.about-story p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 14px;
}

.team-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.team-card-v2 {
  background: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(184, 149, 90, .3);
}

.team-card-v2__img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
}

.team-card-v2__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  transition: transform 0.5s var(--ease);
  display: block;
}

.team-card-v2:hover .team-card-v2__img-wrap img {
  transform: scale(1.06);
}

.team-card-v2__socials {
  position: absolute;
  bottom: -48px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  transition: bottom 0.35s var(--ease);
  z-index: 2;
}

.team-card-v2:hover .team-card-v2__socials {
  bottom: 14px;
}

.team-card-v2__socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #fff;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.82rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
  transition: var(--transition);
}

.team-card-v2__socials a:hover {
  background: var(--accent);
  color: #fff;
  transform: scale(1.15);
}

.team-card-v2__img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, .45) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
}

.team-card-v2:hover .team-card-v2__img-wrap::after {
  opacity: 1;
}

.team-card-v2__body {
  padding: 20px 16px 22px;
}

.team-card-v2__role-badge {
  display: inline-flex;
  align-items: center;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1.5px solid rgba(184, 149, 90, .25);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.team-card-v2__role-badge--green {
  background: #dcfce7;
  color: #166534;
  border-color: rgba(22, 101, 52, .2);
}

.team-card-v2__role-badge--blue {
  background: #dbeafe;
  color: #1e40af;
  border-color: rgba(30, 64, 175, .2);
}

.team-card-v2__role-badge--coral {
  background: #fee2e2;
  color: #991b1b;
  border-color: rgba(153, 27, 27, .2);
}

.team-card-v2__body h5 {
  font-weight: 900;
  font-size: 1.05rem;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.team-card-v2__body span {
  font-size: 0.83rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* 24. PRIVACY POLICY PAGE */
.privacy-hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 140px 0 80px;
  text-align: center;
  color: #fff;
}

.privacy-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.privacy-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

.privacy-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(135deg,
      rgba(18, 18, 18, 0.88) 0%,
      rgba(143, 111, 63, 0.75) 55%,
      rgba(184, 149, 90, 0.55) 100%);
}

.privacy-hero .container {
  position: relative;
  z-index: 2;
}

.privacy-hero .badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.15);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 0.83rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.privacy-hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.privacy-hero h1 span {
  color: var(--accent2);
}

.privacy-hero p {
  font-size: 1.05rem;
  opacity: 0.88;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

.privacy-breadcrumb {
  background: var(--bg-light);
  border-bottom: 1.5px solid var(--border-light);
  padding: 12px 0;
  font-size: 0.83rem;
  color: var(--text-muted);
}

.privacy-breadcrumb a {
  color: var(--accent-dark);
  font-weight: 700;
}

.privacy-breadcrumb .sep {
  margin: 0 8px;
  opacity: 0.4;
}

.privacy-body {
  padding: 60px 0 80px;
}

.privacy-toc {
  position: sticky;
  top: 110px;
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
}

.privacy-toc__title {
  font-size: 0.78rem;
  font-weight: 900;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding-bottom: 12px;
  border-bottom: 1.5px solid var(--border-light);
  margin-bottom: 14px;
}

.privacy-toc a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 8px 10px;
  border-radius: 10px;
  transition: var(--transition);
  margin-bottom: 2px;
  text-decoration: none;
}

.privacy-toc a .toc-num {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  flex-shrink: 0;
  background: var(--accent-light);
  color: var(--accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
}

.privacy-toc a:hover,
.privacy-toc a.active {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.privacy-toc a:hover .toc-num,
.privacy-toc a.active .toc-num {
  background: var(--accent-dark);
  color: #fff;
}

.privacy-updated {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1.5px solid rgba(184, 149, 90, 0.25);
  font-size: 0.78rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  margin-bottom: 28px;
}

.prv-section {
  margin-bottom: 20px;
  scroll-margin-top: 130px;
}

.prv-card {
  background: var(--bg-white);
  border-radius: var(--radius);
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-xs);
  overflow: hidden;
  transition: var(--transition);
}

.prv-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 149, 90, 0.25);
}

.prv-card__head {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1.5px solid var(--border-light);
  background: linear-gradient(135deg, var(--accent-xlight), #fff);
}

.prv-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  flex-shrink: 0;
  background: var(--accent-light);
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.prv-card__icon--green {
  background: #dcfce7;
  color: #166534;
}

.prv-card__icon--blue {
  background: #dbeafe;
  color: #1e40af;
}

.prv-card__icon--purple {
  background: #f3e8ff;
  color: #7c3aed;
}

.prv-card__icon--coral {
  background: #fee2e2;
  color: #991b1b;
}

.prv-card__icon--teal {
  background: #ccfbf1;
  color: #0f766e;
}

.prv-card__num {
  font-size: 0.72rem;
  font-weight: 900;
  color: var(--accent-dark);
  background: var(--accent-light);
  padding: 2px 8px;
  border-radius: 6px;
  margin-right: auto;
  flex-shrink: 0;
}

.prv-card__title {
  font-size: 1rem;
  font-weight: 900;
  color: var(--text-dark);
  margin: 0;
}

.prv-card__body {
  padding: 22px 24px;
}

.prv-card__body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 12px;
}

.prv-card__body p:last-child {
  margin-bottom: 0;
}

.prv-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.prv-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-light);
}

.prv-list li:last-child {
  border-bottom: none;
}

.prv-list li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--accent);
  font-size: 0.85rem;
  margin-top: 2px;
  flex-shrink: 0;
}

.prv-card--accent .prv-card__head {
  background: linear-gradient(135deg,
      var(--primary) 0%,
      var(--accent-dark) 100%);
  border-bottom-color: transparent;
}

.prv-card--accent .prv-card__icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

.prv-card--accent .prv-card__title {
  color: #fff;
}

.prv-card--accent .prv-card__num {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.prv-card--accent .prv-card__body {
  background: var(--accent-xlight);
}

.prv-card--accent .prv-card__body p {
  color: var(--text-body);
}

.prv-card--accent .policy-link {
  color: var(--accent-dark);
  font-weight: 800;
}

.privacy-summary {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 28px 30px;
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.prv-summary-item {
  text-align: center;
}

.prv-summary-item .val {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--accent2);
  display: block;
  margin-bottom: 4px;
}

.prv-summary-item .lbl {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
}

.privacy-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 24px;
  text-align: center;
}

@media (max-width: 991.9px) {
  .privacy-toc {
    display: none;
  }

  .privacy-summary {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px;
  }
}

@media (max-width: 575.9px) {
  .privacy-summary {
    grid-template-columns: 1fr;
  }

  .prv-card__head {
    padding: 16px 18px;
  }

  .prv-card__body {
    padding: 16px 18px;
  }
}

/* 25. PAGES-CREATIVE ADDITIONS (sections, contact, offers) */

/*  DEPARTMENTS PAGE  "Store Directory"  */
.dept-hero {
  position: relative;
  background: var(--primary);
  color: #fff;
  padding: 160px 0 90px;
  overflow: hidden;
  isolation: isolate;
}

.dept-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(184, 149, 90, .09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 149, 90, .09) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(circle at 30% 30%, #000 0%, transparent 72%);
  z-index: 0;
}

.dept-hero__glow {
  position: absolute;
  top: -160px;
  left: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(184, 149, 90, .35), transparent 70%);
  filter: blur(10px);
  z-index: 0;
}

.dept-hero .container {
  position: relative;
  z-index: 1;
}

.dept-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Mono', monospace;
  font-size: .8rem;
  letter-spacing: 2px;
  color: var(--accent2);
  border: 1px solid rgba(203, 176, 123, .35);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.dept-hero__eyebrow span.dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent2);
  display: inline-block;
  animation: cxPulse 1.6s ease-in-out infinite;
}

@keyframes cxPulse {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: .25;
  }
}

.dept-hero h1 {
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.05;
  max-width: 780px;
  margin-bottom: 18px;
}

.dept-hero h1 span {
  color: var(--accent);
}

.dept-hero p {
  color: rgba(255, 255, 255, .68);
  font-size: 1.05rem;
  max-width: 560px;
  line-height: 1.8;
}

.dept-hero__stats {
  display: flex;
  gap: 36px;
  margin-top: 44px;
  flex-wrap: wrap;
}

.dept-hero__stat b {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 1.9rem;
  color: #fff;
  font-weight: 700;
}

.dept-hero__stat span {
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}

.dept-jump {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 250, 245, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--border-light);
  padding: 14px 0;
}

.dept-jump .container {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.dept-jump .container::-webkit-scrollbar {
  display: none;
}

.dept-jump__label {
  font-size: .78rem;
  font-weight: 800;
  color: var(--text-muted);
  white-space: nowrap;
  flex-shrink: 0;
}

.dept-jump a {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: .85rem;
  font-weight: 700;
  color: var(--text-body);
  background: var(--bg-light);
  border: 1.5px solid transparent;
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
  text-decoration: none;
}

.dept-jump a:hover,
.dept-jump a.is-active {
  background: var(--accent-light);
  border-color: rgba(184, 149, 90, .3);
  color: var(--accent-dark);
}

.dept-aisles {
  padding: 90px 0 40px;
}

.dept-row {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 70px 0;
  border-bottom: 1.5px dashed var(--border);
  scroll-margin-top: 90px;
}

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

.dept-row:nth-child(even) .dept-row__media {
  order: 2;
}

.dept-row__tag {
  font-family: 'Space Mono', monospace;
  font-size: .8rem;
  color: var(--accent);
  letter-spacing: 1px;
  margin-bottom: 14px;
  display: block;
}

.dept-row h3 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 14px;
}

.dept-row h3 i {
  color: var(--accent);
  margin-inline-start: 10px;
  font-size: .8em;
}

.dept-row p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
  max-width: 440px;
}

.dept-row__meta {
  display: flex;
  gap: 26px;
  margin-bottom: 28px;
}

.dept-row__meta div b {
  display: block;
  font-size: 1.2rem;
  font-weight: 900;
  color: var(--text-dark);
}

.dept-row__meta div span {
  font-size: .78rem;
  color: var(--text-muted);
}

.dept-row__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: 800;
  padding: 13px 30px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  transition: var(--transition);
}

.dept-row__cta:hover {
  background: var(--accent);
  transform: translateX(-4px);
  color: #fff;
}

html[dir="rtl"] .dept-row__cta:hover {
  transform: translateX(4px);
}

.dept-row__media {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 5/4;
  box-shadow: var(--shadow-lg);
}

.dept-row__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}

.dept-row:hover .dept-row__media img {
  transform: scale(1.06);
}

.dept-row__num {
  position: absolute;
  top: 18px;
  inset-inline-start: 18px;
  background: rgba(18, 18, 18, .78);
  color: #fff;
  font-family: 'Space Mono', monospace;
  font-size: .8rem;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  backdrop-filter: blur(6px);
  letter-spacing: 1px;
}

.dept-cta {
  background: linear-gradient(120deg, var(--primary) 0%, #1e1e1e 100%);
  border-radius: 28px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  margin: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.dept-cta h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 900;
  margin-bottom: 12px;
}

.dept-cta p {
  color: rgba(255, 255, 255, .65);
  margin-bottom: 28px;
}

@media (max-width: 900px) {
  .dept-row {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 44px 0;
  }

  .dept-row:nth-child(even) .dept-row__media {
    order: 0;
  }

  .dept-hero {
    padding: 130px 0 60px;
  }
}

/* CONTACT PAGE */
.cx-channels {
  padding: 70px 0 20px;
}

.cx-channels__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cx-channel {
  background: #fff;
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
  text-decoration: none;
  display: block;
}

.cx-channel:hover {
  border-color: transparent;
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}

.cx-channel__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.3rem;
  color: #fff;
}

.cx-channel:nth-child(1) .cx-channel__icon {
  background: var(--accent);
}

.cx-channel:nth-child(2) .cx-channel__icon {
  background: var(--emerald);
}

.cx-channel:nth-child(3) .cx-channel__icon {
  background: var(--sky);
}

.cx-channel:nth-child(4) .cx-channel__icon {
  background: var(--coral);
}

.cx-channel h4 {
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.cx-channel p {
  font-size: .82rem;
  color: var(--text-muted);
  margin: 0;
  direction: ltr;
}

.cx-main {
  padding: 60px 0 90px;
}

.cx-main__grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 50px;
  align-items: start;
}

.cx-form-card {
  background: #fff;
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow-md);
  border: 1.5px solid var(--border-light);
}

.cx-form-card .section-badge {
  margin-bottom: 10px;
}

.cx-form-card h2 {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.cx-form-card>p {
  color: var(--text-muted);
  margin-bottom: 30px;
  font-size: .92rem;
}

.cx-field {
  margin-bottom: 20px;
  position: relative;
}

.cx-field label {
  display: block;
  font-size: .82rem;
  font-weight: 800;
  color: var(--text-body);
  margin-bottom: 8px;
}

.cx-field input,
.cx-field select,
.cx-field textarea {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  font-family: var(--font);
  font-size: .92rem;
  color: var(--text-dark);
  background: var(--bg-light);
  transition: var(--transition);
}

.cx-field input:focus,
.cx-field select:focus,
.cx-field textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 149, 90, .1);
}

.cx-field textarea {
  resize: vertical;
  min-height: 120px;
}

.cx-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.cx-topic-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cx-topic-chips input {
  display: none;
}

.cx-topic-chips span {
  display: inline-block;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  font-size: .82rem;
  font-weight: 700;
  color: var(--text-body);
  cursor: pointer;
  transition: var(--transition);
}

.cx-topic-chips input:checked+span {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.cx-submit-btn {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: var(--radius-pill);
  font-weight: 800;
  font-size: .98rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: var(--transition);
}

.cx-submit-btn:hover {
  background: var(--accent);
}

.cx-side {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cx-map {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
  border: 1.5px solid var(--border-light);
}

.cx-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: saturate(.85);
}

.cx-hours {
  background: var(--primary);
  color: #fff;
  border-radius: 22px;
  padding: 30px;
}

.cx-hours h4 {
  font-weight: 800;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.cx-hours h4 i {
  color: var(--accent2);
}

.cx-hours__row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
  font-size: .88rem;
}

.cx-hours__row:last-child {
  border-bottom: none;
}

.cx-hours__row span:first-child {
  color: rgba(255, 255, 255, .6);
}

.cx-hours__row span:last-child {
  font-family: 'Space Mono', monospace;
}

.cx-hours__row.is-now span:first-child {
  color: var(--accent2);
  font-weight: 800;
}

.cx-faq {
  padding: 20px 0 90px;
}

.cx-faq__item {
  border-bottom: 1.5px solid var(--border-light);
}

.cx-faq__q {
  width: 100%;
  background: none;
  border: none;
  text-align: right;
  padding: 22px 4px;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font);
}

.cx-faq__q i {
  color: var(--accent);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
  margin-inline-start: 14px;
}

.cx-faq__item.is-open .cx-faq__q i {
  transform: rotate(45deg);
}

.cx-faq__a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}

.cx-faq__a p {
  color: var(--text-muted);
  line-height: 1.8;
  padding: 0 4px 22px;
  max-width: 640px;
}

@media (max-width: 991px) {
  .cx-channels__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cx-main__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .cx-field-row {
    grid-template-columns: 1fr;
  }
}

/* OFFERS PAGE */
.deals-countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.deals-countdown__box {
  background: rgba(255, 255, 255, .1);
  border: 1.5px solid rgba(255, 255, 255, .2);
  border-radius: 16px;
  padding: 16px 22px;
  min-width: 84px;
  backdrop-filter: blur(6px);
}

.deals-countdown__box b {
  display: block;
  font-family: 'Space Mono', monospace;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.deals-countdown__box span {
  font-size: .72rem;
  color: rgba(255, 255, 255, .55);
  letter-spacing: 1px;
}

.deals-tabs {
  padding: 46px 0 10px;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(250, 248, 245, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1.5px solid var(--border-light);
}

.deals-tabs .container {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}

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

.deals-tab {
  flex-shrink: 0;
  border: 1.5px solid var(--border);
  background: #fff;
  color: var(--text-body);
  font-weight: 700;
  font-size: .85rem;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}

.deals-tab.is-active,
.deals-tab:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

/* RESPONSIVE OVERRIDES */
@media (max-width: 767.9px) {
  .slide-content {
    padding-top: 200px;
  }

  .slide-content h1 {
    font-size: 1.8rem;
  }

  .nav-cats {
    top: 74px;
  }

  .breadcrumb-bar {
    margin-top: 125px;
  }

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

  .metrics-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 575.9px) {
  .prod-name {
    font-size: 0.85rem;
  }

  .hero-section {
    margin-top: 0;
  }

  .heroSwiper {
    height: 80vh;
    min-height: 480px;
  }
}

/* SEARCH OVERLAY */
.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  pointer-events: none;
  opacity: 0;
  transition: opacity .28s var(--ease);
}

.search-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.search-overlay__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, .7);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.search-overlay__box {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin: 0 16px;
  transform: translateY(-24px) scale(.97);
  transition: transform .32s var(--ease);
}

.search-overlay.open .search-overlay__box {
  transform: translateY(0) scale(1);
}

.search-overlay__inner {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 28px 28px 22px;
  border: 1.5px solid var(--border-light);
}

.search-overlay__label {
  font-size: .75rem;
  font-weight: 900;
  color: var(--text-muted);
  letter-spacing: .6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.search-overlay__field {
  position: relative;
  display: flex;
  align-items: center;
}

.search-overlay__icon {
  position: absolute;
  right: 16px;
  color: var(--accent);
  font-size: 1rem;
  pointer-events: none;
}

.search-overlay__input {
  width: 100%;
  padding: 14px 46px 14px 50px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  background: var(--bg-light);
  outline: none;
  direction: rtl;
  transition: border-color .2s, box-shadow .2s;
}

.search-overlay__input::placeholder {
  color: var(--text-light);
  font-weight: 500;
}

.search-overlay__input:focus {
  border-color: var(--accent);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 149, 90, .12);
}

.search-overlay__clear {
  position: absolute;
  left: 12px;
  width: 30px;
  height: 30px;
  border-radius: 8px;
  background: var(--border-light);
  border: none;
  color: var(--text-muted);
  font-size: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity .2s, background .2s;
}

.search-overlay__input:not(:placeholder-shown)~.search-overlay__clear {
  opacity: 1;
}

.search-overlay__clear:hover {
  background: var(--accent-light);
  color: var(--accent-dark);
}

.search-overlay__hints {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.search-hint-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
}

.search-hint-tag {
  background: var(--accent-light);
  color: var(--accent-dark);
  border: 1.5px solid rgba(184, 149, 90, .2);
  border-radius: 999px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 700;
  font-family: var(--font);
  cursor: pointer;
  transition: var(--transition);
}

.search-hint-tag:hover {
  background: var(--accent-dark);
  color: #fff;
  border-color: var(--accent-dark);
}

.search-overlay__close {
  position: absolute;
  top: -14px;
  left: -14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .15);
  font-size: .85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.search-overlay__close:hover {
  background: var(--accent-dark);
  transform: rotate(90deg);
}

@media (max-width: 575.9px) {
  .search-overlay {
    padding-top: 80px;
  }

  .search-overlay__inner {
    padding: 20px 18px 16px;
  }
}

html,
body {
  overflow-x: hidden;
}

/* ============================================
   LANGUAGE SWITCH - DESKTOP VERSION
   ============================================ */

.lang-switch-single {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 14px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border: 1.5px solid rgba(184, 149, 90, 0.3);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(184, 149, 90, 0.15);
  letter-spacing: 0.5px;
  font-family: var(--font);
}

.lang-switch-single::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 30px;
  background: linear-gradient(135deg, var(--accent), var(--accent2), var(--accent));
  background-size: 200% 200%;
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
  animation: langGlow 3s ease-in-out infinite;
}

@keyframes langGlow {

  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.lang-switch-single:hover::before {
  opacity: 1;
}

.lang-switch-single::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 30px;
  background: linear-gradient(135deg, rgba(184, 149, 90, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lang-switch-single:hover::after {
  opacity: 1;
}

.lang-switch-single:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 28px rgba(184, 149, 90, 0.35);
  border-color: var(--accent);
  color: #fff;
}

.lang-switch-single:active {
  transform: scale(0.95);
  transition-duration: 0.1s;
}

.lang-globe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  color: var(--accent2);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  flex-shrink: 0;
}

.lang-switch-single:hover .lang-globe {
  transform: rotate(30deg) scale(1.1);
  color: #fff;
}

.lang-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #fff;
  transition: all 0.3s ease;
}

.lang-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 149, 90, 0.25);
  border: 1px solid rgba(184, 149, 90, 0.3);
  border-radius: 6px;
  padding: 0 6px;
  font-size: 0.55rem;
  font-weight: 900;
  color: var(--accent2);
  height: 18px;
  min-width: 18px;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lang-switch-single:hover .lang-badge {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
  transform: scale(1.08);
}

.lang-switch-single {
  animation: langPulse 3s ease-in-out infinite;
}

@keyframes langPulse {

  0%,
  100% {
    box-shadow: 0 2px 12px rgba(184, 149, 90, 0.15);
  }

  50% {
    box-shadow: 0 2px 20px rgba(184, 149, 90, 0.3);
  }
}

.lang-switch-single:hover {
  animation-play-state: paused;
}

/* ── Ripple Effect ── */
.lang-switch-single .ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: scale(0);
  animation: rippleAnim 0.6s ease-out forwards;
  pointer-events: none;
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0;
  }
}

/* ============================================
   LANGUAGE SWITCH - MOBILE VERSION
   (inside the hamburger menu)
   ============================================ */

.lang-switch-mobile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border: 1.5px solid rgba(184, 149, 90, 0.2);
  color: #fff;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font);
  position: relative;
  overflow: hidden;
  margin: 8px 0;
  width: 100%;
}

.lang-switch-mobile::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(184, 149, 90, 0.15), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lang-switch-mobile:hover::before {
  opacity: 1;
}

.lang-switch-mobile:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.lang-mobile-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(184, 149, 90, 0.15);
  color: var(--accent2);
  font-size: 1rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.lang-switch-mobile:hover .lang-mobile-icon {
  background: rgba(184, 149, 90, 0.3);
  transform: scale(1.05);
}

.lang-mobile-label {
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.8px;
  color: #fff;
  flex: 0 0 auto;
}

.lang-mobile-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(184, 149, 90, 0.2);
  border: 1px solid rgba(184, 149, 90, 0.25);
  border-radius: 6px;
  padding: 0 8px;
  font-size: 0.6rem;
  font-weight: 900;
  color: var(--accent2);
  height: 20px;
  min-width: 20px;
}

.lang-mobile-arrow {
  margin-inline-start: auto;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

.lang-switch-mobile:hover .lang-mobile-arrow {
  color: var(--accent2);
  transform: translateX(-4px);
}

/* ── Mobile menu divider ── */
.lang-switch-mobile-wrapper {
  padding: 0 4px;
  margin-top: 8px;
  border-top: 1.5px solid var(--border-light);
  padding-top: 12px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 991.9px) {

  /* Desktop version hidden */
  .lang-switch-single.d-none.d-lg-flex {
    display: none !important;
  }

  /* Mobile version visible in collapsed menu */
  .lang-switch-mobile {
    display: flex !important;
  }
}

@media (min-width: 992px) {

  /* Mobile version hidden on desktop */
  .lang-switch-mobile {
    display: none !important;
  }
}

@media (max-width: 575.9px) {
  .lang-switch-single {
    padding: 6px 12px 6px 10px;
    gap: 5px;
    font-size: 0.7rem;
    border-radius: 24px;
    min-width: 48px;
    display: none;
  }

  .lang-globe {
    font-size: 0.75rem;
  }

  .lang-label {
    font-size: 0.7rem;
    letter-spacing: 0.4px;
  }

  .lang-badge {
    font-size: 0.45rem;
    height: 15px;
    min-width: 15px;
    padding: 0 4px;
  }

  .lang-switch-mobile {
    padding: 10px 14px;
    gap: 10px;
  }

  .lang-mobile-icon {
    width: 32px;
    height: 32px;
    font-size: 0.85rem;
  }

  .lang-mobile-label {
    font-size: 0.8rem;
  }

  .lang-mobile-badge {
    font-size: 0.5rem;
    height: 18px;
    min-width: 18px;
    padding: 0 6px;
  }
}

/* ── RTL Support ── */
html[dir="rtl"] .lang-switch-single {
  flex-direction: row-reverse;
}

html[dir="rtl"] .lang-switch-single:hover .lang-globe {
  transform: rotate(-30deg) scale(1.1);
}

html[dir="rtl"] .lang-mobile-arrow {
  margin-inline-start: 0;
  margin-inline-end: auto;
}

html[dir="rtl"] .lang-switch-mobile:hover .lang-mobile-arrow {
  transform: translateX(4px);
}

/* ============================================
   WISHLIST SIDEBAR
   ============================================ */

/* ── Wishlist Badge ── */
.wishlist-badge {
  background: var(--coral);
  border-color: var(--bg-white);
}

/* ── Wishlist Drawer ── */
.wishlist-drawer {
  right: -420px;
  border-left: 1.5px solid var(--border-light);
}

.wishlist-drawer.open {
  right: 0;
}

/* ── Wishlist Header ── */
.wishlist-header h5 i {
  color: var(--coral) !important;
}

/* ── Wishlist Item ── */
.wishlist-item {
  border-right: 3px solid var(--coral);
  position: relative;
  padding-right: 16px;
}

.wishlist-item::before {
  content: '♥';
  position: absolute;
  top: 8px;
  right: 6px;
  color: var(--coral);
  font-size: 0.7rem;
  opacity: 0.4;
}

/* ── Wishlist Actions ── */
.wishlist-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
  flex-wrap: wrap;
}

.move-to-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  border: 1.5px solid var(--accent);
  background: transparent;
  color: var(--accent-dark);
  font-size: 0.75rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font);
}

.move-to-cart-btn:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(184, 149, 90, 0.25);
}

.move-to-cart-btn:active {
  transform: scale(0.95);
}

.move-to-cart-btn.moved {
  background: var(--emerald);
  border-color: var(--emerald);
  color: #fff;
}

.remove-wishlist-item {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  background: var(--bg-light);
  color: var(--text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
}

.remove-wishlist-item:hover {
  background: #fee2e2;
  border-color: var(--coral);
  color: var(--coral);
  transform: scale(1.05);
}

.remove-wishlist-item:active {
  transform: scale(0.9);
}

/* ── Wishlist Empty State ── */
.wishlist-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  min-height: 300px;
}

.wishlist-empty i {
  color: var(--border);
  margin-bottom: 16px;
}

.wishlist-empty h5 {
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.wishlist-empty p {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* ── Wishlist Footer ── */
.wishlist-footer {
  border-top-color: var(--border-light);
}

.wishlist-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.wishlist-total span:last-child {
  font-weight: 900;
  color: var(--coral);
  font-size: 1.1rem;
}

/* ── Wishlist Toast ── */
.wishlist-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(18, 18, 18, 0.92);
  color: #fff;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(12px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.wishlist-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ── Mobile Adjustments ── */
@media (max-width: 575.9px) {
  .wishlist-drawer {
    width: 100%;
    right: -100%;
  }

  .wishlist-drawer.open {
    right: 0;
  }

  .wishlist-item {
    padding-right: 12px;
  }

  .move-to-cart-btn {
    padding: 5px 10px;
    font-size: 0.7rem;
  }
}

/* ── Animation for adding to wishlist ── */
@keyframes heartPop {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.4);
  }

  60% {
    transform: scale(0.9);
  }

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

.wishlist-add-animation {
  animation: heartPop 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

/* ── RTL Support ── */
html[dir="rtl"] .wishlist-drawer {
  right: auto;
  left: -420px;
  border-left: none;
  border-right: 1.5px solid var(--border-light);
}

html[dir="rtl"] .wishlist-drawer.open {
  right: auto;
  left: 0;
}

html[dir="rtl"] .wishlist-item {
  border-right: none;
  border-left: 3px solid var(--coral);
  padding-right: 14px;
  padding-left: 16px;
}

html[dir="rtl"] .wishlist-item::before {
  right: auto;
  left: 6px;
}

@media (max-width: 575.9px) {
  html[dir="rtl"] .wishlist-drawer {
    left: -100%;
  }

  html[dir="rtl"] .wishlist-drawer.open {
    left: 0;
  }
}

/* ============================================
   WISHLIST PAGE - Same as Homepage
   ============================================ */

/* ── Active Wishlist Icon in Navbar ── */
.active-wishlist {
  color: var(--coral) !important;
  background: #fee2e2 !important;
  border-color: var(--coral) !important;
}

.wishlist-badge {
  background: var(--coral);
  border-color: var(--bg-white);
}

/* ── Wishlist Stats ── */
.wishlist-stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--bg-white);
  border-radius: var(--radius);
  padding: 20px 28px;
  border: 1.5px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  margin-bottom: 30px;
}

.stats-wrap {
  display: flex;
  align-items: center;
  gap: 24px;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-number {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--coral);
}

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

.stat-divider {
  width: 1.5px;
  height: 30px;
  background: var(--border);
}

.stats-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn-wishlist-shop {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-wishlist-shop:hover {
  background: var(--accent-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 90, 0.3);
}

.btn-wishlist-clear {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  background: #fee2e2;
  color: var(--coral);
  font-weight: 700;
  font-size: 0.85rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.btn-wishlist-clear:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(231, 74, 42, 0.3);
}

/* ── Wishlist Remove Button (on product card) ── */
.wishlist-remove-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-muted);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.wishlist-remove-btn:hover {
  background: var(--coral);
  color: #fff;
  border-color: var(--coral);
  transform: scale(1.1);
}

.wishlist-remove-btn:active {
  transform: scale(0.9);
}

/* ── Product card in wishlist ── */
.wishlist-item-card .product-card {
  position: relative;
}

/* ── Heart button active state ── */
.wishlist-btn.active {
  background: var(--coral);
  color: #fff;
}

/* ── Empty State ── */
.wishlist-empty-state {
  text-align: center;
  padding: 80px 20px;
}

.wishlist-empty-state .empty-icon {
  font-size: 4rem;
  color: var(--border);
  margin-bottom: 20px;
}

.wishlist-empty-state .empty-icon i {
  background: var(--bg-light);
  padding: 30px;
  border-radius: 50%;
  border: 2px dashed var(--border);
}

.wishlist-empty-state h3 {
  font-weight: 900;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.wishlist-empty-state p {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 400px;
  margin: 0 auto 24px;
  line-height: 1.7;
}

/* ── Toast ── */
.wishlist-page-toast {
  position: fixed;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%) translateY(30px);
  background: rgba(18, 18, 18, 0.92);
  color: #fff;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: var(--font);
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
  backdrop-filter: blur(12px);
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

/* ── Mobile Adjustments ── */
@media (max-width: 575.9px) {
  .wishlist-stats {
    flex-direction: column;
    align-items: stretch;
    padding: 16px;
    gap: 12px;
  }

  .stats-wrap {
    justify-content: center;
    gap: 16px;
  }

  .stat-divider {
    display: none;
  }

  .stats-actions {
    justify-content: center;
  }

  .wishlist-remove-btn {
    width: 26px;
    height: 26px;
    font-size: 0.6rem;
    top: 8px;
    left: 8px;
  }

  .navbar-brand {
    margin-right: 0;
  }
}

/* ============================================
   LOGIN PAGE OVERRIDES (Plan B Laptop Store)
   ============================================ */

/* ── Main Card ── */
.login-wrapper {
  width: 100%;
  max-width: 1120px;
  background: var(--login-card-bg, #ffffff);
  border-radius: var(--login-radius, 24px);
  box-shadow: var(--login-shadow, 0 20px 56px rgba(18, 18, 18, 0.13));
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  border: 1.5px solid var(--login-border, #e2e0dc);
  transition: all 0.3s var(--login-ease, cubic-bezier(0.4, 0, 0.2, 1));
  margin: 10px auto;
}

@media (max-width: 820px) {
  .login-wrapper {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ── Visual Side ── */
.login-visual {
  position: relative;
  background: linear-gradient(135deg, var(--login-primary, #121212) 0%, var(--login-primary-mid, #1e1e1e) 100%);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  color: #fff;
  min-height: 480px;
}

.login-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: 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='%23b8955a' 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"); */
  pointer-events: none;
  z-index: 1;
}

.login-visual__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.login-visual__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.login-visual__logo img {
  width: auto;
  height: 110px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}

.login-visual__logo span {
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--login-accent, #b8955a);
  letter-spacing: -0.3px;
}

.login-visual__hero {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.login-visual__hero .tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 149, 90, 0.15);
  border: 1.5px solid rgba(184, 149, 90, 0.25);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--login-accent, #b8955a);
  width: fit-content;
  margin-bottom: 20px;
}

.login-visual__hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 12px;
}

.login-visual__hero h1 em {
  color: var(--login-accent, #b8955a);
  font-style: normal;
}

.login-visual__hero p {
  opacity: 0.7;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 320px;
  margin-bottom: 28px;
}

.login-visual__stats {
  display: flex;
  gap: 32px;
  margin-top: 8px;
}

.login-visual__stats div {
  display: flex;
  flex-direction: column;
}

.login-visual__stats .num {
  font-family: "Space Mono", monospace;
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.login-visual__stats .lbl {
  font-size: 0.75rem;
  opacity: 0.5;
  font-weight: 600;
}

.login-visual__foot {
  margin-top: 32px;
  font-size: 0.8rem;
  opacity: 0.4;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}

/* ── Form Side ── */
.login-form {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--login-card-bg, #ffffff);
}

.login-form__header {
  margin-bottom: 28px;
}

.login-form__header .badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--login-accent, #b8955a);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

.login-form__header h2 {
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--login-primary, #121212);
  margin-bottom: 6px;
}

.login-form__header p {
  color: var(--login-muted, #6b6b6b);
  font-size: 0.92rem;
}

/* ── Form Fields ── */
.login-form .field {
  margin-bottom: 18px;
}

.login-form .field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--login-text, #262626);
  margin-bottom: 6px;
}

.login-form .input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  background: var(--login-bg, #faf9f7);
  border: 1.5px solid var(--login-border, #e2e0dc);
  border-radius: 14px;
  transition: all 0.25s var(--login-ease, cubic-bezier(0.4, 0, 0.2, 1));
}

.login-form .input-wrap:focus-within {
  border-color: var(--login-accent, #b8955a);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(184, 149, 90, 0.1);
}

.login-form .input-wrap .ico {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px 0 6px;
  color: var(--login-muted, #6b6b6b);
  font-size: 1rem;
  flex-shrink: 0;
}

.login-form .input-wrap input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 14px 0 14px 12px;
  font-family: "Cairo", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--login-text, #262626);
  outline: none;
  width: 100%;
}

.login-form .input-wrap input::placeholder {
  color: var(--login-muted, #6b6b6b);
  font-weight: 400;
  opacity: 0.6;
}

.login-form .input-wrap .btn-eye {
  background: none;
  border: none;
  color: var(--login-muted, #6b6b6b);
  padding: 0 12px;
  cursor: pointer;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  flex-shrink: 0;
}

.login-form .input-wrap .btn-eye:hover {
  color: var(--login-accent, #b8955a);
}

.login-form .input-wrap .btn-eye svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Row (remember + forgot) ── */
.login-form .f-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 6px 0 22px;
  flex-wrap: wrap;
  gap: 8px;
}

.login-form .f-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--login-text, #262626);
}

.login-form .f-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--login-accent, #b8955a);
  border-radius: 6px;
  cursor: pointer;
}

.login-form .f-link {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--login-accent-dark, #8f6f3f);
  transition: color 0.2s;
  text-decoration: none;
}

.login-form .f-link:hover {
  color: var(--login-accent, #b8955a);
  text-decoration: underline;
}

/* ── Submit Button ── */
.btn-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--login-primary, #121212) 0%, var(--login-primary-mid, #1e1e1e) 100%);
  border: 1.5px solid var(--login-accent, #b8955a);
  color: #fff;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s var(--login-ease, cubic-bezier(0.4, 0, 0.2, 1));
  text-decoration: none;
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(18, 18, 18, 0.15);
  margin-top: 4px;
}

.btn-submit:hover {
  background: linear-gradient(135deg, var(--login-accent-dark, #8f6f3f), var(--login-accent, #b8955a));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(184, 149, 90, 0.35);
  color: #fff;
}

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

/* ── Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 20px;
  color: var(--login-muted, #6b6b6b);
  font-size: 0.8rem;
  font-weight: 600;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1.5px;
  background: var(--login-border, #e2e0dc);
}

/* ── Social Buttons ── */
.socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.socials .btn-social {
  flex: 1;
  min-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1.5px solid var(--login-border, #e2e0dc);
  background: var(--login-card-bg, #ffffff);
  color: var(--login-text, #262626);
  font-weight: 700;
  font-size: 0.88rem;
  transition: all 0.25s var(--login-ease, cubic-bezier(0.4, 0, 0.2, 1));
  text-decoration: none;
}

.socials .btn-social:hover {
  background: var(--login-bg, #faf9f7);
  border-color: var(--login-accent, #b8955a);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.socials .btn-social svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* ── Switch (sign up) ── */
.switch {
  text-align: center;
  margin-top: 24px;
  font-size: 0.9rem;
  color: var(--login-muted, #6b6b6b);
  font-weight: 600;
}

.switch a {
  color: var(--login-accent-dark, #8f6f3f);
  font-weight: 800;
  text-decoration: none;
  transition: color 0.2s;
}

.switch a:hover {
  color: var(--login-accent, #b8955a);
  text-decoration: underline;
}

/* ── Responsive ── */
@media (max-width: 820px) {
  .login-visual {
    padding: 32px 28px;
    min-height: 320px;
  }

  .login-visual__hero h1 {
    font-size: 1.8rem;
  }

  .login-visual__stats .num {
    font-size: 1.3rem;
  }

  .login-form {
    padding: 32px 24px;
  }

  .login-form__header h2 {
    font-size: 1.5rem;
  }

  .socials .btn-social {
    min-width: 100px;
    padding: 10px 12px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  body {
    padding: 12px;
  }

  .login-wrapper {
    border-radius: 18px;
  }

  .login-visual {
    padding: 24px 18px;
    min-height: 240px;
  }

  .login-visual__hero .tag {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .login-visual__hero h1 {
    font-size: 1.4rem;
  }

  .login-visual__hero p {
    font-size: 0.82rem;
    max-width: 100%;
  }

  .login-visual__stats {
    gap: 16px;
  }

  .login-visual__stats .num {
    font-size: 1.1rem;
  }

  .login-form {
    padding: 24px 16px;
  }

  .login-form__header h2 {
    font-size: 1.3rem;
  }

  .login-form .input-wrap input {
    padding: 12px 0 12px 8px;
    font-size: 0.88rem;
  }

  .btn-submit {
    padding: 14px;
    font-size: 0.9rem;
  }

  .socials {
    flex-direction: column;
  }

  .socials .btn-social {
    min-width: unset;
  }
  .logo-icon-ring {
    width: 130px;
    height: 60px;
  }
}

/* Login icon style */
.cart-icon-btn .fa-user {
  font-size: 1.2rem;
  transition: color 0.3s ease;
}

.cart-icon-btn:hover .fa-user {
  color: #f0b90b;
}

/* Mobile login item */
.lang-switch-mobile .fa-user {
  font-size: 1.1rem;
}

/* Optional: Badge for login (if needed) */
.login-badge {
  background: #f0b90b;
  color: #000;
  font-size: 0.6rem;
  padding: 1px 6px;
  border-radius: 50%;
  position: absolute;
  top: -4px;
  right: -8px;
  font-weight: 700;
}

/* ============================================
   MOBILE ACTIONS ROW (EN + Login side by side)
   ============================================ */

.mobile-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
  width: 100%;
}

.mobile-action-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  border: 1.5px solid rgba(184, 149, 90, 0.2);
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  font-family: var(--font);
}

.mobile-action-btn:hover,
.mobile-action-btn:active {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  border-color: var(--accent);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184, 149, 90, 0.25);
}

.mobile-action-btn:active {
  transform: scale(0.97);
}

.mobile-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(184, 149, 90, 0.15);
  color: var(--accent2);
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.mobile-action-btn:hover .mobile-action-icon {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  transform: scale(1.05);
}

.mobile-action-label {
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
}

/* ── Responsive fine-tune ── */
@media (max-width: 575.9px) {
  .mobile-actions-row {
    gap: 8px;
  }

  .mobile-action-btn {
    padding: 10px 12px;
    font-size: 0.75rem;
    border-radius: 12px;
  }

  .mobile-action-icon {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    border-radius: 8px;
  }

  .mobile-action-label {
    font-size: 0.7rem;
  }

  .login-btn {
    display: none;
  }
  
  .login-visual__logo {
    margin-bottom: 0px;
  }

  .login-visual__hero {
    display: none;
  }
}

/* ── RTL Support ── */
html[dir="rtl"] .mobile-actions-row {
  flex-direction: row-reverse;
}
.search-results {
    margin-top: 15px;
    max-height: 400px;
    overflow-y: auto;
}

.search-results__list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: 0.2s;
}

    .search-result-item:hover {
        background: #f5f5f5;
    }

.search-result-item__icon {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

    .search-result-item__icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

.search-result-item__content {
    flex: 1;
}

.search-result-item__name {
    font-size: 15px;
    font-weight: 600;
}

.search-result-item__arrow {
    font-size: 12px;
    opacity: 0.5;
}

.search-no-results,
.search-loading,
.search-error {
    padding: 30px;
    text-align: center;
    color: #777;
}

    .search-loading i {
        margin-left: 8px;
    }
/* اللون - مطفى/رمادي + خط مايل */
.color-swatch.disabled {
    opacity: 0.35;
    filter: grayscale(100%);
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

    .color-swatch.disabled::after {
        content: "";
        position: absolute;
        top: 50%;
        left: -10%;
        width: 120%;
        height: 2px;
        background: #999;
        transform: translateY(-50%) rotate(-45deg);
    }

/* المقاس - مطفى + خط عليه */
.size-btn.disabled {
    opacity: 0.4;
    color: #999;
    border-color: #ddd;
    background: #f5f5f5;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}