/* Knot7 shared stylesheet with Slick slider integration */
/* Removed old hero slider styles (.hero-viewport, .hero-track, .hero-slide, .hero-arrow, .hero-dots, @keyframes pulse) */
/* Added Slick overrides for arrows, dots, and layout */
.text-center {
  text-align: center;
}
.accent-ink {
  --accent: var(--ink);
}

.accent-wine {
  --accent: var(--wine);
}

.accent-gold {
  --accent: var(--gold);
}

.accent-magenta {
  --accent: var(--magenta);
}

.accent-teal {
  --accent: var(--teal);
}

.accent-amber {
  --accent: var(--amber);
}

.accent-mint {
  --accent: var(--mint);
}

.color-amber {
  --c: var(--amber);
}

.color-teal {
  --c: var(--teal);
}

.color-magenta {
  --c: var(--magenta);
}

.color-mint {
  --c: var(--mint);
}

.wrap.wrap-block {
  display: block;
}

.wrap.wrap-flush {
  padding: 0;
}

.eyebrow-soft {
  color: var(--gold-soft);
}

.eyebrow-centered-soft {
  display: block;
  text-align: center;
  color: var(--gold-soft);
}

.no-results {
  display: none;
  text-align: center;
  color: var(--muted);
  padding: 50px 0;
}

.fill-84 {
  width: 84%;
}

.fill-11 {
  width: 11%;
}

.fill-3 {
  width: 3%;
}

.fill-1 {
  width: 1%;
}

/* homepage template */

:root {
  --ink: #1b1310;
  --ink-2: #2a1f1a;
  --plum: #2a1620;
  --paper: #f5eddf;
  --paper-2: #efe4d0;
  --cream: #fbf6ec;
  --gold: #b0834a;
  --gold-soft: #cdab73;
  --wine: #6e2436;
  --line: #e3d4ba;
  --muted: #6f6253;
  --amber: #b9702a;
  --teal: #2f7d86;
  --magenta: #a63b6a;
  --mint: #4f9a8c;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Jost', system-ui, sans-serif;
  --wrap: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,h2,h3,h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -.01em;
}

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3em;
  color: var(--gold);
}

.section {
  padding: 96px 0;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-block;
  text-align: center;
  gap: .6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .35s ease;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: #fff;
}

.btn-gold:hover {
  background: var(--ink);
  color: #fff;
}

.btn-outline {
  background: transparent;
  border-color: currentColor;
  color: inherit;
}

.btn-outline:hover {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: #fff;
}

.btn-ghost-light:hover {
  background: #fff;
  color: var(--ink);
}

.link-arrow {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  gap: .5em;
  align-items: center;
}

.link-arrow span {
  transition: .3s;
}

.link-arrow:hover span {
  transform: translateX(5px);
}

.link-arrow i {
  font-size: 1rem;
  line-height: 1;
  transition: .3s;
}

.link-arrow:hover i {
  transform: translateX(5px);
}

/* ---------- announcement ---------- */

.announce {
  background: var(--ink);
  color: var(--paper);
  font-size: .74rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  overflow: hidden;
}

.announce-track {
  display: flex;
  gap: 64px;
  justify-content: center;
  flex-wrap: wrap;
}

.announce b {
  color: var(--gold-soft);
  font-weight: 600;
}

/* ---------- header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(245,237,223,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 24px;
}

.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 600;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: 2px;
}

.brand sup {
  font-size: .6rem;
  color: var(--gold);
}

.menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu li {
  list-style: none;
}

.menu .menu-item-has-children {
  position: relative;
}

.menu a {
  font-family: var(--sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 8px 0;
  transition: .25s;
}

.menu a:hover {
  color: var(--gold);
}

.sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--cream);
  border: 1px solid var(--line);
  min-width: 230px;
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  box-shadow: 0 24px 50px rgba(40,24,16,.14);
}

.menu > .menu-item-has-children:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.sub-menu a {
  display: block;
  padding: 11px 14px;
  font-size: .74rem;
  border-radius: 2px;
}

.sub-menu a:hover {
  background: var(--paper-2);
  color: var(--gold);
}


.menu .sub-menu > .menu-item-has-children > a {
	position: relative;
}
.menu .sub-menu > .menu-item-has-children > a i {
	position: absolute;
	right: 0;
  transition: all .3s;
}
.sub-menu .menu-item-has-children .sub-menu {
  top: 0;
  left: calc(100% + 10px);
  backdrop-filter: blur(18px);
  transform: translateX(20px);
  transition: .35s;
}
.sub-menu .menu-item-has-children:hover .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}
.sub-menu .menu-item-has-children:hover > a i {
	right: 4px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.icon-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-right .icon-btn .count {
   background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .66rem;
  font-weight: 600;
}

.cart-pill {
  border: 1px solid var(--ink);
  border-radius: 6px;
  padding: 8px 16px;
}

.cart-pill .count {
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .66rem;
  font-weight: 600;
}

.burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}

.burger span {
  width: 24px;
  height: 2px;
  background: var(--ink);
  display: block;
  transition: .3s;
}


/*==========================================
  WELCOME OFFER POPUP
==========================================*/

.offer-popup-overlay{
    position:fixed;
    inset:0;
    background:rgba(20,13,11,.72);
    backdrop-filter:blur(10px);
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px;
    z-index:9999;

    opacity:0;
    visibility:hidden;

    transition:.35s ease;
}

.offer-popup-overlay.active{

    opacity:1;
    visibility:visible;

}

.offer-popup{

    position:relative;

    width:1100px;
    max-width:100%;

    background:#fff;

    border-radius:28px;

    overflow:hidden;

    box-shadow:
    0 40px 100px rgba(0,0,0,.35);

    transform:translateY(20px) scale(.96);

    transition:.35s ease;

}

.offer-popup-overlay.active .offer-popup{

    transform:none;

}

.offer-popup-close{

    position:absolute;

    top:18px;
    right:18px;

    width:42px;
    height:42px;

    border:none;

    border-radius:50%;

    background:#fff;

    color:var(--ink);

    font-size:24px;

    cursor:pointer;

    z-index:20;

    box-shadow:0 10px 30px rgba(0,0,0,.15);

    transition:.3s;

}

.offer-popup-close:hover{

    background:var(--gold);

    color:#fff;

    transform:rotate(90deg);

}

/*====================================*/

.offer-popup-wrapper{

    display:grid;

    grid-template-columns:46% 54%;

    min-height:620px;

}

/*====================================*/

.offer-popup-left{

    position:relative;

    overflow:hidden;

    background:#111;

}

.offer-popup-left img{

    width:100%;
    height:100%;

    object-fit:cover;

}

.offer-popup-right{

    padding:70px 60px;

    display:flex;

    align-items:center;

}

/*====================================*/

.offer-step{

    width:100%;

    display:none;

}

.offer-step.active{

    display:block;

}

/*====================================*/

.offer-tag{

    display:inline-block;

    padding:6px 12px;

    border-radius:30px;

    background:#faf4ea;

    color:var(--gold);

    font-size:12px;

    font-weight:600;

    letter-spacing:.12em;

    text-transform:uppercase;

}

.offer-step h2 {
	margin: 15px 0 8px;
	font-size: 32px;
	line-height: 1.08;
}

.offer-step h2 span{

    color:var(--gold);

}

.offer-step p {
	color: var(--muted);
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 25px;
}

/*====================================*/

.offer-field{

    margin-bottom:15px;

}

.offer-field label{

    display:block;

    font-size:14px;

    font-weight:600;

    margin-bottom:8px;

    color:var(--ink);

}

.offer-field small{

    color:var(--muted);

    font-weight:400;

}

.offer-field input {
	width: 100%;
	height: 40px;
	padding: 0 15px;
	border: 1px solid var(--line);
	border-radius: 8px;
	font-size: 15px;
	transition: .3s;
	background: #fff;
}

.offer-field input:focus{

    outline:none;

    border-color:var(--gold);

    box-shadow:0 0 0 4px rgba(176,131,74,.12);

}

.offer-field-error{

    display:none;

    margin-top:6px;

    font-size:13px;

    color:#d0342c;

}

.offer-field.has-error input{

    border-color:#d0342c;

}

.offer-field.has-error .offer-field-error{

    display:block;

}

.offer-form-error{

    display:none;

    margin-bottom:12px;

    padding:10px 12px;

    border-radius:8px;

    background:rgba(208,52,44,.08);

    color:#d0342c;

    font-size:13px;

}

.offer-form-error.active{

    display:block;

}

.offer-btn{

    width:100%;

    margin-top:12px;

    height:60px;

    border-radius:12px;

    font-size:15px;

}

/*====================================*/

.coupon-box{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:15px;

    padding:18px;

    border:2px dashed var(--gold);

    border-radius:14px;

    background:#fbf6ec;

    margin:35px 0 18px;

}

.coupon-code{

    font-size:34px;

    font-weight:700;

    letter-spacing:.18em;

    color:var(--gold);

}

.copy-btn{

    border:none;

    background:var(--gold);

    color:#fff;

    height:50px;

    padding:0 24px;

    border-radius:10px;

    cursor:pointer;

    display:flex;

    align-items:center;

    gap:10px;

    font-size:14px;

    transition:.3s;

}

.copy-btn:hover{

    background:var(--ink);

}

.coupon-note{

    font-size:14px;

    color:#4d8a4f;

    margin-bottom:35px;

}

/*====================================*/

#offerSuccessStep .btn{

    width:100%;

}

/*====================================*/

@media(max-width:991px){

.offer-popup{

    width:92%;

}

.offer-popup-wrapper{

    grid-template-columns:1fr;

}

.offer-popup-left{

    height:280px;

}

.offer-popup-right{

    padding:40px 30px;

}

.offer-step h2{

    font-size:38px;

}

}

@media(max-width:576px){

.offer-popup-overlay{

    padding:15px;

}

.offer-popup{

    border-radius:20px;

}

.offer-popup-left{

    height:220px;

}

.offer-popup-right{

    padding:28px 22px;

}

.offer-step h2{

    font-size:30px;

}

.offer-step p{

    font-size:15px;

}

.offer-field input{

    height:54px;

}

.offer-btn{

    height:56px;

}

.coupon-box{

    flex-direction:column;

    align-items:flex-start;

}

.copy-btn{

    width:100%;

    justify-content:center;

}

.coupon-code{

    font-size:28px;

}

}

/* ---------- hero ---------- */

.hero {
  position: relative;
  background: radial-gradient(120% 120% at 70% 10%,#3a212c 0%,var(--ink) 55%);
  color: var(--paper);
  overflow: hidden;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---------- hero slide (individual) ---------- */
.hero-slide {
  /* each slide is a flex container */
  outline: none; /* remove Slick focus outline */
  position: relative;
}

.slick-slide .banner-img {
	width: 100%;
	object-fit: cover;
}

.hero-inner {
  position: absolute;
  z-index: 2;
  /* display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
  align-items: center; */
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-eyebrow {
  color: var(--gold-soft);
}

.hero-slide h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.5rem,5.4vw,4.7rem);
  margin: 20px 0 0;
  color: #fff;
  line-height: 1.05;
  letter-spacing: -.01em;
}

.hero-slide h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

.hero-sub {
  max-width: 30em;
  margin: 22px 0 0;
  color: rgba(245,237,223,.82);
  font-size: 1.05rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-mini {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(205,171,115,.28);
  font-size: .71rem;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: rgba(245,237,223,.7);
}

.hero-mini b {
  color: var(--gold-soft);
  font-weight: 600;
}

/* diffusion + visual */

.hero-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 380px;
}

.diffuse {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  pointer-events: none;
}

.diffuse span {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(205,171,115,.4);
  border-radius: 50%;
  animation: pulse 5s ease-out infinite;
}

.diffuse span:nth-child(2) {
  animation-delay: 1.6s;
}

.diffuse span:nth-child(3) {
  animation-delay: 3.2s;
}

@keyframes pulse {
  0% {
    transform: scale(.45);
    opacity: .9;
  }

  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

.hero-visual {
  position: relative;
  z-index: 2;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 32%,rgba(66,37,47,.92),rgba(20,14,16,.96));
  border: 1px solid rgba(205,171,115,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
  overflow: hidden;
}

.hero-visual img {
  width: 80%;
  height: 80%;
  object-fit: contain;
  filter: drop-shadow(0 18px 28px rgba(0,0,0,.55));
}

/* ---- Slick overrides for hero arrows & dots ---- */
.hero-slider-wrap {
  position: relative;
}

/* Hide default Slick arrows and use our custom ones */
.hero .slick-prev,
.hero .slick-next {
  display: none !important;
}

/* Custom arrow buttons (positioned absolutely) */
.hero .hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(205,171,115,.45);
  background: rgba(20,12,14,.5);
  color: var(--gold-soft);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  transition: .3s;
}

.hero .hero-arrow:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.hero .hero-arrow.prev {
  left: 22px;
}

.hero .hero-arrow.next {
  right: 22px;
}

/* Dots container */
.hero .hero-dots {
  position: absolute;
  bottom: 24px;
  left: 0;
  right: 0;
  z-index: 6;
  display: flex !important;
  gap: 11px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hero .hero-dots li {
  margin: 0;
}

.hero .hero-dots button {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: rgba(245,237,223,.28);
  cursor: pointer;
  padding: 0;
  transition: .3s;
  font-size: 0;
}

.hero .hero-dots .slick-active button {
  background: var(--gold-soft);
  width: 50px;
}

/* Override slick-dots default styles */
.hero .slick-dots {
  position: static !important;
  bottom: auto !important;
}

/* trial box inside hero */
.hero-art .trial-box {
  width: 268px;
  height: 286px;
  transform: rotateY(-12deg) rotateX(3deg);
  position: relative;
  z-index: 2;
  background: linear-gradient(150deg,#234b3c,#15311f);
  border: 1px solid var(--gold-soft);
  border-radius: 6px;
  box-shadow: 0 38px 70px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  overflow: hidden;
}

/* ---------- trust strip ---------- */

.trust {
  background: var(--ink);
  color: var(--paper);
  border-top: 1px solid rgba(205,171,115,.2);
}

/* .trust .wrap {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  padding-top: 22px;
  padding-bottom: 22px;
} */

.trust .wrap {
	display: flex;
	padding-top: 22px;
	padding-bottom: 22px;
	justify-content: center;
	justify-content: space-around;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(245,237,223,.85);
}

.trust-item .ic {
  font-size: 1.1rem;
  color: var(--gold-soft);
  line-height: 1;
}

/* ---------- section heading ---------- */

.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.sec-head h2 {
  font-size: clamp(2rem,4vw,3.1rem);
  margin: 14px 0 0;
}

.sec-head p {
  color: var(--muted);
  margin: 16px 0 0;
}

/* ---------- collection ---------- */

.grid4 {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 26px;
}

.card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: .4s;
  position: relative;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(40,24,16,.16);
}

.card-media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--paper-2);
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s;
}

.card:hover .card-media img {
  transform: scale(1.06);
}

.tag {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: .62rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: rgba(255,255,255,.92);
  padding: 6px 11px;
  border-radius: 30px;
  font-weight: 600;
  color: var(--ink);
}

.tag::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 7px;
  background: var(--accent,var(--gold));
  vertical-align: middle;
}

.card-body {
  padding: 22px 22px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.family {
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.card h3 {
  font-size: 1.32rem;
  margin: 9px 0 0;
}

.notes {
  display: flex;
  gap: 6px;
  margin: 16px 0;
  flex-wrap: wrap;
}

.note {
  font-size: .64rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 5px 10px;
  background: var(--paper);
}

.note b {
  color: var(--ink);
  font-weight: 600;
}

.card-desc {
  font-size: .86rem;
  color: var(--muted);
  margin: 0 0 18px;
  flex: 1;
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.price {
  font-family: var(--serif);
  font-size: 1.35rem;
  color: var(--ink);
}

.mrp {
  font-size: .85rem;
  color: var(--muted);
  text-decoration: line-through;
}

.save {
  font-size: .66rem;
  font-weight: 600;
  color: var(--wine);
  letter-spacing: .06em;
  text-transform: uppercase;
}

.card .btn {
  width: 100%;
  justify-content: center;
}

.collection-cta {
  text-align: center;
  margin-top: 48px;
}

/* ---------- find your scent ---------- */

.scent {
  background: var(--paper-2);
}

.mood-tabs {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 42px;
}

.mood {
  font-family: var(--sans);
  font-size: .8rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 14px 24px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 40px;
  cursor: pointer;
  transition: .3s;
  color: var(--ink);
}

.mood:hover {
  border-color: var(--gold);
}

.mood.active {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

.scent-result {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 0;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  max-width: 920px;
  margin: 0 auto;
}

.scent-result img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1/1;
}

.scent-info {
  padding: 46px 44px;
}

.scent-info .family {
  margin-bottom: 10px;
  display: block;
}

.scent-info h3 {
  font-size: 2rem;
}

.scent-info p {
  color: var(--muted);
  margin: 16px 0 26px;
}

/* ---------- why ---------- */

.why .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.why-card {
  padding: 34px 26px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  text-align: left;
  flex: 0 0 24%;
}

.why-num {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: .1em;
}

.why-card h3 {
  font-size: 1.18rem;
  margin: 18px 0 10px;
}

.why-card p {
  font-size: .88rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- story band ---------- */

.story {
  background: linear-gradient(110deg,var(--plum),var(--ink));
  color: var(--paper);
}

.story .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-media {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid rgba(205,171,115,.3);
  overflow: hidden;
  border-radius: 300px;
}

.story-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story h2 {
  font-size: clamp(2rem,3.6vw,2.9rem);
  color: #fff;
  margin: 18px 0 0;
}

.story p {
  color: rgba(245,237,223,.8);
  margin: 22px 0 30px;
}

/* ---------- gifting ---------- */

.gift {
  background: var(--wine);
  color: #fff;
  text-align: center;
  padding: 84px 0;
}

.gift h2 {
  font-size: clamp(2rem,3.6vw,2.8rem);
  color: #fff;
  margin: 14px 0 0;
}

.gift p {
  max-width: 34em;
  margin: 18px auto 30px;
  color: rgba(255,255,255,.85);
}

.gift .eyebrow {
  color: var(--gold-soft);
}

/* ---------- testimonials (now a Slick slider) ---------- */

.reviews .wrap-flush {
  position: relative;
}

/* Quote cards - same styling but now inside slick */
.quote {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  margin: 0 10px; /* spacing between slides */
}

.stars {
  color: var(--gold);
  font-size: .85rem;
  display: inline-flex;
  gap: 3px;
  line-height: 1;
}

.quote p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--ink);
  margin: 0 0 20px;
  flex: 1;
  line-height: 1.5;
}

.who {
  font-size: .78rem;
  letter-spacing: .06em;
}

.who b {
  display: block;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .74rem;
}

.who span {
  color: var(--muted);
}

/* ---- Slick overrides for reviews ---- */
.reviews .slick-prev,
.reviews .slick-next {
  display: none !important;
}

.reviews .reviews-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream);
  color: var(--ink);
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.reviews .reviews-arrow:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

.reviews .reviews-arrow.prev {
  left: -20px;
}

.reviews .reviews-arrow.next {
  right: -20px;
}

.reviews .reviews-dots {
  display: flex !important;
  justify-content: center;
  gap: 11px;
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
}

.reviews .reviews-dots li {
  margin: 0;
}

.reviews .reviews-dots button {
  width: 32px;
  height: 4px;
  border-radius: 4px;
  border: none;
  background: var(--line);
  cursor: pointer;
  padding: 0;
  transition: .3s;
  font-size: 0;
}

.reviews .reviews-dots .slick-active button {
  background: var(--gold);
}

/* override slick's default dots */
.reviews .slick-dots {
  position: static !important;
  bottom: auto !important;
}

/* ---------- newsletter ---------- */

.news {
  background: var(--ink);
  color: var(--paper);
  text-align: center;
  padding: 80px 0;
}

.news h2 {
  color: #fff;
  font-size: clamp(1.8rem,3.4vw,2.6rem);
}

.news p {
  color: rgba(245,237,223,.75);
  margin: 14px auto 28px;
  max-width: 32em;
}

.news-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.news-form input {
  flex: 1;
  min-width: 220px;
  padding: 16px 18px;
  border: 1px solid rgba(205,171,115,.5);
  background: transparent;
  color: #fff;
  font-family: var(--sans);
  font-size: .92rem;
  border-radius: 2px;
}

.news-form input::placeholder {
  color: rgba(245,237,223,.55);
}

/* Newsletter form is a Forminator shortcode ([forminator_form id="1877"]) — its own markup
   doesn't carry the .news-form classes above, so restyle Forminator's own selectors here to
   match the same layout/look instead. */
.news .forminator-custom-form {
  display: flex;
  gap: 10px;
  max-width: 480px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
  text-align: left;
}

.news .forminator-custom-form > .forminator-row {
  display: contents;
}

.news .forminator-custom-form .forminator-field {
  display: contents;
}

.news .forminator-custom-form .forminator-field-email {
  flex: 1;
  min-width: 220px;
}

.news .forminator-custom-form .forminator-row-last .forminator-col {
  flex: 0 0 auto;
}

.news .forminator-custom-form input.forminator-input {
  width: 100%;
  padding: 16px 18px;
  border: 1px solid rgba(205,171,115,.5);
  background: transparent;
  color: #fff;
  font-family: var(--sans);
  font-size: .92rem;
  border-radius: 2px;
}

.news .forminator-custom-form input.forminator-input::placeholder {
  color: rgba(245,237,223,.55);
}

.news .forminator-custom-form .forminator-button-submit {
  display: inline-block;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 30px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .35s ease;
  white-space: nowrap;
  background: var(--gold);
  color: #fff;
}

.news .forminator-custom-form .forminator-button-submit:hover {
  background: var(--ink);
  color: #fff;
}

.news .forminator-custom-form .forminator-response-message {
  flex-basis: 100%;
  color: #fff;
}

.news .forminator-custom-form .forminator-response-message.forminator-success {
  color: #8fe0a3;
}

.news .forminator-custom-form .forminator-response-message.forminator-error {
  color: #ff9a9a;
}

/* =====================================================
   FOOTER
===================================================== */

.footer {
    background: #140d0b;
    color: rgba(245, 237, 223, .7);
    padding: 70px 0 28px;
}

.footer .wrap {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    align-items: flex-start;
}

.footer .brand {
    margin-bottom: 16px;
}

.footer .brand img {
    max-width: 120px;
    display: block;
}

.footer h4 {
    margin: 0 0 18px;
    font-family: var(--sans);
    font-size: .76rem;
    font-weight: 600;
    letter-spacing: .20em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer li {
    margin-bottom: 11px;
}

.footer a {
    color: rgba(245, 237, 223, .78);
    font-size: .88rem;
    text-decoration: none;
    transition: .25s ease;
}

.footer a:hover {
    color: #fff;
}

.footer .about {
    max-width: 30em;
    font-size: .90rem;
    line-height: 1.8;
}

.socials {
    display: flex;
    gap: 12px;
    margin-top: 22px;
}

.socials a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(205, 171, 115, .40);
    border-radius: 50%;
    font-size: 1rem;
    transition: .30s;
}

.socials a:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
}

/* =====================================================
   MOBILE FOOTER
===================================================== */

.footer .mobile-footer {
    display: none;
}

.footer-toggle {
    display: none;
}

.footer-submenu {
    display: none;
}

/* =====================================================
   FOOTER BOTTOM
===================================================== */

.foot-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 50px;
    padding-top: 24px;
    border-top: 1px solid rgba(245, 237, 223, .12);
    font-size: .78rem;
}

.foot-bottom a {
    margin-left: 18px;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width:991px) {

    .footer {
        padding: 60px 0 25px;
    }

    .footer>.wrap:first-child {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* Brand section visible */

    .footer>.wrap:first-child>.footer-items:first-child {
        display: block;
        margin-bottom: 30px;
    }

    /* Hide desktop columns */

    .m-none {
        display: none;
    }

    /* Mobile Accordion */

    .footer .mobile-footer {
        display: block;
        margin-top: 10px;
    }

    /* .mobile-footer-item {
        border-bottom: 1px solid rgba(255,255,255,.08);
    } */

    .footer-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 0;
        background: transparent;
        border: 0;
        cursor: pointer;
        color: var(--gold-soft);
        font-size: .78rem;
        font-family: var(--sans);
        letter-spacing: .18em;
        text-transform: uppercase;
    }

    .footer-toggle .mobile-menu-icon {
        position: relative;
        width: 14px;
        height: 14px;
        flex: 0 0 14px;
    }

    .footer-toggle .mobile-menu-icon::before,
    .footer-toggle .mobile-menu-icon::after {
        content: "";
        position: absolute;
        left: 50%;
        top: 50%;
        background: var(--gold-soft);
        transform: translate(-50%, -50%);
        transition: .3s;
    }

    .footer-toggle .mobile-menu-icon::before {
        width: 14px;
        height: 1px;
    }

    .footer-toggle .mobile-menu-icon::after {
        width: 1px;
        height: 14px;
    }

    .footer-toggle[aria-expanded="true"] .mobile-menu-icon::after {
        opacity: 0;
    }

    .footer-submenu {
        display: grid;
        grid-template-rows: 0fr;
        transition: grid-template-rows .35s ease;
    }

    .footer-submenu.open {
        grid-template-rows: 1fr;
    }

    .footer-submenu-inner {
        overflow: hidden;
    }

    .footer-submenu ul {
        padding: 8px 0 20px;
    }

    .footer-submenu li {
        margin-bottom: 12px;
    }

    .footer-submenu a {
        display: block;
        font-size: .88rem;
    }

    .foot-bottom {
        margin-top: 35px;
        text-align: center;
        justify-content: center;
    }

    .foot-bottom span:last-child {
        width: 100%;
    }

    .foot-bottom a {
      margin: 0 10px;
    }
}

/* ---------- mobile drawer ---------- */

.drawer {
  position: fixed;
  inset: 0;
  background: rgba(20,12,10,.6);
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
}

.drawer.open {
  opacity: 1;
  visibility: visible;
}

.drawer-panel {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: min(82%,340px);
  background: var(--cream);
  transform: translateX(100%);
  transition: .35s;
  padding: 30px 26px;
  overflow-y: auto;
}

.drawer.open .drawer-panel {
  transform: none;
}

.drawer-panel a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--sans);
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
  float: right;
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: .7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ---------- mobile menu accordion ---------- */

.mobile-menu-accordion {
  border-bottom: 1px solid var(--line);
}

.mobile-menu-toggle {
  width: 100%;
  padding: 14px 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-family: var(--sans);
  font-size: .9rem;
  font-weight: 400;
  letter-spacing: .1em;
  text-transform: uppercase;
  text-align: left;
  cursor: pointer;
}

.mobile-menu-icon {
  position: relative;
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
}

.mobile-menu-icon::before,
.mobile-menu-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: var(--ink);
  transform: translate(-50%, -50%);
  transition: transform .3s ease, opacity .3s ease;
}

.mobile-menu-icon::before {
  width: 14px;
  height: 1px;
}

.mobile-menu-icon::after {
  width: 1px;
  height: 14px;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

.mobile-submenu {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s ease;
}

.mobile-submenu.open {
  grid-template-rows: 1fr;
}

.mobile-submenu-inner {
  min-height: 0;
  overflow: hidden;
}

.drawer-panel .mobile-submenu a {
  position: relative;
  padding: 11px 0 11px 18px;
  border-bottom: 0;
  color: var(--muted);
  font-size: .78rem;
  letter-spacing: .08em;
}

.drawer-panel .mobile-submenu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 6px;
  height: 1px;
  background: var(--gold);
  transform: translateY(-50%);
}

.drawer-panel .mobile-submenu a:last-child {
  padding-bottom: 16px;
}

.drawer-panel .mobile-submenu a:hover {
  color: var(--gold);
}

/*==========================================
  MOBILE NESTED SUBMENU (LEVEL 2)
==========================================*/

.mobile-menu-accordion.level2 {
    border-bottom: 0;
    margin-left: 18px;
}

.mobile-menu-toggle.level2 {
    padding: 11px 0;
    font-size: .78rem;
    letter-spacing: .08em;
    color: var(--muted);
}

.mobile-menu-toggle.level2:hover {
    color: var(--gold);
}

.mobile-menu-submenu.level2,
.mobile-submenu.level2 {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .35s ease;
}

.mobile-menu-submenu.level2.open,
.mobile-submenu.level2.open {
    grid-template-rows: 1fr;
}

.mobile-submenu.level2 .mobile-submenu-inner {
    overflow: hidden;
    min-height: 0;
    padding-bottom: 8px;
}

/*-----------------------------------
  LEVEL 2 LINKS
------------------------------------*/

.drawer-panel .mobile-submenu.level2 a {

    position: relative;

    padding: 10px 0 10px 22px;

    font-size: .74rem;

    color: var(--muted);

    border-bottom: 0;

    letter-spacing: .06em;

}

.drawer-panel .mobile-submenu.level2 a:hover {

    color: var(--gold);

}

.drawer-panel .mobile-submenu.level2 a::before {

    content: "";

    position: absolute;

    left: 0;

    top: 50%;

    width: 8px;

    height: 1px;

    background: var(--gold);

    transform: translateY(-50%);

}

/*-----------------------------------
  LEVEL 2 ICON
------------------------------------*/

.mobile-menu-toggle.level2 .mobile-menu-icon {

    width: 12px;

    height: 12px;

    flex: 0 0 12px;

}

.mobile-menu-toggle.level2 .mobile-menu-icon::before {

    width: 12px;

}

.mobile-menu-toggle.level2 .mobile-menu-icon::after {

    height: 12px;

}

.mobile-menu-toggle.level2[aria-expanded="true"] .mobile-menu-icon::after {

    opacity: 0;

    transform: translate(-50%, -50%) rotate(90deg);

}

/*-----------------------------------
  OPEN BACKGROUND
------------------------------------*/

.mobile-menu-accordion.level2 > .mobile-submenu.open {

    padding-top: 4px;

}

.mobile-menu-accordion.level2 > .mobile-submenu.open > .mobile-submenu-inner {

    border-left: 1px solid rgba(176,131,74,.25);

    padding-left: 14px;

}

/* ---------- shop by category ---------- */

.cats {
  background: var(--paper-2);
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 158px;
  padding: 26px 24px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  transition: .35s;
  overflow: hidden;
}

.cat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(40,24,16,.14);
  border-color: var(--gold-soft);
}

.cat-card::after {
  content: "";
  position: absolute;
  right: -32px;
  bottom: -32px;
  width: 112px;
  height: 112px;
  border: 1px solid var(--accent,var(--gold));
  border-radius: 50%;
  opacity: .13;
  transition: .35s;
}

.cat-card:hover::after {
  transform: scale(1.18);
  opacity: .22;
}

.cat-top {
  display: flex;
  align-items: center;
  gap: 9px;
}

.cat-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--accent,var(--gold));
  flex: none;
}

.cat-kicker {
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.cat-card h3 {
  font-size: 1.5rem;
  margin: 14px 0 0;
  position: relative;
  z-index: 1;
}

.cat-card .link-arrow {
  margin-top: auto;
  padding-top: 16px;
}

.cat-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: .56rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 5px 10px;
  border-radius: 30px;
}

.cat-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 36px;
}

.cat-chips a {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 11px 20px;
  border: 1px solid var(--line);
  border-radius: 40px;
  background: var(--cream);
  transition: .3s;
}

.cat-chips a:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---------- trial pack ---------- */

.trial {
  background: linear-gradient(125deg,var(--plum),var(--ink));
  color: var(--paper);
}

.trial .wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.trial-box-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
  perspective: 1000px;
}

.trial-box {
  position: relative;
  width: 282px;
  height: 300px;
  background: linear-gradient(150deg,#234b3c,#15311f);
  border: 1px solid var(--gold-soft);
  border-radius: 6px;
  box-shadow: 0 38px 70px rgba(0,0,0,.55);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 30px;
  overflow: hidden;
  transform: rotateY(-13deg) rotateX(4deg);
}

.trial-box .lines {
  position: absolute;
  inset: 0;
}

.trial-box .brand-k {
  font-family: var(--serif);
  font-size: 3.1rem;
  color: var(--gold-soft);
  line-height: 1;
  position: relative;
  z-index: 2;
}

.trial-box .brand-k sup {
  font-size: .7rem;
}

.trial-box .eoi {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--gold-soft);
  margin-top: 8px;
  position: relative;
  z-index: 2;
}

.trial-box .edp {
  font-family: var(--sans);
  font-size: .58rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(245,237,223,.7);
  margin-top: 6px;
  position: relative;
  z-index: 2;
}

.trial-box .pack {
  font-family: var(--sans);
  font-size: .68rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-top: 22px;
  border-top: 1px solid rgba(205,171,115,.4);
  padding-top: 12px;
  position: relative;
  z-index: 2;
}

.trial-tag {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 5;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  background: var(--gold);
  color: #fff;
  padding: 6px 12px;
  border-radius: 30px;
}

.trial-copy .eyebrow {
  color: var(--gold-soft);
}

.trial-copy h2 {
  font-size: clamp(2rem,3.6vw,2.9rem);
  color: #fff;
  margin: 16px 0 0;
}

.trial-copy h2 em {
  font-style: italic;
  color: var(--gold-soft);
}

.trial-copy p {
  color: rgba(245,237,223,.82);
  margin: 18px 0 22px;
  max-width: 34em;
}

.trial-incl {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.trial-incl span {
  font-size: .7rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  border: 1px solid rgba(205,171,115,.4);
  border-radius: 30px;
  padding: 7px 14px;
  color: rgba(245,237,223,.85);
}

.trial-incl span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  background: var(--c,var(--gold));
  vertical-align: middle;
}

.trial-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.trial-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.trial-price .price {
  font-family: var(--serif);
  font-size: 1.85rem;
  color: #fff;
}

.trial-price .mrp {
  color: rgba(245,237,223,.55);
  text-decoration: line-through;
  font-size: .95rem;
}

/* category template */

/* breadcrumb */

.crumbs {
  padding: 18px 0 0;
}

.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  font-size: .74rem;
  letter-spacing: .04em;
  color: var(--muted);
}

.crumbs a:hover {
  color: var(--gold);
}

.crumbs li::after {
  content: "/";
  margin-left: 8px;
  color: var(--line);
}

.crumbs li:last-child::after {
  content: "";
}

.crumbs li[aria-current] {
  color: var(--ink);
  font-weight: 500;
}

/* category header */

.cat-hero {
  padding: 26px 0 30px;
  border-bottom: 1px solid var(--line);
}

.cat-hero h1 {
  font-size: clamp(2rem,4vw,3rem);
  margin: 8px 0 0;
}

.cat-hero .intro {
  max-width: 62ch;
  color: var(--muted);
  margin: 14px 0 0;
  font-size: .97rem;
}

/* toolbar */

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  flex-wrap: wrap;
}

.count {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: .02em;
}

.count b {
  color: var(--ink);
  font-weight: 600;
}

.tool-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.filter-toggle {
  display: none;
  border: 1px solid var(--ink);
  border-radius: 2px;
  padding: 10px 16px;
  font-size: .76rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  background: none;
  cursor: pointer;
}

.sort label {
  font-size: .72rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}

.sort select {
  font-family: var(--sans);
  font-size: .84rem;
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 2px;
  cursor: pointer;
  color: var(--ink);
}

/* layout */

.shop {
  display: grid;
  grid-template-columns: 248px 1fr;
  gap: 40px;
  padding-bottom: 80px;
  align-items: start;
}

/* sidebar filters */

.filters {
  position: sticky;
  top: 88px;
}

.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.filters-head h2 {
  font-size: 1.1rem;
}

.clear {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--sans);
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
}

.fgroup {
  border-top: 1px solid var(--line);
  padding: 18px 0;
}

.fgroup h3 {
  font-size: .74rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 14px;
  font-family: var(--sans);
  font-weight: 600;
}

.opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  font-size: .88rem;
  color: var(--muted);
  cursor: pointer;
}

.opt:hover {
  color: var(--ink);
}

.opt input {
  width: 16px;
  height: 16px;
  accent-color: var(--gold);
  cursor: pointer;
}

.opt .c {
  margin-left: auto;
  font-size: .74rem;
  color: var(--line);
}

.drawer-close-f {
  display: none;
}

/* active chips */

.active-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.active-chips:empty {
  display: none;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: .72rem;
  letter-spacing: .04em;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 30px;
  padding: 6px 12px;
  text-transform: capitalize;
}

.chip button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1;
  padding: 0;
}

/* product grid */

.products {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.card.hide {
  display: none;
}

.badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: .6rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 600;
  background: rgba(255,255,255,.92);
  padding: 5px 10px;
  border-radius: 30px;
}

.size-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: .6rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  background: var(--ink);
  color: var(--paper);
  padding: 5px 10px;
  border-radius: 30px;
}

.card .desc {
  font-size: .8rem;
  color: var(--muted);
  margin: 9px 0 0;
}

/* pagination */

.pager {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 44px;
}

.pager a,.pager span,.pager button {
  min-width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  font-size: .86rem;
  font-family: inherit;
  background: var(--cream);
  color: inherit;
  cursor: pointer;
  transition: .25s;
}

.pager a:hover,.pager button:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.pager .on {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
}

/* SEO content + FAQ */
.seo.front-text-light-bg {
	background: #f5eddf;
}
.seo {
  background: var(--paper-2);
  border-top: 1px solid var(--line);
}

.seo .wrap {
  padding: 72px 24px;
  text-align: center;
}

.seo h2 {
  font-size: clamp(1.6rem,3vw,2.2rem);
  margin-bottom: 18px;
}

.seo p {
  color: var(--muted);
  /* max-width: 80ch; */
  margin: 0 0 16px;
}

.seo .more {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s ease;
}

.seo .more.open {
  max-height: 600px;
}

.read-more {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--sans);
  font-weight: 600;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
  margin-top: 4px;
}

.faq {
	/* margin-top: 48px; */
	max-width: 1000px;
	margin: auto;
  text-align: left;
}

.faq h2 {
  margin-bottom: 20px;
  text-align: center;
}

.faq-item {
  border-top: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--ink);
}

.faq-q .ico {
  color: var(--gold);
  font-size: 1.3rem;
  transition: .3s;
  flex: none;
  line-height: 1;
}

.faq-q[aria-expanded="true"] .ico {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease;
  color: var(--muted);
  font-size: .94rem;
}

.faq-a.open {
  max-height: 240px;
}

.faq-a p {
  padding: 0 0 20px;
  margin: 0;
  max-width: 75ch;
}

/* most searched keywords */

.keywords {
  background: var(--ink);
  color: var(--paper);
}

.keywords .wrap {
  padding: 48px 24px;
}

.keywords h2 {
  color: #fff;
  font-size: 1.15rem;
  font-family: var(--sans);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}

.kw-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.kw-list a {
  font-size: .78rem;
  letter-spacing: .04em;
  color: rgba(245,237,223,.82);
  border: 1px solid rgba(205,171,115,.3);
  border-radius: 30px;
  padding: 8px 15px;
  transition: .25s;
}

.kw-list a:hover {
  background: var(--gold);
  color: #fff;
  border-color: var(--gold);
}

/* filter backdrop (mobile) */

.fbackdrop {
  display: none;
}

/* product template */

body.product-page {
  font-size: 16px;
  line-height: 1.65;
}

.product-page h1,
.product-page h2,
.product-page h3,
.product-page h4 {
  line-height: 1.14;
}

.product-page .section {
  padding: 70px 0;
}

.product-page .btn {
  gap: .5em;
  font-size: .8rem;
  letter-spacing: .14em;
  padding: 15px 26px;
  transition: .3s;
}



/* .product-page .brand sup {
  font-size: .58rem;
} */
.header .brand img {
	max-width: 100px;
	max-height: 44px;
	width: auto;
	height: auto;
	display: block;
	object-fit: contain;
}
.product-page .cart-pill {
  padding: 7px 15px;
}

.product-page .cart-pill .count {
  width: 17px;
  height: 17px;
  font-size: .64rem;
}

.product-page .burger span {
  width: 23px;
}


.product-page .notes {
  display: block;
  margin: 0;
  background: linear-gradient(125deg,var(--plum),var(--ink));
  color: var(--paper);
}

/* .product-page .footer {
  padding: 60px 0 26px;
} */

.section h2 {
  font-size: clamp(1.6rem,3vw,2.3rem);
  margin-bottom: 8px;
}

.section .lead {
  text-align: center;
  color: var(--muted);
  max-width: 60ch;
  margin: 0 auto 44px;
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: var(--gold);
}

/* PRODUCT TOP */

.pdp {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 54px;
  padding: 24px 0 60px;
  align-items: start;
}

.gallery {
  position: sticky;
  top: 88px;
}

.gallery-main {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
  aspect-ratio: 1/1;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbs {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.thumbs button {
  width: 74px;
  height: 74px;
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--cream);
  transition: .25s;
}

.thumbs button.active {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* SUMMARY */

.summary .family {
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.summary h1 {
  font-size: clamp(2rem,3.6vw,2.9rem);
  margin: 10px 0 0;
}

.rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0 0;
  font-size: .86rem;
  color: var(--muted);
}

.rating a:hover {
  color: var(--gold);
}

.summary .tagline {
  margin: 18px 0 0;
  color: var(--muted);
}

.price-box {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 22px 0 4px;
}

.price-box .now {
  font-family: var(--serif);
  font-size: 2rem;
}

.price-box .was {
  color: var(--muted);
  text-decoration: line-through;
}

.price-box .off {
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wine);
  background: #f3e3d0;
  padding: 5px 10px;
  border-radius: 30px;
}

.tax {
  font-size: .76rem;
  color: var(--muted);
}

.variant {
  margin: 26px 0 0;
}

.variant .lbl {
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 600;
  margin-bottom: 10px;
}

.sizes {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.size-opt {
  border: 1px solid var(--line);
  background: var(--cream);
  border-radius: 3px;
  padding: 11px 18px;
  cursor: pointer;
  font-family: var(--sans);
  font-size: .85rem;
  letter-spacing: .04em;
  transition: .25s;
}

.size-opt:hover {
  border-color: var(--gold-soft);
}

.size-opt.active {
  border-color: var(--ink);
  background: var(--ink);
  color: #fff;
}

.buy-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin: 26px 0 0;
  flex-wrap: wrap;
}

.qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 2px;
}

.qty button {
  width: 42px;
  height: 100%;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--ink);
}

.qty input {
  width: 42px;
  text-align: center;
  border: none;
  background: none;
  font-family: var(--sans);
  font-size: 1rem;
  -moz-appearance: textfield;
}

.qty input::-webkit-outer-spin-button,.qty input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.buy-row .btn {
  flex: 1;
  min-width: 150px;
}

.offers {
  margin: 24px 0 0;
  border: 1px dashed var(--gold);
  border-radius: 6px;
  padding: 16px 18px;
  background: var(--cream);
}

.offers h3 {
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 600;
  margin-bottom: 10px;
}

.offers ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.offers li {
  font-size: .84rem;
  color: var(--muted);
  display: flex;
  gap: 9px;
}

.offers li i {
  color: var(--gold);
  font-size: 1rem;
  line-height: 1.5;
  flex: none;
}

.offers code {
  background: var(--paper-2);
  padding: 1px 7px;
  border-radius: 3px;
  color: var(--ink);
  font-weight: 600;
  letter-spacing: .05em;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 8px;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}

.trust-row div {
	text-align: center;
	font-size: .7rem;
	letter-spacing: .04em;
	color: var(--muted);
	text-transform: uppercase;
	display: flex;
	text-align: left;
	gap: 8px;
	align-items: center;
}

.trust-row .ic {
  display: block;
  font-size: 1.2rem;
  color: var(--gold);
}

.delivery {
  margin: 24px 0 0;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.delivery input {
  flex: 1;
  min-width: 160px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: var(--cream);
  font-family: var(--sans);
}

.delivery .btn {
  padding: 12px 18px;
}

#pinMsg {
  font-size: .8rem;
  color: var(--green);
  margin: 8px 0 0;
  width: 100%;
}

.notes h2 {
  color: #fff;
}

.notes .lead {
  color: rgba(245,237,223,.78);
}

.pyramid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
  max-width: 960px;
  margin: 0 auto;
}

.note-card {
  border: 1px solid rgba(205,171,115,.32);
  border-radius: 6px;
  padding: 30px 26px;
  text-align: center;
  background: rgba(255,255,255,.03);
}

.note-card .tier {
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  font-weight: 600;
}

.note-card h3 {
  color: #fff;
  font-size: 1.3rem;
  margin: 12px 0 10px;
}

.note-card p {
  color: rgba(245,237,223,.78);
  font-size: .9rem;
  margin: 0;
}

/* KEY BENEFITS */

.benefits .grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.benefit {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 30px 24px;
  text-align: center;
}

.benefit .ic {
  font-size: 1.8rem;
  color: var(--gold);
  display: block;
  margin-bottom: 14px;
}

.benefit h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.benefit p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
}

/* HOW TO USE */

.howto {
  background: var(--paper-2);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  counter-reset: s;
}

.step {
  position: relative;
  padding: 30px 22px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
}

.step .n {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--gold);
}

.step h3 {
  font-size: 1.05rem;
  margin: 10px 0 8px;
}

.step p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
}

/* DESCRIPTION + SPECS */

.about .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 54px;
  align-items: start;
}

.about h2 {
  text-align: left;
  margin-bottom: 18px;
}

.about p {
  color: var(--muted);
  margin: 0 0 16px;
}

.specs {
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  background: var(--cream);
}

.specs h3 {
  font-family: var(--sans);
  font-size: .76rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 20px;
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
}

.specs dl {
  margin: 0;
  padding: 6px 20px 16px;
}

.specs .row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--line);
  font-size: .88rem;
}

.specs .row:last-child {
  border-bottom: none;
}

.specs dt {
  color: var(--muted);
}

.specs dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}

.ingredients {
  margin-top: 28px;
}

.ingredients h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.ingredients p {
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
}

/* REVIEWS */

.reviews .top {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 40px;
  align-items: center;
  margin-bottom: 40px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 34px;
}

.score {
  text-align: center;
}

.score .big {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
}

.score .stars {
  font-size: 1.1rem;
  margin: 6px 0;
}

.score .cnt {
  font-size: .82rem;
  color: var(--muted);
}

.bars {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.bar {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: .82rem;
  color: var(--muted);
}

.bar .track {
  flex: 1;
  height: 8px;
  background: var(--paper-2);
  border-radius: 8px;
  overflow: hidden;
}

.bar .fill {
  height: 100%;
  background: var(--gold);
}

.review-list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 20px;
}

.rev {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 22px;
  background: var(--cream);
}

.rev .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.rev .who {
  font-weight: 600;
  font-size: .92rem;
}

.rev .verified {
  font-size: .66rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--green);
  border: 1px solid var(--green);
  border-radius: 30px;
  padding: 3px 8px;
}

.rev .stars {
  color: var(--gold);
  font-size: .85rem;
  margin-bottom: 8px;
}

.rev p {
  font-size: .9rem;
  color: var(--muted);
  margin: 0;
}

.rev .date {
  font-size: .74rem;
  color: var(--line);
  margin-top: 10px;
}

.write {
  margin-top: 34px;
  text-align: center;
}

.review-form {
  max-width: 560px;
  margin: 18px auto 0;
  display: none;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

.review-form.open {
  display: flex;
}

.review-form input,.review-form textarea {
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: var(--cream);
  font-family: var(--sans);
  font-size: .92rem;
}

.review-form .rate {
  display: flex;
  gap: 6px;
  font-size: 1.4rem;
  color: var(--line);
  cursor: pointer;
}

.review-form .rate span.on {
  color: var(--gold);
}

/* FAQ */

.faq-wrap {
  max-width: 840px;
  margin: 0 auto;
}

/* RELATED */

.related {
  background: var(--paper-2);
}

.rel-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 22px;
}

.rel-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: .35s;
  display: flex;
  flex-direction: column;
}

.rel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 50px rgba(40,24,16,.14);
}

.rel-card .m {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: var(--paper-2);
}

.rel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .5s;
}

.rel-card:hover img {
  transform: scale(1.05);
}

.rel-card .b {
  padding: 16px 16px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.rel-card .family {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}

.rel-card h3 {
  font-size: 1.05rem;
  margin: 6px 0 0;
}

.rel-card .p {
  font-family: var(--serif);
  margin: 8px 0 14px;
}

.rel-card .btn {
  margin-top: auto;
  width: 100%;
}

.footer .about-f {
  font-size: .88rem;
  max-width: 30em;
}

/* sticky mobile buy bar */

.mobile-buy {
  display: none;
}

/* ---------- Responsive ---------- */

/* max-width: 980px */

@media(max-width:980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 96px 0 92px;
  }

  .hero-art {
    order: -1;
    min-height: 260px;
  }

  .diffuse,.hero-visual {
    width: 230px;
    height: 230px;
  }

  .hero .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 1.2rem;
  }

  .hero .hero-arrow.prev {
    left: 12px;
  }

  .hero .hero-arrow.next {
    right: 12px;
  }

  .grid4,.why .wrap,.reviews .wrap {
    grid-template-columns: repeat(2,1fr);
  }

  .trust .wrap {
    grid-template-columns: repeat(2,1fr);
    gap: 18px;
  }

  .story .wrap,.scent-result {
    grid-template-columns: 1fr;
  }

  .footer .wrap {
    grid-template-columns: 1fr 1fr;
  }

  .scent-result img {
    aspect-ratio: 16/10;
  }

  .cat-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .trial .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trial-box-wrap {
    min-height: auto;
  }

  .products {
    grid-template-columns: repeat(2,1fr);
  }

  .footer .wrap {
    grid-template-columns: 1fr 1fr;
  }

  .pdp {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .gallery {
    position: static;
  }

  .benefits .grid,.steps,.rel-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .about .wrap {
    grid-template-columns: 1fr;
  }

  .review-list {
    grid-template-columns: 1fr;
  }

  .footer .wrap {
    grid-template-columns: 1fr 1fr;
  }

  /* reviews slider arrows adjustment */
  .reviews .reviews-arrow.prev {
    left: -10px;
  }
  .reviews .reviews-arrow.next {
    right: -10px;
  }
}

/* max-width: 760px */

@media(max-width:760px) {
  body {
    font-size: 16px;
    line-height: 1.4;
  }
  .wrap {
    padding: 0 20px;
  }
  .sec-head {
    margin: 0 auto 20px;
  }
  .announce {
    display: none;
  }
  .menu,.cart-pill .lbl {
    display: none;
  }
  .nav-right .icon-btn .lbl {
    display: none;
  }
  .nav-right .cart-btn {
	  position: relative;
  }
  .nav-right .icon-btn .count {
    position: absolute;
    right: -4px;
    top: 0;
  }
  .nav-right .icon-btn i {
    font-size: 20px;
  }

  .burger {
    display: flex;
  }


  .hero-dots-wrap {
    position: absolute;
    left: 0;
    top: 165px;
    right: 0;
    margin: auto;
  }
  .why-card {
    flex: 0 0 100%;
  }

  .shop {
    grid-template-columns: 1fr;
  }

  .filter-toggle {
    display: inline-block;
  }

  .filters {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: min(86%,320px);
    background: var(--cream);
    z-index: 90;
    padding: 24px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: .35s;
    box-shadow: 0 0 50px rgba(0,0,0,.2);
  }

  .filters.open {
    transform: none;
  }

  .drawer-close-f {
    display: inline-block;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    float: right;
  }

  .fbackdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(20,12,10,.5);
    z-index: 85;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
  }

  .fbackdrop.open {
    opacity: 1;
    visibility: visible;
  }

  .menu,.cart-pill .lbl {
    display: none;
  }

  .burger {
    display: flex;
  }

  .pyramid {
    grid-template-columns: 1fr;
  }

  .reviews .top {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer .wrap {
    grid-template-columns: 1fr;
  }

  .mobile-buy {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 70;
    background: var(--cream);
    border-top: 1px solid var(--line);
    padding: 10px 16px;
    gap: 10px;
    align-items: center;
  }

  .mobile-buy .mp {
    font-family: var(--serif);
    font-size: 1.2rem;
    flex: none;
  }

  .mobile-buy .btn {
    flex: 1;
  }

  /* hide reviews arrows on mobile */
  .reviews .reviews-arrow {
    display: none !important;
  }
  .wrap-flush #reviewsSlider {
    margin-bottom: 10px;
  }
  .reviews .reviews-dots {
    gap: 5px;
    margin: 12px 0 0;
  }
  .reviews .reviews-dots button {
    width: 10px;
  }
  .reviews .reviews-dots .slick-active button {
    width: 15px;
  }
  .seo .wrap {
    padding: 20px 24px;
  }
  
  .scent-info {
    padding: 25px 15px;
  }
  .scent-info h3 {
    font-size: 22px;
  }

  .cat-hero {
    padding-bottom: 15px;
    padding-top: 15px;
  }
  .inner-banner-text {
    padding-top: 15px;
  }

  .toolbar {
    gap: 5px;
    margin-bottom: 15px;
  }
  .tool-right {
    flex-wrap: wrap;
    justify-content: space-between;
    flex: 0 0 100%;
  }
  .card-media .badge {
    left: 6px;
    font-size: 9px;
    padding: 4px 8px;
  }
  .card-media .size-badge {
    right: 6px;
    font-size: 9px;
    padding: 4px 8px;
  }
  .pager {
    margin-top: 34px;
    margin-bottom: 34px;
  }

  .product-page .crumbs {
    padding: 18px 20px 12px;
  }


  .delivery {
    margin: 24px 0 30px;
  }
  .offers code {
    margin: auto;
  }
  .product-page .section {
    padding: 35px 0;
  }
  .benefit {
    padding: 15px;
    text-align: center;
  }
  .benefit p {
    line-height: 1.3;
  }
  .section .lead {
    margin: 0 auto 24px;
  }
  .step {
    padding: 15px;
  }
  .reviews .top {
    margin-bottom: 25px;
  }
  .related h2 {
    text-align: center;
  }
  .product-page .rel-grid .btn {
    padding: 6px 15px;
  }
}

/* max-width: 620px */

@media(max-width:620px) {
  .btn {
    font-size: 10px;
    padding: 12px 18px;
  }
  /* .slick-slide .banner-img {
    height: 500px;
    object-fit: cover;
  } */
  .hero-art .trial-box {
    width: 240px;
    height: 260px;
    transform: none;
  }

  .section {
    padding: 38px 0;
  }

  .menu,.cart-pill .lbl {
    display: none;
  }

  .burger {
    display: flex;
  }

  .grid4,.why .wrap,.reviews .wrap,.footer .wrap {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding: 15px;
    position: static;
    text-align: center;
  }
  .hero-slide h2 {
    font-size: 35px;
  }
  .hero-sub {
    margin: 12px 0 0;
    font-size: 12px;
  }
  .hero .hero-arrow {
    display: none; /* hide arrows on very small screens */
  }
  .hero-cta {
    gap: 10px;
    margin-top: 22px;
    justify-content: center;
  }
  .hero .hero-arrow {
    display: none !important;
  }
  .hero-mini {
    gap: 10px;
    margin-top: 15px;
    padding-top: 10px;
    font-size: 10px;
    justify-content: center;
  }
  .hero-slider-wrap #heroSlider {
    margin-bottom: 0;
  }
  .hero-dots-wrap .hero-dots {
    position: static;
    gap: 5px;
  }
  .hero .hero-dots button {
    width: 8px;
    height: 4px;
  }
  .hero .hero-dots .slick-active button {
    width: 12px;
  }
  .trust .wrap {
    align-items: baseline;
  }
  .trust-item {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 12px;
  }

  .announce-track {
    gap: 30px;
  }

  .cat-grid {
    grid-template-columns: 1fr;
  }

  .cat-chips {
    gap: 5px;
    margin-top: 26px;
  }
  .cat-chips a {
    font-size: 10px;
    padding: 6px 12px;
  }
  .trial-box {
    transform: none;
  }
  .mood-tabs {
    gap: 5px;
    justify-content: flex-start;
    margin-bottom: 15px;
    overflow-x: auto;
    padding-bottom: 10px;
    align-items: center;
    flex-wrap: initial;
  }
  .mood-tabs .mood {
    padding: 10px 16px;
    flex: 1 0 auto;
    font-size: 11px;
    letter-spacing: 0;
  }
}

/* max-width: 560px */

@media(max-width:560px) {
  .products {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .footer .wrap {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .foot-bottom {
    margin-top: 15px;
    padding-top: 15px;
    text-align: center;
  }
  .card-body {
    padding: 14px;
  }
}

/* reduced motion */

@media(prefers-reduced-motion:reduce) {
  * {
    animation: none!important;
    transition: none!important;
    scroll-behavior: auto;
  }

  * {
    transition: none!important;
    animation: none!important;
  }
}

/* =====================================================
   CONTACT PAGE
===================================================== */

.contact-hero {
  padding: 90px 0 50px;
  text-align: center;
}

.contact-hero .eyebrow {
  display: block;
  margin-bottom: 14px;
}

.contact-hero h1 {
  font-size: clamp(2rem,4vw,3rem);
  max-width: 18ch;
  margin: 0 auto;
}

.contact-hero p {
  color: var(--muted);
  max-width: 42em;
  margin: 18px auto 0;
}

.contact-section {
  padding-top: 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 40px;
}

.contact-form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 24px;
}

.contact-info-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.contact-info-block h3 {
  font-family: var(--sans);
  font-size: .78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .2em;
  color: var(--gold);
  margin-bottom: 12px;
}

.contact-info-block address,
.contact-info-block p {
  font-style: normal;
  color: var(--ink);
  line-height: 1.8;
  margin: 0;
}

.contact-info-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.contact-info-block li + li {
  margin-top: 8px;
}

/* Scoped to the phone/email <ul> links only — .socials (Follow Us icons) already has its own
   color/hover rules below in the newsletter/footer section; matching those here too would tie
   on specificity with them and (since this block loads later in the file) win the tie, turning
   the icons gold-on-gold-background on hover and making them disappear. */
.contact-info-block ul a {
  color: var(--ink);
  text-decoration: none;
}

.contact-info-block ul a:hover {
  color: var(--gold);
}

/* Contact form is an Everest Forms shortcode ([everest_form id="7"]) — restyle its own
   markup here to match the theme's input/button look instead of the plugin's defaults.
   Everest Forms' own button rule (".everest-forms button.button:not(.button-large)") carries
   specificity (0,3,1) via the :not() argument counting toward it, which beat our original
   3-class (0,3,0) selector — prefixing with .contact-page (present on <main>) bumps us to
   (0,4,0) so these reliably win regardless of stylesheet load order. */
.contact-page .contact-form-card .everest-forms .evf-field-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--ink);
}

.contact-page .contact-form-card .everest-forms .evf-field-label .required {
  color: var(--wine);
  text-decoration: none;
}

.contact-page .contact-form-card .everest-forms .evf-field {
  margin-bottom: 18px;
}

.contact-page .contact-form-card .everest-forms .input-text {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-family: var(--sans);
  font-size: .95rem;
  background: #fff;
  color: var(--ink);
  transition: .3s;
}

.contact-page .contact-form-card .everest-forms textarea.input-text {
  min-height: 120px;
  resize: vertical;
}

.contact-page .contact-form-card .everest-forms .input-text:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(176,131,74,.12);
}

.contact-page .contact-form-card .everest-forms .iti {
  width: 100%;
}

.contact-page .contact-form-card .everest-forms .evf-submit-container {
  margin-top: 8px;
}

.contact-page .contact-form-card .everest-forms .everest-forms-submit-button {
  display: inline-block;
  text-align: center;
  font-family: var(--sans);
  font-weight: 500;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 16px 34px;
  border-radius: 6px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: .35s ease;
  background: var(--gold);
  color: #fff;
}

.contact-page .contact-form-card .everest-forms .everest-forms-submit-button:hover {
  background: var(--ink);
  color: #fff;
}

.contact-page .contact-form-card .everest-forms label.evf-error,
.contact-page .contact-form-card .everest-forms .wpcf7-not-valid-tip {
  color: #d0342c;
  font-size: 13px;
  margin-top: 6px;
  display: block;
}

@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 28px;
  }
}

/* =====================================================
   DEFAULT PAGE TEMPLATE (page.php / template-parts/content-page.php)
   Applies to any Page using the default template — e.g. Privacy Policy, Terms and
   Conditions, Shipping and Delivery, Cancellation and Refund, Our Story, etc.
===================================================== */

.page-content-wrap {
  padding: 60px 0 100px;
}

.page-content {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 56px 64px;
  box-shadow: 0 24px 50px rgba(40,24,16,.10);
}

.page-content > *:first-child {
  margin-top: 0;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
  margin-top: 2.4em;
  margin-bottom: .7em;
  color: var(--ink);
}

.page-content h2 {
  font-size: 1.4rem;
  padding-left: 18px;
  border-left: 3px solid var(--gold);
}

.page-content h3 {
  font-size: 1.1rem;
}

.page-content p {
  color: var(--ink-2);
  margin: 0 0 1.15em;
}

.page-content > p:first-of-type {
  font-size: 1.08rem;
  color: var(--muted);
}

.page-content ul,
.page-content ol {
  margin: 0 0 1.3em;
  padding: 0;
  color: var(--ink-2);
}

.page-content ul {
  list-style: none;
}

.page-content ul li {
  position: relative;
  padding-left: 22px;
}

.page-content ul li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: .65em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

.page-content ol {
  padding-left: 1.3em;
}

.page-content ol li::marker {
  color: var(--gold);
  font-weight: 600;
}

.page-content li {
  margin-bottom: .55em;
  line-height: 1.7;
}

.page-content li:last-child {
  margin-bottom: 0;
}

.page-content a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-content a:hover {
  color: var(--ink);
}

.page-content strong {
  color: var(--ink);
  font-weight: 600;
}

.page-content hr {
  border: none;
  border-top: 1px solid var(--line);
  margin: 2.2em 0;
}

.page-content-wrap .entry-footer {
  max-width: 760px;
  margin: 24px auto 0;
  text-align: right;
}

@media (max-width: 782px) {
  .page-content {
    padding: 36px 28px;
    border-radius: 14px;
  }

  .page-content h2 {
    font-size: 1.25rem;
  }
}

@media (max-width: 600px) {
  .page-content-wrap {
    padding: 36px 0 64px;
  }
}

/* =====================================================
   OUR STORY PAGE
   Custom hand-built sections (page-our-story.php) — no the_content(). Reuses the homepage's
   dark .story band and wine .gift band as-is (only .story h1 is new, added below, since the
   homepage's .story section only ever needed an h2) for visual consistency between the two.
===================================================== */

.story h1 {
  font-size: clamp(2.2rem,4vw,3.2rem);
  color: #fff;
  margin: 18px 0 0;
}

.story-page-block {
  padding: 90px 0;
  text-align: center;
}

.story-page-block.tint {
  background: var(--paper-2);
}

.story-page-block h2 {
  font-size: clamp(1.8rem,3.2vw,2.4rem);
  max-width: 20ch;
  margin: 0 auto;
}

.story-page-block .subhead {
  font-family: var(--serif);
  font-style: italic;
  color: var(--muted);
  font-size: 1.15rem;
  margin: 10px auto 0;
  max-width: 40ch;
}

.story-page-block .copy {
  max-width: 62ch;
  margin: 28px auto 0;
  text-align: left;
}

.story-page-block .copy p {
  color: var(--ink-2);
  line-height: 1.85;
  margin: 0 0 1.2em;
}

.story-page-block .copy p:last-child {
  margin-bottom: 0;
}

.story-page-split {
  padding: 90px 0;
}

.story-page-split .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-page-media {
  aspect-ratio: 4/5;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
}

.story-page-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-page-copy h2 {
  font-size: clamp(1.8rem,3.2vw,2.4rem);
  margin: 14px 0 0;
}

.story-page-copy p {
  color: var(--ink-2);
  line-height: 1.8;
  margin: 18px 0 0;
}

.gift-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 6px;
}

/* The sitewide mobile rule "@media(max-width:760px) { .wrap { padding: 0 20px; } }" ties in
   specificity with ".crumbs { padding: 18px 0 0; }" (both single-class selectors) and, being
   later in the file, wins outright — wiping the breadcrumb's top spacing below 760px on every
   page that uses it. Scoped to only this page (per request) rather than fixed globally. */
@media (max-width: 760px) {
  .story-page .crumbs {
    padding-top: 18px;
  }
}

@media (max-width: 900px) {
  .story-page-split .wrap {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

@media (max-width: 600px) {
  .story-page-block,
  .story-page-split {
    padding: 56px 0;
  }
}