:root {
  --cream: #E8FAF6;
  --cream-soft:#F2E9D8;
  --warm-white: #F6FFFE;
  --sand: #cdefec;
  --terracotta: #81d8d0;
  --terracotta-light: #a7e4de;
  --sage: #8FD9CC;
  --deep-brown: #2F9C93;
  --mid-brown: #89A299;
  --dark-brown:#071E1C;
  --charcoal: #3d3935;
  --gold: #4DCFC3;
  --linen: #e9f9f7;
  --bordergrey: #e9e9e9;
  --coral: #ff5c39;
  --bs-body-font-weight:300;
  --text: #333333;
  --white: #FFFFFF;
  --black: #000000;
  --zblack: #3d3935;
  --zbrown: #cb997e;
  --zyellow: #f6d684;
  --mid-black: #2e2f2c;
  --accent: #382e2a;
  --cream-md: #faf6ee;
  --ivory:#FFFFFF;
  --sand-light:#EDE0CC;
  --blush:#EFDACE;
  --ink:#2C2622;
  --ink-soft:#5B534B;
  --teal-cta:#2F9C93;
  --teal-cta-dark:#23827A;
  --teal:#62a89e;
  --teal-pale:#D9F1EE;
  --teal-deep:#1E4F50;
  --teal-deep-light:#2f9c93;
  --charcoal:#34302B;
  --charcoal-60:rgba(52,48,43,.6);
  --charcoal-40:rgba(52,48,43,.4);
  --teal-50:#EAF7F5;
  --teal-100:#D2EFEA;
  --teal-200:#B7E8E1;
  --teal-300:#9FE0D7;
  --teal-400:#81D8D0;
  --teal-500:#5FC2B8;
  --teal-600:#3B9990;
  --teal-700:#256560;
  --teal-800:#173F3C;
  --teal-900:#0E2826;
  --tan:#C9A87E;
  --tan-light:#ECDFC4;
  --tan-dark:#A9824F;
  --shadow-sm:0 2px 10px rgba(52,48,43,.07);
  --shadow-md:0 10px 28px rgba(52,48,43,.10);
  --shadow-lg:0 24px 56px rgba(14,40,38,.18);
  --ease:cubic-bezier(.4,0,.2,1);
  --wrap:1180px;
  --r-sm:6px;
  --r-md:14px;
  --r-lg:26px;
  --nav-height: 57px;
  --teal-light: #def3ed;
  --cream-sm: #f9f9f4;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
  outline: none;
}
html {
  scroll-behavior: smooth;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../font/CenturyGothic-Italic.woff2') format('woff2'),
        url('../font/CenturyGothic-Italic.woff') format('woff'),
        url('../font/CenturyGothic-Italic.ttf') format('truetype');
    font-weight: normal;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../font/CenturyGothic-BoldItalic.woff2') format('woff2'),
        url('../font/CenturyGothic-BoldItalic.woff') format('woff'),
        url('../font/CenturyGothic-BoldItalic.ttf') format('truetype');
    font-weight: bold;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../font/CenturyGothic-Bold.woff2') format('woff2'),
        url('../font/CenturyGothic-Bold.woff') format('woff'),
        url('../font/CenturyGothic-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Century Gothic';
    src: url('../font/CenturyGothic.woff2') format('woff2'),
        url('../font/CenturyGothic.woff') format('woff'),
        url('../font/CenturyGothic.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
  font-family: "Century Gothic",sans-serif;
  background: #fff;
  color: #666666;
  overflow-x: hidden;
}
img {
  max-width: 100%;
}
.container{
  max-width: 1280px;
}
.nav-logo-img {
  height: 52px;
  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: 0.2rem 38px;
  transition: all 0.4s ease;
  z-index: 1030;
}
.navbar-brand {
  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.95rem;
  letter-spacing: 0.05rem;
  color: var(--zblack) !important;
  font-weight: 400;
  padding: 0.4rem 0.8rem !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::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: 2px;
  padding: 10px 0;
  border: 1px solid rgba(58, 158, 147, 0.15);
  box-shadow: 0 8px 28px rgba(26, 74, 69, 0.1);
  --bs-dropdown-min-width: 14rem;
}
.navbar-nav .dropdown-item {
    font-size: 0.9rem;
    padding: 8px 18px;
    color: var(--zblack);
    transition: background 0.2s, color 0.2s;
    font-weight: 300;
    letter-spacing: 1px;
}
.navbar-nav .dropdown-item:hover {
  background: rgba(58, 158, 147, 0.08);
}
.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-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(--deep-brown);
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  transition: color 0.3s;
  padding: 0 0.6rem;
}
.nav-icon-links a:hover {
  color: var(--terracotta);
}
.nav-search-trigger.search-active {
  color: var(--terracotta) !important;
}
.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;
}
.btn-cart:hover{
  background: var(--dark-brown);
}
/* ── 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(80deg,rgba(0, 79, 76, 1) 0%, rgba(0, 79, 76, 0) 100%);
  /*background: rgb(0 0 0 / 6%);*/
  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: 1280px;
}
.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-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 400;
  line-height: 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;
  /*max-width: 490px;*/
  letter-spacing: 0.06rem;
  text-align: center;
}
.hero-title em {
  font-style: italic;
  color: var(--terracotta-light);
  font-weight: 300;
}
.hero-desc {
  font-size: 0.95rem;
  line-height: 24px;
  color: rgba(255, 255, 255, 0.9);
  /*max-width: 490px;*/
  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;
  letter-spacing: 0.04rem;
  text-align: center;
}
.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;
  position: absolute;
  bottom: 30px;
}
.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: var(--deep-brown);
  color: var(--white);
  border: 2px solid 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;
  display: none;
}
.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: 40px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  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;
}
.hero-arrow:hover {
  background: var(--deep-brown);
  border-color: var(--deep-brown);
}
/* 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);
}
.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: var(--deep-brown);
  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(--deep-brown);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: all 0.35s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid var(--deep-brown);
}
.btn-primary-custom:hover {
  background: transparent;
  color: var(--white);
  box-shadow: 0 8px 24px rgba(26, 74, 69, 0.35);
  border: 2px solid var(--white);
}
.btn-outline-custom {
  background: transparent;
  color: var(--deep-brown);
  padding: 0.75rem 2rem;
  font-size: 0.8rem;
  letter-spacing: 0.02rem;
  text-transform: uppercase;
  border: 2px solid var(--deep-brown);
  border-radius: 2px;
  transition: all 0.35s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn-outline-custom:hover {
  background: var(--deep-brown);
  color: var(--cream);
}
.mrqsec{
  padding: 23px 3px;
  border-bottom: 1px solid #e1e1e1;
  background: var(--mid-brown);
}
.marquee-band {
  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.75rem;
  letter-spacing: 0.03rem;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 400;
}
.marquee-dot {
  width: 4px;
  height: 4px;
  background: var(--deep-brown);
  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.09rem;
  text-transform: uppercase;
  color: var(--mid-black);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
  font-weight: 600;
}
.section-tag::before {
  content: '';
  width: 20px;
  height: 1px;
  background: var(--mid-black);
  flex-shrink: 0;
}
.section-tag-center {
  justify-content: center;
}
.section-heading {
  font-size: clamp(1.4rem, 2.4vw, 2.4rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1.2rem;
}
.section-heading span {
  color: var(--deep-brown);
}
.section-heading em {
  font-style: italic;
  color: var(--mid-brown);
}
.section-body {
  font-size: 0.8rem;
  line-height: 24px;
  color: var(--text);
  font-weight: 400;
  max-width: 575px;
}
.section-about {
  background: var(--white);
  padding: 2rem 0 5rem;
}
.section-about img{
  border-radius: 10px;
}
.about-btn {
  background: var(--deep-brown);
  color: var(--white);
  padding: 0.7rem 2rem;
  font-size: 0.7rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  border: none;
  border-radius: 2px;
  transition: all 0.35s ease;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.about-btn:hover {
  background: var(--dark-brown);
  color: var(--white);
}
.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: var(--deep-brown);
  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-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-size: 0.9rem;
  font-weight: 400;
  color: var(--deep-brown);
  margin: 0.3rem 0;
}
.value-desc {
  font-size: 0.76rem;
  color: var(--text);
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
}
.value-item img {
  width:70px;
}
.catgsec{
  padding: 4rem 0;
}
.catgsec .catgcol {
    background: #eaf2f3;
    width: 100%;
    height: 170px;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-around;
    padding-top: 30px;
    border-radius: 14px;
}
.catgsec .catgcol img{
  width: 45px;
}
.catgsec a, footer a {
    color: inherit;
    text-decoration: none;
}
.catginfo h2 {
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--black);
    margin: 0.3rem 0;
    letter-spacing: 0.05rem;
}
.section-categories {
  /* background: var(--linen); */
  padding: 4rem 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(180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.3) 100%);
}
.cat-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.2rem;
  color: #fff;
  z-index: 2;
}
.cat-content.ctop{
  top: 0;
}
.cat-label {
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.7;
  margin-bottom: 0.3rem;
}
.cat-name 
  font-size: 0.95rem;
  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: 568px;
}
.cat-short-top {
  height: 280px;
}
.cat-short-bottom {
  height: 280px;
}
.cat-medium {
  height: 220px;
}
.section-products {
  background: var(--white);
  padding: 4rem 0;
}
.product-card {
  cursor: pointer;
  margin-bottom: 30px;
}
.product-image {
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
  position: relative;
}

.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-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(--deep-brown);
    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;
}
.sale-tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--charcoal);
    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-card:hover .product-overlay {
  opacity: 1;
}
.product-image{
  position: relative;
  overflow: hidden;
}
.product-image{
  position: relative;
  overflow: hidden;
  display:flex;
  align-items:center;
  justify-content:center;
}
.product-link{
  position:absolute;
  inset:0;
  z-index:1;
}
.product-overlay-btn{
  z-index:2;
  position:relative;
  opacity:0;
  transition:.25s ease;
}
.product-image:hover .product-overlay-btn{
  opacity:1;
}
/*.product-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 4px;
}
*/
.product-overlay-btn {
  background: var(--deep-brown);
  color: var(--white);
  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;
}
.product-card:hover .product-overlay-btn {
  transform: translateY(0);
}
.product-card .product-name, .product-card .product-name a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--zblack);
  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(--text);
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.product-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--zblack);
}
.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 {
  padding: 4rem 0;
}
.testimonial-card {
  /* background: var(--white);
  padding: 2.2rem;
  border-radius: var(--r-md);
  border: 1px solid var(--sand);
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
  height: 100%; */
  background: var(--ivory);
  border: 1px solid rgba(44, 38, 34, 0.08);
  border-radius: var(--r-lg);
  padding: 28px;
}
/* .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-size: 4.5rem;
  color: var(--mid-brown);
  opacity: 0.5;
  line-height: 1;
} */
.star {
  color: var(--teal-cta);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}
.testimonial-text {
  font-size: 0.8rem;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0.8rem 0 1.3rem;
  font-weight: 300;
}
.author-avatar {
  width:38px;
  height:38px;
  border-radius:50%;
  background:var(--teal-50);
  color:var(--teal-700);
  display:flex;
  align-items:center;
  justify-content:center;
  font-family:'Century Gothic';
  font-weight:600;
  font-size:15px;
}
.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(--teal-deep);
  padding: 4rem 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-size: clamp(1.5rem, 2.5vw, 2rem);
  color: #fff;
  margin-bottom: 0.6rem;
}
.newsletter-sub {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto 2rem;
}
.newsletter-form-wrap {
  max-width: 420px;
  margin: 0 auto;
  display: flex;
  border-radius: 3px;
  overflow: hidden;
}
.newsletter-form-wrap input {
  flex: 1;
  padding: 0.75rem 1.2rem;
  background: rgba(255, 255, 255, 0.07);
  border: none;
  color: #fff;
  font-size: 0.84rem;
  outline: none;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
}
.newsletter-form-wrap input::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.newsletter-form-wrap button {
  padding: 0.75rem 1.6rem;
  background: var(--deep-brown);
  border: none;
  color: #fff;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.3s;
  white-space: nowrap;
  font-weight: 500;
}
.newsletter-form-wrap button:hover {
  background: var(--dark-brown);
}
.pagination{
    display:  flex;
    gap:  8px;
    justify-content: center;
}
.pagination .page-btn {
    border: 1px solid var(--sand);
    font-size: 0.75rem;
    width: 30px;
    height: 30px;
    background: var(--cream);
    color: var(--deep-brown);
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: center;
}
.pagination .page-btn.active, .pagination .page-btn:hover {
    background: var(--deep-brown);
    color: var(--cream);
    border: 1px solid var(--deep-brown);
}

footer {
  background: var(--dark-brown);
  color: var(--cream);
  padding-top: 60px;
  padding-bottom: 28px;
  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: 40px;
}
.footer-brand-name {
  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; color: var(--cream); letter-spacing: 0.05rem; }
.footer-col h4 {
  font-size: 0.9rem;
  letter-spacing: 0.05rem;
  text-transform: uppercase;
  color: #f0ebe3;
  margin-bottom: 16px;
  font-weight: 500;
}
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 5px; }
.footer-col ul li a {
  font-size: 12px;
  color: var(--cream);
  text-decoration: none;
  transition: color .2s;
  letter-spacing: 0.05rem;
}
.footer-col ul li a:hover { color: #f0ebe3; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 28px;
  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.5rem 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: 14rem;
}
.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.5rem 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-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;
            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;
            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-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-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);
    }
    .cart-drawer.open {
      transform: translateX(0);
      box-shadow: -8px 0 48px rgba(26,23,20,.18);
    }
    /* Drawer header */
    .cd-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 22px 28px 18px;
      flex-shrink: 0;
    }
    .cd-title {
      font-family:"Century Gothic",sans-serif;
      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-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-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-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(--warm-white);
    color: var(--deep-brown);
    border: 1px solid var(--deep-brown);
}
    /* 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-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;
            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-size: 15px;
      color: var(--deep-brown);
    }
    .cd-item-price {
            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-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-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-size: 12px;
      font-weight: 600;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      cursor: pointer;
      transition: background .22s;
      margin-bottom: 10px;
      position: relative;
      overflow: hidden;
      border-radius: 0;
    }
    .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-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);
      width: 1.2rem;
    }
       .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:"Century Gothic",sans-serif; 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-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-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; 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-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(--warm-white);
        color: var(--deep-brown);
        border: 1px solid var(--deep-brown);
    }
    .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-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;
    }
.band-tan{padding: 4rem 0px ;background-color: var(--teal-50)}
.tan-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;}
.tan-tile{position:relative;overflow:hidden;aspect-ratio:4/5;}
.tan-tile img{width:100%;height:100%;object-fit:cover;transition:transform .6s var(--ease);}
.tan-tile:hover img{transform:scale(1.06);}
.tan-tile .tile-overlay{
  position:absolute;inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.3) 100%);
}
.tan-tile .tan-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: end;
  justify-content: center;
  text-align: center;
  color: #fff;
  bottom: 3rem;
}
.tan-tile h3{
  font-family:"Century Gothic",sans-serif;
  font-size: 1.4rem;
  margin-bottom:0; 
  color: var(--black); 
  line-height: normal;
  background: var(--white);
  padding: 25px 30px;
}
.tan-tile h3:hover{
  background: var(--black);
  color: var(--white);
  transition: color 0.3s;
}
@media (max-width:900px){.tan-grid{grid-template-columns:1fr;}}
.band-tan .btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:15px 30px;border-radius:999px;
  font-size:13.5px;letter-spacing:.06em;text-transform:uppercase;font-weight:500;
  transition:transform .35s var(--ease), background-color .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  white-space:nowrap;
}
.band-tan .btn:active{transform:scale(.97);}
.band-tan .btn-primary{background:var(--teal-600);color:#fff;box-shadow:var(--shadow-sm);}
.band-tan .btn-primary:hover{background:var(--teal-700);box-shadow:var(--shadow-md);}
.band-tan .btn-outline-light{border:1.5px solid rgba(255,255,255,.65);color:#fff;}
.band-tan .btn-outline-light:hover{background:rgba(255,255,255,.14);border-color:#fff;}
.band-tan .btn-outline-dark{border:1.5px solid var(--charcoal-40);color:var(--charcoal);}
.band-tan .btn-outline-dark:hover{background:var(--charcoal);color:#fff;border-color:var(--charcoal);}
.band-tan .btn-cream{background:var(--teal-300);color:var(--teal-900);}
.band-tan .btn-cream:hover{background:#fff;}
.band-tan .btn-sm{padding:10px 22px;font-size:12px;}
.difference{background:var(--deep-brown);color:#fff; padding: 4rem 0px;}
.difference .head{text-align:center;margin:0 auto 25px;}
.difference .head .eyebrow{justify-content:center;}
.difference h2{color:#fff;}
.diff-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px;}
@media(max-width:880px){.diff-grid{grid-template-columns:repeat(2,1fr);}}
@media(max-width:520px){.diff-grid{grid-template-columns:1fr;}}
.diff-col{
  text-align: center;
  padding: 15px;
}
.diff-col img{
  margin-bottom: 20px;
  opacity: 0.9;
}
.diff-col h3{
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-transform: uppercase;
}
.diff-col p {
    font-size: 13px;

    font-weight: 400;
    line-height: 22px;
    color: rgba(255, 255, 255, 0.8);
}
.wrap{max-width:var(--wrap);margin:0 auto;padding:0 32px;}
.review-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:26px;}
.review-card{background:#fff;border-radius:var(--r-md);padding:34px 30px;box-shadow:var(--shadow-sm);transition:transform .35s var(--ease), box-shadow .35s var(--ease);}
.review-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-md);}
.stars{display:flex;gap:3px;margin-bottom:16px;color:var(--teal-500);}
.stars svg{width:15px;height:15px;}
.review-card p.quote{font-size:15.5px;color:var(--charcoal-60);line-height:1.65;margin-bottom:22px;font-style:italic;}
.review-who{display:flex;align-items:center;gap:12px;border-top:1px solid rgba(52,48,43,.08);padding-top:18px;}
.review-who .avatar{
  width:38px;height:38px;border-radius:50%;background:var(--teal-50);color:var(--teal-700);
  display:flex;align-items:center;justify-content:center;font-family:'Century Gothic';font-weight:600;font-size:15px;
}
.review-who strong{display:block;font-size:14px;font-weight:600;}
.review-who span{font-size:12.5px;color:var(--charcoal-40);}
.login-page {
  min-height: 100vh;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}
/* ── SEARCH PANEL (slides down from header) ─────── */
.search-overlay {
  position: fixed;
  inset: 0;
  top: var(--nav-height);
  background: rgba(26, 74, 69, 0);
  z-index: 1028;
  pointer-events: none;
  transition: background 0.35s ease;
}
.search-overlay.open {
  background: rgba(26, 74, 69, 0.35);
  pointer-events: all;
}
.site-search-panel {
  position: fixed;
  top: var(--nav-height);
  left: 0;
  right: 0;
  z-index: 1029;
  background: #fff;
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(58, 158, 147, 0.15);
  box-shadow: 0 10px 32px rgba(26, 74, 69, 0.1);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    transform 0.38s cubic-bezier(0.76, 0, 0.24, 1),
    opacity 0.28s ease,
    visibility 0.38s;
}
.site-search-panel.open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.site-search-inner {
  padding: 18px 38px 22px;
  max-width: 100%;
}
.site-search-form {
  margin: 0;
}
.site-search-row {
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 860px;
  margin: 0 auto;
}
.site-search-icon {
  color: var(--deep-brown);
  font-size: 1rem;
  flex-shrink: 0;
  opacity: 0.7;
}
.site-search-row input {
  flex: 1;
  min-width: 0;
  border: none;
  border-bottom: 1px solid rgba(58, 158, 147, 0.25);
  border-radius: 0;
  background: transparent;
  padding: 10px 0;
  font-size: 0.85rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--zblack);
  outline: none;
  transition: border-color 0.3s;
}
.site-search-row input::placeholder {
  color: rgba(61, 57, 53, 0.45);
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.site-search-row input:focus {
  border-bottom-color: var(--terracotta);
}
.site-search-btn {
  flex-shrink: 0;
  padding: 0.55rem 1.4rem !important;
  cursor: pointer;
  border: none;
}
.site-search-close {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: 1px solid rgba(58, 158, 147, 0.25);
  border-radius: 2px;
  color: var(--zblack);
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.25s;
  padding: 0;
}
.site-search-close:hover {
  border-color: var(--deep-brown);
  color: var(--deep-brown);
  background: rgba(58, 158, 147, 0.06);
}
body.search-open {
  overflow: hidden;
}
body.search-open .navbar {
  border-bottom-color: transparent;
  box-shadow: none;
}
.search-no-results {
  text-align: center;
  padding: 64px 24px;
  color: var(--text-light, #8a8278);
}
.search-no-results p {
  font-size: 15px;
  margin-bottom: 20px;
}
.search-no-results strong {
  color: var(--deep-brown, #1a1714);
}
.search-try-again {
  padding: 12px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--deep-brown, #1a1714);
  color: var(--warm-white, #faf8f5);
  border: 1px solid var(--deep-brown, #1a1714);
  cursor: pointer;
  transition: all 0.2s;
}
.search-try-again:hover {
  background: var(--accent, #8b7355);
  border-color: var(--accent, #8b7355);
}
@media (max-width: 768px) {
  .site-search-inner {
    padding: 14px 16px 18px;
  }
  .site-search-row {
    gap: 10px;
  }
  .site-search-icon {
    display: none;
  }
  .site-search-row input {
    font-size: 16px;
    padding: 8px 0;
  }
  .site-search-btn {
    padding: 0.5rem 0.9rem !important;
    font-size: 0.62rem !important;
  }
  .site-search-close {
    width: 32px;
    height: 32px;
  }
}
/* newsletter popup css */
.subscribe-modal{
position:fixed;
inset:0;
display:flex;
justify-content:center;
align-items:center;
background:rgba(0,0,0,.45);
opacity:0;
visibility:hidden;
transition:.35s;
z-index:999999;
backdrop-filter:blur(4px);
}
.subscribe-modal.show{
opacity:1;
visibility:visible;
}
.subscribe-popup{
width:430px;
max-width:95%;
background:#fff;
border-radius:22px;
padding:45px;
text-align:center;
position:relative;
transform:scale(.7);
transition:.35s;
box-shadow:0 30px 70px rgba(0,0,0,.2);
}
.subscribe-modal.show .subscribe-popup{
transform:scale(1);
}
.popup-close{
position:absolute;
right:18px;
top:15px;
border:none;
background:#f3f3f3;
width:38px;
height:38px;
border-radius:50%;
cursor:pointer;
font-size:26px;
}
.popup-icon{
position:relative;
width:140px;
height:140px;
margin:auto;
}
.circle-ring{
position:absolute;
width:130px;
height:130px;
border:4px solid #7ed6c8;
border-radius:50%;
top:5px;
left:5px;
opacity:0;
}
.mail-box{
position:absolute;
left:22px;
top:22px;
opacity:0;
}
.mail-path{
stroke-dasharray:300;
stroke-dashoffset:300;
}
.tick-bg{
fill:#0E5B58;
opacity:0;
}
.tick{
fill:none;
stroke:#fff;
stroke-width:3;
stroke-linecap:round;
stroke-linejoin:round;
stroke-dasharray:20;
stroke-dashoffset:20;
}
/* Animations only run while .animate is present on .popup-icon.
   JS adds/removes this class every time the modal opens,
   which is what makes the animation replay instead of running once. */
.popup-icon.animate .circle-ring{
opacity:1;
animation: ringFade .3s ease forwards, ringRotate 2s linear infinite;
}
.popup-icon.animate .mail-box{
opacity:1;
animation: bounce .8s forwards;
}
.popup-icon.animate .mail-path{
animation: drawMail .9s forwards;
}
.popup-icon.animate .tick-bg{
animation: tickBg .3s .9s forwards;
}
.popup-icon.animate .tick{
animation: drawTick .3s 1.1s forwards;
}
@keyframes ringFade{
to{ opacity:1; }
}
.popup-btn{
margin-top:30px;
background:#0E5B58;
border:none;
padding:14px 45px;
border-radius:6px;
color:#fff;
letter-spacing:2px;
transition:.3s;
}
.popup-btn:hover{
background:#12706b;
}
@keyframes drawMail{
to{
stroke-dashoffset:0;
}
}
@keyframes tickBg{
to{
opacity:1;
}
}
@keyframes drawTick{
to{
stroke-dashoffset:0;
}
}
@keyframes bounce{
0%{
transform:scale(.3);
}
70%{
transform:scale(1.15);
}
100%{
transform:scale(1);
}
}
@keyframes ringRotate{
100%{
transform:rotate(360deg);
}
}
.popup-close{
  position:absolute;
  right:18px;
  top:15px;
  border:none;
  background:#f3f3f3;
  width:38px;
  height:38px;
  border-radius:50%;
  cursor:pointer;
  font-size:26px;
  transition: background .2s, transform .2s;
}
.popup-close:hover{
  background:#e8e8e8;
  transform: rotate(90deg);
}
/* error*/
#subscription_error{
    color:#dc3545;
    font-size:13px;
    margin-top:8px;
}
#subscription_email.is-invalid{
    border:1px solid #dc3545 !important;
    box-shadow:0 0 0 3px rgba(220,53,69,.12);
}
/* shop comfort */
.shop-comfort{
  background: var(--cream-sm);
  padding-top: 3rem;
}
.shop-comfort .section-heading{
  color: var(--deep-brown);
}
.shop-comfort .tan-tile h3{
  background: var(--deep-brown);
  color: var(--white);
  font-size: 1rem;
  padding: 18px 22px;
}
.shop-comfort .tan-tile h3:hover{
  background: var(--white);
  color: var(--deep-brown);
}
.shop-comfort .shop-disc{
  max-width: 720px;
  margin: 0 auto;
}
.shop-comfort .shop-disc p{
  margin-bottom: 10px;
  font-size: 0.9rem;
  line-height: 24px;
  color: var(--text);
  font-weight: 400;
}
.section-about{
  background: var(--cream-sm);
  padding-bottom: 1rem;
}
.section-about .section-heading{
  color: var(--deep-brown);
}
.section-about .about-btn{
  max-width: max-content;
}
/* purpose-section */
.purpose-section{
  background: var(--cream-sm);
  padding-bottom: 2rem;
}
.purpose-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 1rem;
}
.purpose-heading .line {
  height: 2px;
  background: var(--deep-brown);
  flex: 1;
}
.purpose-heading h2 {
  margin: 0;
  color: var(--deep-brown);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: .2px;
  white-space: nowrap;
}
.purpose-card {
  position: relative;
  height: 100%;
  border: 0;
  border-radius: 0;
  overflow: visible;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.purpose-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  display: block;
  overflow: hidden;
}
.purpose-icon {
  position: absolute;
  top: 175px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: var(--deep-brown);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 19px;
  z-index: 2;
}
.purpose-icon i {
  line-height: 0;
  padding-top: 4px;
}
.purpose-icon img {
  width: 128px;
  height: 128px;
  object-fit: contain;
  display: block;
  padding: 5px;
}
.purpose-content {
  min-height: 192px;
  padding: 30px 15px 15px;
  background: var(--teal-light);
  text-align: center;
}
.purpose-title {
  margin: 0 auto 12px;
  max-width: 180px;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 400;
  color: #171717;
}
.purpose-text {
  margin: 0 auto;
  max-width: 200px;
  font-size: 11px;
  line-height: 1.25;
  font-weight: 400;
  color: #292929;
}




/* ==============================
    RESPONSIVE
============================== */
@media (max-width: 991.98px) {
  .purpose-image {
      height: 190px;
  }
  .purpose-icon {
      top: 172px;
  }
  .purpose-content {
      min-height: 180px;
  }
}
@media (max-width: 767.98px) {
  .purpose-heading h2 {
      font-size: 13px;
  }
  .purpose-heading .line {
      min-width: 30px;
  }
  .purpose-card {
      margin-bottom: 25px;
  }
  .purpose-image {
      height: 220px;
  }
  .purpose-icon {
      top: 202px;
  }
  .purpose-content {
      min-height: 162px;
      padding: 25px 20px 22px;
  }
  .purpose-title {
      font-size: 16px;
      max-width: 260px;
  }
  .purpose-text {
      font-size: 11px;
      max-width: 280px;
  }
  .hero-ctas{
    bottom: 10px;
  }
}

/* Quick View Modal */
.qv-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 23, 20, 0.55);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.qv-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 99999 !important;
}
.qv-modal {
  /*background: var(--warm-white, #faf8f5);*/
  background: #FFFFFF;
  width: 100%;
  max-width: 920px;
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 4px;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
  box-shadow: 0 24px 64px rgba(26, 23, 20, 0.18);
}
.qv-overlay.open .qv-modal {
  transform: translateY(0);
}
.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 1px solid var(--bordergrey, #e8e4df);
  background: var(--warm-white, #faf8f5);
  border-radius: 50%;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  color: var(--deep-brown, #1a1714);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}
.qv-close:hover {
  background: var(--deep-brown, #1a1714);
  color: var(--warm-white, #faf8f5);
}
.qv-body {
  padding: 32px;
}
.qv-loading,
.qv-error {
  text-align: center;
  padding: 48px 24px;
  font-size: 13px;
  color: var(--text-light, #7a7168);
  letter-spacing: 0.04em;
}
.qv-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.qv-image-col {
  background: var(--cream, #f5f0ea);
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.qv-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.qv-category {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent, #8b7355);
  margin-bottom: 8px;
}
.qv-title {
  font-family: var(--font-serif, Georgia, serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--deep-brown, #1a1714);
  margin: 0 0 6px;
  line-height: 1.3;
}
.qv-subtitle {
  font-size: 12px;
  color: var(--text-light, #7a7168);
  margin-bottom: 12px;
}
.qv-price-block {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.qv-price-current {
  font-size: 18px;
  font-weight: 500;
  color: var(--deep-brown, #1a1714);
}
.qv-price-old {
  font-size: 14px;
  color: var(--text-light, #7a7168);
  text-decoration: line-through;
}
.qv-desc {
  font-size: 12px;
  color: var(--text-light, #7a7168);
  line-height: 1.7;
  margin-bottom: 16px;
}
.qv-option-group {
  margin-bottom: 14px;
}
.qv-option-label {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-brown, #1a1714);
  margin-bottom: 8px;
}
.qv-color-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.qv-color-opt {
  cursor: pointer;
  padding: 2px;
  border: 2px solid transparent;
  border-radius: 50%;
  transition: border-color 0.2s;
}
.qv-color-opt.active,
.qv-color-opt:hover {
  border-color: var(--deep-brown, #1a1714);
}
.qv-color-swatch {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.08);
}
.qv-size-options {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.qv-size-btn {
  min-width: 44px;
  padding: 8px 12px;
  border: 1px solid var(--bordergrey, #e8e4df);
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 2px;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.qv-size-btn.active,
.qv-size-btn:hover {
  border-color: var(--deep-brown, #1a1714);
  background: var(--deep-brown, #1a1714);
  color: var(--warm-white, #faf8f5);
}
.qv-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.qv-atc-btn {
  width: 100%;
  padding: 14px;
  background: var(--deep-brown, #1a1714);
  color: var(--warm-white, #faf8f5);
  border: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s;
}
.qv-atc-btn:hover:not(.disabled) {
  opacity: 0.85;
}
.qv-atc-btn.disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.qv-full-link {
  display: block;
  text-align: center;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent, #8b7355);
  text-decoration: none;
  margin-top: 14px;
}
.qv-full-link:hover {
  color: var(--deep-brown, #1a1714);
}
.qv-info-col .divider {
  height: 1px;
  background: var(--bordergrey, #e8e4df);
  margin: 16px 0;
}
.qv-info-col .product-subtitle {
  font-size: 12px;
  color: var(--text-light, #7a7168);
  line-height: 1.7;
  margin-bottom: 16px;
}
.qv-info-col .option-group {
  margin-bottom: 18px;
}
.qv-info-col .qty-atc {
  margin-top: 8px;
}
.qv-info-col .atc-btn.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.qv-fabric {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--bordergrey, #e8e4df);
}
.qv-fabric-title {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--deep-brown, #1a1714);
  margin-bottom: 10px;
}
.qv-fabric-table {
  width: 100%;
  font-size: 12px;
}
.qv-fabric-table td {
  padding: 5px 0;
  border-bottom: 1px solid var(--bordergrey, #e8e4df);
  vertical-align: top;
}
.qv-fabric-table td:first-child {
  color: var(--text-light, #7a7168);
  width: 40%;
  padding-right: 12px;
}
@media (max-width: 768px) {
  .qv-body { padding: 20px; }
  .qv-layout { grid-template-columns: 1fr; gap: 20px; }
  .qv-image-col { aspect-ratio: 4/3; }
  .qv-title { font-size: 18px; }
}

#duvetMobileNav .accordion-button::after {
    width: 1rem;
    background-size: 1rem;
}
    .product-wishlist-btn {
      position: absolute;
      top: 20px; right: 20px;
      width: 42px; height: 42px;
      background: var(--warm-white);
      border: none;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: background .2s;
      box-shadow: 0 2px 16px rgba(0,0,0,.08);
      z-index: 1;
    }

    .product-wishlist-btn:hover { background: var(--deep-brown); }
    .product-wishlist-btn:hover svg { stroke: white; }
    .product-wishlist-btn svg { width: 18px; height: 18px; stroke: var(--deep-brown); fill: none; stroke-width: 1.5; transition: stroke .2s; }
    .product-wishlist-btn.active svg { stroke: white !important; }
    
    .product-wishlist-btn.active, .btn-product-icon.btn-wishlist.active { background: var(--deep-brown); }
    .product-wishlist-btn.active:hover svg, .btn-product-icon.btn-wishlist.active:hover svg { stroke: white !important; }


.cookie-consent {
      position: fixed;
      right: 10px;
      bottom: 10px;
      left: 10px;
      z-index: 9999;
      max-width: 340px;
      margin-left: auto;
      padding: 0;
      border-radius: 9px;
      background: #fff;
      box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
      border: 1px solid rgba(15, 23, 42, 0.08);
      opacity: 0;
      visibility: hidden;
      transform: translateY(12px);
      transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    }

    .cookie-consent.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

    .cookie-consent__content {
      display: flex;
      /* align-items: center;
      justify-content: space-between; */
      gap: 16px;
      padding: 18px 20px;
      flex-direction: column;
    }

    .cookie-consent__text {
      flex: 1;
      color: #1f2937;
    }

    .cookie-consent__text strong {
      display: block;
      margin-bottom: 6px;
      font-size: .95rem;
      font-weight: 700;
    }

    .cookie-consent__text p {
      margin: 0;
      font-size: 0.8rem;
      line-height: 1.5;
      color: #4b5563;
    }

    .cookie-consent__button {
        border: none;
        border-radius: 4px;
        background: #014448;
        color: #fff;
        font-weight: 600;
        padding: 4px 15px;
        cursor: pointer;
        transition: background 0.2s ease;
        white-space: nowrap;
        font-size: 0.7rem;
        font-weight: normal;
        text-transform: uppercase;
    }

    .cookie-consent__button:hover {
      background: #1f2937;
    }
    .cookie-consent__actions{
      flex-direction: row;
      display: flex;
      gap: 5px;
      justify-content: space-between;
    }
    .cookie-consent__link{
      font-size: 0.7rem;
      color: #1f2937;
      text-decoration: underline;
    }

    @media (max-width: 576px) {
      .cookie-consent {
        right: 12px;
        left: 12px;
        max-width: none;
      }

      .cookie-consent__content {
        flex-direction: column;
        align-items: flex-start;
      }

      .cookie-consent__button {
        width: 100%;
      }
      
    }