:root {
  --color-ink: #181310;
  --color-soft-ink: #5f554d;
  --color-muted: #8a7e73;
  --color-line: #eadfd7;
  --color-page: #fcf8f4;
  --color-surface: #fffdfb;
  --color-rose: #f4e7e1;
  --color-cream: #f7efe9;
  --color-gold: #a98149;
  --color-dark: #060708;
  --shadow-soft: 0 18px 44px rgba(88, 62, 43, 0.08);
  --container: min(1350px, calc(100vw - 96px));
  --font-display: "Didot", "Bodoni 72", "Bodoni MT", "Cormorant Garamond", Georgia, serif;
  --font-ui: Inter, "Segoe UI", Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: var(--font-ui);
  font-size: 15px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

.screen-reader-text,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  top: 12px;
  left: 12px;
  z-index: 200;
  width: auto;
  height: auto;
  padding: 10px 14px;
  clip: auto;
  background: var(--color-dark);
  color: #fff;
}

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.announcement-bar {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 31px;
  padding: 7px 84px;
  background: #e7d9d0;
  color: #40382f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.announcement-currency {
  position: absolute;
  right: 34px;
  top: 50%;
  transform: translateY(-50%);
}

.announcement-currency::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 251, 247, 0.96);
  border-bottom: 1px solid rgba(233, 221, 212, 0.85);
  backdrop-filter: blur(14px);
}

.header-inner {
  width: var(--container);
  min-height: 92px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
}

.brand,
.custom-logo-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
}

.brand-slot {
  display: flex;
  justify-content: center;
  grid-column: 2;
}

.custom-logo-link img,
.brand-logo-img {
  width: 242px;
  height: 86px;
  max-width: 100%;
  object-fit: contain;
}

.brand-image,
.custom-logo-link {
  width: 260px;
  height: 90px;
  overflow: visible;
}

.primary-nav {
  grid-column: 1;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: #26211d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.nav-list a:hover,
.nav-list a:focus-visible,
.footer-columns a:hover,
.footer-columns a:focus-visible {
  color: var(--color-gold);
}

.header-actions {
  grid-column: 3;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 32px;
  min-height: 38px;
  padding: 0;
  color: var(--color-ink);
  background: transparent;
  border: 0;
}

.icon-button:hover,
.icon-button:focus-visible {
  color: var(--color-gold);
  outline: 0;
}

.header-action-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.45px;
  text-transform: uppercase;
}

.menu-toggle {
  display: none;
}

.cart-count {
  position: absolute;
  top: 3px;
  right: -6px;
  display: none;
  place-items: center;
  min-width: 17px;
  height: 17px;
  padding: 0 4px;
  border-radius: 999px;
  background: #a9824a;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
}

.search-panel {
  border-top: 1px solid var(--color-line);
  background: var(--color-surface);
}

.search-form {
  width: var(--container);
  margin: 0 auto;
  padding: 16px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.search-form input,
.mobile-search input,
.newsletter-form input {
  width: 100%;
  border: 1px solid rgba(24, 19, 16, 0.16);
  background: rgba(255, 255, 255, 0.88);
  color: var(--color-ink);
  border-radius: 0;
  outline: 0;
}

.search-form input {
  min-height: 46px;
  padding: 0 16px;
}

.search-form button,
.newsletter-form button {
  border: 0;
  background: var(--color-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.search-form button {
  padding: 0 22px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 48px;
  padding: 0 25px;
  border-radius: 0;
  border: 1px solid transparent;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.15px;
  text-transform: uppercase;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.button .icon,
.newsletter-form .icon,
.curated-actions .icon,
.editorial-strip .icon,
.category-image-card span .icon {
  width: 15px;
  height: 15px;
}

.button:hover,
.button:focus-visible,
.curated-card:hover .curated-image img,
.category-image-card:hover img {
  transform: translateY(-1px);
}

.button-gold {
  background: var(--color-gold);
  color: #fff;
}

.button-outline {
  border-color: #cdbdaa;
  background: transparent;
  color: var(--color-ink);
}

.scentiva-hero {
  min-height: 520px;
  background-image: linear-gradient(90deg, rgba(251, 247, 243, 0.96) 0%, rgba(251, 247, 243, 0.82) 27%, rgba(251, 247, 243, 0.18) 49%, rgba(251, 247, 243, 0) 68%), var(--hero-image);
  background-size: cover;
  background-position: center right;
}

.scentiva-hero-inner {
  width: var(--container);
  min-height: 520px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.scentiva-hero-copy {
  max-width: 430px;
  padding-bottom: 22px;
}

.scentiva-hero-copy p,
.brand-strip-head span,
.product-brand {
  margin: 0;
  color: #40382f;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.9px;
  text-transform: uppercase;
}

.scentiva-hero-copy h1 {
  max-width: 410px;
  margin: 20px 0 19px;
  font-family: var(--font-display);
  font-size: 62px;
  font-weight: 500;
  line-height: 1.04;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scentiva-hero-copy > span {
  display: block;
  max-width: 330px;
  margin-bottom: 29px;
  color: #544b43;
  font-size: 13px;
  line-height: 1.75;
}

.home-benefits {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: rgba(255, 253, 251, 0.8);
}

.home-benefit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 116px;
  padding: 18px 26px;
  border-right: 1px solid var(--color-line);
}

.home-benefit:last-child {
  border-right: 0;
}

.home-benefit .icon,
.product-benefits .icon {
  width: 28px;
  height: 28px;
  color: #a58b69;
  stroke-width: 1.45;
}

.home-benefit strong,
.home-benefit span,
.product-benefits strong,
.product-benefits span {
  display: block;
}

.home-benefit strong,
.product-benefits strong {
  color: #27211c;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.home-benefit span,
.product-benefits span {
  margin-top: 3px;
  color: var(--color-soft-ink);
  font-size: 11px;
  line-height: 1.45;
}

.home-section,
.scent-quiz,
.brand-strip,
.editorial-strip,
.product-page {
  width: var(--container);
  margin-left: auto;
  margin-right: auto;
}

.home-section {
  padding: 54px 0 42px;
}

.section-title-centered {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
}

.section-title-centered h2,
.related-products h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
}

.section-title-centered a {
  position: absolute;
  right: 0;
  color: var(--color-soft-ink);
  font-size: 11px;
  font-weight: 800;
}

.category-image-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 32px;
}

.category-image-card {
  display: grid;
  justify-items: center;
  text-align: center;
}

.category-image-card img {
  width: 100%;
  aspect-ratio: 1 / 1.12;
  object-fit: cover;
  border-radius: 999px 999px 0 0;
  background: #f2e8df;
  box-shadow: 0 12px 30px rgba(84, 58, 41, 0.08);
  filter: saturate(0.72) sepia(0.08) brightness(1.05) contrast(0.94);
  transition: transform 220ms ease;
}

.category-image-card strong {
  margin-top: 19px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.category-image-card span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.75px;
  text-transform: uppercase;
}

.scent-quiz {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(360px, 1.65fr);
  align-items: stretch;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
  background: #fffaf7;
}

.scent-quiz-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 58px 40px;
}

.scent-quiz-copy h2,
.fragrance-notes h2,
.about-fragrance h2 {
  max-width: 380px;
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scent-quiz-copy p,
.about-fragrance p {
  max-width: 320px;
  margin: 0 0 28px;
  color: var(--color-soft-ink);
  font-size: 13px;
  line-height: 1.75;
}

.scent-quiz > img {
  width: 100%;
  height: 100%;
  min-height: 295px;
  object-fit: cover;
  object-position: center;
}

.brand-strip {
  padding: 38px 0 34px;
  border-bottom: 1px solid var(--color-line);
}

.brand-strip-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.brand-strip-head a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid #d3c6b8;
  color: #5b5048;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.brand-list {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1.2fr 1.35fr 1fr 1fr 1.45fr;
  gap: 26px;
  align-items: center;
}

.brand-logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
}

.brand-logo-item img {
  width: 100%;
  max-width: 170px;
  max-height: 42px;
  object-fit: contain;
  filter: contrast(1.05);
}

.brand-logo-item:last-child img {
  max-height: 58px;
}

.curated-section {
  padding-top: 44px;
}

.curated-rail {
  position: relative;
}

.curated-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.curated-card {
  background: rgba(255, 253, 251, 0.88);
  border: 1px solid rgba(233, 221, 212, 0.7);
  box-shadow: 0 10px 24px rgba(84, 58, 41, 0.035);
}

.curated-image {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1.22;
  overflow: hidden;
  background: #f4ece6;
}

.curated-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) sepia(0.06) brightness(1.05) contrast(0.95);
  transition: transform 220ms ease;
}

.curated-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(253, 246, 240, 0.18);
  pointer-events: none;
}

.curated-card:hover .curated-image img {
  transform: scale(1.025);
}

.curated-body {
  padding: 18px 18px 16px;
}

.curated-body span {
  display: block;
  min-height: 13px;
  color: #5d534b;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.curated-body > a {
  display: block;
  min-height: 34px;
  margin-top: 8px;
  color: #17120f;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.35;
  text-transform: uppercase;
}

.curated-body > strong {
  display: block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 800;
}

.curated-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.curated-actions a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #5f554d;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.curated-actions button {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  padding: 0;
  color: var(--color-muted);
  background: transparent;
  border: 0;
}

.curated-actions button .icon {
  width: 16px;
  height: 16px;
}

.rail-arrow {
  position: absolute;
  top: 40%;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-muted);
}

.rail-prev {
  left: -44px;
  transform: rotate(180deg);
}

.rail-next {
  right: -44px;
}

.editorial-strip {
  display: grid;
  grid-template-columns: 1.02fr 1fr 1.85fr 1.5fr;
  min-height: 185px;
  margin-bottom: 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.editorial-strip article {
  min-height: 185px;
  border-right: 1px solid var(--color-line);
}

.editorial-strip article:last-child {
  border-right: 0;
}

.editorial-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 32px;
  background: rgba(255, 253, 251, 0.72);
}

.editorial-gift,
.editorial-sample {
  background-image: linear-gradient(90deg, rgba(255, 253, 251, 0.88), rgba(255, 253, 251, 0.62)), var(--editorial-image);
  background-size: cover;
  background-position: center;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 185px;
  object-fit: cover;
  filter: saturate(0.68) sepia(0.1) brightness(1.08) contrast(0.92);
}

.editorial-strip h2 {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.editorial-strip p {
  max-width: 230px;
  margin: 0 0 18px;
  color: var(--color-soft-ink);
  font-size: 12px;
  line-height: 1.6;
}

.editorial-strip a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #5b5048;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.newsletter-band {
  position: relative;
  border-bottom: 1px solid var(--color-line);
  background: #fffaf7;
}

.newsletter-band::after {
  content: "";
  position: absolute;
  right: 10%;
  bottom: 0;
  width: 170px;
  height: 130px;
  background: var(--newsletter-image, url("../images/quiz-discovery-set.jpg")) center right / 430px auto no-repeat;
  opacity: 0.18;
  pointer-events: none;
}

.newsletter-band-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  min-height: 120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(360px, 0.72fr);
  align-items: center;
  gap: 44px;
}

.newsletter-band h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.newsletter-band p {
  max-width: 420px;
  margin: 0;
  color: var(--color-soft-ink);
  font-size: 13px;
  line-height: 1.6;
}

.newsletter-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  position: relative;
}

.newsletter-form input {
  min-height: 46px;
  padding: 0 16px;
}

.newsletter-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 46px;
  padding: 0 22px;
  background: var(--color-gold);
  color: #fff;
}

.newsletter-message {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  color: var(--color-gold);
  font-size: 12px;
}

.site-footer {
  background: #fffaf7;
  color: var(--color-ink);
}

.footer-inner {
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(230px, 0.75fr) 1.65fr;
  gap: 90px;
  padding: 47px 0 38px;
}

.footer-brand {
  text-align: left;
}

.brand-footer.brand-image {
  width: 224px;
  height: 112px;
  justify-content: flex-start;
  margin-bottom: 16px;
}

.brand-footer .brand-logo-img {
  width: 220px;
  height: 110px;
}

.footer-brand p {
  max-width: 250px;
  margin: 0 0 22px;
  color: var(--color-soft-ink);
  font-size: 12px;
  line-height: 1.75;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border: 1px solid transparent;
  border-radius: 50%;
  color: #8a7356;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: rgba(169, 129, 73, 0.42);
  color: var(--color-gold);
  transform: translateY(-1px);
}

.social-icon {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-icon-facebook,
.social-icon-tiktok,
.social-icon-whatsapp {
  fill: currentColor;
  stroke: none;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 140;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #1faf64;
  color: #fff;
  box-shadow: 0 16px 36px rgba(31, 175, 100, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(31, 175, 100, 0.4);
}

.floating-whatsapp .social-icon {
  width: 28px;
  height: 28px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px;
}

.footer-columns h3 {
  margin: 0 0 16px;
  color: #5b5048;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-columns a {
  display: block;
  margin-bottom: 8px;
  color: var(--color-soft-ink);
  font-size: 12px;
}

.footer-menu-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal {
  width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 0 22px;
  border-top: 1px solid var(--color-line);
  color: #8d8176;
  font-size: 11px;
}

.footer-legal-menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-legal-menu li {
  display: contents;
}

.mobile-panel {
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 150;
  width: min(390px, 92vw);
  padding: 22px;
  background: var(--color-surface);
  box-shadow: -30px 0 60px rgba(0, 0, 0, 0.2);
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--color-line);
}

.mobile-panel-title {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: 4px;
}

.mobile-nav-list {
  margin: 22px 0;
  padding: 0;
  list-style: none;
}

.mobile-nav-list a {
  display: flex;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-line);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-search input {
  min-height: 46px;
  padding: 0 14px;
}

.mobile-bottom-nav {
  display: none;
}

.mobile-bottom-menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-bottom-menu li {
  display: contents;
}

.content-wrap {
  width: var(--container);
  margin: 0 auto;
  padding: 70px 0;
}

.archive-heading h1,
.page-content h1,
.single-content h1,
.empty-state h1 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.05;
}

.post-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.post-card {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
}

.post-card-media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: 20px;
}

.entry-meta {
  margin: 0 0 10px;
  color: var(--color-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.post-card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.1;
}

.post-card p,
.entry-content {
  color: var(--color-soft-ink);
}

.entry-content a,
.text-link {
  color: var(--color-gold);
  font-weight: 800;
}

.comments-area {
  margin-top: 52px;
  padding-top: 34px;
  border-top: 1px solid var(--color-line);
}

.comment-form input:not([type="submit"]),
.comment-form textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: 12px;
}

.comment-form input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  min-height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 0;
  background: var(--color-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  overflow: hidden;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  text-align: left;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce div.product .product_title {
  color: var(--color-ink);
  font-family: var(--font-display);
  letter-spacing: 0;
}

.woocommerce ul.products li.product .price,
.woocommerce div.product p.price {
  color: var(--color-ink);
  font-weight: 800;
}

.product-page {
  padding: 42px 0 0;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
  color: #9a8d82;
  font-size: 11px;
}

.product-breadcrumbs strong {
  color: var(--color-soft-ink);
  font-weight: 600;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1.3fr) minmax(380px, 0.86fr);
  gap: 58px;
  align-items: start;
}

.product-gallery {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 20px;
}

.product-thumbs {
  display: grid;
  gap: 16px;
}

.product-thumbs button {
  width: 92px;
  height: 106px;
  padding: 0;
  overflow: hidden;
  border: 1px solid transparent;
  background: #f6eee9;
}

.product-thumbs button.is-active {
  border-color: #c8b7a3;
}

.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-main-image {
  position: relative;
  overflow: hidden;
  min-height: 640px;
  background: #f7eeee;
}

.product-main-image img {
  width: 100%;
  height: 100%;
  min-height: 640px;
  object-fit: cover;
}

.product-main-image > span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  padding: 8px 12px;
  background: rgba(255, 253, 251, 0.86);
  color: #a9824a;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.product-expand {
  position: absolute;
  right: 20px;
  top: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: rgba(255, 253, 251, 0.75);
}

.product-summary {
  padding-top: 4px;
}

.product-summary h1 {
  margin: 16px 0 2px;
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: 0;
  text-transform: uppercase;
}

.product-subtitle {
  display: block;
  margin-bottom: 18px;
  color: var(--color-soft-ink);
  font-size: 17px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}

.product-rating .star-rating {
  float: none;
  width: 6.4em;
  margin: 0;
  color: #0c0c0d;
  font-size: 14px;
}

.product-rating > span {
  color: #0c0c0d;
  font-size: 15px;
  letter-spacing: 2px;
}

.product-rating a,
.product-rating strong {
  color: var(--color-ink);
  font-size: 12px;
}

.product-summary-text {
  max-width: 440px;
  margin: 0 0 28px;
  color: var(--color-soft-ink);
  font-size: 14px;
  line-height: 1.75;
}

.product-summary-text p {
  margin: 0 0 12px;
}

.product-summary-text p:last-child {
  margin-bottom: 0;
}

.product-cart-form {
  max-width: 440px;
}

.product-cart-form form.cart,
.product-cart-form .woocommerce-variation-add-to-cart {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
}

.product-cart-form form.cart {
  margin: 0;
}

.product-cart-form .quantity {
  display: inline-flex;
  min-height: 54px;
}

.product-cart-form .qty {
  width: 82px;
  min-height: 54px;
  padding: 0 12px;
  border: 1px solid var(--color-line);
  background: #fffaf7;
  color: var(--color-ink);
  text-align: center;
  font-weight: 800;
}

.product-cart-form .single_add_to_cart_button,
.product-cart-form .added_to_cart,
.product-cart-form .button {
  flex: 1 1 220px;
  min-height: 54px;
  margin: 0;
  padding: 0 28px;
  border: 1px solid var(--color-dark);
  border-radius: 0;
  background: var(--color-dark);
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.product-cart-form .added_to_cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--color-ink);
}

.product-cart-form .variations {
  width: 100%;
  margin: 0 0 14px;
  border-collapse: collapse;
}

.product-cart-form .variations tr {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.product-cart-form .variations th,
.product-cart-form .variations td {
  display: block;
  padding: 0;
  text-align: left;
}

.product-cart-form .variations label {
  color: #443b34;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.product-cart-form .variations select {
  width: 100%;
  min-height: 48px;
  padding: 0 14px;
  border: 1px solid var(--color-line);
  background: #fffaf7;
  color: var(--color-ink);
}

.product-cart-form .reset_variations {
  display: inline-flex;
  margin-top: 8px;
  color: var(--color-gold);
  font-size: 11px;
  font-weight: 800;
}

.product-cart-form .woocommerce-variation {
  width: 100%;
  color: var(--color-soft-ink);
  font-size: 13px;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 440px;
  margin-bottom: 18px;
}

.product-price {
  font-size: 24px;
  font-weight: 900;
}

.stock-dot {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #517d47;
  font-size: 12px;
}

.stock-dot::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #30a15e;
}

.stock-dot.is-out-of-stock {
  color: #9f3f35;
}

.stock-dot.is-out-of-stock::before {
  background: #c24538;
}

.product-benefits {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 70px 0 58px;
  padding: 23px 0;
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.product-benefits div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 24px;
  border-right: 1px solid var(--color-line);
}

.product-benefits div:last-child {
  border-right: 0;
}

.fragrance-details {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  gap: 70px;
  align-items: center;
  padding: 0 38px 62px;
  border-bottom: 1px solid var(--color-line);
}

.fragrance-notes {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 56px;
}

.fragrance-notes h2 {
  grid-column: 1 / -1;
  margin-bottom: 8px;
  font-size: 26px;
}

.fragrance-notes div strong,
.about-fragrance span {
  display: block;
  margin-bottom: 10px;
  color: #443b34;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.fragrance-notes div span,
.product-accordion p {
  color: var(--color-soft-ink);
  font-size: 13px;
  line-height: 1.65;
}

.fragrance-details img {
  width: 100%;
  aspect-ratio: 1.45 / 1;
  object-fit: cover;
}

.about-fragrance {
  display: grid;
  grid-template-columns: 0.94fr 1fr;
  gap: 70px;
  padding: 54px 38px 62px;
  border-bottom: 1px solid var(--color-line);
}

.about-fragrance h2 {
  font-size: 26px;
}

.about-fragrance p {
  max-width: 520px;
  margin-bottom: 18px;
}

.about-fragrance a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  color: var(--color-gold);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
}

.about-fragrance a .icon {
  width: 14px;
  height: 14px;
}

.product-accordion {
  border-top: 1px solid var(--color-line);
}

.product-accordion details {
  border-bottom: 1px solid var(--color-line);
}

.product-accordion summary {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding-right: 36px;
  color: #443b34;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.9px;
  text-transform: uppercase;
  list-style: none;
  cursor: pointer;
}

.product-accordion summary::-webkit-details-marker {
  display: none;
}

.product-accordion summary::after {
  content: "+";
  position: absolute;
  right: 0;
  font-size: 17px;
  font-weight: 400;
}

.product-accordion details[open] summary::after {
  content: "-";
}

.product-accordion p {
  margin: 0;
  padding: 0 0 20px;
}

.product-tab-panel {
  padding: 0 0 20px;
  color: var(--color-soft-ink);
  font-size: 13px;
  line-height: 1.65;
}

.product-tab-panel h2,
.product-tab-panel h3 {
  margin: 0 0 12px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
}

.product-tab-panel p,
.product-tab-panel table {
  margin: 0 0 14px;
}

.product-tab-panel table {
  width: 100%;
  border-collapse: collapse;
}

.product-tab-panel th,
.product-tab-panel td {
  padding: 10px 0;
  border-bottom: 1px solid var(--color-line);
  text-align: left;
}

.product-tab-panel input,
.product-tab-panel textarea {
  width: 100%;
  border: 1px solid var(--color-line);
  background: var(--color-surface);
  padding: 12px;
}

.related-products {
  padding: 44px 0 62px;
}

.related-products h2 {
  margin-bottom: 30px;
  font-size: 19px;
}

@media (max-width: 1180px) {
  :root {
    --container: min(1040px, calc(100vw - 42px));
  }

  .primary-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 1;
    justify-self: start;
  }

  .header-inner {
    grid-template-columns: 1fr auto 1fr;
  }

  .category-image-grid {
    gap: 20px;
  }

  .brand-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .curated-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  :root {
    --container: min(430px, calc(100vw - 32px));
  }

  body {
    padding-bottom: 0;
    background: #fffaf7;
  }

  .announcement-bar {
    min-height: 42px;
    padding: 8px 54px;
    background: #07080a;
    color: #fff;
    text-align: center;
    font-size: 9px;
    line-height: 1.45;
    letter-spacing: 1px;
  }

  .announcement-currency {
    display: none;
  }

  .site-header {
    background: #fffaf7;
  }

  .header-inner {
    width: calc(100vw - 36px);
    min-height: 84px;
    gap: 8px;
  }

  .brand-image,
  .custom-logo-link {
    width: 154px;
    height: 68px;
  }

  .brand-logo-img,
  .custom-logo-link img {
    width: 154px;
    height: 68px;
  }

  .header-actions {
    gap: 5px;
  }

  .header-action-label,
  .hide-small {
    display: none;
  }

  .cart-count {
    display: grid;
  }

  .icon-button {
    min-width: 34px;
    min-height: 38px;
  }

  .icon {
    width: 21px;
    height: 21px;
  }

  .search-form {
    grid-template-columns: 1fr;
    width: calc(100vw - 32px);
    padding: 12px 0;
  }

  .search-form button {
    min-height: 42px;
  }

  .scentiva-hero {
    min-height: 518px;
    background-image: linear-gradient(180deg, rgba(255, 250, 247, 0.97) 0%, rgba(255, 250, 247, 0.86) 38%, rgba(255, 250, 247, 0) 68%), var(--hero-image);
    background-size: auto 100%;
    background-position: 62% bottom;
  }

  .scentiva-hero-inner {
    width: calc(100vw - 40px);
    min-height: 518px;
    align-items: flex-start;
    padding-top: 28px;
  }

  .scentiva-hero-copy {
    max-width: 265px;
    padding-bottom: 0;
  }

  .scentiva-hero-copy p {
    font-size: 9px;
    letter-spacing: 1.3px;
  }

  .scentiva-hero-copy h1 {
    max-width: 260px;
    margin: 10px 0 11px;
    font-size: 35px;
    line-height: 1.12;
  }

  .scentiva-hero-copy > span {
    max-width: 230px;
    margin-bottom: 16px;
    font-size: 11px;
    line-height: 1.65;
  }

  .button {
    min-height: 39px;
    padding: 0 17px;
    font-size: 9px;
  }

  .home-benefits {
    width: var(--container);
    margin: -1px auto 0;
    grid-template-columns: 1fr;
    border: 1px solid var(--color-line);
    border-left: 0;
    border-right: 0;
    background: #fffaf7;
  }

  .home-benefit {
    justify-content: flex-start;
    min-height: 66px;
    padding: 12px 16px;
    border-right: 0;
    border-bottom: 1px solid var(--color-line);
  }

  .home-benefit:nth-child(3) {
    display: none;
  }

  .home-benefit:last-child {
    border-bottom: 0;
  }

  .home-benefit .icon {
    width: 25px;
    height: 25px;
  }

  .home-benefit strong,
  .product-benefits strong {
    font-size: 9px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .home-benefit strong {
    max-width: none;
  }

  .product-benefits strong {
    max-width: 74px;
  }

  .home-benefit span,
  .product-benefits span {
    font-size: 10px;
  }

  .home-section {
    padding: 34px 0 27px;
  }

  .section-title-centered {
    justify-content: space-between;
    margin-bottom: 22px;
  }

  .section-title-centered h2 {
    font-size: 17px;
    letter-spacing: 1px;
    text-align: left;
  }

  .section-title-centered a {
    position: static;
    font-size: 10px;
  }

  .category-image-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 14px;
  }

  .category-image-card img {
    aspect-ratio: 1 / 1;
    border-radius: 999px;
  }

  .category-image-card strong {
    margin-top: 10px;
    font-size: 9px;
  }

  .category-image-card span {
    display: none;
  }

  .scent-quiz {
    width: var(--container);
    grid-template-columns: 1fr;
    border-top: 1px solid var(--color-line);
    border-bottom: 0;
  }

  .scent-quiz-copy {
    padding: 30px 0 18px;
  }

  .scent-quiz-copy h2 {
    max-width: 285px;
    margin-bottom: 10px;
    font-size: 24px;
  }

  .scent-quiz-copy p {
    max-width: 270px;
    margin-bottom: 17px;
    font-size: 11px;
  }

  .scent-quiz > img {
    min-height: 178px;
    border-radius: 2px;
  }

  .brand-strip {
    padding: 31px 0 25px;
  }

  .brand-strip-head {
    margin-bottom: 20px;
  }

  .brand-strip-head span {
    font-size: 9px;
  }

  .brand-strip-head a {
    min-height: auto;
    padding: 0;
    border: 0;
    font-size: 10px;
    text-transform: none;
  }

  .brand-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .brand-logo-item {
    min-height: 38px;
  }

  .brand-logo-item img {
    max-width: 112px;
    max-height: 32px;
  }

  .brand-logo-item:last-child {
    display: none;
  }

  .curated-section {
    padding-top: 31px;
  }

  .curated-rail {
    margin-right: -16px;
  }

  .curated-grid {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    padding-right: 16px;
    scroll-snap-type: x mandatory;
  }

  .curated-card {
    flex: 0 0 144px;
    scroll-snap-align: start;
  }

  .curated-body {
    padding: 12px 10px 12px;
  }

  .curated-body > a {
    min-height: 43px;
    font-size: 9px;
  }

  .curated-actions {
    margin-top: 11px;
  }

  .curated-actions a {
    font-size: 8px;
  }

  .rail-arrow {
    display: grid;
    top: 34%;
    width: 28px;
    height: 28px;
    background: rgba(255, 250, 247, 0.8);
  }

  .rail-prev {
    left: -8px;
  }

  .rail-next {
    right: 0;
  }

  .editorial-strip {
    width: var(--container);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    margin-top: 8px;
    border: 1px solid var(--color-line);
  }

  .editorial-strip article {
    min-height: 154px;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .editorial-strip article:nth-child(even) {
    border-right: 0;
  }

  .editorial-strip article:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .editorial-image {
    display: none;
  }

  .editorial-copy {
    padding: 18px 14px;
  }

  .editorial-gift {
    display: none;
  }

  .editorial-strip h2 {
    font-size: 9px;
  }

  .editorial-strip p {
    font-size: 10px;
  }

  .newsletter-band {
    margin-top: 24px;
  }

  .newsletter-band::after {
    right: 6px;
    width: 108px;
    height: 112px;
    background-size: 320px auto;
  }

  .newsletter-band-inner {
    width: var(--container);
    min-height: 188px;
    grid-template-columns: 1fr;
    gap: 16px;
    align-content: center;
    padding: 25px 0;
  }

  .newsletter-band h2 {
    font-size: 19px;
  }

  .newsletter-band p {
    max-width: 260px;
    font-size: 11px;
  }

  .newsletter-form {
    grid-template-columns: 1fr auto;
    max-width: 330px;
  }

  .newsletter-form input {
    min-height: 42px;
    padding: 0 12px;
    font-size: 11px;
  }

  .newsletter-form button {
    min-height: 42px;
    padding: 0 13px;
    font-size: 8px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 76px;
    width: 50px;
    height: 50px;
  }

  .floating-whatsapp .social-icon {
    width: 25px;
    height: 25px;
  }

  .site-footer {
    display: none;
  }

  .mobile-bottom-nav {
    position: static;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    min-height: 66px;
    padding: 7px 8px 8px;
    border-top: 1px solid var(--color-line);
    background: rgba(255, 250, 247, 0.96);
    backdrop-filter: blur(12px);
  }

  .mobile-bottom-nav a {
    display: grid;
    place-items: center;
    gap: 2px;
    color: #76685d;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  .mobile-bottom-nav .icon {
    width: 20px;
    height: 20px;
  }

  body.single-product {
    padding-bottom: 0;
  }

  body.single-product .mobile-bottom-nav {
    display: none;
  }

  .content-wrap {
    padding: 42px 0;
  }

  .post-list {
    grid-template-columns: 1fr;
  }

  .archive-heading h1,
  .page-content h1,
  .single-content h1,
  .empty-state h1 {
    font-size: 36px;
  }

  .product-page {
    width: 100%;
    padding-top: 0;
  }

  .product-breadcrumbs {
    display: none;
  }

  .product-hero-grid {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .product-gallery {
    display: block;
  }

  .product-thumbs,
  .product-expand,
  .product-main-image > span {
    display: none;
  }

  .product-main-image {
    min-height: auto;
    aspect-ratio: 1 / 0.92;
    background: #f7eeee;
  }

  .product-main-image img {
    min-height: 0;
    height: 100%;
  }

  .product-summary {
    width: var(--container);
    margin: 0 auto;
    padding: 28px 0 22px;
  }

  .product-summary h1 {
    margin-top: 13px;
    font-size: 30px;
  }

  .product-subtitle {
    font-size: 14px;
  }

  .product-rating {
    gap: 9px;
  }

  .product-rating span {
    font-size: 12px;
    letter-spacing: 1px;
  }

  .product-summary-text {
    font-size: 12px;
    line-height: 1.75;
  }

  .product-price {
    font-size: 21px;
  }

  .product-cart-form {
    max-width: none;
  }

  .product-cart-form form.cart,
  .product-cart-form .woocommerce-variation-add-to-cart {
    gap: 10px;
  }

  .product-cart-form .quantity,
  .product-cart-form .qty,
  .product-cart-form .single_add_to_cart_button,
  .product-cart-form .added_to_cart,
  .product-cart-form .button {
    min-height: 48px;
  }

  .product-cart-form .qty {
    width: 72px;
  }

  .product-benefits {
    width: var(--container);
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    margin: 0 auto 26px;
    padding: 18px 0;
  }

  .product-benefits div {
    display: grid;
    justify-items: center;
    text-align: center;
    gap: 7px;
    padding: 0;
    border-right: 0;
  }

  .product-benefits .icon {
    width: 23px;
    height: 23px;
  }

  .product-benefits span {
    display: none;
  }

  .fragrance-details,
  .about-fragrance {
    width: var(--container);
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 0 0 24px;
    border-bottom: 0;
  }

  .fragrance-details img {
    display: none;
  }

  .fragrance-notes {
    display: block;
    border-top: 1px solid var(--color-line);
  }

  .fragrance-notes h2,
  .about-fragrance h2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 52px;
    margin: 0;
    border-bottom: 1px solid var(--color-line);
    font-family: var(--font-ui);
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 1px;
  }

  .fragrance-notes h2::after,
  .about-fragrance h2::after {
    content: "+";
    font-size: 17px;
    font-weight: 400;
  }

  .fragrance-notes div {
    display: none;
  }

  .about-fragrance > div:first-child p,
  .about-fragrance > div:first-child span,
  .about-fragrance > div:first-child a {
    display: none;
  }

  .product-accordion {
    border-top: 0;
  }

  .product-accordion summary {
    min-height: 52px;
  }

  .product-tab-panel {
    font-size: 12px;
  }

  .related-products {
    width: var(--container);
    margin: 0 auto;
    padding: 22px 0 34px;
  }

  .related-products h2 {
    margin-bottom: 16px;
    font-size: 11px;
    font-family: var(--font-ui);
    font-weight: 900;
    letter-spacing: 1px;
  }

  .related-products .curated-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding-right: 0;
  }

  .related-products .curated-card {
    display: grid;
    grid-template-columns: 82px 1fr;
    min-height: 104px;
  }

  .related-products .curated-image {
    aspect-ratio: auto;
    height: 104px;
  }

  .related-products .curated-body {
    padding: 14px;
  }

  .related-products .curated-body > a {
    min-height: 0;
  }
}

@media (max-width: 420px) {
  :root {
    --container: calc(100vw - 34px);
  }

  .scentiva-hero {
    min-height: 508px;
    background-position: 59% bottom;
  }

  .scentiva-hero-inner {
    min-height: 508px;
  }

  .scentiva-hero-copy h1 {
    font-size: 32px;
  }

  .category-image-grid {
    gap: 16px 12px;
  }

  .brand-logo-item img {
    max-width: 104px;
  }
}
