:root {
  --cream: #E8FAF6;
  --warm-white: #F6FFFE;
  --sand: #B8EDE6;
  --terracotta: #3A9E93;
  --terracotta-light: #4DCFC3;
  --sage: #8FD9CC;
  --deep-brown: #1A4A45;
  --mid-brown: #2A6B63;
  --charcoal: #153D39;
  --gold: #4DCFC3;
  --linen: #e9f9f7;
  --bordergrey: #e9e9e9;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #ffffff;
  color: #666666;
  overflow-x: hidden;
}

.nav-logo-img {
  height: 23px;
  width: auto;
  display: block;
}

.nav-logo-light {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.footer-logo {
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-logo-img {
  height: 26px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.75;
}

.footer-logo-img:hover {
  opacity: 1;
}

.navbar {
  background: #fff !important;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 158, 147, 0.15);
  padding: 1rem 0;
  transition: all 0.4s ease;
}

.navbar-brand {
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--deep-brown) !important;
  text-decoration: none;
}

.navbar-brand span {
  color: var(--terracotta);
}

.navbar-nav .nav-link {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid-brown) !important;
  font-weight: 400;
  padding: 0.4rem 1rem !important;
  position: relative;
  transition: color 0.3s;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 1rem;
  width: 0;
  height: 1px;
  background: var(--terracotta);
  transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: var(--terracotta) !important;
}

.navbar-nav .nav-link:hover::after {
  width: calc(100% - 2rem);
}

.navbar-toggler {
  border: 1px solid rgba(58, 158, 147, 0.4);
  padding: 0.35rem 0.6rem;
  border-radius: 3px;
}

.navbar-toggler:focus {
  box-shadow: 0 0 0 3px rgba(58, 158, 147, 0.2);
}

.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3E%3Cpath stroke='%233A9E93' stroke-width='2.5' stroke-linecap='round' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
  width: 1.1em;
  height: 1.1em;
}

.navbar-nav .dropdown-menu {
  border-radius: 8px;
  padding: 10px 0;
  border: 1px solid rgba(58, 158, 147, 0.15);
  box-shadow: 0 8px 28px rgba(26, 74, 69, 0.1);
}

.navbar-nav .dropdown-item {
  font-size: 14px;
  padding: 8px 18px;
  color: var(--deep-brown);
  transition: background 0.2s, color 0.2s;
}

.navbar-nav .dropdown-item:hover {
  background: rgba(58, 158, 147, 0.08);
  color: var(--terracotta);
}

.navbar-nav .dropdown:hover>.dropdown-menu {
  display: block;
  margin-top: 0;
}

.offcanvas {
  background: #1A4A45 !important;
  max-width: 300px;
}

.offcanvas-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.4rem 1.5rem;
}

.offcanvas-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.9) !important;
}

.btn-close-white {
  filter: invert(1) brightness(0.7);
}

.offcanvas-body .nav-link {
  font-size: 0.65rem !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  color: var(--cream) !important;
  padding: 0.4rem 0 !important;
  transition: color 0.3s, padding-left 0.3s !important;
}

.offcanvas-body .nav-link::after {
  display: none !important;
}

.offcanvas-body .nav-link:hover {
  color: var(--terracotta-light) !important;
  padding-left: 0.5rem !important;
}

.offcanvas-footer {
  padding: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
a.social-btn{
  color:var(--cream) !important;
}
.nav-icon-links a {
  color: var(--mid-brown);
  text-decoration: none;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0 0.6rem;
}

.nav-icon-links a:hover {
  color: var(--terracotta);
}

.btn-cart {
    padding: 0.5rem 1.2rem !important;
    border-radius: 2px;
    font-size: 0.7rem !important;
    font-weight: 500;
    letter-spacing: 0.1em !important;
    text-transform: uppercase !important;
    text-decoration: none !important;
    transition: background 0.3s !important;
    white-space: nowrap;
    background: var(--deep-brown);
    color: var(--warm-white) !important;
}


/* ── HERO SLIDER ── */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
  padding-top: 0;
  background: #0d2b28;
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.1s ease;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.06);
  transition: transform 7s ease;
}

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

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(10, 35, 32, 0.72) 0%, rgba(10, 35, 32, 0.45) 55%, rgba(10, 35, 32, 0.15) 100%);
  z-index: 3;
}

.hero-content {
  position: absolute;
  inset: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  padding-top: 76px;
}

.hero-content .container {
  max-width: 760px;
  margin-left: 7%;
}

.hero-eyebrow {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta-light);
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.4rem;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.hero-eyebrow::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--terracotta-light);
  flex-shrink: 0;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1.6rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s 0.15s ease, transform 0.7s 0.15s ease;
}

.hero-title em {
  font-style: italic;
  color: var(--terracotta-light);
  font-weight: 300;
}

.hero-desc {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  max-width: 440px;
  font-weight: 300;
  margin-bottom: 2.5rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s 0.28s ease, transform 0.7s 0.28s ease;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s 0.42s ease, transform 0.7s 0.42s ease;
}

.hero-slide.active .hero-eyebrow,
.hero-slide.active .hero-title,
.hero-slide.active .hero-desc,
.hero-slide.active .hero-ctas {
  opacity: 1;
  transform: translateY(0);
}

/* Override btn-outline for dark hero bg */
.hero-ctas .btn-outline-custom {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-ctas .btn-outline-custom:hover {
  background: #fff;
  color: var(--deep-brown);
}

/* Slider controls */
.hero-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 7%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero-dots {
  display: flex;
  gap: 0.5rem;
}

.hero-dot {
  width: 28px;
  height: 2px;
  background: rgba(255, 255, 255, 0.3);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.3s, width 0.3s;
}

.hero-dot.active {
  background: var(--terracotta-light);
  width: 44px;
}

.hero-arrows {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 5;
  display: flex;
  gap: 0.6rem;
}

.hero-arrow {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  transition: all 0.3s;
  border-radius: 2px;
}

.hero-arrow:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
}

/* Slide counter */
.hero-counter {
  position: absolute;
  top: calc(76px + 2rem);
  right: 2.5rem;
  z-index: 5;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.5);
  font-family: 'Poppins', sans-serif;
}

.hero-counter strong {
  color: #fff;
  font-weight: 400;
}

/* Progress bar */
.hero-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--warm-white);
  z-index: 6;
  width: 0;
  transition: width linear;
}

/* Badge */
.hero-badge {
  position: absolute;
  bottom: 2.8rem;
  right: 8rem;
  width: 88px;
  height: 88px;
  background: rgba(42, 107, 99, 0.9);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
  box-shadow: 0 8px 28px rgba(42, 107, 99, 0.5);
  animation: badgePulse 3s ease-in-out infinite;
  z-index: 5;
}

.hero-badge small {
  font-size: 0.5rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
  line-height: 1.3;
  padding: 0 6px;
}

@keyframes badgePulse {

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

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

.btn-primary-custom {
  background: var(--terracotta);
  color: #fff;
  padding: 0.85rem 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-primary-custom:hover {
  background: #1A4A45;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26, 74, 69, 0.35);
}

.btn-outline-custom {
  background: transparent;
  color: var(--deep-brown);
  padding: 0.85rem 2.2rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid var(--deep-brown);
  border-radius: 2px;
  transition: all 0.35s ease;
  text-decoration: none;
  display: inline-block;
}

.btn-outline-custom:hover {
  background: var(--deep-brown);
  color: var(--cream);
}

.marquee-band {
  background: var(--deep-brown);
  padding: 0.85rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  animation: marquee 24s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  padding-right: 2.5rem;
}

.marquee-item span {
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 300;
}

.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--terracotta);
  border-radius: 50%;
  flex-shrink: 0;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

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

.section-tag {
  font-size: 0.66rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--terracotta);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  font-weight: 400;
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--terracotta);
  flex-shrink: 0;
}

.section-tag-center {
  justify-content: center;
}

.section-heading {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 2.8vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--deep-brown);
  margin-bottom: 1.2rem;
}

.section-heading em {
  font-style: italic;
  color: var(--terracotta);
}

.section-body {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--mid-brown);
  font-weight: 300;
}

.section-about {
  background: var(--warm-white);
  padding: 6rem 0;
}

.intro-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.intro-img-accent {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 52%;
  aspect-ratio: 1;
  border-radius: 4px;
  border: 6px solid var(--warm-white);
  overflow: hidden;
}

.stat-bubble {
  position: absolute;
  top: 2rem;
  right: -1rem;
  background: #2A6B63;
  color: #fff;
  padding: 1.1rem 1.4rem;
  border-radius: 4px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(42, 107, 99, 0.4);
  z-index: 2;
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 0.25rem;
}

.value-item {
  padding: 1.1rem;
  border: 1px solid var(--sand);
  border-radius: 4px;
  height: 100%;
  transition: all 0.3s;
}

.value-item:hover {
  border-color: var(--terracotta);
  background: rgba(58, 158, 147, 0.04);
}

.value-title {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--deep-brown);
  margin: 0.3rem 0;
}

.value-desc {
  font-size: 0.76rem;
  color: var(--mid-brown);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}

.section-categories {
  background: var(--linen);
  padding: 6rem 0;
}

.cat-card {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}

.cat-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.cat-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55), transparent 60%);
}

.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: #fff;
  z-index: 2;
}

.cat-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}

.cat-name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.35rem;
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.cat-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: gap 0.3s, color 0.3s;
}

.cat-link:hover {
  gap: 1rem;
  color: #fff;
}

.cat-arrow {
  width: 18px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.cat-arrow::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.cat-tall {
  height: 580px;
}

.cat-short-top {
  height: 280px;
}

.cat-short-bottom {
  height: 280px;
}

.cat-medium {
  height: 220px;
}

.section-products {
  background: var(--warm-white);
  padding: 6rem 0;
}

.product-card {
  cursor: pointer;
  margin-bottom: 30px;
}

.product-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
  position: relative;
}

.prod-bg-1 {
  background: url('https://images.unsplash.com/photo-1555041469-a586c61ea9bc?w=600&q=85&auto=format&fit=crop') center/cover no-repeat;
}

.prod-bg-2 {
  background: url('https://images.unsplash.com/photo-1584100936595-c0654b55a2e2?w=600&q=85&auto=format&fit=crop') center/cover no-repeat;
}

.prod-bg-3 {
  background: url('https://images.unsplash.com/photo-1600369672770-985fd30004eb?w=600&q=85&auto=format&fit=crop') center/cover no-repeat;
}

.prod-bg-4 {
  background: url('https://images.unsplash.com/photo-1600166898405-da9535204843?w=600&q=85&auto=format&fit=crop') center/cover no-repeat;
}

.prod-inner {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prod-item-visual {
  width: 70%;
  height: 50%;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.55);
  font-style: italic;
  font-weight: 300;
}

.product-tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--terracotta);
    color: #fff;
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
    z-index: 2;
    line-height: normal;
}

.product-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 74, 69, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 4px;
}

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

.product-overlay-btn {
  background: #fff;
  color: var(--deep-brown);
  padding: 0.65rem 1.6rem;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 2px;
  transform: translateY(10px);
  transition: transform 0.4s ease;
  font-family: 'Poppins', sans-serif;
}

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

.product-card .product-name, .product-card .product-name a {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--deep-brown);
  margin-bottom: 0.2rem;
  text-decoration: none;
}
.product-card .product-name a:hover{
  border-bottom:1px solid var(--deep-brown);
}
.product-sub {
  font-size: 0.7rem;
  color: var(--mid-brown);
  margin-bottom: 0.5rem;
  font-weight: 300;
}

.product-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--deep-brown);
}

.product-price-old {
  font-size: 0.76rem;
  color: #bbb;
  text-decoration: line-through;
}

.lifestyle-banner {
  background: url('https://images.unsplash.com/photo-1505693416388-ac5ce068fe85?w=1600&q=85&auto=format&fit=crop') center/cover no-repeat;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 0 1.5rem 6rem;
}

.lifestyle-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 74, 69, 0.92) 0%, rgba(21, 61, 57, 0.82) 45%, rgba(42, 107, 99, 0.65) 100%);
  z-index: 1;
}

.lifestyle-pattern {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(ellipse at 20% 80%, rgba(58, 158, 147, 0.18), transparent 40%), radial-gradient(ellipse at 80% 20%, rgba(143, 217, 204, 0.12), transparent 40%);
}

.lifestyle-lines {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 18px, rgba(255, 255, 255, 0.03) 18px, rgba(255, 255, 255, 0.03) 19px);
}

.lifestyle-content {
  position: relative;
  z-index: 2;
  padding: 5rem;
  color: #fff;
}

.lifestyle-content .section-tag {
  color: var(--terracotta-light);
}

.lifestyle-content .section-tag::before {
  background: var(--terracotta-light);
}

.lifestyle-content .section-heading {
  color: #fff;
}

.lifestyle-content .section-body {
  color: rgba(255, 255, 255, 0.65);
}

.lifestyle-feature-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 2rem;
}

.lifestyle-feature-list li {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 300;
  padding: 0.4rem 0;
}

.feature-check {
  width: 18px;
  height: 18px;
  border: 1px solid var(--terracotta-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  color: var(--terracotta-light);
  flex-shrink: 0;
}

.lifestyle-deco {
  position: absolute;
  right: 6%;
  top: 50%;
  transform: translateY(-50%);
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lifestyle-deco::before {
  content: '';
  position: absolute;
  inset: 28px;
  border-radius: 50%;
  border: 1px solid rgba(58, 158, 147, 0.18);
}

.lifestyle-deco::after {
  content: '✦';
  font-size: 1.8rem;
  color: var(--gold);
  opacity: 0.45;
}

.section-testimonials {
  background: var(--linen);
  padding: 6rem 0;
}

.testimonial-card {
  background: var(--warm-white);
  padding: 2.2rem;
  border-radius: 4px;
  border: 1px solid var(--sand);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(26, 74, 69, 0.08);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1.2rem;
  right: 1.8rem;
  font-family: 'Poppins', sans-serif;
  font-size: 4.5rem;
  color: var(--terracotta);
  opacity: 0.18;
  line-height: 1;
}

.star {
  color: var(--gold);
  font-size: 0.82rem;
}

.testimonial-text {
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--deep-brown);
  margin: 0.8rem 0 1.3rem;
  font-weight: 300;
}

.author-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--mid-brown));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  font-size: 1rem;
  font-weight: 300;
  flex-shrink: 0;
}

.author-name {
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--deep-brown);
}

.author-location {
  font-size: 0.68rem;
  color: var(--mid-brown);
  font-weight: 300;
}

.section-newsletter {
  background: var(--deep-brown);
  padding: 5rem 0;
  text-align: center;
}

.section-newsletter .section-tag {
  color: var(--terracotta-light);
  justify-content: center;
}

.section-newsletter .section-tag::before {
  background: var(--terracotta-light);
}

.newsletter-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 2.5vw, 2.2rem);
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.6rem;
}

.newsletter-sub {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  margin-bottom: 2rem;
}

.newsletter-form-wrap {
  max-width: 460px;
  margin: 0 auto;
  display: flex;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 3px;
  overflow: hidden;
}

.newsletter-form-wrap input {
  flex: 1;
  padding: 0.9rem 1.3rem;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  outline: none;
  min-width: 0;
}

.newsletter-form-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.newsletter-form-wrap button {
  padding: 0.9rem 1.6rem;
  background: var(--terracotta);
  border: none;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
}

.newsletter-form-wrap button:hover {
  background: var(--terracotta-light);
}
.pagination{
    display:  flex;
    gap:  8px;
}
.pagination .page-btn {
    border: 1px solid var(--sand);
    font-size: 0.7rem;
    width: 30px;
    height: 30px;
    background: var(--cream);
    color: var(--deep-brown);
    font-weight: 500;
}
.pagination .page-btn.active, .pagination .page-btn:hover {
    background: var(--deep-brown);
    color: var(--cream);
    border: 1px solid var(--deep-brown);
}
footer {
  background: #071E1C;
      color: rgba(255, 255, 255, 0.65);
      padding: 60px 48px 40px;
      border-top: 1px solid rgba(255,255,255,.06);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 48px;
      margin-bottom: 48px;
    }

    .footer-brand-name {
      font-family: var(--font-display);
      font-size: 22px;
      color: #f0ebe3;
      margin-bottom: 12px;
      font-weight: 500;
    }

    .footer-brand-name em { font-style: italic; font-weight: 300; }

    .footer-desc { font-size: 13px; line-height: 1.8; max-width: 240px; }

    .footer-col h4 {
      font-size: 10px;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #f0ebe3;
      margin-bottom: 16px;
    }

    .footer-col ul { list-style: none; }
    .footer-col ul li { margin-bottom: 8px; }
    .footer-col ul li a {
      font-size: 13px;
      color: #9a9186;
      text-decoration: none;
      transition: color .2s;
    }
    .footer-col ul li a:hover { color: #f0ebe3; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      font-size: 11px;
      letter-spacing: 0.06em;
    }
    .footer-col ul{
      padding-left:  0;
    }

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

/* ── Desktop: submenu flyout ── */
.nav-menu-desktop .dropdown-submenu {
  position: relative;
}

.nav-menu-desktop .dropdown-submenu>.dropdown-toggle::after {
  display: none;
}

.nav-menu-desktop .dropdown-submenu .submenu-arrow {
  font-size: 0.65rem;
  margin-left: auto;
  float: right;
  margin-top: 3px;
  transition: transform 0.2s;
}

.nav-menu-desktop .dropdown-submenu-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 2px;
  display: none;
  min-width: 160px;
}

.nav-menu-desktop .dropdown-submenu:hover>.dropdown-submenu-menu,
.nav-menu-desktop .dropdown-submenu:focus-within>.dropdown-submenu-menu {
  display: block;
}

.nav-menu-desktop .dropdown-submenu:hover .submenu-arrow {
  transform: rotate(90deg);
}

/* ── Mobile accordion menu ── */
.mobile-nav-accordion .nav-link.mobile-nav-link {
  flex: 1;
  padding-right: 0;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-toggle-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  transition: transform 0.25s, color 0.2s;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-toggle-btn.mobile-toggle-sm {
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
}

.mobile-toggle-btn[aria-expanded="true"] {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.9);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-submenu.open {
  max-height: 600px;
}

.mobile-sublink {
  display: block;
  padding: 0.55rem 1.2rem 0.55rem 1.6rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s, background 0.2s;
}

.mobile-sublink:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

.mobile-submenu-l3 {
  background: rgba(0, 0, 0, 0.12);
}

.mobile-sublink-l3 {
  padding-left: 2.4rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-level3 .mobile-nav-row {
  border-bottom: none;
}

.nav-menu-desktop .dropdown-submenu {
  position: relative;
}

.nav-menu-desktop .dropdown-submenu>.dropdown-toggle::after {
  display: none;
}

.nav-menu-desktop .dropdown-submenu .submenu-arrow {
  font-size: 0.65rem;
  margin-left: auto;
  float: right;
  margin-top: 3px;
  transition: transform 0.2s;
}

.nav-menu-desktop .dropdown-submenu-menu {
  top: 0;
  left: 100%;
  margin-top: 0;
  margin-left: 2px;
  display: none;
  min-width: 160px;
}

.nav-menu-desktop .dropdown-submenu:hover>.dropdown-submenu-menu,
.nav-menu-desktop .dropdown-submenu:focus-within>.dropdown-submenu-menu {
  display: block;
}

.nav-menu-desktop .dropdown-submenu:hover .submenu-arrow {
  transform: rotate(90deg);
}

/* ── Mobile accordion menu ── */
.mobile-nav-accordion .nav-link.mobile-nav-link {
  flex: 1;
  padding-right: 0;
}

.mobile-nav-row {
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  justify-content: space-between;
}

.mobile-toggle-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.55);
  padding: 0.6rem 0.8rem;
  cursor: pointer;
  transition: transform 0.25s, color 0.2s;
  line-height: 1;
  flex-shrink: 0;
}

.mobile-toggle-btn.mobile-toggle-sm {
  padding: 0.4rem 0.6rem;
  font-size: 0.75rem;
}

.mobile-toggle-btn[aria-expanded="true"] {
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.9);
}

.mobile-submenu {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
  background: rgba(255, 255, 255, 0.04);
}

.mobile-submenu.open {
  max-height: 600px;
}

.mobile-sublink {
  font-size: 0.65rem !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase;
    color: var(--cream);
  display: block;
  padding: 0.4rem 1.2rem 0.4rem 1rem;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.2s, background 0.2s;
}

.mobile-sublink:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.07);
}

/* Level 3 indent */
.mobile-submenu-l3 {
  background: rgba(0, 0, 0, 0.12);
}

.mobile-sublink-l3 {
  padding-left: 2.4rem;
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.55);
}

.mobile-level3 .mobile-nav-row {
  border-bottom: none;
}
.dropdown-toggle::after {
    border:0;
}


/* ── CART ITEM ─────────────────────────────────── */
    .cart-item {
      display: grid;
      grid-template-columns: 1fr 120px 120px 48px;
      gap: 16px;
      align-items: center;
      padding: 24px 0;
      border-bottom: 1px solid var(--bordergrey);
      animation: fadeIn .35s ease forwards;
    }

    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(8px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .cart-item.removing {
      animation: slideOut .3s ease forwards;
    }

    @keyframes slideOut {
      to { opacity: 0; transform: translateX(-16px); max-height: 0; padding: 0; overflow: hidden; }
    }

    .item-info {
      display: flex;
      gap: 20px;
      align-items: flex-start;
    }

    .item-image {
      width: 96px;
      height: 112px;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--sand);
      position: relative;
    }

    .item-image img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      transition: transform .5s ease;
    }

    .cart-item:hover .item-image img { transform: scale(1.06); }

    .item-details { flex: 1; }

    .item-category {
      font-size: 10px;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 4px;
    }

    .item-name {
      font-family: var(--font-display);
      font-size: 21px;
      font-weight: 400;
      color: var(--deep-brown);
      line-height: 1.15;
      margin-bottom: 8px;
    }

    .item-variants {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .item-variant {
      font-size: 11px;
      color: var(--text-light);
      letter-spacing: 0.06em;
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .item-variant span {
      color: var(--text);
      font-weight: 400;
    }

    .item-actions-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-top: 14px;
    }

    .item-link {
      font-size: 11px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--text-light);
      text-decoration: none;
      cursor: pointer;
      transition: color .2s;
      background: none;
      border: none;
      font-family: var(--font-body);
      padding: 0;
    }

    .item-link:hover { color: var(--accent); }
    .item-link.remove:hover { color: #8b3a3a; }

    .item-link-sep { color: var(--bordergrey); font-size: 11px; }

    /* Qty cell */
    .item-qty {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qty-ctrl {
      display: flex;
      align-items: center;
      border: 1px solid var(--bordergrey);
      transition: border-color .2s;
    }

    .qty-ctrl:focus-within { border-color: var(--deep-brown); }

    .qty-btn {
      width: 34px; height: 38px;
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 300;
      color: var(--text-light);
      cursor: pointer;
      transition: all .15s;
      font-family: var(--font-display);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .qty-btn:hover { background: var(--cream); color: var(--deep-brown); }

    .qty-value {
      width: 36px;
      text-align: center;
      font-family: var(--font-display);
      font-size: 17px;
      font-weight: 400;
      color: var(--deep-brown);
      border: none;
      background: none;
      pointer-events: none;
    }

    /* Price cell */
    .item-price {
      text-align: right;
    }

    .price-line {
      font-family: var(--font-display);
      font-size: 20px;
      font-weight: 400;
      color: var(--deep-brown);
    }

    .price-unit {
      font-size: 11px;
      color: var(--text-light);
      margin-top: 2px;
    }

    .price-saving-tag {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #8b3a3a;
      margin-top: 4px;
    }

    /* Remove cell */
    .item-remove {
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .remove-btn {
      width: 32px; height: 32px;
      background: none;
      border: 1px solid var(--bordergrey);
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all .2s;
      color: var(--text-light);
    }

    .remove-btn:hover {
      background: #8b3a3a;
      border-color: #8b3a3a;
      color: white;
    }





    
    /* ══════════════════════════════════════════════
       CART DRAWER
    ══════════════════════════════════════════════ */

    /* Overlay backdrop */
    .cart-overlay {
      position: fixed;
      inset: 0;
      background: rgba(26, 23, 20, 0);
      z-index: 900;
      pointer-events: none;
      transition: background 0.4s ease;
    }
    .cart-overlay.open {
      background: rgba(26, 23, 20, 0.52);
      pointer-events: all;
    }

    /* Drawer panel */
    .cart-drawer {
      position: fixed;
      top: 0; right: 0; bottom: 0;
      width: 440px;
      max-width: 100vw;
      background: #FFFFFF;
      z-index: 9999;
      display: flex;
      flex-direction: column;
      transform: translateX(100%);
      transition: transform 0.42s cubic-bezier(0.76, 0, 0.24, 1);
      box-shadow: -8px 0 48px rgba(26,23,20,.18);
    }
    .cart-drawer.open {
      transform: translateX(0);
    }

    /* Drawer header */
    .cd-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px 18px;
      flex-shrink: 0;
    }
    .cd-title {
      font-family: var(--font-display);
      font-size: 26px;
      font-weight: 300;
      color: var(--deep-brown);
      line-height: 1;
    }
    .cd-title em { font-style: italic; color: var(--accent); }
    .cd-count {
      font-size: 12px;
      letter-spacing: 0.1em;
      color: var(--text-light);
      margin-top: 3px;
    }
    .cd-close {
      background: none;
      border: 1px solid var(--bordergrey);
      width: 36px; height: 36px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer;
      color: var(--text-light);
      transition: all .2s;
      font-size: 20px;
      line-height: 1;
    }
    .cd-close:hover { background: var(--deep-brown); color: var(--warm-white); border-color: var(--deep-brown); }

    /* Free shipping nudge */
    .cd-nudge {
      padding: 12px 28px;
      background: var(--cream);
      flex-shrink: 0;
    }
    .cd-nudge-text {
      font-size: 12px;
      color: var(--deep-brown);
      margin-bottom: 8px;
      letter-spacing: 0.02em;
    }
    .cd-nudge-text strong { color: var(--deep-brown); font-weight: 600; }
    .cd-nudge-track {
      height: 2px;
      background: var(--terracotta);
      position: relative;
    }
    .cd-nudge-fill {
      height: 100%;
      background: var(--accent);
      transition: width 0.6s ease;
    }

    /* Added confirmation flash banner */
    .cd-added-banner {
      background: var(--deep-brown);
      color: var(--sand);
      padding: 12px 28px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
      overflow: hidden;
      max-height: 0;
      padding-top: 0; padding-bottom: 0;
      opacity: 0;
      transition: max-height 0.3s ease, opacity 0.3s ease, padding 0.3s ease;
    }
    .cd-added-banner.show {
      max-height: 80px;
      padding: 12px 28px;
      opacity: 1;
    }
    .cd-added-img {
      width: 44px; height: 50px;
      object-fit: cover;
      flex-shrink: 0;
      background: var(--sand);
    }
    .cd-added-info { flex: 1; }
    .cd-added-name {
      font-family: var(--font-display);
      font-size: 0.8rem;
      color: var(--warm-white);
      line-height: 1.2;
    }
    .cd-added-sub {
      font-size: 10px;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--sand);
      margin-top: 2px;
    }
    .cd-added-check {
      width: 22px; height: 22px;
      background: var(--accent);
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 12px;
      color: var(--deep-brown);
    }

    /* Cart items scroll */
    .cd-items {
      flex: 1;
      overflow-y: auto;
      padding: 8px 0;
    }
    .cd-items::-webkit-scrollbar { width: 3px; }
    .cd-items::-webkit-scrollbar-thumb { background: var(--bordergrey); }

    /* Empty state */
    .cd-empty {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100%;
      gap: 14px;
      color: var(--text-light);
      padding: 40px;
      text-align: center;
    }
    .cd-empty svg {
      width: 48px; height: 48px;
      stroke: var(--sand);
      fill: none;
      stroke-width: 1;
    }
    .cd-empty-title {
      font-family: var(--font-display);
      font-size: 22px;
      font-weight: 300;
      color: var(--deep-brown);
    }
    .cd-empty-title em { font-style: italic; color: var(--accent); }
    .cd-empty-text { font-size: 13px; line-height: 1.7; max-width: 240px; }
    .cd-empty-cta {
      padding: 11px 24px;
      background: var(--deep-brown);
      color: var(--warm-white);
      border: none;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      cursor: pointer;
      margin-top: 8px;
      transition: background .2s;
    }
    .cd-empty-cta:hover { background: var(--accent); }

    /* Cart item row */
    .cd-item {
      display: flex;
      gap: 14px;
      padding: 16px 28px;
      border-bottom: 1px solid var(--bordergrey);
      /*transition: background .2s;
      animation: cdItemIn .25s ease;*/
    }
    @keyframes cdItemIn {
      from { opacity: 0; transform: translateX(12px); }
      to   { opacity: 1; transform: none; }
    }
    .cd-item:hover { background: var(--cream); }
    .cd-item-img {
      width: 72px; 
      height: 72px;
      flex-shrink: 0;
      overflow: hidden;
      background: var(--sand);
      position: relative;
    }
    .cd-item-img img {
      width: 100%; height: 100%;
      object-fit: cover;
      display: block;
      /*transition: transform .5s ease;*/
    }
    .cd-item:hover .cd-item-img img { transform: scale(1.06); }

    .cd-item-body { 
      flex: 1; 
      min-width: 0;
      position: relative; 
      font-size:0.9rem;
    }
    .cd-item-body .remItemBtn{
      color: #ff2222;
      position: absolute;
      top: 0;
      right: 0;
      padding: 2px;
      cursor: pointer;
      border:none;
      background: none;
      font-size:0.9rem;
    }
    .cd-item-cat {
      font-size: 9px;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 3px;
    }
    .cd-item-name {
        font-family: var(--font-display);
        font-size: 0.8rem;
        font-weight: 400;
        color: var(--deep-brown);
        line-height: 1.2;
        margin-bottom: 4px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-right:25px;
    }
    .cd-item-variant {
      font-size: 0.65rem;
      color: var(--text-light);
      margin-bottom: 10px;
      letter-spacing: 0.04em;
    }
    .cd-item-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .cd-qty-ctrl {
      display: flex;
      align-items: center;
      border: 1px solid var(--bordergrey);
    }
    .cd-qty-btn {
      width: 28px; height: 28px;
      background: none;
      border: none;
      font-size: 16px;
      font-weight: 300;
      font-family: var(--font-display);
      color: var(--text-light);
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: all .15s;
    }
    .cd-qty-btn:hover { background: var(--deep-brown); color: var(--warm-white); }
    .cd-qty-val {
      min-width: 28px;
      text-align: center;
      font-family: var(--font-display);
      font-size: 15px;
      color: var(--deep-brown);
    }
    .cd-item-price {
      font-family: var(--font-display);
      font-size: 18px;
      font-weight: 400;
      color: var(--deep-brown);
    }
    .cd-item-remove {
      background: none;
      border: none;
      color: var(--text-light);
      cursor: pointer;
      font-size: 18px;
      line-height: 1;
      padding: 0;
      margin-left: 6px;
      transition: color .2s;
    }
    .cd-item-remove:hover { color: #8b3a3a; }

    /* Footer totals */
    .cd-footer {
      border-top: 1px solid var(--bordergrey);
      padding: 18px 28px 24px;
      flex-shrink: 0;
      background: var(--warm-white);
    }
    .cd-total-rows { margin-bottom: 16px; }
    .cd-total-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      margin-bottom: 7px;
    }
    .cd-total-label {
      font-size: 12px;
      letter-spacing: 0.06em;
      color: var(--text-light);
    }
    .cd-total-val {
      font-family: var(--font-display);
      font-size: 15px;
      color: var(--text);
    }
    .cd-total-val.saving { color: #4a6741; }
    .cd-grand-row {
      display: flex;
      justify-content: space-between;
      align-items: baseline;
      padding-top: 12px;
      border-top: 1px solid var(--bordergrey);
      margin-bottom: 16px;
    }
    .cd-grand-label {
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--deep-brown);
    }
    .cd-grand-val {
      font-family: var(--font-display);
      font-size: 1.1rem;
      font-weight: 400;
      color: var(--deep-brown);
    }
    .cd-checkout-btn {
      width: 100%;
      background: var(--deep-brown);
      color: var(--warm-white);
      border: 1px solid var(--deep-brown);
      padding: 16px;
      font-family: var(--font-body);
      font-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .22s;
      margin-bottom: 10px;
      position: relative;
      overflow: hidden;
    }
    .cd-checkout-btn::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,.07), transparent);
      transform: translateX(-100%);
      transition: transform .5s ease;
    }
    .cd-checkout-btn:hover { border: 1px solid var(--deep-brown);
    background: #FFF;
    color: var(--deep-brown); }
    .cd-checkout-btn:hover::after { transform: translateX(100%); }
    .cd-continue-btn {
      width: 100%;
      background: none;
      border: 1px solid var(--bordergrey);
      padding: 12px;
      font-family: var(--font-body);
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--text-light);
      cursor: pointer;
      transition: all .2s;
    }
    .cd-continue-btn:hover { border-color: var(--accent); color: var(--accent); }
    .cd-item-footer .qtyBtn{
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .cd-item-footer .qtyBtn button{
      border: 1px solid var(--sand);
      background: var(--warm-white);
    }
       .cd-item-footer .lineTotal button{
      border: 1px solid var(--sand);
      background: var(--warm-white);
    }
    .cd-item-footer .qtyBtn span{
      width: 30px;
      text-align: center;
    }
    /* Cart button badge on nav */
    .cart-btn-wrap { position: relative; display: inline-flex; }
    .cart-badge {
      position: absolute;
      top: -7px; right: -7px;
      width: 18px; height: 18px;
      background: var(--accent);
      color: var(--warm-white);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
      transform: scale(0);
      transition: transform .25s cubic-bezier(.34,1.56,.64,1);
    }
    .cart-badge.visible { transform: scale(1); }

    /* Pulse animation on "Add to Cart" buttons after click */
    @keyframes atcPulse {
      0%   { transform: scale(1); }
      50%  { transform: scale(.96); }
      100% { transform: scale(1); }
    }
    .atc-pulse { animation: atcPulse .2s ease; }

    /* body lock when drawer open */
    body.cart-open { overflow: hidden; }

    /* ══════════════════════════════════════════════
       LOGIN MODAL
    ══════════════════════════════════════════════ */
    .login-overlay {
      position: fixed; inset: 0;
      background: rgba(26,23,20,0);
      z-index: 1000;
      display: flex; align-items: center; justify-content: center;
      pointer-events: none;
      transition: background .35s ease;
      padding: 20px;
    }
    .login-overlay.open {
      background: rgba(26,23,20,.6);
      pointer-events: all;
      backdrop-filter: blur(3px);
    }
    .login-modal {
      background: var(--warm-white);
      width: 420px; max-width: 100%;
      position: relative; overflow: hidden;
      transform: translateY(24px) scale(.97);
      opacity: 0;
      transition: transform .38s cubic-bezier(.34,1.26,.64,1), opacity .3s ease;
    }
    .login-overlay.open .login-modal {
      transform: none; opacity: 1;
    }
    .lm-band {
      height: 4px;
      background: linear-gradient(90deg, var(--deep-brown), var(--accent), var(--deep-brown));
      background-size: 200% 100%;
      animation: bandShift 3s linear infinite;
    }
    @keyframes bandShift { 0%{background-position:0% 0%} 100%{background-position:200% 0%} }
    .lm-close {
      position: absolute; top: 14px; right: 16px;
      background: none; border: 1px solid var(--bordergrey);
      width: 32px; height: 32px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 18px; color: var(--text-light); line-height: 1;
      transition: all .2s; z-index: 2;
    }
    .lm-close:hover { background: var(--deep-brown); color: var(--warm-white); border-color: var(--deep-brown); }
    .lm-header { padding: 28px 32px 8px; }
    .lm-eyebrow {
      font-size: 10px; letter-spacing: .22em; text-transform: uppercase;
      color: var(--accent); font-weight: 500; margin-bottom: 6px;
    }
    .lm-title {
      font-family: var(--font-display); font-size: 32px; font-weight: 300;
      color: var(--deep-brown); line-height: 1.1; margin-bottom: 4px;
    }
    .lm-title em { font-style: italic; color: var(--accent); }
    .lm-subtitle { font-size: 11px; color: var(--text-light); line-height: 1.6; }
    .lm-body { padding: 24px 32px 28px; }
    .lm-step { display: none; animation: stepIn .3s ease; }
    .lm-step.active { display: block; }
    @keyframes stepIn { from{opacity:0;transform:translateX(12px)} to{opacity:1;transform:none} }
    .lm-phone-wrap {
      display: flex; border: 1px solid var(--bordergrey); overflow: hidden;
      transition: border-color .2s, box-shadow .2s; margin-bottom: 8px;
    }
    .lm-phone-wrap:focus-within {
      border-color: var(--deep-brown); box-shadow: 0 0 0 2px rgba(26,23,20,.06);
    }
    .lm-flag {
      display: flex; align-items: center; gap: 6px;
      padding: 0 14px; border-right: 1px solid var(--bordergrey);
      background: var(--cream); font-size: 13px; color: var(--text);
      white-space: nowrap; flex-shrink: 0; cursor: default;
    }
    .lm-flag-emoji { font-size: 18px; }
    .lm-dial { font-weight: 500; font-size: 13px; letter-spacing: .03em; }
    .lm-phone-input {
      flex: 1; border: none;
      padding: 14px 16px; font-family: var(--font-body);
      font-size: 15px; font-weight: 300; color: var(--deep-brown);
      background: none; letter-spacing: .04em;
    }
    .lm-phone-input:focus { outline: none; }
    .lm-phone-input::placeholder { color: var(--taupe); font-size: 14px; }
    .lm-field-hint { font-size: 11px; color: var(--text-light); letter-spacing: .04em; margin-bottom: 20px; }
    .lm-otp-row {
      display: flex; gap: 10px; justify-content: center; margin-bottom: 8px;
    }
    .lm-otp-digit {
      width: 52px; height: 60px; border: 1px solid var(--bordergrey);
      background: var(--cream); text-align: center;
      font-family: var(--font-display); font-size: 28px; font-weight: 400;
      color: var(--deep-brown); transition: border-color .2s, box-shadow .2s, background .2s;
      caret-color: var(--accent);
    }
    .lm-otp-digit:focus { outline: none; border-color: var(--deep-brown); box-shadow: 0 0 0 2px rgba(26,23,20,.07); background: var(--warm-white); }
    .lm-otp-digit.filled { border-color: var(--accent); background: rgba(139,115,85,.06); }
    .lm-otp-digit.error { border-color: #8b3a3a; background: rgba(139,58,58,.06); animation: otpShake .35s ease; }
    @keyframes otpShake { 0%,100%{transform:translateX(0)} 20%,60%{transform:translateX(-5px)} 40%,80%{transform:translateX(5px)} }
    .lm-otp-sent {
      font-size: 12px; color: var(--text-light); text-align: center;
      margin-bottom: 18px; line-height: 1.6;
    }
    .lm-otp-sent strong { color: var(--deep-brown); font-weight: 500; }
    .lm-resend-row {
      display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px;
    }
    .lm-resend-timer { font-size: 12px; color: var(--text-light); letter-spacing: .04em; }
    .lm-resend-btn {
      font-size: 12px; color: var(--accent); background: none; border: none;
      cursor: pointer; font-family: var(--font-body); text-decoration: underline;
      padding: 0; transition: color .2s;
    }
    .lm-resend-btn:hover { color: var(--deep-brown); }
    .lm-resend-btn:disabled { color: var(--taupe); cursor: not-allowed; text-decoration: none; }
    .lm-btn {
      width: 100%; padding: 15px; background: var(--deep-brown); color: var(--warm-white);
      border: none; font-family: var(--font-body); font-size: 12px; font-weight: 600;
      letter-spacing: .2em; text-transform: uppercase; cursor: pointer;
      transition: background .22s; margin-bottom: 12px;
      display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .lm-btn:hover { background: var(--accent); }
    .lm-btn:disabled { opacity: .55; cursor: not-allowed; }
    .lm-btn:disabled:hover { background: var(--deep-brown); }
    .lm-btn-spinner {
      display: none; width: 16px; height: 16px;
      border: 2px solid rgba(255,255,255,.3); border-top-color: white;
      border-radius: 50%; animation: lmSpin .7s linear infinite;
    }
    .lm-btn.loading .lm-btn-spinner { display: block; }
    .lm-btn.loading .lm-btn-text { opacity: .7; }
    @keyframes lmSpin { to{transform:rotate(360deg)} }
    .lm-back-btn {
      background: none; border: none; color: var(--text-light);
      font-family: var(--font-body); font-size: 12px;
      letter-spacing: .1em; text-transform: uppercase;
      cursor: pointer; padding: 0;
      display: flex; align-items: center; gap: 6px;
      transition: color .2s; margin-bottom: 10px;
    }
    .lm-back-btn:hover { color: var(--deep-brown); }
    .lm-divider {
      display: flex; align-items: center; gap: 12px; margin-bottom: 16px;
    }
    .lm-divider::before,.lm-divider::after {
      content:''; flex:1; height:1px; background:var(--bordergrey);
    }
    .lm-divider-text { font-size:10px; letter-spacing:.12em; text-transform:uppercase; color:var(--taupe); }
    .lm-social { display:grid; grid-template-columns:1fr 1fr; gap:8px; margin-bottom:20px; }
    .lm-social-btn {
      padding:11px 14px; border:1px solid var(--bordergrey); background:none;
      font-family:var(--font-body); font-size:11px; font-weight:500;
      letter-spacing:.08em; color:var(--text); cursor:pointer;
      transition:all .2s;
      display:flex; align-items:center; justify-content:center; gap:8px;
    }
    .lm-social-btn:hover { border-color:var(--deep-brown); color:var(--deep-brown); background:var(--cream); }
    .lm-social-btn svg { width:16px; height:16px; flex-shrink:0; }
    .lm-terms { font-size:9px; color:var(--taupe); text-align:center; line-height:1.7; }
    .lm-terms a { color:var(--accent); text-decoration:none; }
    .lm-terms a:hover { text-decoration:underline; }
    .lm-success-icon {
      width:64px; height:64px; background:var(--deep-brown);
      display:flex; align-items:center; justify-content:center;
      margin:0 auto 20px; animation:lmPopIn .4s cubic-bezier(.34,1.56,.64,1);
    }
    @keyframes lmPopIn { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
    .lm-success-icon svg { width:28px; height:28px; stroke:var(--cream); fill:none; stroke-width:2; }
    .lm-success-name {
      font-family:var(--font-display); font-size:26px; font-weight:300;
      color:var(--deep-brown); text-align:center; margin-bottom:6px;
    }
    .lm-success-name em { font-style:italic; color:var(--accent); }
    .lm-success-msg { font-size:13px; color:var(--text-light); text-align:center; line-height:1.7; margin-bottom:24px; }
    .lm-number-display {
      display:inline-flex; align-items:center; gap:8px;
      background:var(--cream); border:1px solid var(--bordergrey);
      padding:6px 12px; font-size:13px; color:var(--deep-brown);
      letter-spacing:.06em; margin-bottom:20px;
    }
    .lm-number-edit {
      font-size:10px; color:var(--accent); cursor:pointer;
      letter-spacing:.08em; text-transform:uppercase;
      border-left:1px solid var(--bordergrey); padding-left:8px; margin-left:4px;
      transition:color .2s;
    }
    .lm-number-edit:hover { color:var(--deep-brown); }
    .lm-error {
      font-size:11px; color:#8b3a3a; text-align:center;
      margin-bottom:12px; letter-spacing:.04em; min-height:16px;
    }
    .account-logged-in {
      display:flex; align-items:center; gap:6px;
      background:var(--cream) !important; color:var(--deep-brown) !important;
      border:1px solid var(--bordergrey) !important; padding:6px 12px !important;
    }
    .account-avatar {
      width:22px; height:22px; background:var(--accent); border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-size:11px; font-weight:600; color:var(--warm-white); flex-shrink:0;
    }