:root {
  --cream: #fff8f2;
  --blush: #fceef2;
  --dusty-rose: #e8b4c2;
  --rose: #844204;
  --deep-rose: #844204;
  --mocha: #6b3a2a;
  --primary: #ffd9d9;
  --mocca: #6e1c33;
  --warm-brown: #a0522d;
  --rose-rgb: #ffeee2;
  --caramel: #d4956a;
  --sand: #f0dcc8;
  --marqueeBg: #8b3a52;
  --white: #ffffff;
  --text-dark: #2c1a12;
  --text-mid: #5c3a28;
  --gold: #5c1916;
  --warmm: #fff7f0;
  --text-light: #9a7060;
  --rose-p: #c16a17;
  --rose-l: #844204;
  --border: #edd8c8;
  --shadow: rgba(107, 58, 42, 0.12);
  --shadow2: rgba(0, 0, 0, 0.24);
  --font-display: "Playfair Display", serif;
  --font-body: "DM Sans", sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.3s ease;
  --tr: all 0.3s ease-in-out;
  --fh: "Playfair Display", serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 15px;
  position: relative;
}

/* --- UNIFIED LAYOUT CONTAINER --- */
.listing-wrap {
  padding: 40px 0;
  min-height: 400px;
}

@media (max-width: 768px) {
  .listing-wrap {
    padding: 24px 0;
  }
}

/* --- UNIFIED BUTTON DESIGN --- */
.btn,
.btn-primary,
.btn-buy,
.btn-buynow,
.btn-va,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 40px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary,
.btn-buy,
.btn-buynow {
  background: var(--rose);
  color: var(--white) !important;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover,
.btn-buy:hover,
.btn-buynow:hover {
  background: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow2);
}

.btn-secondary,
.btn-va {
  background: transparent;
  color: var(--rose) !important;
  border: 1.5px solid var(--rose);
}

.btn-secondary:hover,
.btn-va:hover {
  background: var(--rose);
  color: var(--white) !important;
  box-shadow: 0 4px 12px var(--shadow);
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

/* ── MARQUEE BAR ── */
.marquee-bar {
  background-color: transparent;
  background-image: linear-gradient(90deg, #5C1916 0%, #844204 50%);
  color: var(--white);
  padding: 20px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-bottom: 1px solid var(--border);
  border-top: 1px solid var(--border);
  font-weight: 500;
  font-size: 14px;
}

.marquee-track {
  display: inline-flex;
  gap: 50px;
  padding-right: 50px;
  animation: marqueeScroll 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-track span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar {
  background-color: transparent;
  background-image: linear-gradient(90deg, #5C1916 0%, #844204 50%);
  color: var(--white);
  text-align: center;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: static;
  top: 0;
  z-index: 1000;
}

.announcement-bar span {
  margin: 0 30px;
}

/* ── NAVBAR ── */
nav {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0;
  position: sticky;
  top: 0px;
  z-index: 999;
  box-shadow: 0 2px 16px var(--shadow);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  padding: 0 15px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--deep-rose);
}

.logo svg {
  width: 34px;
  height: 34px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-menu>li {
  position: relative;
}

.nav-menu>li>a {
  padding: 10px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu>li>a:hover,
.nav-menu>li>a.active {
  color: var(--deep-rose);
  background: var(--blush);
}

.nav-menu>li>a .arrow {
  font-size: 10px;
  transition: var(--transition);
}

.nav-menu>li:hover>a .arrow {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 40px var(--shadow);
  width: 900px;
  max-height: 80vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 20px;
  display: none;
  z-index: 100;
}

.nav-menu>li:hover .mega-menu {
  display: block;
  column-count: 4;
  column-gap: 30px;
}

.mega-col {
  break-inside: avoid;
  margin-bottom: 25px;
  display: inline-block;
  width: 100%;
}

.mega-col h4 {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.mega-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-mid);
  transition: var(--transition);
}

.mega-col a:hover {
  background: #fff3f663;
  color: var(--deep-rose);
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

.mega-col a .cat-icon {
  width: 28px;
  min-width: 28px;
  height: 28px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #f9f4ee;
}

/* Nav icons */
.nav-icons {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-mid);
  transition: var(--transition);
  cursor: pointer;
  position: relative;
}

.nav-icon:hover {
  background: var(--blush);
  color: var(--deep-rose);
  border-color: var(--dusty-rose);
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--deep-rose);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── SECTION HEADERS ── */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.section-header p {
  font-size: 16px;
  color: var(--text-light);
}

.section-header .line {
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--rose), var(--caramel));
  border-radius: 3px;
  margin: 10px auto 0;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--deep-rose);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--mocha);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(139, 58, 82, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--deep-rose);
  border: 1.5px solid var(--deep-rose);
}

.btn-outline:hover {
  background: var(--deep-rose);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--deep-rose);
}

.btn-white:hover {
  background: var(--sand);
  transform: translateY(-1px);
}

/* ── SECTION WRAPPER ── */
.section {
  padding: 60px 0;
}

.section-alt {
  background: var(--blush);
}

.section-sand {
  background: var(--sand);
}

/* ── CATEGORY CAROUSEL (compact) ── */
.cat-showcase {
  padding: 24px 0 0 0;
  overflow: visible;
}

.cat-scroll-wrap {
  position: relative;
  padding: 0 40px;
}

.cat-scroll {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  padding: 8px 0 12px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.cat-scroll::-webkit-scrollbar {
  display: none;
}

.cat-card {
  flex: 0 0 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.cat-card-img {
  width: 155px;
  height: 155px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--border);
  transition: var(--transition);
  background: var(--sand);
  position: relative;
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat-card:hover .cat-card-img {
  border-color: var(--rose);
  transform: scale(1.05);
  box-shadow: 0 6px 20px var(--shadow);
}

.cat-card span {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
}

/* Cart page  */

.cart-page {
    margin: 0 auto;
    padding: 28px 24px 56px;
    display: grid;
    grid-template-columns: 1fr 360px;
    gap: 28px;
    align-items: start;
}

.cart-tbl {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgb(247, 231, 231);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}

.cart-tbl thead th {
    background: #844204;
    padding: 20px 22px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: .8px;
    text-transform: uppercase;
    color: white;
    text-align: left;
    border-bottom: 1px solid var(--border);
}

.cart-tbl tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--bsoft);
    vertical-align: middle;
    font-size: 13px;
}

.order-sum {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 22px;
}

.order-sum h3 {
    font-family: var(--fh);
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 18px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.sum-row {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 10px;
    color: var(--rose);
}

.sum-row.total {
    font-size: 16px;
    font-weight: 700;
    color: var(--deep-rose);
    border-top: 1px solid var(--border);
    padding-top: 12px;
    margin-top: 4px;
}

/* ── HERO SLIDER ── */
.hero-slider {
  position: relative;
  overflow: hidden;
  background: var(--sand);
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.8s ease;
  display: flex;
  align-items: center;
  background-size: cover !important;
  background-position: center !important;
}

.hero-slide.active {
  opacity: 1;
  position: relative;
}

.hero-slide-inner {
  display: flex;
  align-items: center;
  min-height: 480px;
  width: 100%;
  padding: 0;
}

.hero-content {
  padding: 40px 20px;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: var(--deep-rose);
  color: var(--white);
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4.5vw, 52px);
  font-weight: 700;
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 14px;
}

.hero-content h1 em {
  color: var(--deep-rose);
  font-style: normal;
}

.hero-content p {
  font-size: 15px;
  color: var(--white);
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 380px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  height: 100%;
}

.hero-controls {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: var(--dusty-rose);
  border: none;
  transition: var(--transition);
  cursor: pointer;
}

.hero-dot.active {
  width: 24px;
  background: var(--deep-rose);
}

.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-mid);
  z-index: 10;
  transition: var(--transition);
}

.hero-prev {
  left: 20px;
}

.hero-next {
  right: 20px;
}

.hero-prev:hover,
.hero-next:hover {
  background: var(--deep-rose);
  color: var(--white);
  border-color: var(--deep-rose);
}

/* ── PRODUCT CAROUSEL ── */
.product-carousel {
  position: relative;
}

.prod-track-wrap {
  overflow: hidden;
  width: 100%;
}

.prod-track {
  display: flex;
  gap: 20px;
  padding: 5px 0;
  transition: transform 0.4s ease;
  width: 100%;
}

.prod-card {
  flex: 0 0 calc(25% - 20px);
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  position: relative;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
}

.prod-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px var(--shadow);
}

.prod-img {
  align-items: center;
  max-height: 350px;
  min-height: 350px;
  overflow: hidden;
}

.prod-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.prod-card:hover .prod-img img {
  transform: scale(1.06);
}

.prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--deep-rose);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
}

.prod-wish {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  background: var(--white);
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: var(--transition);
  cursor: pointer;
}

.prod-wish:hover {
  background: var(--blush);
  border-color: var(--rose);
}

.prod-info {
  padding: 14px;
}

.prod-info h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 0;
  margin-bottom: 4px;
  line-height: 1.35;
}

.prod-price {
  font-size: 15px;
  font-weight: 700;
  color: var(--deep-rose);
  margin-bottom: 10px;
}

.prod-price .old {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: line-through;
  margin-left: 6px;
}

.prod-add {
  width: 100%;
  padding: 9px;
  background: var(--blush);
  color: var(--deep-rose);
  border: 1.5px solid var(--dusty-rose);
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
}

button.prod-add.added {
  background-color: var(--deep-rose) !important;
  color: var(--white);
}

.prod-add:hover {
  background: var(--deep-rose);
  color: var(--white);
  border-color: var(--deep-rose);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff85;
  backdrop-filter: blur(3px);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-mid);
  z-index: 5;
  transition: var(--transition);
  box-shadow: 0 2px 8px var(--shadow);
}

.carousel-btn:hover {
  background: var(--deep-rose);
  color: var(--white);
  border-color: var(--deep-rose);
}

.carousel-btn.prev {
  left: 0px;
}

.carousel-btn.next {
  right: 0px;
}

/* Quickcart ss  */

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  width: 100px;
}

.qty-ctrl button {
  color: var(--mid);
  transition: var(--tr);
}

.qty-ctrl input {
  font-weight: 600;
  padding: 7px 0;
}

/* Quickcart ss end */

/* ── SUBCATEGORY PILLS ── */
.subcat-scroll {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  transition: transform 0.4s ease;
  will-change: transform;
}

.subcat-scroll::-webkit-scrollbar {
  display: none;
}

.subcat-item {
  flex: 0 0 225px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  position: relative;
}

.subcat-item:hover {
  border-color: var(--rose);
  box-shadow: var(--shadow2) 0px 3px 8px;
  transform: translateY(-5px);
}

.subcat-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.subcat-item span {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  padding: 7px 6px;
}

/* ── REELS SECTION ── */
.reels-wrapper {
  width: 100%;
}

.reel-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reel-desktop-card {
  flex: 0 0 294px;
  height: 480px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: #000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.reel-desktop-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.iframe-crop {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.iframe-crop iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: scale(1.35);
  /* Crop out youtube logo */
}

.reel-overlay-click {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* Desktop Modal */
.reel-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #000000;
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
}

.reel-modal.open {
  display: flex;
}

.reel-modal-content {
  width: 100%;
  max-width: 450px;
  height: 85vh;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

.reel-modal-btn {
  position: absolute;
  color: #fff;
  font-size: 24px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  z-index: 5010;
  backdrop-filter: blur(4px);
}

/* Mobile Fullscreen Reel */
.reel-mobile-fs {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: #000;
  display: none;
}

.reel-mobile-fs.open {
  display: block;
}

.reel-fs-track {
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scrollbar-width: none;
}

.reel-fs-track::-webkit-scrollbar {
  display: none;
}

.reel-fs-item {
  width: 100%;
  height: 100vh;
  scroll-snap-align: start;
  position: relative;
  overflow: hidden;
}

.fs-iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  transform: scale(1.35);
  border: none;
}

.reel-fs-controls {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 5010;
  display: flex;
  gap: 15px;
}

.reel-fs-btn {
  color: #fff;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  cursor: pointer;
  backdrop-filter: blur(4px);
}

/* ── FEATURED DUAL ── */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.dual-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  height: 260px;
  cursor: pointer;
}

.dual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dual-card:hover img {
  transform: scale(1.06);
}

.dual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(44, 26, 18, 0.7) 0%,
      rgba(44, 26, 18, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.dual-overlay h3 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 10px;
}

/* ── PROMO BANNER ── */
.promo-banner {
  background: linear-gradient(120deg, var(--deep-rose), var(--mocha));
  color: var(--white);
  padding: 50px 5%;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.promo-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='20'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}

.promo-banner .code-box {
  display: inline-block;
  border: 2px dashed rgba(255, 255, 255, 0.5);
  padding: 8px 20px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 3px;
  margin: 16px 0;
}

.promo-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 42px);
  font-weight: 700;
  margin-bottom: 8px;
}

/* ── BAKE & SERVE SINGLE PRODUCT ── */
.bake-scroll {
  display: flex;
  gap: 20px;
  padding: 10px 0;
  transition: transform 0.4s ease;
  will-change: transform;
}

.bake-scroll::-webkit-scrollbar {
  display: none;
}

.bake-item {
  flex: 0 0 225px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}

.bake-item:hover {
  border-color: var(--rose);
  transform: translateY(-3px);
  box-shadow: var(--shadow2) 0px 3px 8px;
}

.bake-item img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.bake-item-info {
  padding: 10px 8px;
}

.bake-item-info h5 {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 3px;
  line-height: 1.3;
}

.bake-item-info span {
  font-size: 12px;
  font-weight: 700;
  color: var(--deep-rose);
}

/* ── REVIEWS ── */
.review-slider {
  overflow: hidden;
  position: relative;
}

.review-section .desktop-arrow.prev {
  left: 0 !important;
  top: 60%;
}

.review-section .desktop-arrow.next {
  right: 0 !important;
  top: 60%;
}

.review-track {
  display: flex;
  padding: 5px;
  gap: 20px;
  transition: transform 0.5s ease;
}

.review-card {
  flex: 0 0 calc(33.33% - 14px);
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 22px;
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: 0 8px 24px var(--shadow);
  transform: translateY(-2px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 15px;
  color: var(--deep-rose);
}

.review-header h5 {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
}

.review-header span {
  font-size: 12px;
  color: var(--text-light);
}

.stars {
  color: var(--gold);
  font-size: 16px;
}

.review-card p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.65;
}

.review-controls {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.rev-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--dusty-rose);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.rev-dot.active {
  background: var(--deep-rose);
  width: 20px;
  border-radius: 4px;
}

/* ── EVENT GALLERY ── */
.gallery-masonry {
  columns: 4;
  gap: 12px;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 12px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(139, 58, 82, 0.8), rgba(0, 0, 0, 0));
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.gallery-item:hover .gallery-hover {
  opacity: 1;
}

.gallery-hover svg {
  fill: var(--white);
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
  transform: translateY(20px);
  transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-hover svg {
  transform: translateY(0);
}

/* ── LIGHTBOX ── */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 10, 12, 0.95);
  z-index: 4000;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  backdrop-filter: blur(8px);
}

.lightbox.open {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  z-index: 5;
}

.lightbox-view {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  overflow: hidden;
  position: relative;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 70vh;
  object-fit: contain;
  transition: transform 0.3s ease;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-controls {
  position: absolute;
  top: 20px;
  display: flex;
  gap: 12px;
  background: #844204;
  padding: 8px 16px;
  border-radius: 20px;
  z-index: 99999999;
}

.lightbox-controls button {
  background: none;
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #fff;
  z-index: 10;
  cursor: pointer;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
}

.lightbox-arrow:hover {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
}

.lightbox-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 24px;
  overflow-x: auto;
  max-width: 100%;
  padding: 10px;
  scrollbar-width: none;
}

.lightbox-thumb {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  opacity: 0.5;
  transition: 0.3s ease;
  border: 2px solid transparent;
}

.lightbox-thumb.active {
  opacity: 1;
  border-color: var(--rose);
  transform: scale(1.1);
}

/* ── FOOTER ── */
footer {
  background-color: transparent;
  background-image: linear-gradient(90deg, #5C1916 0%, #844204 50%);
  color: var(--white);
  padding: 50px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 32px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

footer h4 {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--sand);
}

footer p {
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
}

.section-map {
  background-color: #cd023b1c;
}

footer ul {
  list-style: none;
}

footer ul li {
  margin-bottom: 8px;
}

footer ul li a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

footer ul li a:hover {
  color: var(--sand);
}

.social-icons {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
}

.newsletter-form {
  display: flex;
  gap: 0;
  margin-top: 12px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: none;
  font-size: 13px;
  outline: none;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  padding: 10px 16px;
  background: var(--deep-rose);
  color: var(--white);
  border: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--rose);
}

.footer-bottom {
  text-align: center;
  padding: 16px 0;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
}

.contact-line {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 8px;
}

/* ── MOBILE MENU ── */
.mobile-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 310px;
  background: var(--white);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
  visibility: hidden;
}

.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 20px 16px;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 10px 20px;
}

.mobile-menu ul {
  list-style: none;
}

.mobile-menu ul li a {
  display: block;
  padding: 14px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  border-bottom: 1px solid #f2f2f2;
  cursor: pointer;
}

.mobile-submenu {
  display: none;
  padding: 5px 5px 5px 12px;
  list-style: none;
  background: #fdfafb;
  border-radius: 12px;
  margin: 8px 0;
  border-left: 3px solid var(--dusty-rose);
  border-right: 3px solid var(--dusty-rose);
  border-top: 1px solid var(--dusty-rose);
  border-bottom: 1px solid var(--dusty-rose);
}

.mobile-submenu.open {
  display: block;
}

.mobile-submenu li a {
  border-bottom: none;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-mid);
  display: flex !important;
  align-items: center;
  gap: 8px;
}

.has-nested>a {
  display: flex !important;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--text-dark) !important;
  border-bottom: none !important;
}

.nested-menu {
  display: none;
  padding-left: 15px;
  list-style: none;
  margin-bottom: 10px;
}

.nested-menu.open {
  display: block;
}

.nested-menu li a {
  padding: 8px 0 !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  border-bottom: none !important;
}

.arrow-nested {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.mobile-actions {
  display: flex;
  gap: 12px;
  padding: 20px;
  background: #fff;
  border-top: 1px solid var(--border);
  box-shadow: 0 -10px 25px rgba(0, 0, 0, 0.03);
}

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  background: #5e1b15;
  color: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 500;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  box-shadow: 0 4px 16px rgba(139, 58, 82, 0.4);
}


.back-top.back-top-show {
  opacity: 1;
  pointer-events: all;
}


.back-top:hover {
  transform: translateY(-3px);
}

/* ── PLACEHOLDER IMAGES (CSS) ── */
.img-placeholder {
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 13px;
  font-weight: 500;
}

/* Reel action button  */

.action-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease-in-out;
  z-index: 9999;
}

.whatsapp-btn {
  background: #25D366;
  position: absolute;
  right: 30px;
  bottom: 120px;
}

.whatsapp-btn:hover {
  background: #1ebe5d;
  transform: scale(1.2);
}

.call-btn {
  background: #007bff;
  position: absolute;
  right: 30px;
  bottom: 50px;
}

.call-btn:hover {
  background: #0056b3;
  transform: scale(1.2);
}

.reel-mob-product-container {
  position: absolute;
  left: 30px;
  bottom: 50px;
  background: linear-gradient(rgba(209, 201, 203, 0.7), rgba(255, 240, 244, 0.7));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 15px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  z-index: 9999;
}

.reel-modal-content .reel-mob-product-container {
  left: 100px !important;
}

.reel-mob-product {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
}

.reel-mob-pro-img {
  width: 40px;
  height: 50px;
  border-radius: 10px;
  object-fit: cover;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.reel-mob-pro-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reel-mob-pro-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  align-items: baseline;
}

.reel-mob-pro-details h4 {
  font-size: 16px;
  font-weight: 600;
  font-family: serif;
  max-width: 160px;
  line-height: 1.4;
  word-wrap: break-word;
  overflow-wrap: break-word;
  white-space: normal;
}

button.reel-mob-pro-shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: none;
  outline: none;
  transition: all 0.3s ease;
  background-color: #c9728a;
  color: #fff;
}

/* Reel action button end  */

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .nav-menu {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .prod-card {
    flex: 0 0 calc(50% - 10px);
  }

  .gallery-masonry {
    columns: 3;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-slide-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-image {
    display: none;
  }

  .dual-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    flex: 0 0 calc(100% - 0px);
  }

  .section {
    padding: 40px 4%;
  }

  .desktop-arrow,
  .carousel-btn {
    display: none !important;
  }
}

@media (max-width: 768px) {
  .gallery-masonry {
    columns: 2;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .prod-card {
    flex: 0 0 calc(100% - 0px);
  }

  .gallery-masonry {
    columns: 2;
  }

  .hero-slide-inner {
    min-height: 320px;
    padding: 30px 4%;
  }
}

/* SEARCH BAR */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
}

.search-overlay.open {
  display: flex;
}

.desktop-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #ffffff85;
  backdrop-filter: blur(3px);
  border: 1px solid var(--border);
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-mid);
  z-index: 5;
  transition: var(--transition);
  box-shadow: 0 4px 12px var(--shadow);
  cursor: pointer;
}

.desktop-arrow:hover {
  background: var(--deep-rose);
  color: var(--white);
  border-color: var(--deep-rose);
}

.desktop-arrow.prev {
  left: -20px;
}

.desktop-arrow.next {
  right: -20px;
}

.scroll-wrapper {
  position: relative;
  width: 100%;
}


.search-box {
  background: var(--white);
  border-radius: 12px;
  padding: 6px;
  display: flex;
  width: 90%;
  max-width: 560px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
}

.search-box input {
  flex: 1;
  padding: 12px 16px;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--text-dark);
}


#sparkleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1500;
  opacity: 0.8;
}

.account-success-wrap {
    display: flex;
    gap: 40px;
    align-items: center;
    padding: 0 0 40px 0;
    background: var(--warm);
    border-radius: 20px;
}

.success-lottie-wrap {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.success-text-wrap {
    flex: 1;
    padding-right: 40px;
}

.success-text-wrap h1 {
    font-family: var(--fh);
    font-size: 52px;
    line-height: 1.1;
    color: var(--ink);
    margin-bottom: 20px;
}

.success-text-wrap p {
    font-family: sans-serif;
    font-size: 17px;
    color: var(--deep-rose);
    margin-bottom: 32px;
    max-width: 480px;
    line-height: 1.6;
}

.btn-start-shopping {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 48px;
    border-radius: 50px;
    background: linear-gradient(90deg, #5C1916 0%, #844204 50%);
    color: #fff;
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border: none;
    box-shadow: 0 10px 24px rgba(200, 104, 122, 0.25);
    transition: var(--tr);
    text-decoration: none;
}

/* ── LAZY LOADING & SHIMMER ── */
.shimmer-wrapper {
  position: relative;
  overflow: hidden;
  background: #f6f7f8;
}

.shimmering::after {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-100%);
  background-image: linear-gradient(90deg,
      rgba(255, 255, 255, 0) 0,
      rgba(255, 255, 255, 0.2) 20%,
      rgba(255, 255, 255, 0.5) 60%,
      rgba(255, 255, 255, 0));
  animation: shimmer 2s infinite;
}

@keyframes shimmer {
  100% {
    transform: translateX(100%);
  }
}

.lazy-media {
  opacity: 0;
  transition: opacity 0.6s ease-in-out;
}

.lazy-media.loaded {
  opacity: 1;
}

.iframe-crop {
  position: relative;
  background: #f0e0e5;
  /* Placeholder color matching theme */
}

/* ── PROMO BANNER FADE ── */
.promo-banner-wrap {
  position: relative;
  background: var(--marqueeBg);
}

.promo-banner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s ease, visibility 1s;
  z-index: 1;
}

.promo-banner.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
  position: relative;
}

/* ── DUAL GRID ── */
.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}

.dual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 4px 15px var(--shadow);
}

.dual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.8s;
}

.dual-card:hover img {
  transform: scale(1.1);
}

.dual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  color: var(--white);
}

.dual-overlay h3 {
  font-family: var(--font-display);
  font-size: 28px;
  margin-bottom: 12px;
}

/* ── LIGHTBOX CONTROLS ── */

.lightbox-btn {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  transition: 0.3s;
}

.lightbox-btn:hover {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
  transform: scale(1.1);
}

/* SEARCH BAR */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 3000;
  display: none;
  align-items: flex-start;
  justify-content: center;
  padding-top: 100px;
  backdrop-filter: blur(4px);
}

.search-overlay.open {
  display: flex;
}

.search-box {
  background: var(--white);
  border-radius: 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  width: 90%;
  max-width: 560px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  animation: searchSlideIn 0.3s ease-out;
  overflow: hidden;
}

@keyframes searchSlideIn {
  from {
    transform: translateY(-20px);
    opacity: 0;
  }

  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.search-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 12px 20px;
}

.search-input-wrap svg {
  width: 20px;
  height: 20px;
  color: var(--text-light);
  margin-right: 12px;
  flex-shrink: 0;
}

.search-box input {
  flex: 1;
  padding: 8px 0;
  border: none;
  outline: none;
  font-size: 16px;
  color: var(--text-dark);
  background: transparent;
}

/* LIVE SEARCH RESULTS */
.live-search-results {
  max-height: 480px;
  overflow-y: auto;
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
}

.live-search-results.open {
  display: flex;
}

.live-search-results.open::-webkit-scrollbar {
  display: none;
}

.ls-item {
  display: flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
  border-bottom: 1px solid var(--border);
}

.ls-item:hover {
  background: var(--cream);
}

.ls-img {
  width: 48px;
  height: 60px;
  object-fit: contain;
  border-radius: 8px;
  margin-right: 16px;
  background: #fdfaf8;
  padding: 4px;
  flex-shrink: 0;
  border: 1px solid var(--border);
}

.ls-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.ls-name {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ls-desc {
  font-size: 13px;
  color: var(--text-light);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ls-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin-left: 12px;
  flex-shrink: 0;
}

.ls-price-val {
  font-size: 16px;
  font-weight: 700;
  color: var(--deep-rose);
}

.ls-price-old {
  font-size: 12px;
  color: var(--text-light);
  text-decoration: line-through;
}

.ls-view-all {
  display: block;
  width: 100%;
  padding: 15px 18px;
  text-align: center;
  background: #fff5f5;
  color: var(--deep-rose);
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

.ls-view-all:hover {
  background: var(--deep-rose);
  color: var(--white);
}

.ls-no-result {
  padding: 24px;
  text-align: center;
  color: var(--text-light);
  font-size: 14px;
}

/* dfds  */

.co-card {
  border-radius: 12px;
  margin-bottom: 14px;
  box-shadow: var(--s2);
  padding: 40px;
  background: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

/* ── CATEGORY LISTING ── */
.listing-wrap {
  padding: 20px 15px;
}

.list-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
  gap: 20px;
  border-bottom: 1.5px solid var(--border);
  padding-bottom: 15px;
}

.lh-left h1 {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 4px;
}

.lh-left span {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 500;
}

.lh-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mobile-filter-btn {
  display: none;
}

.sort-by {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 14px;
}

.sort-by select {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  outline: none;
  background: var(--deep-rose);
  font-size: 14px;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}

.sort-by select:hover {
  border-color: var(--rose);
}

.listing-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 40px;
}

/* Sidebar */
.list-sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.side-head-mob {
  display: none;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.side-block {
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border);
}

.side-block:last-child {
  border-bottom: none;
}

.side-block h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 15px;
}

.side-scroll {
  max-height: 350px;
  overflow-y: auto;
  padding-right: 10px;
}

.side-scroll::-webkit-scrollbar {
  width: 4px;
}

.side-scroll::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 4px;
}

.check-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-mid);
  transition: var(--transition);
}

.check-row:hover {
  color: var(--deep-rose);
}

.check-row input {
  display: none;
}

.check-row .box {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border);
  border-radius: 4px;
  position: relative;
  transition: var(--transition);
  flex-shrink: 0;
}

.check-row input:checked+.box {
  background: var(--deep-rose);
  border-color: var(--deep-rose);
}

.check-row input:checked+.box::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
}

.size-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.sz-opt {
  padding: 8px 4px;
  border: 1.5px solid var(--border);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-mid);
  text-align: center;
  transition: var(--transition);
  cursor: pointer;
  background: var(--white);
}

.sz-opt:hover,
.sz-opt.active {
  border-color: var(--deep-rose);
  color: var(--deep-rose);
  background: var(--blush);
}

.price-slider-area {
  padding: 10px 0;
}

#price-slider {
  width: 100%;
  accent-color: var(--deep-rose);
  margin-bottom: 12px;
  cursor: pointer;
}

.price-vals {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
}

/* Grid */
.list-main {
  min-height: 400px;
}

.prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.list-pagination {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}

.pagination {
  display: inline-flex;
  gap: 8px;
  list-style: none;
}

.pagination li a,
.pagination li span {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  transition: var(--transition);
  background: var(--white);
}

.pagination li.active span {
  background: var(--deep-rose) !important;
  border-color: var(--deep-rose) !important;
  color: var(--white) !important;
}

.pagination li a:hover {
  border-color: var(--deep-rose);
  color: var(--deep-rose);
  background: var(--blush);
}

.empty-list {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-light);
}

.empty-list h2 {
  font-family: var(--font-display);
  color: var(--text-dark);
  margin-top: 20px;
}

.filter-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 3500;
  visibility: hidden;
  opacity: 0;
  transition: var(--transition);
  backdrop-filter: blur(2px);
}

.filter-overlay.active {
  visibility: visible;
  opacity: 1;
}

/* ── PRODUCT DETAIL PAGE ── */
.pd-wrap {
  padding: 40px 0 80px;
}

.pd-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Gallery Detail */
.pd-gallery-side {
  position: sticky;
  top: 100px;
}

.pd-main-img {
  border-radius: 20px;
  overflow: hidden;
  background: #faf6f0;
  aspect-ratio: 3 / 4;
  margin-bottom: 12px;
}

.pd-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.pd-thumbs {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.pd-thumbs::-webkit-scrollbar {
  display: none;
}

.pd-thumb {
  flex: 0 0 85px;
  height: 110px;
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
}

.pd-thumb.active,
.pd-thumb:hover {
  border-color: var(--deep-rose);
  transform: translateY(-3px);
}

.pd-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info Detail */
.pd-info-side h1 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
  line-height: 1.15;
}

.pd-cat {
  font-size: 15px;
  font-weight: 600;
  color: var(--deep-rose);
  margin-bottom: 12px;
}

.pd-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.pd-div {
  height: 1.5px;
  background: var(--border);
  margin: 24px 0;
}

.pd-price {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 8px;
}

.pd-price .sp {
  font-size: 28px;
  font-weight: 700;
  color: var(--deep-rose);
}

.pd-price .sv {
  background: var(--deep-rose);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.pd-fin {
  font-size: 13px;
  color: var(--text-mid);
  margin-bottom: 20px;
}

/* Options */
.opt-row {
  margin-bottom: 20px;
}

.opt-lbl {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cswatch {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: var(--transition);
  cursor: pointer;
}

.cswatch.active,
.cswatch:hover {
  border-color: var(--deep-rose);
  transform: scale(1.15);
  box-shadow: 0 4px 12px var(--shadow);
}

.size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.sz-btn-lbl input:checked+.sz-btn {
  border-color: var(--deep-rose);
  color: var(--deep-rose);
  background: var(--blush);
}

/* Qty & Btns */
.qty-row {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 2px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  background: var(--white);
}

.qty-ctrl button {
  width: 40px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-dark);
  border: none;
  background: none;
}

.qty-ctrl input {
  width: 40px;
  text-align: center;
  border: none;
  background: none;
  font-size: 15px;
  font-weight: 700;
  outline: none;
}

.stk-note {
  font-size: 13px;
  font-weight: 600;
  color: #4a7c5a;
}

.pd-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.pd-btns button {
  height: 52px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  cursor: pointer;
}

.btn-buy {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--rose), var(--deep-rose)) !important;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 6px 18px rgba(200, 104, 122, .35);
}

.btn-buy:hover {
  background: var(--mocha);
  box-shadow: 0 6px 20px rgba(139, 58, 82, 0.3);
}

.btn-bag {
  background: var(--white);
  color: var(--deep-rose);
  border: 2px solid var(--deep-rose);
}

.btn-bag:hover,
.btn-bag.added {
  background: var(--deep-rose);
  color: var(--white);
}

.btn-buynow {
  grid-column: span 2;
  background: #000;
  color: #fff;
  border: none;
  font-size: 16px !important;
  letter-spacing: 1px;
}

.btn-buynow:hover {
  background: var(--mocha);
}

/* Delivery Cards */

.dl-card {
  background: #ffe9e9;
  border-radius: 8px;
  padding: 11px 14px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
}

/* Tabs */
.pd-tabs-nav {
  border-bottom: 2px solid var(--border);
  margin-bottom: 30px;
  display: flex;
  gap: 30px;
}

.pd-tab {
  padding: 12px 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-light);
  background: none;
  border: none;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
}

.pd-tab.active {
  color: var(--deep-rose);
  border-bottom-color: var(--deep-rose);
}

.tab-c {
  display: none;
  animation: fadeIn 0.4s ease;
}

.tab-c.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Lightbox */
.pd-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 6000;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.pd-lightbox.active {
  display: flex;
}

.lb-top-bar {
  position: absolute;
  top: 20px;
  width: 100%;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lb-close {
  color: #fff;
  font-size: 36px;
  cursor: pointer;
}

.lb-img-wrap {
  max-width: 90vw;
  max-height: 80vh;
}

.lb-img-wrap img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* ── RESPONSIVE LISTING/DETAIL ── */
@media (max-width: 1024px) {
  .listing-layout {
    grid-template-columns: 1fr;
  }

  .list-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    width: 300px;
    height: auto;
    background: var(--white);
    z-index: 4000;
    padding: 25px;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    box-shadow: 20px 0 50px rgba(0, 0, 0, 0.1);
    overflow-y: auto;
  }

  .list-sidebar.open {
    transform: translateX(0);
  }

  .side-head-mob {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border);
  }

  .side-close {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: var(--text-mid);
    transition: var(--transition);
    cursor: pointer;
  }

  .side-close:hover {
    background: var(--blush);
    color: var(--deep-rose);
    border-color: var(--dusty-rose);
    transform: rotate(90deg);
  }

  .mobile-filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--deep-rose);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    border: 1.5px solid var(--border);
    transition: var(--transition);
  }

  .mobile-filter-btn:hover {
    border-color: var(--deep-rose);
    color: var(--deep-rose);
  }

  .pd-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pd-gallery-side {
    position: static;
  }
}

@media (max-width: 768px) {
  .prod-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .lh-left h1 {
    font-size: 24px;
    margin-top: 0px;
  }

  .lh-right {
    width: 100%;
    justify-content: space-between;
    align-items: center;
    /* flex-wrap: wrap; */
    gap: 15px;
  }

  .list-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .pd-btns {
    grid-template-columns: 1fr;
  }

  .btn-buynow {
    grid-column: span 1;
  }

  .dl-cards {
    grid-template-columns: 1fr;
  }
}


@media (max-width: 480px) {
  .prod-grid {
    grid-template-columns: 1fr;
  }
}

/* ─── PRODUCT DETAIL PAGE (SYNCED FROM BACKUP) ─── */
.sell-end-banner {
  margin-top: 30px;
  position: relative;
  overflow: hidden;
  padding: 0 10px;
}

.sell-end-pup {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  background-image: linear-gradient(90deg, #844204 0%, #844204 50%, #844204 100%);
  border-radius: 20px;
}

.sell-end-text h2 {
  font-family: var(--fh);
  font-size: 25px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin: 0;
}

.sell-end-timer {
  display: flex;
  gap: 10px;
  align-items: center;
}

.sell-end-t-box {
  background: #fff;
  border-radius: 12px;
  padding: 5px 10px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  min-width: 50px;
}

.sell-end-t-box .tnn {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  color: var(--rose);
  line-height: 1;
  display: block;
}

.sell-end-t-box .tll {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--soft);
}

.pd-cat {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 6px
}

.pd-info h1 {
  font-family: var(--fh);
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px
}

.pd-price .sp {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--rose)
}

.pd-price .or {
  font-size: 16px;
  color: var(--mocca);
  margin: 0 7px
}

.pd-price .op {
  font-size: 16px;
  color: #b15601;
  text-decoration: line-through
}

.pd-price .sv {
  display: inline-block;
  background: #ffe7d1;
  color: #994a00;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  margin-left: 7px
}

.opt-lbl {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 8px
}

.opt-row {
  margin-bottom: 16px
}

.size-btns {
  display: flex;
  gap: 7px;
  flex-wrap: wrap
}

.sz-btn {
  min-width: 42px;
  border-radius: 8px;
  border: 1.5px solid #e3def1;
  background: var(--white);
  font-size: 12px;
  font-weight: 600;
  color: #7a6560;
  cursor: pointer;
  transition: .24s cubic-bezier(.4, 0, .2, 1);
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sz-btn:hover,
.sz-btn.active {
  border-color: var(--rose);
  color: var(--rose);
  background: var(--rose-p)
}

.color-swatches {
  display: flex;
  gap: 9px;
  flex-wrap: wrap
}

.cswatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid #918c8c49;
  transition: var(--tr);
  background-repeat: no-repeat;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.cswatch.active,
.cswatch:hover {
  border-color: var(--ink);
  transform: scale(1.12)
}

.qty-ctrl {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 30px;
  overflow: hidden;
  width: 100px;
}

.qty-ctrl button {
  width: 38px;
  height: 38px;
  font-size: 19px;
  color: var(--mid);
  transition: var(--tr)
}

.qty-ctrl button:hover {
  background: var(--rose-p);
  color: var(--rose)
}

.qty-ctrl input {
  width: 48px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  border: none;
  border-left: 1.5px solid var(--border);
  border-right: 1.5px solid var(--border);
  padding: 7px 0;
  outline: none
}

.btn-buynow {
  flex: 1.2;
  padding: 16px;
  border-radius: var(--r40);
  background: #6e2423;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  border: none !important;
  cursor: pointer;
  transition: var(--tr);
  box-shadow: 0 6px 18px rgba(44, 36, 32, .2);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-buynow:hover {
  background: #730907;
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(44, 36, 32, .3);
}

.dl-cards {
  display: flex;
  flex-direction: column;
  gap: 7px
}

.dl-icon {
  font-size: 19px;
  flex-shrink: 0;
  margin-top: 1px
}

.dl-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 1px;
  margin-top: 0;
}

.dl-card p {
  font-size: 16px;
  color: var(--mid);
  margin-bottom: 0;
}

/* ─── TAB NAVIGATION ─── */
.pd-tabs-nav {
  display: flex;
  border-bottom: 2px solid var(--border);
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: 2px;
  margin-bottom: 20px;
}

.pd-tabs-nav::-webkit-scrollbar {
  display: none;
}

.pd-tab {
  padding: 12px 24px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  color: var(--text-mid);
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  transition: var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.pd-tab.active {
  color: var(--gold);
}

.pd-tab::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.pd-tab.active::after {
  width: 100%;
}

.tab-c {
  padding: 24px 0;
  font-size: 14px;
  line-height: 1.8;
  color: var(--text-mid);
  display: none;
}

.tab-c.active {
  display: block;
}

.tab-c table {
  width: 100%;
  border-collapse: collapse;
}

.tab-c table tr {
  border-bottom: 1px solid var(--border);
}

.tab-c table td {
  padding: 12px 0;
}

.tab-c table td:first-child {
  font-weight: 600;
  width: 30%;
  color: var(--text-dark);
}

/* ─── REVIEW CAROUSEL ─── */
.rev-carousel {
  padding: 10px 0;
}

.rev-card {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 12px var(--shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 1px solid var(--border);
}

.rev-top {
  display: flex;
  align-items: center;
  gap: 15px;
}

.rev-av {
  width: 48px;
  height: 48px;
  background: var(--blush);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

.rev-name {
  font-weight: 700;
  color: var(--text-dark);
  font-size: 15px;
  margin-bottom: 2px;
}

.rev-date {
  font-size: 12px;
  color: var(--text-light);
}

.rev-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.rev-txt {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.6;
  font-style: italic;
}

/* --- SWIPER LAYOUT FIX --- */
.swiper-wrapper {
  display: flex !important;
  flex-wrap: nowrap !important;
}

.swiper-slide {
  flex-shrink: 0 !important;
  height: auto;
}