.featured-actions {
  display: flex;
  gap: 0.5rem;
}

.featured-actions .button {
  min-height: 34px;
  padding: 0 0.78rem;
  font-size: 0.78rem;
}

.category-shop {
  display: grid;
  gap: 1.8rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), rgba(0, 0, 0, 0.16)),
    rgba(0, 0, 0, 0.08);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.category-grid a {
  position: relative;
  display: grid;
  grid-template-rows: 170px auto auto;
  gap: 0.45rem;
  min-height: 300px;
  padding: 0.9rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), transparent 60%),
    rgba(255, 255, 255, 0.012);
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.category-grid a:nth-child(4n) {
  border-right: 0;
}

.category-grid a:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.category-grid a:hover,
.category-grid a:focus-visible {
  background-color: rgba(214, 174, 103, 0.08);
  transform: translateY(-1px);
}

.category-grid img {
  align-self: center;
  justify-self: center;
  width: min(100%, 170px);
  height: 160px;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(0, 0, 0, 0.32));
}

.category-grid span {
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.category-grid strong {
  max-width: 24ch;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.42;
}

.collection-preview {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding: clamp(3rem, 7vw, 5.5rem) clamp(1rem, 4vw, 4rem);
  border-block: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04), transparent 62%),
    rgba(0, 0, 0, 0.18);
}

.collection-preview > div {
  display: grid;
  gap: 0.75rem;
  max-width: 760px;
}

.collection-preview h2 {
  max-width: 18ch;
}

.collection-preview p:not(.eyebrow) {
  max-width: 62ch;
  color: var(--muted);
  line-height: 1.72;
}

.collection-preview .button {
  justify-self: end;
}

.brand-showcase {
  display: grid;
  gap: 1.8rem;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.012);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.brand-grid a {
  display: grid;
  gap: 0.45rem;
  min-height: 138px;
  align-content: center;
  padding: 1rem;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(214, 174, 103, 0.08), transparent 58%),
    rgba(0, 0, 0, 0.1);
  transition: background-color 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.brand-grid a:nth-child(4n) {
  border-right: 0;
}

.brand-grid a:nth-last-child(-n + 4) {
  border-bottom: 0;
}

.brand-grid a:hover,
.brand-grid a:focus-visible {
  background-color: rgba(214, 174, 103, 0.08);
  transform: translateY(-1px);
}

.brand-grid span {
  color: var(--accent-soft);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1;
}

.brand-grid strong {
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scent-guide {
  display: grid;
  gap: 1.8rem;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.18)),
    rgba(0, 0, 0, 0.08);
}

.scent-family-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--line);
}

.scent-family-grid article {
  display: grid;
  align-content: space-between;
  gap: 1.3rem;
  min-height: 240px;
  padding: 1.1rem;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), transparent 58%),
    rgba(255, 255, 255, 0.015);
}

.scent-family-grid .family-fresh {
  background:
    linear-gradient(180deg, rgba(109, 148, 128, 0.18), transparent 62%),
    rgba(255, 255, 255, 0.012);
}

.scent-family-grid .family-floral {
  background:
    linear-gradient(180deg, rgba(188, 117, 122, 0.16), transparent 62%),
    rgba(255, 255, 255, 0.012);
}

.scent-family-grid .family-woody {
  background:
    linear-gradient(180deg, rgba(123, 86, 58, 0.2), transparent 62%),
    rgba(255, 255, 255, 0.012);
}

.scent-family-grid .family-amber {
  border-right: 0;
  background:
    linear-gradient(180deg, rgba(214, 174, 103, 0.14), transparent 62%),
    rgba(255, 255, 255, 0.012);
}

.scent-family-grid span {
  color: var(--accent-soft);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scent-family-grid h3 {
  max-width: 18ch;
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.48;
}

.scent-family-grid .button {
  justify-self: start;
}

.counter-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-top: 0;
}

.counter-services a {
  display: grid;
  gap: 0.35rem;
  min-height: 112px;
  align-content: center;
  padding: 1rem;
  border-right: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), transparent 72%),
    rgba(0, 0, 0, 0.12);
  transition: background-color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.counter-services a:last-child {
  border-right: 0;
}

.counter-services a:hover,
.counter-services a:focus-visible {
  background-color: rgba(214, 174, 103, 0.08);
  transform: translateY(-1px);
}

.counter-services span {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.counter-services strong {
  max-width: 24ch;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.45;
}



.hero-photo {
  position: relative;
  z-index: 1;
}

.section-intro {
  display: grid;
  gap: 1.2rem;
}

.section-intro h2 {
  max-width: 16ch;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.filter {
  min-height: 38px;
  padding: 0 1rem;
  cursor: pointer;
}

.filter.active {
  color: #0f0b07;
  background: linear-gradient(132deg, var(--accent-soft), var(--accent));
  border-color: transparent;
}

.catalog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 8vw, 6rem);
}

.catalog-empty {
  margin: -1.4rem 0 2.4rem;
  padding: 0 clamp(1rem, 4vw, 4rem);
  color: var(--muted);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(3rem, 8vw, 6rem);
}

.product-card {
  display: grid;
  gap: 0.95rem;
  min-height: 455px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: linear-gradient(170deg, rgba(255, 255, 255, 0.034), rgba(0, 0, 0, 0.12));
}

.product-card[hidden] {
  display: none;
}

.product-art {
  position: relative;
  display: grid;
  min-height: 210px;
  place-items: center;
  overflow: hidden;
}

.product-art::before {
  position: absolute;
  inset: 10%;
  content: "";
  background: radial-gradient(circle, rgba(255, 255, 255, 0.22), transparent 65%);
}

.product-art.blush {
  background: linear-gradient(140deg, rgba(188, 117, 122, 0.58), rgba(214, 174, 103, 0.2));
}

.product-art.smoke {
  background: linear-gradient(140deg, rgba(42, 40, 38, 0.96), rgba(214, 174, 103, 0.22));
}

.product-art.citrus {
  background: linear-gradient(140deg, rgba(214, 174, 103, 0.62), rgba(98, 130, 111, 0.5));
}

.product-art.plum {
  background: linear-gradient(140deg, rgba(86, 56, 87, 0.88), rgba(188, 117, 122, 0.42));
}

.product-photo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0.75rem;
  object-fit: contain;
}

.product-art:not(.image-fallback) .mini-bottle {
  display: none;
}

.mini-bottle {
  position: relative;
  width: 88px;
  height: 130px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: linear-gradient(92deg, transparent, rgba(255, 255, 255, 0.35), transparent 48%);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.3);
}

.mini-bottle::before {
  position: absolute;
  left: 50%;
  top: -24px;
  width: 34px;
  height: 24px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(130deg, var(--accent-soft), var(--accent));
}

.product-card .tag {
  margin-bottom: 0.25rem;
}

.product-card p {
  color: var(--muted);
  line-height: 1.5;
}

.product-teaser {
  display: -webkit-box;
  min-height: 3rem;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-signal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.product-badge,
.product-review {
  display: inline-flex;
  min-height: 26px;
  align-items: center;
  padding: 0.25rem 0.52rem;
  border: 1px solid rgba(214, 174, 103, 0.28);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.2;
}

.product-badge {
  color: #0f0b07;
  background: linear-gradient(132deg, var(--accent-soft), var(--accent));
  border-color: transparent;
}

.product-review {
  color: var(--accent-soft);
  background: rgba(214, 174, 103, 0.06);
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  align-self: end;
  padding-top: 0.95rem;
  border-top: 1px solid var(--line);
}

.card-footer span {
  color: var(--accent-soft);
  font-weight: 800;
}

.ritual {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 5vw, 4rem);
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.2);
}

.ritual p {
  color: var(--muted);
  line-height: 1.7;
}

.ritual-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ritual-steps article {
  display: grid;
  gap: 0.55rem;
  padding-top: 0.9rem;
  border-top: 1px solid var(--line);
}

.ritual-steps strong {
  color: var(--accent);
}

.consultation {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(2rem, 6vw, 5rem);
}

.consultation p {
  color: var(--muted);
  line-height: 1.72;
}

.contact-form {
  display: grid;
  gap: 0.95rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--accent-soft);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  padding: 0.8rem 0.85rem;
  text-transform: none;
  letter-spacing: 0;
}

.contact-form textarea {
  resize: vertical;
}

.form-status {
  min-height: 1.25rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.house-standards {
  display: grid;
  gap: 1.8rem;
  padding: clamp(3rem, 8vw, 6rem) clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.025), rgba(0, 0, 0, 0.18));
}

.about-copy {
  max-width: 76ch;
  color: var(--muted);
  line-height: 1.76;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.standards-grid article {
  display: grid;
  gap: 0.62rem;
  padding: 1.2rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.standards-grid span {
  color: var(--accent);
  font-weight: 800;
}

.standards-grid h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
}

.standards-grid p {
  color: var(--muted);
  line-height: 1.58;
}

.service-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  border-top: 1px solid var(--line);
}

.service-pillars article {
  display: grid;
  gap: 0.52rem;
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.service-pillars h3 {
  font-family: Inter, system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.service-pillars p {
  color: var(--muted);
  line-height: 1.56;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  padding-block: 0;
  border-block: 1px solid var(--line);
  background: rgba(0, 0, 0, 0.22);
}

.trust-strip span {
  display: grid;
  min-height: 76px;
  place-items: center;
  padding: 0.9rem;
  border-right: 1px solid var(--line);
  color: var(--accent-soft);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.32;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip span:last-child {
  border-right: 0;
}

.site-footer {
  display: grid;
  grid-template-columns: auto minmax(180px, 1fr) auto auto;
  align-items: center;
  gap: clamp(0.9rem, 2vw, 1.4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1rem;
}

.footer-brand-copy,
.footer-contact {
  display: grid;
  gap: 0.35rem;
}

.footer-brand-copy p {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer-brand-copy small {
  max-width: 30ch;
  color: var(--muted);
  line-height: 1.45;
}

.footer-contact {
  justify-items: end;
}

.site-footer img {
  width: 64px;
  height: 48px;
  object-fit: contain;
  object-position: center top;
  clip-path: inset(0 0 8px 0);
  mix-blend-mode: screen;
  opacity: 0.82;
  filter: saturate(0.92) drop-shadow(0 2px 8px rgba(214, 174, 103, 0.14));
}

.site-footer a {
  color: var(--accent-soft);
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--accent);
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.45rem;
}

.footer-social a {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.018);
  transition: border-color 180ms ease, background-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.footer-social a:hover,
.footer-social a:focus-visible {
  color: #0f0b07;
  border-color: transparent;
  background: linear-gradient(132deg, var(--accent-soft), var(--accent));
  transform: translateY(-1px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 540ms ease, transform 540ms ease;
}

.js-ready .reveal.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Product display pass: keep full bottle photography visible inside every card. */
.featured-card {
  grid-template-rows: minmax(300px, 34vw) auto auto;
}

.featured-art {
  min-height: 300px;
}

.product-card {
  grid-template-rows: minmax(330px, auto) auto auto;
  min-height: 590px;
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.038), rgba(255, 255, 255, 0.012) 34%, rgba(0, 0, 0, 0.16)),
    rgba(255, 255, 255, 0.01);
  transition: border-color 180ms ease, transform 180ms ease, background-color 180ms ease;
}

.product-card:hover .product-photo.loaded,
.product-card:focus-within .product-photo.loaded {
  transform: translateY(-5px) scale(1.015);
}

.product-art {
  min-height: 330px;
  isolation: isolate;
  padding: clamp(1.1rem, 2vw, 1.6rem);
  border: 1px solid rgba(239, 220, 175, 0.14);
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 244, 214, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 44%),
    linear-gradient(145deg, rgba(214, 174, 103, 0.14), rgba(10, 8, 7, 0.46));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.product-art.blush {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 234, 220, 0.22), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%),
    linear-gradient(145deg, rgba(188, 117, 122, 0.2), rgba(14, 10, 8, 0.58));
}

.product-art.smoke {
  background:
    radial-gradient(circle at 50% 18%, rgba(239, 220, 175, 0.18), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), transparent 46%),
    linear-gradient(145deg, rgba(42, 40, 38, 0.92), rgba(14, 10, 8, 0.64));
}

.product-art.citrus {
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 242, 191, 0.23), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), transparent 46%),
    linear-gradient(145deg, rgba(214, 174, 103, 0.24), rgba(45, 63, 53, 0.56));
}

.product-art.plum {
  background:
    radial-gradient(circle at 50% 18%, rgba(232, 196, 213, 0.2), transparent 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.058), transparent 46%),
    linear-gradient(145deg, rgba(86, 56, 87, 0.62), rgba(20, 11, 12, 0.62));
}

.product-art::after {
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 1.05rem;
  z-index: 0;
  height: 18px;
  content: "";
  background: radial-gradient(ellipse, rgba(0, 0, 0, 0.4), transparent 72%);
  filter: blur(1px);
}

.product-photo {
  display: block;
  width: 100%;
  max-width: 245px;
  height: 100%;
  max-height: 300px;
  padding: 0;
  object-fit: contain;
  object-position: center;
  opacity: 0;
  transform: translateY(6px) scale(0.985);
  filter:
    drop-shadow(0 24px 30px rgba(0, 0, 0, 0.38))
    saturate(1.03)
    contrast(1.02);
  transition: opacity 260ms ease, transform 260ms ease, filter 260ms ease;
}

.product-photo.loaded {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.product-photo.bg-softened {
  filter:
    drop-shadow(0 25px 34px rgba(0, 0, 0, 0.44))
    saturate(1.06)
    contrast(1.04);
}

.product-photo.bg-blended {
  /* Removed mix-blend-mode: multiply to fix rendering artifacts on some browsers */
  filter:
    drop-shadow(0 26px 34px rgba(0, 0, 0, 0.46))
    brightness(1.02)
    saturate(1.04)
    contrast(1.04);
}

.featured-art .product-photo {
  max-width: 275px;
  max-height: 292px;
}

.product-art.image-tall .product-photo {
  max-width: 220px;
}

.product-art.image-wide .product-photo {
  max-width: 292px;
  max-height: 255px;
}

.image-cleaned .product-photo,
.image-blended .product-photo,
.product-art.image-cleaned .product-photo {
  width: auto;
  height: auto;
  max-width: min(88%, 255px);
  max-height: 305px;
}

.product-art.image-blended .product-photo {
  max-width: min(86%, 252px);
  max-height: 300px;
}

.featured-art.image-cleaned .product-photo {
  max-width: min(88%, 290px);
  max-height: 300px;
}

.featured-art.image-blended .product-photo {
  max-width: min(86%, 284px);
  max-height: 294px;
}

.modal-photo {
  max-width: 360px;
  max-height: 390px;
}

.modal-art.image-cleaned .modal-photo {
  max-width: min(82%, 390px);
  max-height: 410px;
}

.modal-art.image-blended .modal-photo {
  max-width: min(82%, 380px);
  max-height: 400px;
}

.product-detail-art.image-cleaned .product-photo {
  max-width: min(72%, 460px);
  max-height: min(560px, 76%);
}

.product-detail-art.image-blended .product-photo {
  max-width: min(72%, 450px);
  max-height: min(550px, 74%);
}

/* Catalog filtering should feel curated, with clear counts and usable tap targets. */
.filter-panel {
  display: grid;
  gap: 0.85rem;
  margin-top: 0.4rem;
  padding: 0.9rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.filter-panel-actions {
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.filter-panel-actions [data-toggle-filters] {
  display: none;
}

.filter-panel-head span {
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.filter-panel .filters {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 0.6rem;
  margin-top: 0;
}

.filter-panel .filter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  min-height: 54px;
  padding: 0.72rem 0.78rem;
  text-align: left;
  transition: border-color 180ms ease, background-color 180ms ease, opacity 180ms ease;
}

.filter-panel .filter span {
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.22;
}

.filter-panel .filter small {
  display: grid;
  flex: 0 0 auto;
  min-width: 30px;
  height: 26px;
  place-items: center;
  border: 1px solid var(--line);
  color: var(--accent-soft);
  font-size: 0.76rem;
  font-weight: 800;
}

.filter-panel .filter.active small {
  border-color: rgba(15, 11, 7, 0.18);
  color: #0f0b07;
  background: rgba(15, 11, 7, 0.12);
}

.filter-panel .filter:disabled {
  cursor: not-allowed;
  opacity: 0.42;
}

.wishlist-button.active {
  color: #0f0b07;
  background: linear-gradient(132deg, var(--accent-soft), var(--accent));
  border-color: transparent;
}

.product-copy {
  display: grid;
  gap: 0.56rem;
}

.product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.38rem;
}

.product-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0.25rem 0.52rem;
  border: 1px solid var(--line);
  color: var(--accent-soft);
  font-size: 0.73rem;
  font-weight: 700;
  line-height: 1.2;
}

.detail-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.detail-list dt {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.detail-list dd {
  margin: 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.4;
}

.modal-related {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.4rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.modal-related:empty {
  display: none;
}

.modal-trust-bar {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-block: 1.5rem;
  padding: 1.25rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.015);
}

.trust-item {
  display: grid;
  gap: 0.25rem;
}

.trust-item strong {
  color: var(--accent-soft);
  font-size: 0.82rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.74rem;
}

.trust-strip {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.trust-strip-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.trust-strip-content span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trust-strip-content span::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  background: var(--accent-soft);
  border-radius: 50%;
}

/* Concierge & Info Pages */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  padding-block: 4rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.info-grid article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.info-grid h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  line-height: 1.2;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
  display: grid;
  gap: 0.75rem;
}

.check-list li {
  font-size: 0.9rem;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.check-list li::before {
  content: "✓";
  color: var(--accent-soft);
  font-weight: 700;
}

.info-table {
  display: grid;
  gap: 1rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--line);
  padding-top: 1rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px dashed var(--line);
}

.info-row strong {
  font-size: 0.85rem;
  color: var(--text);
  white-space: nowrap;
}

.info-row span {
  font-size: 0.85rem;
  color: var(--muted);
  text-align: right;
}

.faq-section {
  padding-block: 6rem;
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--line);
}

.faq-grid {
  max-width: 800px;
  margin: 3rem auto 0;
  padding-inline: var(--gutter);
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid var(--line);
  background: var(--bg);
}

.faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::after {
  content: "+";
  font-family: monospace;
  font-size: 1.25rem;
  color: var(--accent-soft);
  transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item p {
  padding: 0 1.5rem 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Brand Detail Enhancements */
.brand-story-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  color: var(--muted);
}

.brand-curation {
  padding-block: 4rem;
  border-top: 1px solid var(--line);
}

.bestsellers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-inline: var(--gutter);
}

.scent-navigation {
  padding-block: 2rem;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.01);
}

.scent-shortcuts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  padding-inline: var(--gutter);
}

.scent-chip {
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.6rem 1.25rem;
  border-radius: 2rem;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.scent-chip:hover {
  background: var(--bg);
  border-color: var(--accent-soft);
  color: var(--accent-soft);
  transform: translateY(-1px);
}

.brand-card-story {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.75rem;
  margin-block: 0.5rem;
  color: var(--muted);
  line-height: 1.4;
}

/* M-Pesa Checkout Flow */
.checkout-options {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.mpesa-checkout-box {
  display: grid;
  gap: 1rem;
  background: rgba(255, 255, 255, 0.02);
  padding: 1rem;
  border: 1px solid var(--line);
}

.mpesa-form {
  display: grid;
  gap: 0.75rem;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.mpesa-form label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
}

.mpesa-form .input-group {
  display: flex;
  gap: 0.5rem;
}

.mpesa-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--line);
  color: var(--text);
  padding: 0.75rem;
  font-size: 1rem;
  font-family: inherit;
}

.mpesa-form small {
  font-size: 0.7rem;
  color: var(--muted);
  font-style: italic;
}

.payment-status-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 7, 6, 0.96);
  display: flex;
  opacity: 0;
  pointer-events: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: opacity 0.3s ease;
}

.payment-status-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.status-content {
  display: grid;
  gap: 1.5rem;
  justify-items: center;
}

.spinner {
  width: 40px;
  height: 40px;
  border: 3px solid var(--line);
  border-top-color: var(--accent-soft);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

[data-status-text] {
  font-size: 1rem;
  font-weight: 500;
  color: var(--text);
}

@media (max-width: 768px) {
  .mpesa-form .input-group {
    flex-direction: column;
  }
}

/* Homepage Specifics */
.path-section {
  background: rgba(255, 255, 255, 0.01);
  border-top: 1px solid var(--line);
  padding-block: 5rem;
}

.path-section .section-head {
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.home-page .featured-section .section-head,
.home-page .featured-section .featured-grid,
.home-page .brand-showcase .section-head,
.home-page .brand-showcase .brand-grid,
.home-page .service-pillars,
.home-page .trust-strip {
  width: min(100%, 1200px);
  margin-inline: auto;
}

.home-page .service-pillars,
.home-page .trust-strip {
  padding-inline: 0;
}

.home-page .service-pillars {
  padding-inline: var(--gutter);
}

.home-page .path-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr)) !important;
  gap: 1.5rem !important;
  margin-top: 3rem;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.path-grid a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
  padding: 3.5rem 2.5rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.path-grid a:hover {
  background: rgba(214, 174, 103, 0.06);
  border-color: var(--accent-soft);
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.path-grid a span {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  color: var(--accent-soft);
  letter-spacing: -0.01em;
}

.path-grid a strong {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--muted);
  line-height: 1.6;
  max-width: 25ch;
  margin-inline: auto;
}

.hero-rotation {
  position: relative;
  min-height: max(640px, calc(100vh - 120px));
  display: flex;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 5vw, 4rem);
  width: min(100%, 1400px);
  margin-inline: auto;
  padding-inline: clamp(1.5rem, 8vw, 8rem);
  opacity: 0;
  transition: opacity 0.8s ease;
}

.hero-slide.active {
  position: relative;
  opacity: 1;
}

.hero-copy {
  z-index: 2;
  max-width: min(56%, 700px);
  padding-block: clamp(2.4rem, 5vw, 4.2rem);
}

.hero-copy h1 {
  font-size: clamp(3rem, 10vw, 5.8rem);
  line-height: 1.02;
  margin-block: 0.75rem 1.5rem;
  font-weight: 700;
}

.hero-copy p {
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
  max-width: 45ch;
}

.hero-price {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 38px;
  padding: 0.45rem 0.7rem;
  border: 1px solid var(--line);
  color: var(--accent-soft);
  background: rgba(255, 255, 255, 0.025);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

.hero-rotation .hero-actions {
  position: relative;
  z-index: 3;
  margin-top: 0.2rem;
}

.hero-rotation [data-hero-add] {
  min-width: 148px;
  box-shadow: 0 14px 34px rgba(214, 174, 103, 0.18);
}

.hero-art {
  position: absolute;
  right: clamp(0.5rem, 3vw, 2.8rem);
  top: 50%;
  transform: translateY(-50%);
  width: min(45vw, 560px);
  max-width: 46%;
  height: min(82%, 620px);
  z-index: 1;
  object-fit: contain;
  object-position: center right;
  mask-image: linear-gradient(to right, transparent 4%, black 25%, black 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-art.loaded {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
