/* ───────────── RESET & BASE ───────────── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --maroon-deep: #5c0a1e;
  --maroon-mid: #7a0e26;
  --cream-light: #fdf3e3;
  --cream-bg: #fff9ef;
  --gold-dark: #d4a017;
  --gold-light: #f0c75e;
  --gold-glow: rgba(212, 160, 23, 0.35);
  --glass-bg: rgba(255, 249, 239, 0.55);
  --glass-border: rgba(212, 160, 23, 0.2);
  --shadow-soft: 0 12px 48px rgba(92, 10, 30, 0.1);
  --shadow-glow: 0 8px 40px rgba(212, 160, 23, 0.18);
  --radius-card: 20px;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  background: var(--cream-bg);
  color: #2d1b1b;
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 600;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  /* padding: 0 24px; */
}

/* ───────────── SCROLL REVEAL ───────────── */
.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ───────────── ANNOUNCEMENT STRIP ───────────── */
.announcement {
  background: var(--maroon-deep);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.5px;
  padding: 6px 0;
  text-align: center;
  position: relative;
  z-index: 1001;
}
.announcement span {
  display: inline-block;
  padding: 0 18px;
}
.announcement i {
  margin-right: 6px;
  color: var(--gold-dark);
}

/* ───────────── HEADER ───────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 249, 239, 0.7);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  border-bottom: 1px solid rgba(212, 160, 23, 0.12);
  transition: var(--transition);
}
.header.scrolled {
  background: rgba(255, 249, 239, 0.88);
  box-shadow: 0 4px 30px rgba(92, 10, 30, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 20px;
}

.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--maroon-deep);
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.logo img {
  width: 60px;
}
.logo span {
  color: var(--gold-dark);
}

.search-bar {
  flex: 1;
  max-width: 480px;
  position: relative;
}
.search-bar input {
  width: 100%;
  padding: 10px 20px 10px 48px;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.25);
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  transition: var(--transition);
  outline: none;
  color: #2d1b1b;
}
.search-bar input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
  background: rgba(255, 255, 255, 0.85);
}
.search-bar i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 1rem;
  z-index: 9;
}


.search-results{

position:absolute;

top:110%;

left:0;

width:100%;

background:#fff;

border-radius:10px;

box-shadow:0 10px 30px rgba(0,0,0,.15);

display:none;

z-index:9999;

max-height:400px;

overflow:auto;

}

.search-item{

display:flex;

gap:15px;

padding:12px;

align-items:center;

text-decoration:none;

color:#222;

transition:.3s;

}

.search-item:hover{

background:#f5f5f5;

}

.search-item img{

width:55px;

height:55px;

object-fit:cover;

border-radius:8px;

}

.search-item strong{

display:block;

font-size:15px;

}

.search-item span{

font-size:13px;

color:#888;

}

.no-result{

padding:15px;

text-align:center;

color:#999;

}

.nav-icons {
  display: flex;
  align-items: center;
  gap: 18px;
}
.nav-icons a {
  font-size: 1.2rem;
  color: var(--maroon-deep);
  transition: var(--transition);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 160, 23, 0.08);
}
.nav-icons a:hover {
  color: var(--gold-dark);
  box-shadow: 0 0 24px rgba(212, 160, 23, 0.25);
  transform: translateY(-2px);
  border-color: var(--gold-dark);
}
.nav-icons .cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  font-size: 0.6rem;
  background: var(--maroon-deep);
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

/* MENU */

.lux-menu {
  background: #ffb800;
}

.lux-menu ul {
  margin: 0;
  padding: 0;
  list-style: none;

  display: flex;
  justify-content: center;
  gap: 28px;
}

.lux-menu ul li a {
  display: block;
  padding: 10px 0;

  text-decoration: none;
  color: #000;

  font-size: 14px;
  font-weight: 400;
}

.lux-menu ul li a:hover {
  color: #7b1028;
}

/* HAMBURGER */

.menu-toggle {
  display: none;

  background: none;
  border: none;

  font-size: 28px;
  color: #7b1028;

  cursor: pointer;
}

/* =========================
Tablet + Mobile
========================= */

@media (max-width: 992px) {
  .header-inner {
    padding: 20px;
    height: auto;
  }

  .menu-toggle {
    display: block;
  }

  /* hide menu */

  .lux-menu {
    max-height: 0;
    overflow: hidden;

    transition: 0.4s ease;
  }

  .lux-menu.active {
    max-height: 400px;
    left: 0;
    padding: 12px 16px 18px;
    overflow: overlay;
  }

  .lux-menu ul {
    flex-direction: column;

    gap: 0;

    padding: 20px;

    align-items: flex-start;
  }

  .lux-menu ul li {
    width: 100%;
  }

  .lux-menu ul li a {
    padding: 14px 0;

    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }

  /* Search */

  .search-bar {
    order: 3;
    width: 100%;
    margin-top: 5px;
  }
}

/* MOBILE */

@media (max-width: 600px) {
  .header {
    padding: 0px 20px;
  }
  .logo {
    font-size: 28px;
  }

  /* .nav-icons {
    display: none;
  } */

  .search-bar input {
    width: 100%;
  }

  .menu-toggle {
    font-size: 25px;
    padding: 0px 10px;
  }
}
/* ───────────── HERO SLIDER ───────────── */
/* .hero-slider {
  position: relative;
  min-height: 640px;
  background: linear-gradient(145deg, var(--cream-bg) 0%, #f7ede0 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 48px 0 64px;
}
.hero-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 80% 20%,
      rgba(212, 160, 23, 0.06) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 20% 80%,
      rgba(92, 10, 30, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
  z-index: 1;
}

.slides-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-slide {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease,
    visibility 0.8s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 0;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
  pointer-events: auto;
}

.hero-content {
  position: relative;
}
.hero-badge {
  display: inline-block;
  background: rgba(212, 160, 23, 0.12);
  color: var(--gold-dark);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  margin-bottom: 20px;
  backdrop-filter: blur(4px);
}
.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 3.8rem);
  line-height: 1.08;
  color: var(--maroon-deep);
  margin-bottom: 16px;
}
.hero-content h1 em {
  font-style: italic;
  color: var(--gold-dark);
  font-weight: 400;
}
.hero-content p {
  font-size: 1.1rem;
  color: #5a3f3f;
  max-width: 420px;
  margin-bottom: 32px;
  font-weight: 300;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  border-radius: 60px;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--maroon-deep);
  color: #fff;
  box-shadow: 0 4px 24px rgba(92, 10, 30, 0.2);
}
.btn-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(92, 10, 30, 0.25);
  background: #6e0d23;
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 160, 23, 0.25);
  color: var(--maroon-deep);
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: var(--gold-dark);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
  color: #000;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.3);
}
.btn-gold:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.4);
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-visual .hero-image {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  background: linear-gradient(145deg, #f7ede0, #fff9ef);
  padding: 20px;
  position: relative;
  border: 1px solid rgba(212, 160, 23, 0.08);
}
.hero-visual .hero-image img {
  border-radius: 12px;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.float-card {
  position: absolute;
  background: rgba(255, 249, 239, 0.8);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: 16px;
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--maroon-deep);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.04);
  display: flex;
  align-items: center;
  gap: 8px;
  animation: floatY 6s ease-in-out infinite;
  pointer-events: none;
  white-space: nowrap;
}
.float-card i {
  color: var(--gold-dark);
  font-size: 1rem;
}
.float-card:nth-child(1) {
  top: 8%;
  right: -6%;
  animation-delay: 0s;
}
.float-card:nth-child(2) {
  bottom: 18%;
  left: -8%;
  animation-delay: 2s;
}
.float-card:nth-child(3) {
  bottom: 6%;
  right: 2%;
  animation-delay: 4s;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-12px);
  }
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  opacity: 0.4;
  pointer-events: none;
  animation: particleFloat 12s infinite linear;
}
@keyframes particleFloat {
  0% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
  50% {
    opacity: 0.8;
    transform: translate(30px, -40px) scale(1.4);
  }
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.4;
  }
}

.slider-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 24px;
  z-index: 10;
  pointer-events: none;
}
.slider-arrow {
  pointer-events: auto;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 160, 23, 0.15);
  color: var(--maroon-deep);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.slider-arrow:hover {
  background: rgba(255, 249, 239, 0.9);
  border-color: var(--gold-dark);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.15);
  transform: scale(1.05);
  color: var(--gold-dark);
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(92, 10, 30, 0.15);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dots button.active {
  background: var(--gold-dark);
  width: 28px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(212, 160, 23, 0.2);
}
.slider-dots button:hover {
  background: var(--gold-dark);
  opacity: 0.7;
} */

/* ───────────── SECTION TITLE ───────────── */
.section-title {
  text-align: center;
  margin-bottom: 48px;
}
.section-title h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--maroon-deep);
}
.section-title p {
  color: #7a5a5a;
  font-weight: 300;
  margin-top: 4px;
  letter-spacing: 0.5px;
}
.section-title .gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  margin: 10px auto 0;
  border-radius: 4px;
}

/* ───────────── CATEGORIES ───────────── */

.shop-category {
  padding: 60px 0;
  background: #f9f4ed;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 36px;
  color: #5a0f14;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.section-title span {
  color: #d4a84f;
  font-size: 28px;
}

.category-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  height: 100%;
}

.category-card:hover {
  transform: translateY(-8px);
}

.category-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}

.category-content {
  padding: 10px;
  text-align: center;
}

.category-content h3 {
  font-size: 20px;
  color: #4b1d1d;
  font-weight: 600;
  margin-bottom: 0px;
}

.category-content a {
  text-decoration: none;
  color: #7a3c25;
  font-size: 13px;
  font-weight: 500;
}

.category-content a:hover {
  color: #d4a84f;
}

/* Mobile */
@media (max-width: 576px) {
  .section-title h2 {
    font-size: 28px;
  }

  .category-card img {
    height: 140px;
  }

  .category-content h3 {
    font-size: 16px;
  }
  .category-content a {
    font-size: 0.66em;
  }
  .category-content {
    padding: 5px;
  }
}
.categories {
  padding: 72px 0;
}
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.category-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 2px solid rgb(212 160 23 / 80%);
  border-radius: var(--radius-card);
  /* padding: 28px 18px 24px; */
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.category-card::before {
  /* content: "";
  position: absolute; */
  inset: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(135deg, rgba(212, 160, 23, 0.02), transparent);
  opacity: 0;
  transition: var(--transition);
}
.category-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 20px 60px rgba(92, 10, 30, 0.06),
    0 0 0 1px rgba(212, 160, 23, 0.15);
  border-color: rgba(212, 160, 23, 0.3);
}
.category-card:hover::before {
  opacity: 1;
}
.category-card .cat-icon {
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
  display: block;
}
.category-card .cat-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  margin: 8px 0 12px;
  transition: var(--transition);
  background: #f7ede0;
}
.category-card:hover .cat-img {
  transform: scale(1.04);
}
.category-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--maroon-deep);
}

/* ───────────── TABBED PRODUCTS SECTION ───────────── */
.tabbed-products {
  padding: 72px 0;
  background: linear-gradient(
    180deg,
    #f7ede0,
    var(--cream-bg) 40%,
    #f7ede0 100%
  );
}

/* ─── Tabs Wrapper: single row + hidden scrollbar ─── */
.tabs-wrapper {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE/Edge */
  gap: 8px 12px;
  padding: 4px 8px 12px 8px;
  margin-bottom: 48px;
  justify-content: flex-start;
  /* left aligned, scrolls if needed */
}
.tabs-wrapper::-webkit-scrollbar {
  display: none;
  /* Chrome/Safari */
}

.tab-btn {
  flex: 0 0 auto;
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 79);
  background: rgba(255, 249, 239, 0.5);
  backdrop-filter: blur(8px);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5a3f3f;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  letter-spacing: 0.3px;
  user-select: none;
}
.tab-btn:hover {
  border-color: var(--gold-dark);
  background: rgba(255, 249, 239, 0.85);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.08);
}
.tab-btn.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  border-color: var(--gold-dark);
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.2);
  transform: translateY(-2px);
}
.tab-btn.active i {
  color: #fff;
}
.tab-btn i {
  margin-right: 6px;
  color: goldenrod;
  font-size: 0.8rem;
}

.tab-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  transition: opacity 0.4s ease;
}
.tab-products-grid.fade {
  opacity: 0;
  transform: translateY(12px);
}
.tab-products-grid.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.tab-product-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 16px 16px 20px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
}
.tab-product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 72px rgba(92, 10, 30, 0.08),
    0 0 0 1px rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.12);
}
.tab-product-card .discount {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--maroon-deep);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.tab-product-card .wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #b08888;
  transition: var(--transition);
  z-index: 2;
  font-size: 0.95rem;
}
.tab-product-card .wishlist:hover {
  color: var(--maroon-deep);
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.1);
}
.tab-product-card .prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: #f7ede0;
  transition: var(--transition);
  margin-bottom: 12px;
}
.tab-product-card:hover .prod-img {
  transform: scale(1.02);
}
.tab-product-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2d1b1b;
  margin-bottom: 4px;
}
.tab-product-card .rating {
  display: none;
  /* display: flex; */
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.tab-product-card .rating span {
  color: #7a5a5a;
  margin-left: 4px;
}
.tab-product-card .price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--maroon-deep);
}
.tab-product-card .price strike {
  font-weight: 300;
  color: #b08888;
  font-size: 0.85rem;
}
.tab-product-card .btn-add {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.15);
}
.tab-product-card .btn-add:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.25);
}

.tab-empty {
  text-align: center;
  padding: 60px 20px;
  grid-column: 1 / -1;
  color: #7a5a5a;
  font-weight: 300;
}
.tab-empty i {
  font-size: 2.5rem;
  color: var(--gold-dark);
  opacity: 0.3;
  margin-bottom: 16px;
  display: block;
}
.tab-empty h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: var(--maroon-deep);
  margin-bottom: 4px;
}

/* ───────────── FEATURED PRODUCTS ───────────── */
.featured {
  padding: 72px 0;
  background: linear-gradient(180deg, var(--cream-bg) 0%, #f7ede0 100%);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 16px 16px 20px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: relative;
}
.product-card:hover {
  transform: translateY(-10px);
  box-shadow:
    0 24px 72px rgba(92, 10, 30, 0.08),
    0 0 0 1px rgba(212, 160, 23, 0.08);
  border-color: rgba(212, 160, 23, 0.12);
}
.product-card .discount {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--maroon-deep);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 2;
}
.product-card .wishlist {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  color: #b08888;
  transition: var(--transition);
  z-index: 2;
  font-size: 0.95rem;
}
.product-card .wishlist:hover {
  color: var(--maroon-deep);
  background: rgba(255, 255, 255, 0.95);
  transform: scale(1.1);
}
.product-card .prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: #f7ede0;
  transition: var(--transition);
  margin-bottom: 12px;
}
.product-card:hover .prod-img {
  transform: scale(1.02);
}
.product-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2d1b1b;
  margin-bottom: 4px;
}
.product-card .rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: var(--gold-dark);
  margin-bottom: 6px;
}
.product-card .rating span {
  color: #7a5a5a;
  margin-left: 4px;
}
.product-card .price {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--maroon-deep);
}
.product-card .price strike {
  font-weight: 300;
  color: #b08888;
  font-size: 0.85rem;
}
.product-card .btn-add {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.15);
}
.product-card .btn-add:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 32px rgba(212, 160, 23, 0.25);
}

/* ───────────── OFFER BANNER ───────────── */
.offer-banner {
  padding: 72px 0;
  background: linear-gradient(145deg, var(--maroon-deep), #3d0715);
  position: relative;
  overflow: hidden;
}
.offer-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse at 30% 50%,
      rgba(212, 160, 23, 0.08) 0%,
      transparent 60%
    ),
    radial-gradient(
      ellipse at 70% 50%,
      rgba(212, 160, 23, 0.04) 0%,
      transparent 50%
    );
  pointer-events: none;
}
.offer-banner .offer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  position: relative;
  z-index: 2;
}
.offer-banner .offer-left {
  color: #fff;
}
.offer-banner .offer-left .tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}
.offer-banner .offer-left h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  color: #fff;
  line-height: 1.1;
}
.offer-banner .offer-left h2 em {
  color: var(--gold-light);
  font-style: italic;
}
.offer-banner .offer-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  padding: 16px 28px;
  border-radius: 60px;
  border: 1px solid rgba(212, 160, 23, 0.15);
}
.offer-banner .offer-right .coupon-code {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 2px;
  background: rgba(212, 160, 23, 0.08);
  padding: 4px 24px;
  border-radius: 40px;
  border: 1px dashed rgba(212, 160, 23, 0.25);
}
.offer-banner .offer-right .coupon-input {
  display: flex;
  gap: 10px;
  align-items: center;
}
.offer-banner .offer-right .coupon-input input {
  padding: 10px 20px;
  border-radius: 60px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  min-width: 200px;
  backdrop-filter: blur(4px);
}
.offer-banner .offer-right .coupon-input input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.offer-banner .offer-right .coupon-input input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.08);
}
.offer-banner .offer-right .coupon-input button {
  padding: 10px 28px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.2);
  white-space: nowrap;
}
.offer-banner .offer-right .coupon-input button:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 36px rgba(212, 160, 23, 0.3);
}

.offer-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(212, 160, 23, 0.03);
  border: 1px solid rgba(212, 160, 23, 0.04);
  pointer-events: none;
}
.offer-circle:nth-child(1) {
  width: 300px;
  height: 300px;
  top: -80px;
  right: -60px;
}
.offer-circle:nth-child(2) {
  width: 180px;
  height: 180px;
  bottom: -40px;
  left: 10%;
  background: rgba(212, 160, 23, 0.02);
}

/* ───────────── WHY CHOOSE US ───────────── */
.why-choose {
  padding: 72px 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.why-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(92, 10, 30, 0.06);
  border-color: rgba(212, 160, 23, 0.2);
}
.why-card .why-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.08),
    rgba(212, 160, 23, 0.02)
  );
  border: 1px solid rgba(212, 160, 23, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--gold-dark);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.06);
  transform: scale(1.04);
}
.why-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--maroon-deep);
}
.why-card p {
  font-size: 0.85rem;
  color: #7a5a5a;
  font-weight: 300;
  margin-top: 4px;
}

/* ───────────── TESTIMONIALS ───────────── */
.testimonials {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7ede0, var(--cream-bg));
  overflow: hidden;
}
.testimonial-slider {
  display: flex;
  gap: 28px;
  transition: transform 0.6s ease;
  will-change: transform;
}
.testimonial-track {
  overflow: hidden;
  position: relative;
}
.testimonial-card {
  min-width: calc(33.333% - 20px);
  background: rgba(255, 249, 239, 0.7);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 28px 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover {
  box-shadow: 0 16px 56px rgba(92, 10, 30, 0.04);
  border-color: rgba(212, 160, 23, 0.1);
}
.testimonial-card .t-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7ede0;
  margin-bottom: 12px;
  border: 2px solid rgba(212, 160, 23, 0.08);
}
.testimonial-card .t-stars {
  color: var(--gold-dark);
  font-size: 0.9rem;
  margin-bottom: 8px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 0.95rem;
  color: #3d2a2a;
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 8px;
}
.testimonial-card .t-name {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--maroon-deep);
}
.testimonial-card .t-role {
  font-size: 0.75rem;
  color: #b08888;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}
.testimonial-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(212, 160, 23, 0.2);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.testimonial-dots button.active {
  background: var(--gold-dark);
  width: 28px;
  border-radius: 10px;
}

/* ───────────── FESTIVAL COLLECTION ───────────── */
.festival-collection {
  padding: 72px 0;
}

.festival-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  overflow-y: visible;
  padding: 8px 4px 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
.festival-scroll::-webkit-scrollbar {
  height: 4px;
}
.festival-scroll::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}
.festival-scroll::-webkit-scrollbar-track {
  background: rgba(212, 160, 23, 0.06);
  border-radius: 10px;
}

.festival-item {
  min-width: 240px;
  flex-shrink: 0;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
  scroll-snap-align: start;
  transition: var(--transition);
  /* cursor: pointer; */
  aspect-ratio: 4 / 5;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  height: 450px;
}
.festival-item:hover {
  transform: scale(1.02);
  box-shadow: 0 20px 60px rgba(92, 10, 30, 0.1);
}
.festival-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.festival-item:hover img {
  transform: scale(1.04);
}
.festival-item .festival-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(92, 10, 30, 0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
  pointer-events: none;
}
.festival-item .festival-overlay h3 {
  font-family: "Playfair Display", serif;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}
.festival-item .festival-overlay h3 small {
  display: block;
  font-size: 0.8rem;
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  opacity: 0.7;
}

/* ───────────── LIGHTBOX ───────────── */
.lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
  animation: lightboxFade 0.35s ease;
}
.lightbox-overlay.active {
  display: flex;
}

@keyframes lightboxFade {
  0% {
    opacity: 0;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.lightbox-overlay .lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
  transition: var(--transition);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-family: "Poppins", sans-serif;
  line-height: 1;
  user-select: none;
}
.lightbox-overlay .lightbox-close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
  border-color: rgba(255, 255, 255, 0.15);
}

.lightbox-overlay .lightbox-image-wrapper {
  max-width: 80vw;
  max-height: 80vh;
  border-radius: var(--radius-card);
  overflow: hidden;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
}
.lightbox-overlay .lightbox-image-wrapper img {
  width: 100%;
  height: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.lightbox-overlay .lightbox-caption {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
  font-weight: 300;
  letter-spacing: 1px;
  text-align: center;
  background: rgba(0, 0, 0, 0.3);
  padding: 8px 28px;
  border-radius: 40px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  white-space: nowrap;
}

/* ───────────── MARQUEE ───────────── */
.luxury-marquee {
  padding: 20px 0;
  background: var(--maroon-deep);
  border-top: 1px solid rgba(212, 160, 23, 0.08);
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
  overflow: hidden;
  position: relative;
}
.luxury-marquee .marquee-track {
  display: flex;
  gap: 48px;
  animation: marqueeScroll 24s linear infinite;
  width: max-content;
}
.luxury-marquee .marquee-track span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-weight: 400;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  white-space: nowrap;
  opacity: 0.8;
  transition: var(--transition);
}
.luxury-marquee .marquee-track span i {
  color: var(--gold-dark);
  font-size: 1.1rem;
}
.luxury-marquee .marquee-track span:hover {
  opacity: 1;
  color: #fff;
}
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ───────────── NEWSLETTER ───────────── */
.newsletter {
  padding: 72px 0;
  background: linear-gradient(145deg, var(--maroon-deep), #3d0715);
  position: relative;
  overflow: hidden;
}
.newsletter::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(212, 160, 23, 0.04) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.newsletter .news-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}
.newsletter h2 {
  color: #fff;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 6px;
}
.newsletter p {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 28px;
}
.newsletter .news-form {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 520px;
  margin: 0 auto;
}
.newsletter .news-form input {
  flex: 1;
  min-width: 220px;
  padding: 14px 24px;
  border-radius: 60px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.newsletter .news-form input::placeholder {
  color: rgba(255, 255, 255, 0.25);
}
.newsletter .news-form input:focus {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.06);
}
.newsletter .news-form a {
  padding: 14px 40px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.15);
  white-space: nowrap;
}
.newsletter .news-form a:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 40px rgba(212, 160, 23, 0.25);
}

.diya {
  position: absolute;
  font-size: 1.6rem;
  opacity: 0.12;
  pointer-events: none;
  animation: diyaFloat 8s ease-in-out infinite;
}
.diya:nth-child(1) {
  top: 12%;
  left: 6%;
  animation-delay: 0s;
}
.diya:nth-child(2) {
  top: 18%;
  right: 8%;
  animation-delay: 2s;
}
.diya:nth-child(3) {
  bottom: 14%;
  left: 10%;
  animation-delay: 4s;
}
.diya:nth-child(4) {
  bottom: 20%;
  right: 6%;
  animation-delay: 6s;
}
@keyframes diyaFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(6deg);
  }
}

.coupon-section {
  padding: 40px 20px;
  background: #f6f0e8;
}

.coupon-container {
  background: linear-gradient(135deg, #700018, #9c0025);
  border-radius: 24px;
  padding: 45px 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
}

/* Background circles */
.circle {
  position: absolute;
  border: 1px solid rgba(255, 180, 80, 0.15);
  border-radius: 50%;
}

.circle-one {
  width: 230px;
  height: 230px;
  left: 180px;
  bottom: -120px;
}

.circle-two {
  width: 280px;
  height: 280px;
  right: -90px;
  top: -80px;
}

.coupon-left,
.coupon-right {
  flex: 1;
  position: relative;
  z-index: 2;
}

.coupon-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 196, 0, 0.25);
  padding: 5px 12px;
  border-radius: 40px;
  color: #ffc93c;
  font-size: 11px;
  font-weight: 600;
  margin-bottom: 25px;
}

.coupon-left h2 {
  font-size: 38px;
  line-height: 1.2;
  color: white;
  margin-bottom: 15px;
  font-family: "Playfair Display", serif;
}

.coupon-left h2 span {
  color: #ffc93c;
}

.coupon-left p {
  color: #f7d89a;
  font-size: 0.86em;
  line-height: 1.8;
  max-width: 520px;
}

/* Form */
.coupon-form {
  display: flex;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 35px;
}

.coupon-form input {
  flex: 1;
  padding: 15px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.12);
  color: white;
  font-size: 18px;
}

.coupon-form input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.86em;
}

.coupon-form button {
  background: #e6ad1f;
  border: none;
  padding: 0 58px;
  font-size: 19px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Playfair Display", serif;
}

.coupon-form button:hover {
  background: #ffc93c;
}

/* Coupon Tags */
.coupon-list p {
  color: #f7d89a;
  margin-bottom: 18px;
  font-size: 0.86em;
}

.coupon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.coupon-tags span {
  border: 1px dashed rgba(255, 196, 0, 0.5);
  color: #ffc93c;
  padding: 12px 18px;
  border-radius: 10px;
  /* font-weight: 700; */
  cursor: pointer;
  transition: 0.3s;
}

.coupon-tags span:hover {
  background: rgba(255, 196, 0, 0.12);
}

/* Tablet */
@media (max-width: 992px) {
  .coupon-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 35px;
  }

  .coupon-left h2 {
    font-size: 42px;
  }

  .coupon-left p {
    font-size: 18px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .coupon-container {
    padding: 25px;
    gap: 30px;
  }

  .coupon-left h2 {
    font-size: 32px;
  }

  .coupon-left p {
    font-size: 16px;
    line-height: 1.6;
  }

  .coupon-form {
    flex-direction: column;
  }

  .coupon-form input {
    width: 100%;
    padding: 18px;
  }

  .coupon-form button {
    width: 100%;
    padding: 16px;
    font-size: 18px;
  }

  .coupon-tags span {
    font-size: 14px;
    padding: 10px 14px;
  }
}

/* ───────────── FOOTER ───────────── */
.footer {
  background: linear-gradient(to bottom, #7d001d, #650018);
  padding: 70px 0 0px;
  color: #f7d89a;
  font-family: "Poppins", sans-serif;
}

.footer .container {
  width: 95%;
  max-width: 1400px;
  margin: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  /* padding-bottom: 40px; */
}

.footer h4 {
  color: #ffc93c;
  margin-bottom: 15px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
}

.footer-logo {
  font-size: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff !important;
}

.footer-logo img {
  width: 55px;
  /* height: 55px; */
  /* border: 2px solid #ffc93c; */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc93c;
}

.footer p {
  line-height: 1.8;
  font-size: 0.86em;
  margin: 20px 0;
}

.footer ul {
  list-style: none;
  padding: 0;
}

.footer ul li {
  margin-bottom: 8px;
  font-size: 0.86em;
}

.footer ul li a {
  font-family: "Poppins", sans-serif;
  color: #f7d89a;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.86em;
}

.footer ul li a:hover {
  color: #ffc93c;
  padding-left: 6px;
}

.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}

.social-icons a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc93c;
  transition: 0.3s;
}

.social-icons a:hover {
  background: #ffc93c;
  color: #7d001d;
}

.contact-list li {
  display: flex;
  gap: 12px;
  line-height: 1.6;
}

.contact-list i {
  color: #ffc93c;
  margin-top: 4px;
}

.newsletter {
  margin-top: 25px;
}

.newsletter form {
  display: flex;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.newsletter input {
  flex: 1;
  padding: 15px;
  border: none;
  outline: none;
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.newsletter button {
  background: #ffc93c;
  border: none;
  padding: 0 25px;
  font-weight: 700;
  cursor: pointer;
}

.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 0;
}

.feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.feature-box:last-child {
  border-right: none;
}

.feature-box i {
  font-size: 28px;
  width: 65px;
  height: 65px;
  border: 2px solid #7a001c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a001c;
}

.feature-box h5 {
  color: #7a001c;
  font-size: 22px;
  margin-bottom: 6px;
}

.feature-box p {
  margin: 0;
  font-size: 16px;
}

.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 16px;
  color: #e7c682;
  border-top: 1px solid;
  padding: 10px 0;
}

.footer-bottom span {
  color: #ffc93c;
  font-weight: 700;
}

.footer-bottom i {
  color: #ffc93c;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-box {
    border-right: none;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .newsletter form {
    flex-direction: column;
  }

  .newsletter button {
    padding: 15px;
  }

  .footer-logo {
    font-size: 28px;
  }

  .footer p {
    font-size: 16px;
  }
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1024px) {
  .categories-grid,
  .products-grid,
  .why-grid,
  .tab-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .hero-slide {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 18px;
  }
  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-visual .hero-image {
    max-width: 380px;
    margin: 0 auto;
  }
  .testimonial-card {
    min-width: calc(50% - 14px);
  }
  .offer-banner .offer-inner {
    flex-direction: column;
    text-align: center;
  }
  .offer-banner .offer-right {
    justify-content: center;
    width: 100%;
  }
  .float-card {
    display: none;
  }
  .slider-controls {
    padding: 0 12px;
  }
  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }
  .festival-item {
    min-width: 200px;
  }
  .lightbox-overlay .lightbox-image-wrapper {
    max-width: 90vw;
    max-height: 70vh;
  }
}

@media (max-width: 640px) {
  .header-inner {
    flex-wrap: wrap;
    height: auto;
    padding: 12px 0;
    gap: 12px;
  }
  .logo {
    font-size: 1.4rem;
  }
  .search-bar {
    order: 3;
    flex: 1 1 100%;
    max-width: 100%;
  }
  .nav-icons a {
    width: 34px;
    height: 34px;
    font-size: 1rem;
  }
  .categories-grid,
  .products-grid,
  .why-grid,
  .tab-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .testimonial-card {
    min-width: calc(100% - 8px);
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .offer-banner .offer-right {
    flex-direction: column;
    padding: 20px;
    border-radius: 28px;
  }
  .offer-banner .offer-right .coupon-input {
    flex-direction: column;
    width: 100%;
  }
  .offer-banner .offer-right .coupon-input input {
    width: 100%;
    min-width: unset;
  }
  .festival-item {
    min-width: 160px;
  }
  .hero-content h1 {
    font-size: 1.2rem;
  }
  .hero-content p {
    font-size: 0.86rem;
    margin-bottom: 18px;
  }
  .btn {
    padding: 7px 18px;
    font-size: 0.8rem;
  }
  .section-title h2 {
    font-size: 1.8rem;
  }
  .newsletter .news-form {
    flex-direction: column;
    padding: 0 12px;
  }
  .newsletter .news-form input {
    min-width: unset;
  }
  /* .hero-slider {
    min-height: 540px;
    padding: 24px 0 48px;
  }
  .slider-controls {
    top: auto;
    bottom: 10px;
    transform: none;
    padding: 0 8px;
  }
  .slider-dots {
    bottom: 60px;
  } */
  .tabs-wrapper {
    gap: 6px 8px;
    padding: 4px 4px 12px 4px;
    margin-bottom: 32px;
  }
  .tab-btn {
    padding: 8px 16px;
    font-size: 0.75rem;
    border-radius: 30px;
  }
  .tab-btn i {
    margin-right: 4px;
    font-size: 0.65rem;
  }
  .lightbox-overlay {
    padding: 16px;
  }
  .lightbox-overlay .lightbox-close {
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }
  .lightbox-overlay .lightbox-image-wrapper {
    max-width: 96vw;
    max-height: 70vh;
  }
  .lightbox-overlay .lightbox-caption {
    bottom: 24px;
    font-size: 0.75rem;
    padding: 6px 18px;
    white-space: nowrap;
  }
  .festival-scroll {
    gap: 16px;
    padding: 4px 2px 12px;
  }
}
.coup {
  font-size: 0.86em;
  font-weight: 200;
}

/* ───────────── RESET & BASE (scoped) ───────────── */
.fc-wrapper *,
.fc-wrapper *::before,
.fc-wrapper *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.fc-wrapper {
  font-family:
    "Poppins",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  background: #fdf3e3;
  color: #2d1b1b;
  padding: 40px 20px;
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.fc-container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}

/* ───────────── SECTION HEADER ───────────── */
.fc-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.fc-section-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #5c0a1e;
  letter-spacing: -0.5px;
}
.fc-section-header p {
  color: #7a5a5a;
  font-weight: 300;
  margin-top: 4px;
  font-size: 1rem;
}
.fc-section-header .fc-gold-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #d4a017, #f0c75e);
  margin: 10px auto 0;
  border-radius: 4px;
}

/* ───────────── TABS ───────────── */
.fc-tabs-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 8px;
  margin-bottom: 32px;
  padding: 4px 0;
}

.fc-tab-btn {
  padding: 8px 16px;
  border: 1px solid rgb(212 160 23 / 71%);
  background: rgba(255, 249, 239, 0.6);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #5a3f3f;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.fc-tab-btn:hover {
  border-color: #d4a017;
  background: rgba(255, 249, 239, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.08);
}
.fc-tab-btn.active {
  background: linear-gradient(135deg, #d4a017, #f0c75e);
  color: #fff;
  border-color: #d4a017;
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.25);
  transform: translateY(-2px);
}
.fc-tab-btn.active i {
  color: #fff;
}
.fc-tab-btn i {
  margin-right: 6px;
  font-size: 0.8rem;
  color: #d4a017;
}

/* ───────────── PRODUCT GRID ───────────── */
.fc-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.fc-product-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  border: 1px solid rgba(212, 160, 23, 0.08);
  padding: 16px 16px 20px;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.fc-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(92, 10, 30, 0.08);
  border-color: rgba(212, 160, 23, 0.15);
}

.fc-product-card.hidden {
  display: none;
}

.fc-product-card .fc-discount {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #5c0a1e;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 50px;
  letter-spacing: 0.3px;
  z-index: 2;
}

.fc-product-card .fc-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(212, 160, 23, 0.1);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #b08888;
  transition: all 0.25s ease;
  z-index: 2;
  font-size: 0.9rem;
}
.fc-product-card .fc-wishlist:hover {
  color: #5c0a1e;
  border-color: #d4a017;
  transform: scale(1.05);
}
.fc-product-card .fc-wishlist.liked {
  color: #d4a017;
}

.fc-product-card .fc-prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: #f7ede0;
  margin-bottom: 12px;
  transition: transform 0.3s ease;
}
.fc-product-card:hover .fc-prod-img {
  transform: scale(1.02);
}

.fc-product-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  color: #2d1b1b;
  margin-bottom: 4px;
  line-height: 1.3;
}

.fc-product-card .fc-rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.75rem;
  color: #d4a017;
  margin-bottom: 6px;
}
.fc-product-card .fc-rating span {
  color: #7a5a5a;
  margin-left: 4px;
}

.fc-product-card .fc-price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1.05rem;
  color: #5c0a1e;
  margin-top: auto;
}
.fc-product-card .fc-price strike {
  font-weight: 300;
  color: #b08888;
  font-size: 0.85rem;
}

.fc-product-card .fc-btn-add {
  margin-top: 12px;
  width: 100%;
  padding: 10px;
  border-radius: 50px;
  border: none;
  background: linear-gradient(135deg, #d4a017, #f0c75e);
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s ease;
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.15);
}
.fc-product-card .fc-btn-add:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.25);
}
.fc-product-card .fc-btn-add.added {
  background: #2d7d46;
  box-shadow: 0 4px 16px rgba(45, 125, 70, 0.25);
}

.fc-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #7a5a5a;
}
.fc-empty-state i {
  font-size: 2.5rem;
  color: #d4a017;
  opacity: 0.3;
  margin-bottom: 12px;
  display: block;
}
.fc-empty-state h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  color: #5c0a1e;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1024px) {
  .fc-products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .fc-products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .fc-tabs-wrapper {
    gap: 6px 10px;
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .fc-tabs-wrapper::-webkit-scrollbar {
    display: none;
  }
  .fc-tab-btn {
    padding: 6px 16px;
    font-size: 0.75rem;
    flex-shrink: 0;
  }
  .fc-section-header h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .fc-products-grid {
    gap: 12px;
  }
  .fc-product-card {
    padding: 12px 12px 16px;
    border-radius: 12px;
  }
  .fc-product-card h4 {
    font-size: 0.8rem;
  }
  .fc-product-card .fc-price {
    font-size: 0.9rem;
    flex-wrap: wrap;
    gap: 4px;
  }
  .fc-product-card .fc-price strike {
    font-size: 0.75rem;
  }
  .fc-product-card .fc-btn-add {
    font-size: 0.7rem;
    padding: 8px;
    margin-top: 10px;
  }
  .fc-product-card .fc-discount {
    font-size: 0.6rem;
    padding: 2px 10px;
    top: 10px;
    left: 10px;
  }
  .fc-product-card .fc-wishlist {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
    top: 10px;
    right: 10px;
  }
  .fc-section-header h2 {
    font-size: 1.5rem;
  }
  .fc-section-header p {
    font-size: 0.85rem;
  }
  .fc-tab-btn {
    padding: 4px 12px;
    font-size: 0.65rem;
    border-radius: 30px;
  }
  .fc-container {
    padding: 0 8px;
  }
  .fc-wrapper {
    padding: 20px 8px;
  }
}

@media (max-width: 380px) {
  .fc-products-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .fc-product-card {
    padding: 8px 8px 12px;
  }
  .fc-product-card h4 {
    font-size: 0.7rem;
  }
  .fc-product-card .fc-price {
    font-size: 0.75rem;
  }
  .fc-product-card .fc-btn-add {
    font-size: 0.6rem;
    padding: 6px;
  }
  .fc-product-card .fc-discount {
    font-size: 0.5rem;
    padding: 1px 8px;
    top: 6px;
    left: 6px;
  }
  .fc-product-card .fc-wishlist {
    width: 24px;
    height: 24px;
    font-size: 0.65rem;
    top: 6px;
    right: 6px;
  }
}

/* product detail */

/* ───────────── BREADCRUMB WITH BACKGROUND ───────────── */
.breadcrumb-section {
  position: relative;
  padding: 50px 0 40px;
  background: url("https://images.unsplash.com/photo-1577083552431-6e5fd01988ec?w=1400&q=80")
    center/cover no-repeat;
  margin-bottom: 30px;
  overflow: hidden;
}
.breadcrumb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgb(61 0 5);
  /* background: rgba(92, 10, 30, 0.55); */
  backdrop-filter: blur(2px);
  z-index: 1;
}
.breadcrumb-section .container {
  position: relative;
  z-index: 2;
  text-align: center;
}
.breadcrumb-section h1 {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  margin-bottom: 6px;
}
.breadcrumb-section nav {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
}
.breadcrumb-section nav a {
  color: var(--gold-light);
  transition: var(--transition);
}
.breadcrumb-section nav a:hover {
  color: #fff;
}
.breadcrumb-section nav .separator {
  margin: 0 12px;
  color: rgba(255, 255, 255, 0.3);
}
.breadcrumb-section nav .current {
  color: #fff;
  font-weight: 500;
}

/* ───────────── PRODUCT DETAIL ───────────── */
.product-detail {
  padding: 50px 0px;
}
.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Gallery Slider ── */
.gallery-wrap {
  position: sticky;
  top: 110px;
}
.slider-container {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: #f7ede0;
  border: 1px solid rgba(212, 160, 23, 0.08);
  box-shadow: var(--shadow-soft);
  cursor: none;
}
.slider-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.slider-track img {
  width: 100%;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
  pointer-events: none;
  z-index: 5;
}
.slider-arrows button {
  pointer-events: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 249, 239, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 160, 23, 0.15);
  color: var(--maroon-deep);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.slider-arrows button:hover {
  background: rgba(255, 249, 239, 0.95);
  border-color: var(--gold-dark);
  transform: scale(1.05);
  box-shadow: 0 0 30px rgba(212, 160, 23, 0.15);
}
.slider-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 5;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: var(--transition);
  padding: 0;
}
.slider-dots button.active {
  background: var(--gold-dark);
  width: 28px;
  border-radius: 10px;
}
.slider-dots button:hover {
  background: var(--gold-dark);
  opacity: 0.7;
}

.gallery-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--maroon-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.5px;
  z-index: 6;
}

.gallery-thumbs {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.gallery-thumbs::-webkit-scrollbar {
  height: 3px;
}
.gallery-thumbs::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 10px;
}
.gallery-thumbs button {
  flex: 0 0 80px;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  background: #f7ede0;
  padding: 0;
  opacity: 0.6;
}
.gallery-thumbs button.active {
  border-color: var(--gold-dark);
  opacity: 1;
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.12);
}
.gallery-thumbs button:hover {
  opacity: 1;
  border-color: rgba(212, 160, 23, 0.4);
}
.gallery-thumbs button img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Zoom Lens & Result ── */
.zoom-lens {
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 2px solid var(--gold-dark);
  background-repeat: no-repeat;
  pointer-events: none;
  display: none;
  z-index: 20;
  box-shadow: 0 0 24px rgba(0, 0, 0, 0.18);
  background-color: #fff;
  top: 0;
  left: 0;
}
.zoom-result {
  position: absolute;
  top: 0;
  left: calc(100% + 28px);
  width: 100%;
  max-width: 380px;
  aspect-ratio: 1/1;
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.15);
  background-repeat: no-repeat;
  pointer-events: none;
  display: none;
  z-index: 15;
  background-color: #fff;
  box-shadow: var(--shadow-soft);
  background-size: cover;
}

@media (max-width: 1200px) {
  .zoom-result,
  .zoom-lens {
    display: none !important;
  }
  .slider-container {
    cursor: default;
  }
}

/* ── Info ── */
.detail-info {
  padding-top: 4px;
}
.detail-info .product-category {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(212, 160, 23, 0.08);
  padding: 4px 16px;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.12);
  margin-bottom: 10px;
}
.detail-info h1 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--maroon-deep);
  line-height: 1.15;
  margin-bottom: 8px;
}
.detail-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.detail-rating .stars {
  color: var(--gold-dark);
  font-size: 0.95rem;
}
.detail-rating .stars .far {
  color: #d4c4c4;
}
.detail-rating .reviews {
  font-size: 0.85rem;
  color: #7a5a5a;
}
.detail-rating .reviews a {
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.detail-price {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.detail-price .current {
  font-size: 2rem;
  font-weight: 700;
  color: var(--maroon-deep);
}
.detail-price .strike {
  font-size: 1.2rem;
  color: #b08888;
  text-decoration: line-through;
}
.detail-price .discount-tag {
  background: var(--maroon-deep);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 50px;
}

.detail-description {
  color: #5a3f3f;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 24px;
  border-bottom: 1px solid rgb(212 160 23 / 48%);
  /* padding-bottom: 24px; */
}

/* ── Variants ── */
.variant-group {
  margin-bottom: 20px;
}
.variant-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 6px;
}
.variant-group .options {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.variant-group .options button {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(212, 160, 23, 0.2);
  background: rgba(255, 255, 255, 0.4);
  font-family: "Poppins", sans-serif;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: #5a3f3f;
}
.variant-group .options button:hover {
  border-color: var(--gold-dark);
  background: rgba(255, 249, 239, 0.8);
}
.variant-group .options button.active {
  border-color: var(--gold-dark);
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
}

/* ── Quantity ── */
.qty-group {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.qty-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--maroon-deep);
}
.qty-control {
  display: flex;
  align-items: center;
  border-radius: 60px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}
.qty-control button {
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--maroon-deep);
  font-family: "Poppins", sans-serif;
}
.qty-control button:hover {
  background: rgba(212, 160, 23, 0.06);
}
.qty-control input {
  width: 56px;
  height: 44px;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  background: transparent;
  color: var(--maroon-deep);
  font-family: "Poppins", sans-serif;
  outline: none;
}
.qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

/* ── Action Buttons ── */
.detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.detail-actions .btn-primary {
  flex: 1;
  min-width: 180px;
  padding: 16px 36px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.detail-actions .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.3);
}
.detail-actions .btn-primary.added {
  background: #2d7d46;
  box-shadow: 0 4px 24px rgba(45, 125, 70, 0.25);
}
.detail-actions .btn-wishlist {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.15);
  background: rgba(255, 255, 255, 0.4);
  color: #b08888;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.detail-actions .btn-wishlist:hover {
  border-color: var(--gold-dark);
  background: rgba(255, 249, 239, 0.8);
  transform: scale(1.05);
}
.detail-actions .btn-wishlist.liked {
  color: var(--maroon-deep);
  border-color: var(--maroon-deep);
}

/* ── Meta ── */
.detail-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
  padding-top: 20px;
  border-top: 1px solid rgba(212, 160, 23, 0.08);
  font-size: 0.85rem;
  color: #5a3f3f;
}
.detail-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.detail-meta i {
  color: var(--gold-dark);
  width: 18px;
}

/* ───────────── PRODUCT TABS ───────────── */
.detail-tabs {
  padding: 0px;
  /* padding: 40px 0 60px; */
}
.detail-tabs .tabs-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid rgba(212, 160, 23, 0.1);
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.detail-tabs .tabs-nav button {
  padding: 12px 28px;
  border: none;
  background: transparent;
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #7a5a5a;
  cursor: pointer;
  transition: var(--transition);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.detail-tabs .tabs-nav button:hover {
  color: var(--maroon-deep);
}
.detail-tabs .tabs-nav button.active {
  color: var(--maroon-deep);
  border-bottom-color: var(--gold-dark);
  font-weight: 600;
}
.detail-tabs .tab-panel {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.detail-tabs .tab-panel.active {
  display: block;
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(12px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.detail-tabs .tab-panel p,
.detail-tabs .tab-panel li {
  color: #5a3f3f;
  font-weight: 300;
  line-height: 1.8;
}
.detail-tabs .tab-panel ul {
  list-style: none;
  padding: 0;
}
.detail-tabs .tab-panel ul li {
  padding: 6px 0;
  display: flex;
  align-items: baseline;
  gap: 10px;
}
.detail-tabs .tab-panel ul li::before {
  content: "✦";
  color: var(--gold-dark);
  font-size: 0.7rem;
}

/* ── Reviews ── */
.review-item {
  display: flex;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(212, 160, 23, 0.06);
}
.review-item:last-child {
  border-bottom: none;
}
.review-item .r-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7ede0;
  flex-shrink: 0;
}
.review-item .r-content h5 {
  font-family: "Poppins", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 2px;
}
.review-item .r-content .r-stars {
  color: var(--gold-dark);
  font-size: 0.8rem;
}
.review-item .r-content .r-date {
  font-size: 0.75rem;
  color: #b08888;
  margin-left: 8px;
}
.review-item .r-content p {
  font-size: 0.9rem;
  color: #5a3f3f;
  margin-top: 4px;
  font-weight: 300;
}
.review-item .r-content .review-img {
  max-width: 100px;
  border-radius: 8px;
  margin-top: 8px;
  border: 1px solid rgba(212, 160, 23, 0.1);
}

/* ── Write Review Form ── */
.write-review {
  margin-top: 32px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.08);
}
.write-review h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 16px;
}
.review-form .form-input {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  background: rgba(255, 255, 255, 0.6);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  margin-bottom: 14px;
  color: #2d1b1b;
}
.review-form .form-input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.06);
}
.review-form textarea.form-input {
  min-height: 100px;
  resize: vertical;
}
.star-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
}
.star-rating i {
  font-size: 1.4rem;
  cursor: pointer;
  color: #d4c4c4;
  transition: var(--transition);
}
.star-rating i:hover,
.star-rating i.active {
  color: var(--gold-dark);
}
.star-rating .rating-label {
  margin-left: 12px;
  font-size: 0.85rem;
  color: #7a5a5a;
  font-weight: 300;
}
.file-upload {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.file-upload label {
  padding: 8px 20px;
  border-radius: 60px;
  background: rgba(212, 160, 23, 0.08);
  border: 1px solid rgba(212, 160, 23, 0.15);
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--maroon-deep);
  font-weight: 500;
}
.file-upload label:hover {
  background: rgba(212, 160, 23, 0.15);
}
.file-upload input[type="file"] {
  display: none;
}
.file-upload #fileName {
  font-size: 0.8rem;
  color: #7a5a5a;
}
.review-form #submitReviewBtn {
  padding: 12px 36px;
  border: none;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.15);
}
.review-form #submitReviewBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 160, 23, 0.25);
}

/* ───────────── RELATED PRODUCTS (AUTO-SLIDE) ───────────── */
.related {
  padding: 40px 0 72px;
  background: linear-gradient(180deg, var(--cream-bg), #f7ede0);
}
.related .section-title {
  margin-bottom: 32px;
}
.related .section-title h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.related-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 16px 16px 20px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(92, 10, 30, 0.08);
  border-color: rgba(212, 160, 23, 0.12);
}
.related-card .prod-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  object-fit: cover;
  background: #f7ede0;
  transition: var(--transition);
  margin-bottom: 10px;
}
.related-card:hover .prod-img {
  transform: scale(1.02);
}
.related-card h4 {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.9rem;
  color: #2d1b1b;
  margin-bottom: 2px;
}
.related-card .price {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--maroon-deep);
}
.related-card .price strike {
  font-weight: 300;
  color: #b08888;
  font-size: 0.8rem;
}
.related-card .btn-add {
  margin-top: 10px;
  width: 100%;
  padding: 8px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.12);
}
.related-card .btn-add:hover {
  transform: scale(1.02);
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.2);
}

@media (max-width: 992px) {
  .feature-box {
    border-right: none;
    justify-content: flex-start;
  }
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .gallery-wrap {
    position: relative;
    top: 0;
  }
  .related-card {
    width: calc((100% - 24px) / 2);
    min-width: 180px;
  }
}
@media (max-width: 768px) {
  .related-card {
    width: calc(100% - 12px);
    min-width: 160px;
  }
  .detail-meta {
    grid-template-columns: 1fr;
  }
  .breadcrumb-section h1 {
    font-size: 2rem;
  }
  .breadcrumb-section {
    padding: 30px 0;
  }
  .gallery-thumbs button {
    flex: 0 0 60px;
  }
  .detail-actions .btn-primary {
    min-width: 140px;
    padding: 14px 24px;
    font-size: 0.9rem;
  }
  .detail-actions .btn-wishlist {
    width: 48px;
    height: 48px;
    font-size: 1rem;
  }
  .detail-tabs .tabs-nav button {
    padding: 10px 16px;
    font-size: 0.8rem;
  }
  .detail-price .current {
    font-size: 1.6rem;
  }
  .qty-control button {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }
  .qty-control input {
    width: 44px;
    height: 36px;
    font-size: 0.9rem;
  }
  .variant-group .options button {
    padding: 6px 16px;
    font-size: 0.75rem;
  }
  .write-review {
    padding: 16px;
  }
  .zoom-result,
  .zoom-lens {
    display: none !important;
  }
}
@media (max-width: 400px) {
  .related-card {
    min-width: 140px;
    padding: 10px;
  }
  .related-card h4 {
    font-size: 0.75rem;
  }
  .related-card .price {
    font-size: 0.8rem;
    flex-wrap: wrap;
  }
  .related-card .btn-add {
    font-size: 0.65rem;
    padding: 6px;
  }
}

/* contact page */

/* ───────────── CONTACT SECTION ───────────── */
.contact-section {
  padding: 20px 0 60px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

/* ── Contact Info Cards ── */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.info-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}
.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(92, 10, 30, 0.06);
  border-color: rgba(212, 160, 23, 0.1);
}
.info-card .icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.08),
    rgba(212, 160, 23, 0.02)
  );
  border: 1px solid rgba(212, 160, 23, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
  transition: var(--transition);
}
.info-card:hover .icon {
  box-shadow: 0 0 0 6px rgba(212, 160, 23, 0.06);
  transform: scale(1.04);
}
.info-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 4px;
}
.info-card p {
  color: #5a3f3f;
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
}
.info-card .social-links {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}
.info-card .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon-deep);
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.3);
}
.info-card .social-links a:hover {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

/* ── Map ── */
.map-container {
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid rgba(212, 160, 23, 0.08);
  box-shadow: var(--shadow-soft);
  margin-top: 12px;
}
.map-container iframe {
  width: 100%;
  height: 240px;
  border: 0;
  display: block;
}

/* ── Contact Form ── */
.form-wrapper {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 22px 36px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.02);
}
.form-wrapper h2 {
  font-size: 1.8rem;
  color: var(--maroon-deep);
  margin-bottom: 8px;
}
.form-wrapper p {
  color: #7a5a5a;
  font-weight: 300;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 10px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--maroon-deep);
  margin-bottom: 4px;
}
.form-group .form-control {
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  background: rgba(255, 255, 255, 0.6);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  color: #2d1b1b;
}
.form-group .form-control:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.06);
}
.form-group textarea.form-control {
  min-height: 130px;
  resize: vertical;
}
.form-group .btn-submit {
  padding: 14px 40px;
  border: none;
  border-radius: 60px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.2);
  width: 100%;
}
.form-group .btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(212, 160, 23, 0.3);
}

/* ═══════════════════════════════════════════ */
/* ─── RESPONSIVE TWEAKS ─── */
/* ═══════════════════════════════════════════ */

/* Tablets & Small Laptops */
@media (max-width: 992px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .form-wrapper {
    padding: 28px 30px;
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
  .footer-features {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .feature-box {
    border-right: none;
    justify-content: flex-start;
  }
}

/* Mobile Landscape & Small Tablets */
@media (max-width: 768px) {
  .breadcrumb-section h1 {
    font-size: 2.2rem;
  }
  .breadcrumb-section {
    padding: 35px 0;
  }
  .form-wrapper {
    padding: 24px;
  }
  .form-wrapper h2 {
    font-size: 1.6rem;
  }
  .info-card {
    padding: 20px 22px;
  }
  .map-container iframe {
    height: 180px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-logo {
    font-size: 28px;
  }
  .footer p {
    font-size: 0.9rem;
  }
  .feature-box {
    flex-direction: column;
    text-align: center;
  }
}

/* Mobile Phones */
@media (max-width: 480px) {
  .contact-section {
    padding: 10px 0 40px;
  }
  .form-wrapper {
    padding: 18px;
  }
  .form-wrapper h2 {
    font-size: 1.4rem;
  }
  .form-wrapper p {
    font-size: 0.9rem;
    margin-bottom: 18px;
  }
  .form-group .form-control {
    padding: 10px 14px;
    font-size: 0.85rem;
  }
  .form-group .btn-submit {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
  .info-card {
    padding: 16px 18px;
  }
  .info-card h3 {
    font-size: 1rem;
  }
  .info-card p {
    font-size: 0.9rem;
  }
  .map-container iframe {
    height: 150px;
  }
  /* .footer {
    padding: 40px 0 0px;
  } */
  .footer-features {
    gap: 24px;
    padding: 24px 16px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .feature-box {
    flex-direction: column;
    text-align: center;
  }
  .feature-box {
    gap: 14px;
  }
  .feature-box i {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .feature-box h5 {
    font-size: 18px;
  }
  .feature-box p {
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 14px;
  }
}

/* Very Small Phones */
@media (max-width: 360px) {
  .form-wrapper {
    padding: 14px;
  }
  .info-card {
    padding: 14px 14px;
  }
}

/* vendor page */

/* ── Search Bar ── */
.search-vendor {
  max-width: 600px;
  margin: 0 auto 40px;
  position: relative;
}
.search-vendor input {
  width: 100%;
  padding: 14px 20px 14px 56px;
  border-radius: 60px;
  border: 1px solid rgba(212, 160, 23, 0.25);
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(6px);
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  outline: none;
  transition: var(--transition);
  color: #2d1b1b;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.search-vendor input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.08);
  background: rgba(255, 255, 255, 0.9);
}
.search-vendor i {
  position: absolute;
  left: 22px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 1.2rem;
  z-index: 9;
}
.search-vendor .clear-btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #b08888;
  cursor: pointer;
  font-size: 1.1rem;
  display: none;
  padding: 4px;
}
.search-vendor .clear-btn:hover {
  color: var(--maroon-deep);
}

/* ── Stats ── */
.vendor-stats {
  text-align: center;
  font-size: 0.9rem;
  color: #7a5a5a;
  margin-bottom: 28px;
}
.vendor-stats span {
  font-weight: 600;
  color: var(--maroon-deep);
}

/* ── Vendor Grid ── */
.vendor-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.vendor-card {
  /* background: rgba(255, 255, 255, 0.75); */
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 2px solid rgb(212 160 23 / 98%);
  padding: 24px 20px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: self-start;
  text-align: start;
}
.vendor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgb(92 10 30 / 18%);
  border-color: rgba(212, 160, 23, 0.1);
}
.vendor-card.hidden {
  display: none;
}

/* ── Vendor Logo ── */
.vendor-card .vendor-logo {
  width: auto;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  background: #f7ede0;
  border: 2px solid rgba(212, 160, 23, 0.1);
  margin-bottom: 14px;
  transition: var(--transition);
}
.vendor-card:hover .vendor-logo {
  border-color: var(--gold-dark);
  transform: scale(1.02);
}

/* ── Vendor Name ── */
.vendor-card .vendor-name {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--maroon-deep);
  margin-bottom: 4px;
}

/* ── Open / Closed Status ── */
.vendor-card .status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}
.vendor-card .status.open {
  color: #1a7d3a;
  background: rgba(26, 125, 58, 0.1);
  border: 1px solid rgba(26, 125, 58, 0.15);
}
.vendor-card .status.open i {
  color: #1a7d3a;
}
.vendor-card .status.closed {
  color: #b33a3a;
  background: rgba(179, 58, 58, 0.08);
  border: 1px solid rgba(179, 58, 58, 0.12);
}
.vendor-card .status.closed i {
  color: #b33a3a;
}

/* ── Rating ── */
.vendor-card .rating {
  color: var(--gold-dark);
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.vendor-card .rating .stars {
  letter-spacing: 1px;
}
.vendor-card .rating .stars .far {
  color: #d4c4c4;
}
.vendor-card .rating .review-count {
  color: #7a5a5a;
  font-size: 0.8rem;
  margin-left: 4px;
  font-weight: 400;
}

/* ── Address ── */
.vendor-card .address {
  font-size: 0.85rem;
  color: #5a3f3f;
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1.5;
}
.vendor-card .address i {
  color: var(--gold-dark);
  margin-right: 6px;
}

/* ── Contact Button ── */
.vendor-card .btn-contact {
  padding: 8px 28px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.12);
  margin-top: auto;
}
.vendor-card .btn-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.2);
}

/* ── No results ── */
.no-results {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #7a5a5a;
  display: none;
}
.no-results.visible {
  display: block;
}
.no-results i {
  font-size: 3rem;
  color: var(--gold-dark);
  opacity: 0.3;
  margin-bottom: 16px;
  display: block;
}
.no-results h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.2rem;
  color: var(--maroon-deep);
}

/* ── Pagination ── */
.pagination-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 40px;
  flex-wrap: wrap;
}
#pageNumbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
.pagination-wrap button {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.15);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #5a3f3f;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pagination-wrap button:hover:not(:disabled) {
  border-color: var(--gold-dark);
  background: rgba(255, 249, 239, 0.8);
  transform: translateY(-2px);
  color: #000;
}
.pagination-wrap button.active {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  border-color: var(--gold-dark);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 160, 23, 0.2);
}
.pagination-wrap button:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
.pagination-wrap .page-arrow {
  font-size: 1rem;
}
.pagination-wrap .page-info {
  font-size: 0.85rem;
  color: #7a5a5a;
  padding: 0 12px;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1024px) {
  .vendor-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

@media (max-width: 768px) {
  .vendor-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .vendor-card {
    padding: 20px 14px 16px;
  }
  .vendor-card .vendor-logo {
    width: 80px;
    height: 80px;
  }
  .vendor-card .vendor-name {
    font-size: 1rem;
  }
  .search-vendor {
    max-width: 100%;
    margin-bottom: 30px;
  }
  .pagination-wrap button {
    min-width: 38px;
    height: 38px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .vendor-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .vendor-card {
    padding: 18px 16px;
    flex-direction: row;
    text-align: left;
    align-items: center;
    gap: 16px;
  }
  .vendor-card .vendor-logo {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    margin-bottom: 0;
  }
  .vendor-card .info-wrap {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .vendor-card .vendor-name {
    font-size: 0.95rem;
  }
  .vendor-card .status {
    font-size: 0.65rem;
    padding: 2px 10px;
    margin-bottom: 4px;
  }
  .vendor-card .rating {
    font-size: 0.8rem;
  }
  .vendor-card .address {
    font-size: 0.75rem;
    margin-bottom: 8px;
  }
  .vendor-card .btn-contact {
    font-size: 0.7rem;
    padding: 5px 16px;
    margin-top: 0;
    align-self: flex-start;
  }
  .search-vendor input {
    padding: 12px 16px 12px 48px;
    font-size: 0.9rem;
  }
  .search-vendor i {
    left: 16px;
    font-size: 1rem;
  }
  .pagination-wrap {
    gap: 4px;
  }
  .pagination-wrap button {
    min-width: 34px;
    height: 34px;
    font-size: 0.75rem;
  }
  .pagination-wrap .page-info {
    font-size: 0.75rem;
    padding: 0 8px;
  }
}

@media (max-width: 360px) {
  .vendor-card {
    flex-direction: column;
    text-align: center;
    padding: 16px;
  }
  .vendor-card .vendor-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 10px;
  }
  .vendor-card .info-wrap {
    align-items: center;
  }
  .vendor-card .btn-contact {
    align-self: center;
  }
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

/* ─── CART OVERLAY ─── */
.cart-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: flex-end;
  animation: fadeIn 0.3s ease;
}
.cart-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cart-panel {
  background: #fff;
  width: 100%;
  max-width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.35s ease;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}
@keyframes slideIn {
  from {
    transform: translateX(60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cart-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-panel-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-panel-header h2 span {
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 500;
}
.cart-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  transition: 0.3s;
  padding: 4px 8px;
}
.cart-close:hover {
  color: var(--dark);
  transform: rotate(90deg);
}

.cart-items-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px 20px;
}
.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: #999;
}
.cart-empty i {
  font-size: 56px;
  color: #ddd;
  margin-bottom: 16px;
  display: block;
}
.cart-empty h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.cart-empty p {
  font-size: 14px;
}
.cart-empty .btn-shop {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold);
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.cart-empty .btn-shop:hover {
  background: var(--gold-dark);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0ece6;
  align-items: center;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f0eb;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-info h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-info .item-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}
.cart-item-info .item-price strike {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-left: 6px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.cart-item-actions .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}
.cart-item-actions .qty-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.cart-item-actions .qty-num {
  font-size: 15px;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}
.cart-item-actions .remove-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  padding: 4px 6px;
  margin-left: 4px;
}
.cart-item-actions .remove-btn:hover {
  color: #e74c3c;
}

.cart-panel-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #faf8f6;
}
.btn-checkout {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.btn-checkout:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 169, 75, 0.3);
}
.btn-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* ─── TOAST ─── */
.toast-notification {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #ffffffc1;
  color: #010101;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  transform: translateY(80px);
  opacity: 0;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  gap: 12px;
  border-left: 4px solid var(--gold);
}
.toast-notification.show {
  transform: translateY(0);
  opacity: 1;
}
.toast-notification i {
  color: var(--gold);
  font-size: 20px;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  /* .announcement {
                gap: 16px;
                font-size: 11px;
                padding: 6px 12px;
            }
            .search-bar {
                order: 3;
                flex: 1 1 100%;
                max-width: 100%;
            } */
  /* .menu-toggle {
                display: block;
            } */
  .lux-menu {
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      padding 0.3s;
    /* padding: 0 16px; */
    position: absolute;
    width: 100%;
  }
  .lux-menu.open {
    max-height: 400px;
    padding: 12px 16px 18px;
    /* height: 100%; */
    width: 100%;
    overflow: scroll;
    position: absolute;
    z-index: 999;
    margin: auto;
    left: 0;
  }
  .lux-menu ul {
    flex-direction: column;
    gap: 4px;
    padding: 0;
  }
  .lux-menu ul li a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
  }
  .breadcrumb-section h1 {
    font-size: 28px;
  }
  .detail-info h1 {
    font-size: 26px;
  }
  .detail-price .current {
    font-size: 24px;
  }
  .detail-meta {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
  .cart-panel {
    max-width: 100%;
  }
  /* .footer-features {
                gap: 24px;
                padding: 24px 16px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            } */
  /* .feature-box {
                flex-direction: column;
                text-align: center;
            } */
  .tabs-nav button {
    padding: 10px 16px;
    font-size: 13px;
  }
  .review-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .write-review {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .related-card {
    padding: 12px;
  }
  .related-card h4 {
    font-size: 13px;
  }
  .related-card .price {
    font-size: 14px;
  }
  .btn-add {
    font-size: 11px;
    padding: 6px 14px;
  }
  .gallery-thumbs button {
    flex: 0 0 50px;
    height: 50px;
  }
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -10px;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  font-weight: 600;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  transition: 0.3s;
}

/* ─── CART OVERLAY ─── */
.cart-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  justify-content: flex-end;
  animation: fadeIn 0.3s ease;
}
.cart-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cart-panel {
  background: #fff;
  width: 100%;
  max-width: 480px;
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: slideIn 0.35s ease;
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.15);
}
@keyframes slideIn {
  from {
    transform: translateX(60px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

.cart-panel-header {
  padding: 20px 24px;
  border-bottom: 1px solid #eee;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-shrink: 0;
}
.cart-panel-header h2 {
  font-size: 22px;
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cart-panel-header h2 span {
  background: var(--gold);
  color: #fff;
  font-size: 12px;
  padding: 2px 10px;
  border-radius: 50px;
  font-weight: 500;
}
.cart-close {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: #888;
  transition: 0.3s;
  padding: 4px 8px;
}
.cart-close:hover {
  color: var(--dark);
  transform: rotate(90deg);
}

.cart-items-wrap {
  flex: 1;
  overflow-y: auto;
  padding: 12px 20px 20px;
}
.cart-empty {
  text-align: center;
  padding: 60px 0;
  color: #999;
}
.cart-empty i {
  font-size: 56px;
  color: #ddd;
  margin-bottom: 16px;
  display: block;
}
.cart-empty h3 {
  font-size: 20px;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 4px;
}
.cart-empty p {
  font-size: 14px;
}
.cart-empty .btn-shop {
  display: inline-block;
  margin-top: 16px;
  background: var(--gold);
  color: #fff;
  padding: 10px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.cart-empty .btn-shop:hover {
  background: var(--gold-dark);
}

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #f0ece6;
  align-items: center;
}
.cart-item:last-child {
  border-bottom: none;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f0eb;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-info h4 {
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cart-item-info .item-price {
  font-size: 16px;
  font-weight: 600;
  color: var(--gold);
}
.cart-item-info .item-price strike {
  font-size: 12px;
  font-weight: 400;
  color: #999;
  margin-left: 6px;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}
.cart-item-actions .qty-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: transparent;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
}
.cart-item-actions .qty-btn:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}
.cart-item-actions .qty-num {
  font-size: 15px;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
}
.cart-item-actions .remove-btn {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  transition: 0.3s;
  padding: 4px 6px;
  margin-left: 4px;
}
.cart-item-actions .remove-btn:hover {
  color: #e74c3c;
}

.cart-panel-footer {
  padding: 16px 24px 24px;
  border-top: 1px solid #eee;
  flex-shrink: 0;
  background: #faf8f6;
}
.cart-summary {
  display: grid;
  /* display: flex; */
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 14px;
}
.cart-summary .total-label {
  color: #666;
  font-weight: 500;
}
.cart-summary .total-amount {
  color: var(--dark);
}
.btn-checkout {
  width: 100%;
  background: var(--gold);
  color: #fff;
  border: none;
  padding: 14px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.btn-checkout:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212, 169, 75, 0.3);
}
.btn-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}


/* ─── RESPONSIVE ─── */
@media (max-width: 768px) {
  /* .announcement {
                gap: 16px;
                font-size: 11px;
                padding: 6px 12px;
            }
            .search-bar {
                order: 3;
                flex: 1 1 100%;
                max-width: 100%;
            } */
  /* .menu-toggle {
                display: block;
            } */
  .lux-menu {
    max-height: 0;
    overflow: hidden;
    transition:
      max-height 0.4s ease,
      padding 0.3s;
    /* padding: 0 16px; */
    position: absolute;
    width: 100%;
  }
  .lux-menu.open {
    max-height: 400px !important;
    padding: 12px 16px 18px;
    /* height: 100%; */
    width: 100%;
    overflow: scroll;
    position: absolute;
    z-index: 999;
    margin: auto;
    left: 0;
  }
  .lux-menu ul {
    flex-direction: column;
    gap: 4px;
    padding: 0;
  }
  .lux-menu ul li a {
    font-size: 14px;
    padding: 8px 0;
    display: block;
  }
  .breadcrumb-section h1 {
    font-size: 28px;
  }
  .detail-info h1 {
    font-size: 26px;
  }
  .detail-price .current {
    font-size: 24px;
  }
  .detail-meta {
    grid-template-columns: 1fr;
  }
  .related-grid {
    grid-template-columns: repeat(auto-fill, minmax(33%, 1fr));
  }
  .cart-panel {
    max-width: 100%;
  }
  /* .footer-features {
                gap: 24px;
                padding: 24px 16px;
                flex-direction: column;
                align-items: center;
                text-align: center;
            } */
  /* .feature-box {
                flex-direction: column;
                text-align: center;
            } */
  .tabs-nav button {
    padding: 10px 16px;
    font-size: 13px;
  }
  .review-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .write-review {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .related-card {
    padding: 12px;
  }
  .related-card h4 {
    font-size: 13px;
  }
  .related-card .price {
    font-size: 14px;
  }
  .btn-add {
    font-size: 11px;
    padding: 6px 14px;
  }
  .gallery-thumbs button {
    flex: 0 0 50px;
    height: 50px;
  }
}

/* ─── REGISTRATION SECTION ──────────────────────────────── */
.register-section {
  padding: 60px 0 50px;
  /* background: linear-gradient(180deg, #fbf6ef 0%, #f3ece2 100%); */
}

.register-card {
  max-width: 780px;
  margin: 0 auto;
  background: #fffcf7;
  border-radius: 28px;
  padding: 48px 52px;
  box-shadow: 0 12px 48px rgba(26, 14, 10, 0.1);
  border: 1px solid #e8ddd0;
  position: relative;
  overflow: hidden;
}
.register-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4a017, #f5d78a, #d4a017);
}

.register-header {
  text-align: center;
  margin-bottom: 32px;
}
.register-header .icon {
  font-size: 44px;
  color: #d4a017;
  margin-bottom: 8px;
  display: block;
}
.register-header h2 {
  font-family: "Playfair Display", serif;
  font-size: 34px;
  color: #1a0e0a;
  margin-bottom: 4px;
}
.register-header p {
  color: #7a5a4a;
  font-size: 15px;
  max-width: 440px;
  margin: 0 auto;
}

.register-form .row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 4px;
}
.register-form .full-width {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0px;
}
.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: #2c1810;
  letter-spacing: 0.3px;
}
.form-group label .required {
  color: #b14a3a;
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border-radius: 12px;
  border: 1.5px solid #e0d3c6;
  background: #fcf9f5;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #2c1810;
  transition: 0.3s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #d4a017;
  box-shadow: 0 0 0 4px #d4a01722;
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a5a4a' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 44px;
}
.form-group .hint {
  font-size: 11px;
  color: #a07a6a;
  margin-top: 2px;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: 16px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.btn-submit {
  padding: 14px 44px;
  border-radius: 50px;
  background: #d4a017;
  color: #1a0e0a;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  justify-content: center;
  min-width: 160px;
}
.btn-submit:hover {
  background: #b8890e;
  transform: scale(1.01);
  box-shadow: 0 6px 20px rgba(212, 160, 23, 0.3);
}
.btn-reset {
  padding: 14px 28px;
  border-radius: 50px;
  background: transparent;
  color: #7a5a4a;
  font-weight: 500;
  font-size: 15px;
  border: 1.5px solid #d4a01766;
  cursor: pointer;
  transition: 0.3s;
  font-family: "Poppins", sans-serif;
}
.btn-reset:hover {
  border-color: #7a5a4a;
  color: #2c1810;
  background: #f3ece2;
}

.register-success {
  display: none;
  text-align: center;
  padding: 30px 20px;
}
.register-success.visible {
  display: block;
}
.register-success i {
  font-size: 64px;
  color: #2b7a4b;
  margin-bottom: 12px;
}
.register-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 28px;
  color: #1a0e0a;
}
.register-success p {
  color: #5a3a2a;
  max-width: 400px;
  margin: 6px auto 0;
}

/* ─── RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 992px) {
  .register-card {
    padding: 34px 28px;
  }
  .register-form .row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .register-card {
    padding: 28px 18px;
  }
  .register-header h2 {
    font-size: 26px;
  }
  .form-actions {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .register-card {
    padding: 20px 14px;
  }
}

/* privacy */

/* ===== Privacy Policy Section ===== */
.privacy-content {
  padding: 100px 20px;
  background: linear-gradient(135deg, #fff8f1, #fdfdfd);
  position: relative;
  overflow: hidden;
}

/* Decorative background blur circles */
.privacy-content::before,
.privacy-content::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  z-index: 0;
}

.privacy-content::before {
  width: 250px;
  height: 250px;
  background: rgba(169, 85, 0, 0.15);
  top: -50px;
  left: -50px;
}

.privacy-content::after {
  width: 300px;
  height: 300px;
  background: rgba(255, 190, 120, 0.15);
  bottom: -80px;
  right: -80px;
}

/* Container */
.privacy-content .container {
  max-width: 950px;
  margin: auto;
  position: relative;
  z-index: 2;
}

/* Main Card */
.content-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 20px;
  padding: 60px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Gradient border top */
.content-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 40px;
  width: calc(100% - 80px);
  height: 4px;
  background: linear-gradient(90deg, #a95500, #ffb366);
  border-radius: 20px;
}

/* Typography */
.content-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 22px;
}

/* Brand Highlight */
.highlight {
  color: #a95500;
  font-weight: 700;
  letter-spacing: 0.5px;
}

/* Section Titles */
.content-card h2 {
  font-size: 26px;
  color: #1f1f1f;
  margin: 45px 0 20px;
  font-weight: 700;
  position: relative;
  padding-left: 18px;
}

/* Stylish vertical accent */
.content-card h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 5px;
  height: 28px;
  background: linear-gradient(to bottom, #a95500, #ffb366);
  border-radius: 10px;
}

/* Lists */
.content-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.content-card ul li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  font-size: 15px;
  color: #444;
  line-height: 1.8;
}

/* Custom golden bullets */
.content-card ul li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 2px;
  color: #a95500;
  font-size: 13px;
}

/* Strong text */
.content-card strong {
  color: #111;
  font-weight: 600;
}

/* Last Updated Box */
.last-updated {
  margin-top: 45px;
  padding: 18px 22px;
  background: linear-gradient(135deg, #fff7ed, #fffdf9);
  border: 1px solid rgba(169, 85, 0, 0.15);
  border-left: 5px solid #a95500;
  border-radius: 12px;
  font-size: 14px;
  color: #6a6a6a;
  font-style: italic;
  box-shadow: 0 8px 20px rgba(169, 85, 0, 0.06);
}

/* Smooth hover */
.content-card:hover {
  transform: translateY(-4px);
  transition: all 0.35s ease;
}

/* Responsive */
@media (max-width: 768px) {
  .privacy-content {
    padding: 70px 15px;
  }

  .content-card {
    padding: 35px 25px;
  }

  .content-card h2 {
    font-size: 22px;
  }

  .content-card p,
  .content-card ul li {
    font-size: 15px;
  }
}
/* Responsive */
@media (max-width: 568px) {
  .privacy-content {
    padding: 40px 15px;
  }

  .content-card {
    padding: 35px 25px;
  }

  .content-card h2 {
    font-size: 22px;
  }

  .content-card p,
  .content-card ul li {
    font-size: 15px;
  }

  .footer ul {
    margin-bottom: 0px;
  }
  .footer ul li:last-child {
    margin-bottom: 0px;
  }
  .featured-padding {
    padding: 0px !important;
  }
}

.featured-padding {
  padding: 50px 0px;
}

/* about */

/* ─── About Page Extra Styles ───────────────────────── */
.about-hero {
  padding: 80px 0 60px;
  background: linear-gradient(145deg, var(--cream-bg) 0%, #f7ede0 100%);
  position: relative;
  overflow: hidden;
}
.about-hero::before {
  content: "✦";
  position: absolute;
  font-size: 20rem;
  color: rgba(212, 160, 23, 0.04);
  right: -60px;
  bottom: -80px;
  transform: rotate(12deg);
  pointer-events: none;
  font-family: serif;
}
.about-hero .container {
  position: relative;
  z-index: 2;
}
.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-hero-text h1 {
  font-size: clamp(2.6rem, 5vw, 4rem);
  color: var(--maroon-deep);
  line-height: 1.08;
  margin-bottom: 16px;
}
.about-hero-text h1 em {
  color: var(--gold-dark);
  font-style: italic;
  font-weight: 400;
}
.about-hero-text p {
  font-size: 1.05rem;
  color: #5a3f3f;
  font-weight: 300;
  line-height: 1.8;
  max-width: 520px;
}
.about-hero-text .gold-line {
  width: 72px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold-light));
  border-radius: 4px;
  margin: 18px 0 22px;
}
.about-hero-image {
  position: relative;
}
.about-hero-image img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(212, 160, 23, 0.08);
  background: #f7ede0;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.about-hero-image .floating-badge {
  position: absolute;
  background: rgba(255, 249, 239, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: 16px;
  padding: 12px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatY 6s ease-in-out infinite;
}
.about-hero-image .floating-badge i {
  font-size: 1.6rem;
  color: var(--gold-dark);
}
.about-hero-image .floating-badge span {
  font-weight: 600;
  color: var(--maroon-deep);
  font-size: 0.85rem;
}
.about-hero-image .floating-badge small {
  display: block;
  font-weight: 300;
  font-size: 0.7rem;
  color: #7a5a5a;
}
.about-hero-image .floating-badge:nth-child(2) {
  top: 10%;
  right: -6%;
  animation-delay: 0s;
}
.about-hero-image .floating-badge:nth-child(3) {
  bottom: 12%;
  left: -8%;
  animation-delay: 2.5s;
}
@keyframes floatY {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

/* ─── Story Section ──────────────────────────────────── */
.story-section {
  padding: 72px 0;
  background: #fffcf7;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.story-grid .story-img img {
  width: 100%;
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-soft);
  aspect-ratio: 4/3;
  object-fit: cover;
  border: 1px solid rgba(212, 160, 23, 0.06);
}
.story-content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--maroon-deep);
  margin-bottom: 12px;
}
.story-content h2 span {
  color: var(--gold-dark);
}
.story-content p {
  color: #5a3f3f;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 16px;
}
.story-content .signature {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  color: var(--gold-dark);
  font-style: italic;
  margin-top: 8px;
}

/* ─── Mission / Vision ────────────────────────────────── */
.mission-section {
  padding: 72px 0;
  background: linear-gradient(180deg, #f7ede0, var(--cream-bg));
}
.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mission-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 32px 28px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(92, 10, 30, 0.06);
  border-color: rgba(212, 160, 23, 0.12);
}
.mission-card .icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(212, 160, 23, 0.08),
    rgba(212, 160, 23, 0.02)
  );
  border: 1px solid rgba(212, 160, 23, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--gold-dark);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.mission-card:hover .icon {
  box-shadow: 0 0 0 8px rgba(212, 160, 23, 0.06);
  transform: scale(1.04);
}
.mission-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 6px;
}
.mission-card p {
  font-size: 0.9rem;
  color: #5a3f3f;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
}

/* ─── Team Section ───────────────────────────────────── */
.team-section {
  padding: 72px 0;
  background: #fffcf7;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.team-card {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 24px 20px 20px;
  text-align: center;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(92, 10, 30, 0.06);
  border-color: rgba(212, 160, 23, 0.12);
}
.team-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 14px;
  border: 3px solid rgba(212, 160, 23, 0.08);
  transition: var(--transition);
  background: #f7ede0;
}
.team-card:hover .avatar {
  border-color: var(--gold-dark);
  transform: scale(1.03);
}
.team-card h4 {
  font-family: "Poppins", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon-deep);
  margin-bottom: 2px;
}
.team-card .role {
  font-size: 0.8rem;
  color: var(--gold-dark);
  font-weight: 500;
  letter-spacing: 0.5px;
}
.team-card p {
  font-size: 0.85rem;
  color: #5a3f3f;
  font-weight: 300;
  margin-top: 6px;
  line-height: 1.6;
}
.team-card .social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 12px;
}
.team-card .social-links a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(212, 160, 23, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a5a5a;
  transition: var(--transition);
  font-size: 0.75rem;
}
.team-card .social-links a:hover {
  background: var(--gold-dark);
  color: #fff;
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

/* ─── Stats ──────────────────────────────────────────── */
.stats-section {
  padding: 60px 0;
  background: linear-gradient(145deg, var(--maroon-deep), #3d0715);
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(212, 160, 23, 0.06) 0%,
    transparent 60%
  );
  pointer-events: none;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
  z-index: 2;
}
.stat-item {
  text-align: center;
  color: #fff;
}
.stat-item .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
  font-weight: 700;
  color: var(--gold-light);
  display: block;
  line-height: 1.1;
}
.stat-item .label {
  font-size: 0.9rem;
  font-weight: 300;
  opacity: 0.7;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ─── Responsive ────────────────────────────────────── */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .mission-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 992px) {
  .about-hero-content {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .about-hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  .about-hero-text .gold-line {
    margin-left: auto;
    margin-right: auto;
  }
  .story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .about-hero-image .floating-badge {
    display: none;
  }
}
@media (max-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }
  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .stat-item .number {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .about-hero {
    padding: 40px 0 30px;
  }
  .story-section {
    padding: 40px 0;
  }
  .mission-section {
    padding: 40px 0;
  }
  .team-section {
    padding: 40px 0;
  }
  .stats-section {
    padding: 40px 0;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .about-hero-image .floating-badge {
    display: none;
  }
}

/* ───────────── CART SECTION ───────────── */
.cart-section {
  padding: 20px 0 60px;
}
.cart-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Cart Items ── */
.cart-items {
  background: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 24px 28px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}
.cart-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
  margin-bottom: 16px;
}
.cart-items-header h2 {
  font-size: 1.4rem;
  color: var(--maroon-deep);
  margin: 0;
}
.cart-items-header .item-count {
  font-size: 0.85rem;
  color: #7a5a5a;
}

/* ── Static Cart Table ── */
.cart-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.cart-table thead th {
  text-align: left;
  padding: 12px 8px 14px 8px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #7a5a5a;
  border-bottom: 2px solid rgba(212, 160, 23, 0.08);
}

.cart-table thead th:last-child {
  text-align: right;
}

.cart-table tbody td {
  padding: 16px 8px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.05);
  vertical-align: middle;
}

.cart-table tbody tr:last-child td {
  border-bottom: none;
}

.cart-table .product-cell {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 200px;
}

.cart-table .product-cell .item-img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #f7ede0;
  border: 1px solid rgba(212, 160, 23, 0.06);
  flex-shrink: 0;
}

.cart-table .product-cell .item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.cart-table .product-cell .item-name {
  font-family: "Playfair Display", serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon-deep);
}

.cart-table .product-cell .item-category {
  font-size: 0.7rem;
  color: var(--gold-dark);
  background: rgba(212, 160, 23, 0.06);
  padding: 2px 12px;
  border-radius: 50px;
  display: inline-block;
  width: fit-content;
}

.cart-table .price-col {
  font-weight: 500;
  color: var(--maroon-deep);
  white-space: nowrap;
}

.cart-table .price-col strike {
  font-weight: 300;
  color: #b08888;
  font-size: 0.8rem;
  margin-left: 6px;
}

.cart-table .qty-col .qty-control {
  display: inline-flex;
  align-items: center;
  border-radius: 60px;
  border: 1px solid rgba(212, 160, 23, 0.12);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.4);
}

.cart-table .qty-col .qty-control button {
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--maroon-deep);
  font-family: "Poppins", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-table .qty-col .qty-control button:hover {
  background: rgba(212, 160, 23, 0.06);
}

.cart-table .qty-col .qty-control input {
  width: 38px;
  height: 32px;
  border: none;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  background: transparent;
  color: var(--maroon-deep);
  font-family: "Poppins", sans-serif;
  outline: none;
  padding: 0;
}

.cart-table .qty-col .qty-control input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

.cart-table .total-col {
  font-weight: 700;
  color: var(--maroon-deep);
  text-align: right;
  white-space: nowrap;
}

.cart-table .remove-col {
  text-align: right;
  white-space: nowrap;
}

.cart-table .remove-col .remove-btn {
  background: none;
  border: none;
  color: #b08888;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  padding: 4px 8px;
}

.cart-table .remove-col .remove-btn:hover {
  color: #b33a3a;
  transform: scale(1.15);
}

/* empty state */
.empty-cart {
  text-align: center;
  padding: 50px 20px;
}
.empty-cart i {
  font-size: 4rem;
  color: var(--gold-dark);
  opacity: 0.25;
  margin-bottom: 16px;
  display: block;
}
.empty-cart h3 {
  font-family: "Poppins", sans-serif;
  font-size: 1.3rem;
  color: var(--maroon-deep);
}
.empty-cart p {
  color: #7a5a5a;
  font-weight: 300;
  margin-bottom: 20px;
}
.empty-cart .btn-shop {
  padding: 12px 36px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(212, 160, 23, 0.15);
  display: inline-block;
}
.empty-cart .btn-shop:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 36px rgba(212, 160, 23, 0.25);
}

/* ── Cart Summary ── */
.cart-summary {
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  border-radius: var(--radius-card);
  border: 1px solid rgba(212, 160, 23, 0.06);
  padding: 28px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  position: sticky;
  top: 110px;
}
.cart-summary h3 {
  font-size: 1.3rem;
  color: var(--maroon-deep);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(212, 160, 23, 0.08);
}
.summary-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.95rem;
  color: #5a3f3f;
}
.summary-row.total {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--maroon-deep);
  border-top: 2px solid rgba(212, 160, 23, 0.1);
  padding-top: 14px;
  margin-top: 6px;
}
.summary-row .label {
  font-weight: 400;
}
.summary-row .value {
  font-weight: 500;
}
.summary-row.total .value {
  color: var(--gold-dark);
  font-weight: 700;
}

/* ── Coupon ── */
.coupon-section-cart {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(212, 160, 23, 0.08);
}
.coupon-section-cart label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--maroon-deep);
  display: block;
  margin-bottom: 8px;
}
.coupon-input-group {
  display: flex;
  gap: 10px;
  align-items: center;
}
.coupon-input-group input {
  flex: 1;
  padding: 10px 16px;
  border-radius: 60px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  background: rgba(255, 255, 255, 0.5);
  font-family: "Poppins", sans-serif;
  font-size: 0.9rem;
  outline: none;
  transition: var(--transition);
  color: #2d1b1b;
  min-width: 0;
}
.coupon-input-group input:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 4px rgba(212, 160, 23, 0.06);
}
.coupon-input-group button {
  padding: 10px 22px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
  color: #fff;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.1);
  white-space: nowrap;
}
.coupon-input-group button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212, 160, 23, 0.2);
}
.coupon-input-group button.applied {
  background: #2d7d46;
}
.coupon-message {
  font-size: 0.8rem;
  margin-top: 6px;
  font-weight: 400;
}
.coupon-message.success {
  color: #1a7d3a;
}
.coupon-message.error {
  color: #b33a3a;
}

/* ── Checkout Button ── */
.btn-checkout {
  width: 100%;
  padding: 16px;
  border-radius: 60px;
  border: none;
  background: linear-gradient(135deg, var(--maroon-deep), #3d0715);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: "Poppins", sans-serif;
  box-shadow: 0 4px 24px rgba(92, 10, 30, 0.2);
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.btn-checkout:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(92, 10, 30, 0.3);
}
.btn-checkout:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

/* ── Continue Shopping ── */
.continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-dark);
  font-weight: 500;
  margin-top: 16px;
  transition: var(--transition);
  font-size: 0.9rem;
}
.continue-shopping:hover {
  color: var(--maroon-deep);
  gap: 12px;
}

/* ───────────── FOOTER ───────────── */
.footer {
  background: linear-gradient(to bottom, #7d001d, #650018);
  padding: 70px 0 0px;
  color: #f7d89a;
  font-family: "Poppins", sans-serif;
}
.footer .container {
  width: 90%;
  max-width: 1400px;
  margin: auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.footer h4 {
  color: #ffc93c;
  margin-bottom: 15px;
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 1px;
}
.footer-logo {
  font-size: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff !important;
}
.footer-logo i {
  width: 55px;
  height: 55px;
  border: 2px solid #ffc93c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc93c;
}
.footer p {
  line-height: 1.8;
  font-size: 0.86em;
  margin: 20px 0;
}
.footer ul {
  list-style: none;
  padding: 0;
}
.footer ul li {
  margin-bottom: 8px;
  font-size: 0.86em;
}
.footer ul li a {
  font-family: "Poppins", sans-serif;
  color: #f7d89a;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.86em;
}
.footer ul li a:hover {
  color: #ffc93c;
  padding-left: 6px;
}
.social-icons {
  display: flex;
  gap: 14px;
  margin-top: 25px;
}
.social-icons a {
  width: 45px;
  height: 45px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffc93c;
  transition: 0.3s;
}
.social-icons a:hover {
  background: #ffc93c;
  color: #7d001d;
}
.contact-list li {
  display: flex;
  gap: 12px;
  line-height: 1.6;
}
.contact-list i {
  color: #ffc93c;
  margin-top: 4px;
}
.footer-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 35px 0;
}
.feature-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}
.feature-box:last-child {
  border-right: none;
}
.feature-box i {
  font-size: 28px;
  width: 65px;
  height: 65px;
  border: 2px solid #7a001c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #7a001c;
}
.feature-box h5 {
  color: #7a001c;
  font-size: 22px;
  margin-bottom: 6px;
}
.feature-box p {
  margin: 0;
  font-size: 16px;
}
.footer-bottom {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  color: #e7c682;
  border-top: 1px solid;
  padding: 10px 0;
}
.footer-bottom span {
  color: #ffc93c;
  font-weight: 700;
}
.footer-bottom i {
  color: #ffc93c;
}

/* ───────────── RESPONSIVE ───────────── */
@media (max-width: 1024px) {
  .cart-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .cart-summary {
    position: relative;
    top: 0;
  }
}

@media (max-width: 768px) {
  .cart-items {
    padding: 18px 16px;
  }

  .cart-table thead {
    display: none;
  }

  .cart-table,
  .cart-table tbody,
  .cart-table tr,
  .cart-table td {
    display: block;
    width: 100%;
  }

  .cart-table tbody tr {
    padding: 16px 0;
    border-bottom: 1px solid rgba(212, 160, 23, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    align-items: center;
  }

  .cart-table tbody tr:last-child {
    border-bottom: none;
  }

  .cart-table td {
    border: none !important;
    padding: 4px 0 !important;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .cart-table .product-cell {
    flex: 1 1 100%;
    min-width: unset;
  }

  .cart-table .product-cell .item-img {
    width: 52px;
    height: 52px;
  }

  .cart-table .product-cell .item-name {
    font-size: 0.9rem;
  }

  .cart-table .price-col {
    flex: 0 1 auto;
  }

  .cart-table .qty-col {
    flex: 0 1 auto;
  }

  .cart-table .total-col {
    flex: 0 1 auto;
    text-align: left;
    margin-left: auto;
  }

  .cart-table .remove-col {
    flex: 0 1 auto;
    margin-left: 4px;
  }

  .cart-table td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: #7a5a5a;
    margin-right: 10px;
    min-width: 60px;
  }

  .cart-table .product-cell::before {
    display: none;
  }

  .cart-table .qty-col .qty-control button {
    width: 28px;
    height: 28px;
    font-size: 0.85rem;
  }
  .cart-table .qty-col .qty-control input {
    width: 32px;
    height: 28px;
    font-size: 0.8rem;
  }

  .cart-summary {
    padding: 20px 18px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .coupon-input-group {
    flex-direction: column;
    align-items: stretch;
  }
  .coupon-input-group button {
    padding: 12px;
    font-size: 0.9rem;
  }
  .cart-summary {
    display: inline;
  }
}

@media (max-width: 480px) {

  .breadcrumb-section h1 {
    font-size: 1.8rem;
  }
  .breadcrumb-section nav {
    font-size: 0.8rem;
  }
  .cart-items {
    padding: 14px 12px;
  }
  .cart-items-header h2 {
    font-size: 1.2rem;
  }

  .cart-table .product-cell .item-img {
    width: 44px;
    height: 44px;
  }
  .cart-table .product-cell .item-name {
    font-size: 0.82rem;
  }

  .cart-summary {
    padding: 16px 14px;
    display: inline;
  }
  .cart-summary h3 {
    font-size: 1.1rem;
  }
  .summary-row {
    font-size: 0.85rem;
  }
  .summary-row.total {
    font-size: 1.05rem;
  }
  .btn-checkout {
    font-size: 0.95rem;
    padding: 14px;
  }
  .footer {
    padding: 40px 0 0px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .footer-features {
    padding: 20px 0;
  }
  .feature-box {
    gap: 14px;
  }
  .feature-box i {
    width: 50px;
    height: 50px;
    font-size: 22px;
  }
  .feature-box h5 {
    font-size: 18px;
  }
  .feature-box p {
    font-size: 14px;
  }
  .footer-bottom {
    font-size: 14px;
  }
  .empty-cart i {
    font-size: 3rem;
  }
  .empty-cart h3 {
    font-size: 1.1rem;
  }
}

@media (max-width: 360px) {
  .cart-table .product-cell {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .cart-table .product-cell .item-info {
    width: 100%;
  }
}

.bg-cat{
    background: none;
    border-bottom: 2px solid gold;
}

.lux-menu ul li a.active{
    color:#e63946;
    font-weight:600;
    border-bottom:2px solid #e63946;
}

.view-all-btn{
  margin-top: 12px;
    width: 10%;
    padding: 10px;
    border-radius: 60px;
    border: none;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold-light));
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
    font-family: "Poppins", sans-serif;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.15);
}