/* ============================================================
   ZEBIR LIBAS – Premium Fashion Storefront CSS System
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --bg-primary: #faf8f5;
  --bg-gradient-start: #fcfaf8;
  --bg-surface: #ffffff;
  --bg-secondary: #f4efe8;
  --bg-dark: #0d0d0d;

  --text-main: #151515;
  --text-muted: #6f6a62;
  --text-light: #9b958f;
  --text-inverse: #ffffff;

  --accent-gold: #C8960C;
  --accent-gold-hover: #A67C0A;
  --border-color: #e7dfd4;
  --border-light: #f1ebdf;

  --shadow-sm: 0 8px 24px rgba(15, 15, 15, 0.05);
  --shadow-md: 0 16px 40px rgba(15, 15, 15, 0.08);
  --shadow-lg: 0 24px 60px rgba(15, 15, 15, 0.12);

  --radius-sm: 18px;
  --radius-md: 24px;
  --radius-lg: 30px;

  --transition: all 0.3s ease;
  --container-width: 1400px;
}

[data-theme="dark"] {
  --bg-primary: #121212;
  --bg-surface: #1a1a1a;
  --bg-secondary: #202020;
  --bg-dark: #050505;
  --text-main: #f8f3eb;
  --text-muted: #b7b0a6;
  --text-light: #8d867d;
  --text-inverse: #0d0d0d;
  --border-color: #333333;
  --border-light: #262626;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.25);
  --shadow-md: 0 18px 42px rgba(0,0,0,0.33);
  --shadow-lg: 0 28px 70px rgba(0,0,0,0.4);
}

[data-theme="dark"] .product-description-content *,
[data-theme="dark"] .product-short-description *,
[data-theme="dark"] .review-title,
[data-theme="dark"] .review-text,
[data-theme="dark"] .review-author {
  color: var(--text-main) !important;
}

[data-theme="dark"] .product-description-content,
[data-theme="dark"] .product-short-description {
  color: var(--text-muted) !important;
}


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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

/* ── Hide scrollbars everywhere (scroll still works) ── */
* {
  scrollbar-width: none;        /* Firefox */
  -ms-overflow-style: none;     /* IE / Edge Legacy */
}
*::-webkit-scrollbar {
  display: none;                /* Chrome / Safari / Opera */
}

body {
  font-family: var(--font-body);
  background:
    radial-gradient(circle at top left, rgba(200, 150, 12, 0.10), transparent 28%),
    linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-primary) 100%);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

section {
  scroll-margin-top: 120px;
}

h1, h2, h3, h4, h5, h6, .font-serif {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2rem, 3.3vw, 2.8rem); }
h2 { font-size: clamp(1.6rem, 2.3vw, 2.1rem); }
h3 { font-size: clamp(1.22rem, 1.8vw, 1.45rem); }

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

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

button, input, select, textarea {
  font: inherit;
}

input, select, textarea {
  width: 100%;
  border: 1px solid var(--border-color);
  background: rgba(255, 255, 255, 0.96);
  color: var(--text-main);
  border-radius: 14px;
  padding: 0.95rem 1rem;
  transition: var(--transition);
}

input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--accent-gold);
  box-shadow: 0 0 0 4px rgba(200, 150, 12, 0.16);
}

.container {
  width: min(100%, var(--container-width));
  margin-inline: auto;
  padding-inline: clamp(1rem, 2.5vw, 1.75rem);
}

.container-fluid {
  width: 100%;
  padding-inline: clamp(1rem, 2.5vw, 1.75rem);
}

/* Utility classes */
.text-uppercase { text-transform: uppercase; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--accent-gold); }
.text-muted { color: var(--text-muted); }
.text-light { color: var(--text-light); }
.text-inverse { color: var(--text-inverse); }
.font-weight-bold { font-weight: 700; }
.letter-spacing-1 { letter-spacing: 1px; }
.letter-spacing-2 { letter-spacing: 2px; }
.letter-spacing-3 { letter-spacing: 3px; }
.letter-spacing-4 { letter-spacing: 4px; }
.d-block { display: block; }
.d-inline-block { display: inline-block; }
.d-none { display: none !important; }
.d-flex { display: flex; }
.flex-wrap { flex-wrap: wrap; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.position-relative { position: relative; }
.position-absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.w-100 { width: 100%; }
.h-100 { height: 100%; }
.text-decoration-none { text-decoration: none; }
.display-3 { font-size: clamp(2rem, 4vw, 3.4rem); }
.display-4 {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 500;
  letter-spacing: 0.01em;
}
.py-3 { padding-block: 1.5rem; }
.py-4 {
  padding-block: 2.6rem;
  background: linear-gradient(135deg, rgba(244, 239, 232, 0.95) 0%, rgba(255, 255, 255, 0.96) 100%);
  border-bottom: 1px solid var(--border-color);
}

.py-5 { padding-block: clamp(3.25rem, 5.8vw, 5rem); }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 2rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.pl-3 { padding-left: 1rem; }

.announcement-bar {
  background: #ffffff;
  color: #151515;
  padding: 8px 0;
  overflow: hidden;
  position: relative;
  white-space: nowrap;
  border-bottom: 1px solid var(--border-color);
}

.announcement-marquee-wrapper {
  display: flex;
  width: max-content;
  animation: marquee-scroll 45s linear infinite;
}

.announcement-marquee-item {
  padding: 0 40px;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  white-space: nowrap;
}

@keyframes marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

/* Transparent Header State */
.site-header.header-transparent {
  background: transparent;
  box-shadow: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Solid Header State */
.site-header.header-solid {
  position: relative;
  background: var(--bg-dark);
  box-shadow: var(--shadow-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.site-header.header-solid .nav-link,
.site-header.header-solid .icon-btn {
  color: #f7f3eb;
}
.site-header.header-solid .nav-link:hover {
  color: var(--accent-gold);
}

/* Sticky Header State */
.site-header.header-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-dark);
  box-shadow: var(--shadow-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  animation: slideDownHeader 0.3s ease forwards;
}
.site-header.header-sticky .nav-link,
.site-header.header-sticky .icon-btn {
  color: #f7f3eb;
}
.site-header.header-sticky .nav-link:hover {
  color: var(--accent-gold);
}

@keyframes slideDownHeader {
  0% { transform: translateY(-100%); }
  100% { transform: translateY(0); }
}

.site-header .nav-link {
  color: #f7f3eb;
}

.site-header .icon-btn {
  color: #f7f3eb;
}

.site-header .icon-btn:hover {
  background: rgba(200, 150, 12, 0.18);
  color: var(--accent-gold);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
  gap: 1rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-logo:hover {
  opacity: 0.9;
}

.brand-logo img {
  height: 46px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  list-style: none;
}

.nav-link {
  position: relative;
  padding: 0.55rem 0;
  color: var(--text-main);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.nav-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gold);
  transition: width 0.25s ease;
}

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

.nav-icons {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.icon-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition);
}

.icon-btn:hover {
  background: rgba(200, 150, 12, 0.14);
  color: var(--accent-gold);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.65;
}

.badge-count {
  position: absolute;
  top: 3px;
  right: 2px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--accent-gold);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
}

.btn-luxury,
.btn-luxury-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.8rem;
  border-radius: 999px;
  border: 1px solid var(--text-main);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  transition: var(--transition);
}

.btn-luxury {
  background: var(--text-main);
  color: var(--bg-surface);
}

.btn-luxury:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.btn-luxury-outline {
  background: transparent;
  color: var(--text-main);
}

.btn-luxury-outline:hover {
  background: var(--text-main);
  color: var(--bg-surface);
}

.btn-gold {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
}

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

.btn-sm {
  padding: 0.8rem 1.3rem;
  font-size: 0.71rem;
}

.btn-full {
  width: 100%;
}

.section-header {
  max-width: 760px;
  margin: 0 auto 2.8rem;
  text-align: center;
}

.section-subtitle {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--accent-gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(1.5rem, 4.5vw, 2.7rem);
  line-height: 1.15;
  font-weight: 500;
}

@media (max-width: 640px) {
  .section-title {
    font-size: clamp(1.3rem, 5.5vw, 1.7rem);
    line-height: 1.2;
  }
  .section-subtitle {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
  }
}

.hero-slider {
  position: relative;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero-slider .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
  background: var(--bg-dark);
}

.hero-slider .swiper-slide picture,
.hero-slider .swiper-slide img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Image-Only Hero Aspect Ratio Slider (Desktop & Mobile) */
.hero-slider.hero-image-only {
  min-height: auto !important;
  height: auto !important;
}

.hero-slider.hero-image-only .swiper-slide {
  min-height: auto !important;
  height: auto !important;
  display: block !important;
}

.hero-slider.hero-image-only .swiper-slide picture,
.hero-slider.hero-image-only .swiper-slide img {
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  height: auto !important;
  display: block !important;
  object-fit: contain !important;
}

.hero-slider.hero-image-only .hero-overlay {
  display: none !important;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 8, 8, 0.88) 0%, rgba(8, 8, 8, 0.42) 55%, rgba(8, 8, 8, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 7rem;
  padding-bottom: 4rem;
}

.hero-copy {
  max-width: 640px;
  color: #fff;
}

.hero-eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.32em;
  text-transform: uppercase;
}

.hero-copy h1 {
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.2vw, 3.8rem);
  line-height: 1.05;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-copy p {
  max-width: 560px;
  margin-bottom: 1.6rem;
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.86);
}

.hero-slider .swiper-button-next,
.hero-slider .swiper-button-prev {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  transition: var(--transition);
}

.hero-slider .swiper-button-next:hover,
.hero-slider .swiper-button-prev:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
}

.hero-slider .swiper-button-next::after,
.hero-slider .swiper-button-prev::after {
  font-size: 1rem;
  font-weight: 700;
}

.hero-slide-link {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-slide-link:hover {
  cursor: pointer;
}

.hero-slider .swiper-pagination {
  bottom: 1.35rem !important;
}

.hero-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.7);
  opacity: 1;
  transition: var(--transition);
}

.hero-slider .swiper-pagination-bullet-active {
  width: 32px;
  border-radius: 999px;
  background: var(--accent-gold);
}

.category-card {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255,255,255,0.16);
  transition: var(--transition);
}

.category-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.28) 55%, rgba(0,0,0,0.82) 100%);
}

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

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

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

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

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

.product-img-wrapper {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: linear-gradient(135deg, #f7efe2 0%, #eee0cc 100%);
}

.product-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.75s ease;
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.7rem;
  border-radius: 999px;
  background: var(--text-main);
  color: #fff;
  font-size: 0.63rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-badge.badge-gold {
  background: var(--accent-gold);
}

.product-actions {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 3;
  display: flex;
  gap: 0.65rem;
  opacity: 0;
  transform: translateX(-50%) translateY(12px);
  transition: var(--transition);
}

.product-card:hover .product-actions {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.quick-act-btn {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-light);
  border-radius: 999px;
  background: var(--bg-surface);
  color: var(--text-main);
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
}

.quick-act-btn:hover {
  background: var(--text-main);
  color: var(--bg-surface);
  border-color: var(--text-main);
}

/* Active Wishlist Heart Red State styling */
.js-wishlist-btn.text-gold,
.js-wishlist-btn.active,
.js-wishlist-btn.wishlist-active {
  color: #ef4444 !important;
  border-color: rgba(239, 68, 68, 0.4) !important;
}
.js-wishlist-btn.text-gold svg,
.js-wishlist-btn.active svg,
.js-wishlist-btn.wishlist-active svg {
  fill: #ef4444 !important;
  stroke: #ef4444 !important;
}

.product-info {
  padding: 1.15rem 1.15rem 1.25rem;
}

.product-title {
  margin-bottom: 0.45rem;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.45;
}

.product-price {
  font-size: 0.95rem;
  font-weight: 700;
}

.product-price .old-price {
  margin-right: 0.6rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
}

/* ── Product Card Info (pcard) ───────────────────────────────── */
.pcard-info {
  padding: 14px 14px 16px;
  background: var(--bg-surface);
}

.pcard-type {
  display: block;
  margin-bottom: 5px;
  color: var(--accent-gold);
  font-size: 0.67rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.pcard-title {
  margin-bottom: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: auto;
}

.pcard-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.pcard-price {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.pcard-price .old-price {
  font-size: 0.78rem;
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 400;
}

/* Vivid eye-catching sale price */
.sale-price {
  font-size: 1rem;
  font-weight: 800;
  color: #e53935;           /* vibrant crimson – pops on white */
  letter-spacing: -0.02em;
}

.reg-price {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-main);
}

.pcard-add-btn {
  flex-shrink: 0;
  background: none;
  border: 1.5px solid var(--accent-gold);
  border-radius: 999px;
  color: var(--accent-gold);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 5px 12px;
  transition: var(--transition);
  white-space: nowrap;
}

.pcard-add-btn:hover {
  background: var(--accent-gold);
  color: #fff;
}

/* Mobile tweaks – tighter on 2-col grid */
@media (max-width: 640px) {
  .pcard-info {
    padding: 10px 10px 12px;
  }

  .pcard-type {
    font-size: 0.6rem;
    letter-spacing: 1px;
    margin-bottom: 4px;
  }

  .pcard-title {
    font-size: 0.78rem;
    margin-bottom: 8px;
    -webkit-line-clamp: 2;
  }

  .sale-price {
    font-size: 0.88rem;
  }

  .reg-price {
    font-size: 0.85rem;
  }

  .pcard-price .old-price {
    font-size: 0.7rem;
  }

  .pcard-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .pcard-add-btn {
    width: 100%;
    text-align: center;
    padding: 7px 10px;
    font-size: 0.68rem;
  }
}

.drawer-backdrop,
.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.drawer-backdrop.active,
.modal-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1101;
  width: min(92vw, 440px);
  height: 100%;
  display: flex;
  flex-direction: column;
  background: var(--bg-surface);
  transform: translateX(100%);
  transition: transform 0.35s ease;
  box-shadow: var(--shadow-lg);
}

.drawer.active {
  transform: translateX(0);
}

.drawer-header,
.drawer-body,
.drawer-footer {
  padding: 1.4rem 1.5rem;
}

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

.drawer-body {
  flex: 1;
  overflow-y: auto;
}

.drawer-footer {
  border-top: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.modal-content {
  position: relative;
  width: min(92vw, 900px);
  max-height: 90vh;
  overflow-y: auto;
  margin: 1.5rem auto;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  box-shadow: var(--shadow-lg);
  transform: scale(0.97);
  transition: transform 0.3s ease;
}

.modal-backdrop.active .modal-content {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 38px;
  height: 38px;
  border: none;
  border-radius: 999px;
  background: rgba(0,0,0,0.05);
  color: var(--text-main);
  font-size: 1.25rem;
  cursor: pointer;
}

.trust-bar {
  padding: 3rem 0;
  border-block: 1px solid var(--border-color);
  background: linear-gradient(180deg, rgba(255,255,255,0.35) 0%, rgba(244,239,232,0.8) 100%);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.2rem;
}

.trust-item {
  padding: 1.35rem 1rem;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.55);
}

.trust-item h4 {
  margin-bottom: 0.35rem;
  font-size: 1.08rem;
}

.trust-item p {
  font-size: 0.84rem;
  color: var(--text-muted);
}

.site-footer {
  padding: 4.5rem 0 2.25rem;
  border-top: 1px solid var(--border-color);
  background: linear-gradient(180deg, #151515 0%, #0a0a0a 100%);
  color: #f5eee4;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2rem 2.5rem;
  margin-bottom: 2.5rem;
}

/* Footer socials */
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
  align-items: center;
}

.footer-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
}

.footer-social-btn svg {
  width: 36px;
  height: 36px;
  display: block;
}

.footer-social-btn:hover {
  transform: translateY(-4px) scale(1.1);
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
}

/* Footer contact list */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: #b7b0a6;
  line-height: 1.5;
}

.footer-contact-list li svg {
  flex-shrink: 0;
  color: var(--accent-gold);
  margin-top: 2px;
}

.footer-contact-list strong {
  display: none;
}

.footer-contact-list a {
  color: #d8d0c5;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--accent-gold);
}

.footer-heading {
  margin-bottom: 1rem;
  color: var(--accent-gold);
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.footer-about {
  max-width: 340px;
  color: #b7b0a6;
  font-size: 0.92rem;
  line-height: 1.8;
}

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

.footer-links li + li {
  margin-top: 0.65rem;
}

.footer-links a {
  color: #d8d0c5;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 3px;
}

.newsletter-form {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.newsletter-input {
  flex: 1 1 220px;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.96);
  border-color: var(--border-color);
  color: var(--text-main);
  border-radius: 999px;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}

.newsletter-input::placeholder {
  color: var(--text-light);
}

.newsletter-btn {
  border: none;
  border-radius: 999px;
  padding: 0.95rem 1.2rem;
  background: var(--accent-gold);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-btn:hover {
  background: var(--accent-gold-hover);
}

.content-card,
.surface-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.content-card {
  padding: 1.5rem;
}

.search-modal {
  padding: 2rem;
}

.search-modal .newsletter-input {
  padding: 1rem 1.2rem;
  font-size: 0.96rem;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  color: #8d867d;
  font-size: 0.82rem;
}

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

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

@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.4rem 1rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-about {
    max-width: 100%;
    font-size: 0.82rem;
  }

  .site-footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-heading {
    font-size: 0.78rem;
    margin-bottom: 0.75rem;
  }

  .footer-links a {
    font-size: 0.82rem;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    min-height: 64px;
    gap: 0.6rem;
  }

  .brand-logo img {
    height: 38px;
  }

  .nav-icons {
    gap: 0.4rem;
  }

  .nav-icons .icon-btn {
    width: 32px;
    height: 32px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-icons .icon-btn svg {
    width: 18px;
    height: 18px;
  }

  .hero-slider {
    min-height: 520px;
  }

  .hero-slider .swiper-button-next,
  .hero-slider .swiper-button-prev {
    display: none;
  }

  .section-title {
    font-size: clamp(1.75rem, 5vw, 2.2rem);
  }

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

@media (max-width: 640px) {
  .announcement-bar {
    font-size: 0.65rem;
    padding: 0.75rem 0.8rem;
  }

  .container,
  .container-fluid {
    padding-inline: 1rem;
  }

  .btn-luxury,
  .btn-luxury-outline {
    width: 100%;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-input,
  .newsletter-btn {
    width: 100%;
    border-radius: 999px;
  }

  .product-actions {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  /* 2-column product grid on mobile */
  .product-grid-2col,
  [style*="minmax(270px"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  /* Tighten product card info padding */
  .product-info {
    padding: 10px 10px 12px;
  }

  .product-title {
    font-size: 0.78rem;
    height: auto;
  }

  .product-price {
    font-size: 0.82rem;
  }
}

/* ============================================================
   ZEBIR LIBAS – Megamenu & Navigation Enhancement
   ============================================================ */
.nav-item-has-megamenu {
  position: relative;
}

.megamenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  width: min(1100px, 95vw);
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-lg);
  padding: 28px 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1050;
  border-radius: var(--radius-sm);
}

.nav-item-has-megamenu:hover .megamenu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.megamenu-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-light);
  font-weight: 600;
}

.megamenu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.megamenu-list a {
  font-size: 0.82rem;
  color: var(--text-main);
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.megamenu-list a:hover {
  color: var(--accent-gold);
  transform: translateX(4px);
}

/* ============================================================
   ZEBIR LIBAS – Responsive & Left Drawer Support
   ============================================================ */
@media (min-width: 992px) {
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-none { display: none !important; }
}

.drawer.drawer-left {
  left: 0;
  right: auto;
  transform: translateX(-100%);
}

.drawer.drawer-left.active {
  transform: translateX(0);
}

/* ============================================================
   ZEBIR LIBAS – Product Description Inner Formatting
   ============================================================ */
.product-description-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.85rem;
}

.product-description-content table th,
.product-description-content table td {
  padding: 12px 15px;
  border: 1px solid var(--border-color);
  text-align: left;
}

.product-description-content table thead {
  background-color: var(--bg-secondary);
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-description-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-top: 24px;
  margin-bottom: 12px;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.product-description-content p {
  margin-bottom: 14px;
}

.product-description-content ul {
  margin-left: 20px;
  margin-bottom: 16px;
}

.product-description-content li {
  margin-bottom: 6px;
}

/* ============================================================
   ZEBIR LIBAS – Header My Account Dropdown Styling
   ============================================================ */
.nav-account-dropdown-wrapper:hover .account-dropdown-menu {
  display: block !important;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.account-dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  width: 170px;
  background: var(--bg-surface, #121212);
  border: 1px solid var(--border-color, #2a2a2a);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.55);
  z-index: 1100;
  border-radius: 8px;
  margin-top: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: top right;
  padding: 4px 0;
}

.account-dropdown-menu-header {
  padding: 10px 16px;
  border-bottom: 1px solid var(--border-color, #2a2a2a);
  font-size: 0.7rem;
  color: var(--text-muted, #8d867d);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.account-dropdown-menu .dropdown-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  font-size: 0.8rem;
  color: var(--text-main, #ffffff) !important;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}

.account-dropdown-menu .dropdown-item:hover {
  background: rgba(255, 255, 255, 0.05);
  color: var(--accent-gold, #c5a880) !important;
}

.account-dropdown-menu .dropdown-item:first-of-type {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.account-dropdown-menu .dropdown-item:last-of-type {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.account-dropdown-menu::before {
  content: "";
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  height: 15px;
  background: transparent;
}

/* ============================================================
   ZEBIR LIBAS – Mobile Navigation Drawer Styling Override
   ============================================================ */
#mobileMenuDrawer {
  background: #0d0d0d;
  color: #f7f3eb;
  border-right: 1px solid rgba(200, 150, 12, 0.3);
}

#mobileMenuDrawer .drawer-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #000000;
}

#mobileMenuDrawer .drawer-title {
  color: var(--accent-gold);
}

#mobileMenuDrawer .icon-btn {
  color: #ffffff;
}

#mobileMenuDrawer .drawer-body a {
  color: #ffffff;
  text-decoration: none;
  font-family: var(--font-serif);
  font-weight: 500;
  transition: color 0.2s;
  letter-spacing: 1px;
}

#mobileMenuDrawer .drawer-body a:hover {
  color: var(--accent-gold);
}

#mobileMenuDrawer ul ul {
  border-left: 1px solid rgba(200, 150, 12, 0.25) !important;
  margin-top: 10px;
}

#mobileMenuDrawer ul ul a {
  font-family: var(--font-sans) !important;
  color: #cccccc !important;
  font-size: 0.85rem;
  font-weight: 400;
}

#mobileMenuDrawer ul ul a:hover {
  color: var(--accent-gold) !important;
}

/* ============================================================
   ZEBIR LIBAS – Stunning Category Marquee Section Styles
   ============================================================ */
.category-marquee-container {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border-color);
  padding: 12px 0;
  overflow: hidden;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
}

.category-marquee-track {
  display: flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  animation: category-marquee-scroll 70s linear infinite;
  padding-right: 16px;
}

/* Pause scroll on hover */
.category-marquee-container:hover .category-marquee-track {
  animation-play-state: paused;
}

.category-marquee-item {
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  background: #ffffff;
  color: #151515;
  border: 1px solid rgba(200, 150, 12, 0.35);
  border-radius: 99px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.02);
}

.category-marquee-item:hover {
  background: var(--accent-gold);
  color: #ffffff !important;
  border-color: var(--accent-gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(200, 150, 12, 0.22);
}

.category-marquee-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-right: 12px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-left: 20px;
}

@keyframes category-marquee-scroll {
  0% { transform: translate3d(0, 0, 0); }
  100% { transform: translate3d(-50%, 0, 0); }
}

/* ============================================================
   ZEBIR LIBAS – 3×2 Category Image Grid (Myntra-style)
   ============================================================ */
.cat-grid-section {
  width: 100%;
  padding: 60px 0;
  background-color: var(--bg-secondary);
}

.cat-grid-heading {
  max-width: var(--container-width, 1400px);
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
  text-align: center;
}

.category-swiper {
  max-width: var(--container-width, 1400px);
  margin: 0 auto;
  padding: 0 2rem 2.5rem 2rem;
  position: relative;
}

.category-swiper .swiper-pagination-bullet {
  background: var(--text-muted);
  opacity: 0.4;
  width: 8px;
  height: 8px;
  transition: all 0.3s ease;
}

.category-swiper .swiper-pagination-bullet-active {
  background: var(--accent-gold);
  opacity: 1;
  width: 24px;
  border-radius: 4px;
}

.cat-grid-item {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  text-decoration: none;
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
}

.cat-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.cat-grid-item:hover img {
  transform: scale(1.05);
}

/* Label pill – bottom-left corner, matches screenshot */
.cat-grid-pill {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font-family: var(--font-body, sans-serif);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: capitalize;
  padding: 6px 14px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
  transition: background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
  pointer-events: none;
}

.cat-grid-item:hover .cat-grid-pill {
  background: rgba(255, 255, 255, 1);
}

/* Responsive styles */
@media (max-width: 768px) {
  .cat-grid-section {
    padding: 40px 0;
  }
  .category-swiper {
    padding: 0 1.25rem 2.5rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .cat-grid-section {
    padding: 28px 0;
  }
  .category-swiper {
    padding: 0 1rem 2.5rem 1rem;
  }
  .cat-grid-item {
    aspect-ratio: 2 / 3;
    border-radius: 10px;
  }
  .cat-grid-pill {
    font-size: 0.65rem;
    padding: 5px 10px;
    bottom: 12px;
    left: 12px;
  }
}

/* ============================================================
   ZEBIR LIBAS – Testimonials Google-Card Marquee
   ============================================================ */
.testimonial-marquee-section {
  background: #000;
  padding: 70px 0 60px;
  overflow: hidden;
}

.tmarquee-outer {
  overflow: hidden;
  width: 100%;
  /* fade edges */
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.tmarquee-track {
  display: flex;
  gap: 20px;
  width: max-content;
  animation: tmarquee-scroll 40s linear infinite;
  padding: 12px 0;
}

.tmarquee-outer:hover .tmarquee-track {
  animation-play-state: paused;
}

@keyframes tmarquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* White Google-style card */
.tmarquee-card {
  flex-shrink: 0;
  width: 300px;
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: default;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tmarquee-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(0,0,0,0.18);
}

.tmarquee-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tmarquee-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-gold), #f5c842);
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tmarquee-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
}

.tmarquee-loc {
  font-size: 0.75rem;
  color: #888;
}

.tmarquee-g {
  margin-left: auto;
  flex-shrink: 0;
}

.tmarquee-stars {
  display: flex;
  gap: 3px;
}

.tmarquee-text {
  font-size: 0.84rem;
  color: #444;
  line-height: 1.65;
  font-style: italic;
}

@media (max-width: 640px) {
  .tmarquee-card {
    width: 260px;
    padding: 18px;
  }
  .testimonial-marquee-section {
    padding: 50px 0 40px;
  }
}

/* ============================================================
   ZEBIR LIBAS – FAQ Section (Gold Radial Gradient)
   ============================================================ */
.faq-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
  /* Rich gold radial gradient background */
  background:
    radial-gradient(ellipse at 20% 50%, rgba(200,150,12,0.22) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(245,190,50,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 50% 90%, rgba(180,120,8,0.14) 0%, transparent 50%),
    linear-gradient(135deg, #fffbef 0%, #fdf3d0 40%, #fef8e4 70%, #fffcf0 100%);
}

.faq-bg-glow {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,150,12,0.18) 0%, transparent 70%);
  pointer-events: none;
}

.faq-container {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(200,150,12,0.3);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(200,150,12,0.06);
  backdrop-filter: blur(6px);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--accent-gold);
  box-shadow: 0 4px 24px rgba(200,150,12,0.15);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  font-size: 0.97rem;
  font-weight: 600;
  color: #1a1100;
  line-height: 1.4;
  transition: color 0.2s;
}

.faq-question:hover {
  color: var(--accent-gold);
}

.faq-question[aria-expanded="true"] {
  color: var(--accent-gold);
}

.faq-icon {
  flex-shrink: 0;
  color: var(--accent-gold);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.88rem;
  color: #5a4a2a;
  line-height: 1.75;
  border-top: 1px solid rgba(200,150,12,0.15);
  padding-top: 16px;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 56px 0;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 0.88rem;
  }
  .faq-answer p {
    padding: 0 18px 16px;
    padding-top: 12px;
    font-size: 0.84rem;
  }
}

/* ============================================================
   ZEBIR LIBAS – Premium Shop Pagination
   ============================================================ */
.pagination-wrapper {
  margin-top: 3.50rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
}

.pagination-link {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.90rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.pagination-link:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(200, 150, 12, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(200, 150, 12, 0.12);
}

.pagination-link.active {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(200, 150, 12, 0.35);
  transform: scale(1.05);
}

/* Responsive Display Utilities */
@media (min-width: 576px) {
  .d-sm-inline { display: inline !important; }
  .d-sm-block { display: block !important; }
  .d-sm-flex { display: flex !important; }
  .d-sm-none { display: none !important; }
}
@media (min-width: 768px) {
  .d-md-inline { display: inline !important; }
  .d-md-block { display: block !important; }
  .d-md-flex { display: flex !important; }
  .d-md-none { display: none !important; }
}
@media (min-width: 1025px) {
  .d-lg-inline { display: inline !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-none { display: none !important; }
}



/* ============================================================
   ZEBIR LIBAS – Professional Catalog CSS Engine
   ============================================================ */

/* Top Bar Styling */
.catalog-top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 1.25rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border-color);
  flex-wrap: wrap;
  gap: 16px;
}

.top-bar-left, 
.top-bar-right {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.top-bar-left {
  gap: 16px;
}

.top-bar-right {
  gap: 16px;
  margin-left: auto;
}

.btn-toggle-sidebar {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-main);
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.btn-toggle-sidebar:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(200,150,12,0.06);
  transform: translateY(-1px);
}

.results-count {
  margin: 0;
  font-size: 0.84rem;
  letter-spacing: 0.5px;
  color: var(--text-muted);
}

/* View Switcher */
.view-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  border-right: 1px solid var(--border-color);
  padding-right: 16px;
}

.view-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: var(--text-light);
  cursor: pointer;
  transition: var(--transition);
}

.view-btn:hover,
.view-btn.active {
  background: var(--bg-secondary);
  color: var(--accent-gold);
}

/* Sort Select Styling */
.sort-container {
  position: relative;
}

.sort-select {
  appearance: none;
  -webkit-appearance: none;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 8px 36px 8px 20px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main);
  background: var(--bg-surface) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C8960C' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 16px center;
  background-size: 14px;
  cursor: pointer;
  transition: var(--transition);
}

.sort-select:hover, 
.sort-select:focus {
  border-color: var(--accent-gold);
  outline: none;
}

/* Active Filters Bar */
.active-filters-bar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 1.5rem;
  padding: 14px 16px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(255,255,255,0.96), rgba(248,245,237,0.9));
  flex-wrap: wrap;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.04);
}

.active-filters-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-muted);
}

.active-filters-list {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.filter-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 999px;
  padding: 7px 12px;
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--text-main);
  text-transform: capitalize;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

.remove-filter {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--bg-secondary);
  color: var(--text-muted);
  font-size: 0.8rem;
  line-height: 1;
  transition: var(--transition);
}

.remove-filter:hover {
  background: var(--text-main);
  color: #fff;
}

.clear-all-filters {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #e53935;
  margin-left: 8px;
}

.clear-all-filters:hover {
  text-decoration: underline;
}

/* Layout Wrapper */
.catalog-layout-wrapper {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* Sidebar Filters */
.catalog-sidebar {
  position: sticky;
  top: 110px;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  padding-right: 10px;
}

.catalog-sidebar::-webkit-scrollbar {
  width: 4px;
}
.catalog-sidebar::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: 2px;
}

/* Filter Groups */
.filter-group {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
}

.filter-group:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.filter-group-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-main);
}

.filter-categories-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.filter-categories-list a {
  display: block;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition);
  padding: 7px 10px;
  border-radius: 8px;
}

.filter-categories-list a:hover,
.filter-categories-list a.active {
  color: var(--accent-gold);
  background: rgba(200,150,12,0.06);
  padding-left: 12px;
}

/* Price Inputs */
.price-inputs-wrapper {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.price-input-box {
  flex: 1;
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 10px;
  background: var(--bg-surface);
  padding: 2px 8px;
}

.price-input-box span {
  font-size: 0.68rem;
  color: var(--text-light);
  text-transform: uppercase;
  margin-right: 6px;
  letter-spacing: 0.8px;
}

.price-input-box input {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-main);
  outline: none;
}

.btn-apply-filters {
  width: 100%;
  padding: 11px;
  border: none;
  background: linear-gradient(135deg, var(--text-main), #2f3b4d);
  color: var(--bg-surface);
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border-radius: 999px;
  cursor: pointer;
  transition: var(--transition);
}

.btn-apply-filters:hover {
  background: linear-gradient(135deg, var(--accent-gold), #d9aa1f);
  transform: translateY(-1px);
}

/* Custom Checkbox */
.custom-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 28px;
  font-size: 0.88rem;
  color: var(--text-muted);
  cursor: pointer;
  user-select: none;
}

.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 18px;
  width: 18px;
  border: 1px solid var(--border-color);
  border-radius: 3px;
  background-color: var(--bg-surface);
  transition: var(--transition);
}

.custom-checkbox:hover input ~ .checkmark {
  border-color: var(--accent-gold);
}

.custom-checkbox input:checked ~ .checkmark {
  background-color: var(--accent-gold);
  border-color: var(--accent-gold);
}

.checkmark::after {
  content: "";
  position: absolute;
  display: none;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark::after {
  display: block;
}

/* Backdrop for Mobile Sidebar Drawer */
.sidebar-backdrop {
  position: fixed;
  inset: 0;
  z-index: 1090;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

.sidebar-backdrop.active {
  opacity: 1;
  visibility: visible;
}

/* Products catalog grid variants */
.products-catalog-grid {
  display: grid;
  transition: all 0.3s ease;
}

/* 4 columns layout */
.products-catalog-grid.view-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

/* 3 columns layout */
.products-catalog-grid.view-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* List view layout */
.products-catalog-grid.view-list {
  grid-template-columns: 1fr;
  gap: 24px;
}

/* List view Card Overrides */
.products-catalog-grid.view-list .product-card {
  display: flex;
  flex-direction: row;
  text-align: left;
  background: var(--bg-surface);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 16px;
  gap: 24px;
  align-items: center;
}

.products-catalog-grid.view-list .product-card:hover {
  transform: translateY(-3px);
  border-color: var(--accent-gold);
}

.products-catalog-grid.view-list .product-img-wrapper {
  width: 200px;
  flex-shrink: 0;
  border-radius: 4px;
}

.products-catalog-grid.view-list .product-info {
  flex: 1;
  padding: 0;
}

.products-catalog-grid.view-list .product-description-excerpt {
  display: -webkit-box !important;
  margin-top: 10px;
  font-size: 0.88rem;
  line-height: 1.6;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.products-catalog-grid.view-list .pcard-footer {
  margin-top: 1.5rem;
  justify-content: flex-start;
  gap: 30px;
}

.products-catalog-grid.view-list .pcard-price {
  font-size: 1.15rem;
}

.products-catalog-grid.view-list .pcard-add-btn {
  padding: 8px 24px;
  font-size: 0.74rem;
}

/* Responsive Breakpoints */
@media (max-width: 1200px) {
  .products-catalog-grid.view-grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1024px) {
  .catalog-layout-wrapper {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: min(88vw, 340px);
    z-index: 1200;
    background: var(--bg-surface);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: var(--shadow-lg);
    padding: 24px 20px;
    max-height: 100vh;
  }

  .catalog-sidebar.active {
    transform: translateX(0);
  }

  body.sidebar-open {
    overflow: hidden;
  }

  .catalog-top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-bar-right {
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
  }

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

@media (max-width: 768px) {
  .products-catalog-grid.view-grid-4,
  .products-catalog-grid.view-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .view-switcher {
    border-right: none;
    padding-right: 0;
  }

  .products-catalog-grid.view-list .product-card {
    gap: 16px;
    padding: 12px;
  }

  .products-catalog-grid.view-list .product-img-wrapper {
    width: 130px;
  }
}

@media (max-width: 640px) {
  .catalog-top-bar {
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
  }

  /* Row 1: filter button + results count side-by-side */
  .top-bar-left {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: nowrap;
  }

  .results-count {
    flex: 1;
    font-size: 0.8rem;
    white-space: nowrap;
  }

  /* Row 2: view switcher + sort select side-by-side */
  .top-bar-right {
    width: 100%;
    margin-left: 0;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  .view-switcher {
    border-right: 1px solid var(--border-color);
    padding-right: 10px;
    flex-shrink: 0;
    justify-content: flex-start;
    gap: 4px;
  }

  .view-btn {
    width: 32px;
    height: 32px;
  }

  .sort-container {
    flex: 1;
    min-width: 0;
  }

  .sort-select {
    width: 100%;
    padding: 9px 36px 9px 14px;
    font-size: 0.78rem;
    border-radius: 10px;
  }

  .active-filters-bar {
    padding: 12px;
    gap: 10px;
  }

  .filter-badge {
    font-size: 0.72rem;
  }

  .price-inputs-wrapper {
    flex-direction: column;
  }

  .products-catalog-grid.view-list .product-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }

  .products-catalog-grid.view-list .product-img-wrapper {
    width: 100%;
    aspect-ratio: 3/4;
  }

  .products-catalog-grid.view-list .product-info {
    padding: 8px 4px;
  }

  .products-catalog-grid.view-list .pcard-footer {
    margin-top: 1rem;
    justify-content: space-between;
    gap: 10px;
  }
}

@media (max-width: 480px) {
  /* Keep 2-column grid on small phones */
  .products-catalog-grid.view-grid-4,
  .products-catalog-grid.view-grid-3 {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .filter-badge {
    width: 100%;
    justify-content: space-between;
  }
}

/* ============================================================
   ZEBIR LIBAS – Premium Product Details & Sticky Layout
   ============================================================ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: start;
}

.product-gallery-sticky {
  position: sticky;
  top: 120px;
  align-self: start;
}

@media (max-width: 991px) {
  .product-detail-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery-sticky {
    position: static;
  }
}

/* Premium Quantity Selector */
.quantity-selector-wrapper {
  display: inline-flex;
  align-items: center;
  background: var(--bg-secondary);
  border: 1px solid var(--border-color);
  border-radius: 99px;
  padding: 3px;
  gap: 2px;
  height: 44px;
}

.quantity-selector-wrapper .qty-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-main);
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.quantity-selector-wrapper .qty-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
}

.quantity-selector-wrapper .qty-input {
  width: 36px;
  border: none !important;
  background: transparent !important;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main) !important;
  outline: none;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Premium Heart Wishlist Button */
.btn-luxury-wishlist {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  color: var(--text-main);
  border-radius: 50%;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
  flex-shrink: 0;
}

.btn-luxury-wishlist:hover {
  border-color: var(--accent-gold);
  color: var(--accent-gold);
  background: rgba(200, 150, 12, 0.05);
}

.btn-luxury-wishlist.active {
  background: rgba(239, 68, 68, 0.05);
  border-color: #ef4444;
  color: #ef4444;
}

.btn-luxury-wishlist.active svg {
  fill: #ef4444;
  stroke: #ef4444;
}

/* Compact Purchase Control Row (All in one line) */
.product-purchase-row {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.purchase-add-btn {
  height: 44px;
  padding-inline: 28px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  border-radius: 99px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  flex: 1 1 auto;
}

/* Premium Top Stock Status Badges */
.product-meta-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.product-category-tag {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  font-weight: 600;
}

.badge-stock {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-flex;
  align-items: center;
}

.badge-in-stock {
  background: rgba(22, 163, 74, 0.1);
  color: #16a34a;
  border: 1px solid rgba(22, 163, 74, 0.2);
}

.badge-low-stock {
  background: rgba(217, 119, 6, 0.1);
  color: #d97706;
  border: 1px solid rgba(217, 119, 6, 0.2);
}

.badge-out-of-stock {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

/* Rich Black Paragraph Text Colors */
.product-short-description,
.product-short-description p,
.product-short-description strong,
.product-description-content,
.product-description-content p,
.product-description-content h1,
.product-description-content h2,
.product-description-content h3,
.product-description-content h4,
.product-description-content li,
.product-description-content strong {
  color: #000000 !important;
}

/* Trust Signals Section */
.product-trust-signals {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
}

.trust-signal-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-main);
}

.trust-signal-item svg {
  color: var(--accent-gold);
  flex-shrink: 0;
}

/* Reviews Styling */
.product-reviews-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--border-color);
}

.reviews-summary-card {
  background: var(--bg-secondary);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.reviews-rating-big {
  font-size: 2.8rem;
  font-weight: 700;
  font-family: var(--font-serif);
  color: var(--text-main);
  line-height: 1;
}

.review-stars {
  display: inline-flex;
  color: #fbbf24; /* Amber star color */
  gap: 2px;
}

.review-item {
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-color);
  margin-bottom: 24px;
}

.review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.review-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.verified-buyer-badge {
  font-size: 0.68rem;
  font-weight: 700;
  color: #16a34a;
  background: rgba(22, 163, 74, 0.08);
  padding: 2px 6px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.review-date {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.review-title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-main);
}

.review-text {
  font-size: 0.88rem;
  line-height: 1.6;
  color: #000000 !important;
}

/* Review Form Toggle */
.review-form-container {
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 32px;
  display: none; /* toggled by JS */
}

.review-form-container.active {
  display: block;
}

/* Mobile responsive adjustments */
@media (max-width: 576px) {
  .product-purchase-row {
    flex-wrap: nowrap;
    gap: 8px;
  }
  
  .quantity-selector-wrapper {
    flex-shrink: 0;
  }
  
  .purchase-add-btn {
    flex-grow: 1;
    padding-inline: 16px;
    font-size: 0.72rem;
  }
  
  .btn-luxury-wishlist {
    flex-shrink: 0;
  }
  
  .reviews-summary-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

/* ============================================================
   ZEBIR LIBAS – Custom Coupon Form & Compact Cart Grid
   ============================================================ */
.coupon-form {
  width: 100%;
}

.coupon-input-group {
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.coupon-input {
  flex: 1;
  height: 44px;
  padding: 0 18px;
  font-size: 0.85rem;
  font-family: var(--font-body);
  border: 1px solid var(--border-color);
  background: var(--bg-surface);
  border-radius: 99px !important;
  transition: var(--transition);
}

.coupon-input:focus {
  border-color: var(--accent-gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 150, 12, 0.1);
}

.coupon-btn {
  height: 44px;
  padding: 0 22px;
  font-size: 0.74rem;
  font-weight: 700;
  font-family: var(--font-body);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border-radius: 99px !important;
  border: 1px solid var(--text-main);
  background: var(--text-main);
  color: var(--bg-surface);
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.coupon-btn:hover {
  background: transparent;
  color: var(--text-main);
}

/* Cart Page Layout & Table Styles */
.cart-layout-container {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  align-items: start;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}

.cart-qty-selector {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: 99px;
  background: var(--bg-secondary);
  padding: 2px;
  gap: 2px;
  height: 34px;
}

.cart-qty-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: 50%;
  color: var(--text-main);
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}

.cart-qty-btn:hover {
  background: var(--accent-gold);
  border-color: var(--accent-gold);
  color: #fff;
}

.cart-qty-input {
  width: 32px;
  height: 100% !important;
  border: none !important;
  background: transparent !important;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-main) !important;
  outline: none;
  padding: 0 !important;
  box-shadow: none !important;
}

/* Product Detail Name & Breadcrumbs */
.product-detail-title {
  font-size: 2.3rem;
  line-height: 1.15;
  font-weight: 500;
  color: var(--text-main);
}

/* Responsive updates */
@media (max-width: 991px) {
  .cart-layout-container {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar-inner {
    min-height: 70px;
  }
  
  .brand-logo img {
    height: 38px;
  }
  
  .product-detail-title {
    font-size: 1.55rem;
    line-height: 1.25;
  }
  
  .breadcrumb-text {
    font-size: 0.72rem !important;
    line-height: 1.4;
  }
  
  .breadcrumb-product-name {
    display: none !important;
  }
  
  /* Cart table stack on mobile */
  .cart-table, .cart-table thead, .cart-table tbody, .cart-table tr, .cart-table td {
    display: block;
    width: 100%;
  }
  
  .cart-table thead {
    display: none;
  }
  
  .cart-table tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .cart-table td {
    padding: 8px 0 !important;
    text-align: left !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
  }
  
  .cart-table .cart-product-cell {
    display: block;
    padding-bottom: 14px !important;
    border: none;
  }
  
  .cart-table td[data-label]::before {
    content: attr(data-label);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-muted);
  }
}

/* ============================================================
   Mobile polish tweaks: compact filter button and condensed filters
   ============================================================ */
@media (max-width: 640px) {
  /* Compact circular filter toggle icon button */
  .btn-toggle-sidebar {
    width: 42px;
    height: 42px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: var(--bg-surface);
    box-shadow: 0 4px 12px rgba(15,23,42,0.06);
  }

  .btn-toggle-sidebar svg {
    width: 18px;
    height: 18px;
  }

  /* Hide text label, keep only icon */
  .btn-toggle-sidebar .d-none.d-sm-inline { display: none !important; }

  /* Compact active filters bar */
  .active-filters-bar {
    padding: 10px;
    gap: 8px;
  }

  .active-filters-list { gap: 8px; }

  .filter-badge {
    max-width: calc(100% - 60px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .active-filters-bar .clear-all-filters { margin-left: auto; }
}

/* ============================================================
   Dark Theme Adjustments & Core Overrides
   ============================================================ */
[data-theme="dark"] {
  --bg-gradient-start: #121212;
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(200, 150, 12, 0.15), transparent 28%),
    linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-primary) 100%) !important;
}

[data-theme="dark"] .py-4 {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(32, 32, 32, 0.96) 100%);
  border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .trust-bar {
  background: linear-gradient(180deg, rgba(26, 26, 26, 0.45) 0%, rgba(32, 32, 32, 0.85) 100%);
}

[data-theme="dark"] .trust-item {
  background: rgba(26, 26, 26, 0.55);
}

[data-theme="dark"] .content-card,
[data-theme="dark"] .surface-card {
  background: rgba(26, 26, 26, 0.92);
}

[data-theme="dark"] input,
[data-theme="dark"] select,
[data-theme="dark"] textarea {
  background: var(--bg-surface);
  border-color: var(--border-color);
  color: var(--text-main);
}

[data-theme="dark"] .newsletter-input {
  background: rgba(26, 26, 26, 0.96);
}

[data-theme="dark"] .active-filters-bar {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.96), rgba(32, 32, 32, 0.9));
}

/* Premium Floating WhatsApp Pulse */
.whatsapp-float-btn {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50%;
  text-align: center;
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.whatsapp-float-btn svg {
  width: 34px;
  height: 34px;
  fill: #fff;
  transform: translate(1px, -1px);
}

.whatsapp-float-btn:hover {
  transform: scale(1.08);
}

/* Wrinkle / Pulse Animation */
.whatsapp-float-btn::before,
.whatsapp-float-btn::after {
  content: '';
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid #25d366;
  opacity: 0;
  animation: pulse-wrinkle 2s cubic-bezier(0.21, 0.53, 0.56, 1) infinite;
  z-index: -1;
  pointer-events: none;
}

.whatsapp-float-btn::after {
  animation-delay: 1s;
}

@keyframes pulse-wrinkle {
  0% {
    transform: scale(0.7);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@media (max-width: 768px) {
  .whatsapp-float-btn {
    width: 52px;
    height: 52px;
    bottom: 20px;
    right: 20px;
  }
  .whatsapp-float-btn svg {
    width: 28px;
    height: 28px;
  }
}

/* Selected styles for variation pills */
input[type="radio"]:checked + .size-pill,
input[type="radio"]:checked + .color-pill {
  background-color: var(--text-main, #151515) !important;
  color: #ffffff !important;
  border-color: var(--text-main, #151515) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  font-weight: 600;
}
.size-pill:hover, .color-pill:hover {
  border-color: var(--accent-gold, #c5a880) !important;
}

/* Hide scrollbar for off-canvas drawer */
.drawer, .drawer-body {
  -ms-overflow-style: none !important;  /* IE and Edge */
  scrollbar-width: none !important;  /* Firefox */
}
.drawer::-webkit-scrollbar,
.drawer-body::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Image-only hero mode header mobile override */
@media (max-width: 991.98px) {
  .site-header.header-transparent.hero-image-only {
    position: relative;
    background: var(--bg-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
}

/* ============================================================
   ZEBIR LIBAS – Responsive Account Dashboard Layout
   ============================================================ */
.account-grid-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 48px;
}

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

@media (max-width: 991px) {
  .account-grid-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .account-grid-layout .account-sidebar {
    border-right: none !important;
    padding-right: 0 !important;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 24px;
  }
}

@media (max-width: 768px) {
  .order-card-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .order-card-header > div {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    border-bottom: 1px dashed var(--border-color);
    padding-bottom: 8px;
  }
  .order-card-header > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
    justify-content: flex-end;
  }
}
