:root {
  --ink: #171714;
  --paper: #f6f3ed;
  --cream: #ece5d8;
  --line: rgba(23, 23, 20, 0.14);
  --gold: #a98249;
  --muted: #6f6c65;
  --white: #fff;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Sora", sans-serif;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
button, input, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { cursor: pointer; }
a { color: inherit; text-decoration: none; }
button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.announcement {
  position: relative;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 20px;
  color: #f8f5ee;
  background: var(--ink);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.parent-site-link {
  position: absolute;
  left: clamp(14px, 3vw, 42px);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 700;
}

.parent-site-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  height: 82px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(20px, 5vw, 76px);
  border: 0;
  background: rgba(246, 243, 237, .94);
  backdrop-filter: blur(12px);
}

.brand {
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-self: center;
  line-height: .9;
  letter-spacing: .18em;
}
.brand span { font-size: 8px; }
.brand strong { margin-top: 6px; font-family: "Sora", sans-serif; font-size: 19px; font-weight: 700; }
.main-nav { display: flex; gap: 22px; font-size: 12px; }
.main-nav a { position: relative; padding: 10px 0; }
.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 3px;
  left: 0;
  height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transition: transform .25s;
}
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }
.header-actions { display: flex; justify-content: flex-end; align-items: center; gap: 10px; }

.featured-carousel {
  width: min(100% - 48px, 1440px);
  margin: 34px auto 0;
}
.featured-carousel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 16px;
}
.featured-carousel-heading .eyebrow { margin: 0 0 7px; }
.featured-carousel-heading h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 620;
  letter-spacing: -.035em;
}
.featured-carousel-status {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.featured-carousel-viewport {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  background: var(--cream);
}
.featured-carousel-track { position: relative; min-height: inherit; touch-action: pan-y; }
.featured-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .8fr);
  align-items: center;
  min-height: inherit;
  overflow: hidden;
  padding: 42px clamp(34px, 6vw, 88px);
  background:
    linear-gradient(105deg, rgba(255, 255, 255, .74), rgba(255, 255, 255, .08) 62%),
    var(--featured-bg);
  opacity: 0;
  visibility: hidden;
  transform: translateX(3%);
  transition: opacity .55s ease, transform .55s ease, visibility 0s linear .55s;
}
.featured-slide::after {
  content: "";
  position: absolute;
  width: 420px;
  aspect-ratio: 1;
  right: -145px;
  bottom: -260px;
  border: 1px solid rgba(23, 23, 20, .1);
  border-radius: 50%;
}
.featured-slide.active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition-delay: 0s;
}
.featured-slide-copy { position: relative; z-index: 2; max-width: 610px; }
.featured-kicker,
.featured-brand {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.featured-kicker { display: flex; align-items: center; gap: 10px; color: #65543b; }
.featured-kicker span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
}
.featured-brand { margin-top: 28px; color: var(--muted); }
.featured-slide h3 {
  max-width: 670px;
  margin: 6px 0 12px;
  font-size: clamp(40px, 5.4vw, 80px);
  font-weight: 580;
  line-height: .98;
  letter-spacing: -.055em;
}
.featured-description {
  max-width: 590px;
  margin: 0;
  color: #4f4d47;
  font-size: 13px;
  line-height: 1.65;
}
.featured-details { display: flex; align-items: center; gap: 18px; margin-top: 20px; }
.featured-details span {
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
}
.featured-details strong { font-size: 18px; font-weight: 650; }
.featured-cta {
  display: inline-flex;
  align-items: center;
  gap: 22px;
  margin-top: 25px;
  padding: 13px 18px;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.featured-cta:hover { background: transparent; color: var(--ink); }
.featured-image-link {
  position: relative;
  z-index: 2;
  display: grid;
  width: 100%;
  height: 350px;
  place-items: center;
}
.featured-image-link img {
  position: relative;
  z-index: 1;
  width: min(100%, 350px);
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 24px rgba(23, 23, 20, .15));
  transition: transform .35s ease;
}
.featured-image-link:hover img { transform: translateY(-5px) scale(1.02); }
.featured-image-glow {
  position: absolute;
  width: min(80%, 290px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, .45);
  box-shadow: 0 0 90px 30px rgba(255, 255, 255, .42);
}
.featured-carousel-controls {
  position: absolute;
  z-index: 3;
  right: clamp(20px, 3vw, 44px);
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.featured-arrow {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(23, 23, 20, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .55);
  color: var(--ink);
  transition: background .2s, border-color .2s;
}
.featured-arrow:hover { border-color: var(--ink); background: var(--white); }
.featured-dots { display: flex; align-items: center; gap: 6px; }
.featured-dot {
  position: relative;
  width: 26px;
  height: 26px;
  padding: 0;
  border: 0;
  background: transparent;
  transition: width .25s ease;
}
.featured-dot::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  margin: auto;
  border-radius: 50%;
  background: rgba(23, 23, 20, .3);
  transition: width .25s ease, height .25s ease, border-radius .25s ease, background .2s;
}
.featured-dot::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3px;
  left: 3px;
  height: 5px;
  border-radius: 5px;
  background: var(--gold-deep, #9b7b42);
  opacity: 0;
  transform: translateY(-50%) scaleX(0);
  transform-origin: left center;
}
.featured-dot.active { width: 38px; }
.featured-dot.active::before {
  width: 32px;
  height: 5px;
  border-radius: 5px;
  background: rgba(23, 23, 20, .2);
}
.featured-carousel.is-autoplaying .featured-dot.active::after {
  opacity: 1;
  animation: featured-dot-progress 6000ms linear forwards;
}
@keyframes featured-dot-progress {
  from { transform: translateY(-50%) scaleX(0); }
  to { transform: translateY(-50%) scaleX(1); }
}
.icon-button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: inherit;
  font-size: 25px;
}
.cart-button {
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--ink);
  background: transparent;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.favorites-button {
  position: relative;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.favorites-button > span:first-child { color: #9b4136; font-size: 23px; line-height: 1; }
.favorites-button.active { border-color: #9b4136; background: #f2dfdc; }
.favorites-button.active > span:first-child { font-size: 0; }
.favorites-button.active > span:first-child::after { content: "♥"; font-size: 23px; }
.favorites-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 20px;
  background: #9b4136;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0;
}
.account-button {
  position: relative;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid transparent;
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}
.account-button:hover,
.account-button[aria-expanded="true"] { border-color: var(--line); background: rgba(255, 255, 255, .45); }
.account-button svg {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}
.account-status-dot {
  position: absolute;
  right: 3px;
  bottom: 3px;
  width: 9px;
  height: 9px;
  border: 2px solid var(--paper);
  border-radius: 50%;
  background: #aaa59b;
}
.account-button.signed-in .account-status-dot { background: #467659; }
.cart-icon {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}
.cart-count {
  display: inline-grid;
  min-width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 20px;
  background: var(--ink);
  color: white;
  font-size: 11px;
}

.search-panel {
  position: fixed;
  z-index: 40;
  top: 116px;
  right: 0;
  left: 0;
  max-height: 0;
  overflow: hidden;
  background: var(--paper);
  box-shadow: 0 18px 50px rgba(0,0,0,.1);
  transition: max-height .35s ease;
}
.search-panel.open { max-height: 260px; }
.search-inner { max-width: 850px; margin: auto; padding: 38px 24px 42px; }
.search-inner label { display: block; margin-bottom: 15px; font-family: "Sora", sans-serif; font-size: 28px; font-weight: 600; }
.search-row { display: flex; align-items: center; margin: 0; border-bottom: 1px solid var(--ink); }
.search-row input { min-width: 0; flex: 1; padding: 15px 0; border: 0; outline: 0; background: transparent; font-size: 16px; }
.search-submit {
  min-width: 104px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.search-submit span:last-child { font-size: 19px; line-height: 1; }
.search-inner p { color: var(--muted); font-size: 12px; }

.collection-hero {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  overflow: hidden;
  padding: 70px clamp(24px, 8vw, 130px);
  background:
    radial-gradient(circle at 79% 40%, rgba(255,255,255,.6) 0 8%, transparent 8.2%),
    linear-gradient(120deg, #d8c6ae, #eee7dd 52%, #c1a881);
}
.collection-hero h1 {
  max-width: 680px;
  margin: 12px 0 22px;
  font-family: "Sora", sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 600;
  line-height: .95;
  letter-spacing: -.045em;
}
.collection-hero > div > p:last-child { max-width: 520px; line-height: 1.7; }
.eyebrow { margin: 0; font-size: 11px; font-weight: 700; letter-spacing: .17em; text-transform: uppercase; }
.hero-bottle { position: relative; width: min(280px, 30vw); height: 360px; justify-self: center; }
.hero-bottle::after {
  content: "";
  position: absolute;
  bottom: -16px;
  left: -25%;
  width: 150%;
  height: 50px;
  border-radius: 50%;
  background: rgba(38, 28, 17, .22);
  filter: blur(14px);
}
.hero-cap {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 34%;
  width: 32%;
  height: 72px;
  background: linear-gradient(90deg, #2f2c28, #60594e 45%, #24211e);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}
.hero-glass {
  position: absolute;
  z-index: 1;
  right: 0;
  bottom: 0;
  left: 0;
  height: 310px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 4px 4px 30px 30px;
  background: linear-gradient(115deg, rgba(255,255,255,.7), rgba(117,73,31,.25) 55%, rgba(255,255,255,.45));
  box-shadow: inset 20px 0 25px rgba(255,255,255,.3), 20px 30px 60px rgba(58,39,20,.25);
  backdrop-filter: blur(4px);
}
.hero-glass i {
  width: 115px;
  height: 82px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(30,24,16,.5);
  background: rgba(246,243,237,.6);
  font-family: "Sora", sans-serif;
  font-size: 30px;
  font-style: normal;
}

.catalog-section { padding: 82px clamp(20px, 5vw, 76px) 110px; }
.catalog-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--line);
}
.breadcrumb { margin: 0 0 18px; color: var(--muted); font-size: 12px; }
.catalog-heading h2 { margin: 0; font-family: "Sora", sans-serif; font-size: clamp(36px, 4vw, 58px); font-weight: 650; }
.catalog-heading > div > p:last-child { color: var(--muted); font-size: 13px; }
.catalog-controls { display: flex; align-items: center; gap: 16px; }
.sort-control { display: flex; align-items: center; gap: 10px; color: var(--muted); font-size: 12px; }
.sort-control select {
  min-width: 200px;
  padding: 12px 34px 12px 12px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}
.filter-trigger { display: none; }
.catalog-categories {
  --category-accent: #b7975a;
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 28px;
  padding: 8px;
  overflow: hidden;
  background: #f7f4ee;
  border: 1px solid #d7d2c9;
  border-radius: 14px;
  box-shadow: 0 12px 34px rgba(28, 25, 20, .07);
  isolation: isolate;
}
.catalog-category-slider {
  position: absolute;
  z-index: -1;
  top: 8px;
  bottom: 8px;
  left: 8px;
  width: calc((100% - 36px) / 3);
  overflow: hidden;
  background: #171714;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(23, 23, 20, .16);
  transform: translateX(0);
  transition: transform .28s cubic-bezier(.22, 1, .36, 1);
}
.catalog-category-slider::after {
  position: absolute;
  right: 18px;
  bottom: 0;
  left: 18px;
  height: 3px;
  background: var(--category-accent);
  border-radius: 3px 3px 0 0;
  content: "";
}
.catalog-categories[data-active-category="bestsellers"] .catalog-category-slider {
  transform: translateX(calc(100% + 10px));
}
.catalog-categories[data-active-category="promotions"] .catalog-category-slider {
  transform: translateX(calc(200% + 20px));
}
.catalog-categories[data-active-category="none"] .catalog-category-slider {
  opacity: 0;
}
.catalog-category {
  position: relative;
  z-index: 1;
  min-width: 0;
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 20px;
  border: 0;
  border-radius: 10px;
  background: #edebe7;
  color: var(--ink);
  text-align: left;
  transition: color .22s ease, background-color .22s ease, transform .22s ease, box-shadow .22s ease;
}
.catalog-category-label {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 11px;
}
.catalog-category-label > span {
  font-size: 13px;
  font-weight: 650;
  letter-spacing: .02em;
}
.catalog-category-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform .22s ease;
}
.catalog-category strong {
  min-width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  padding-inline: 5px;
  border: 1px solid #d7d2c9;
  border-radius: 50%;
  background: #fff;
  font-size: 10px;
  font-variant-numeric: tabular-nums;
  transition: color .22s ease, background-color .22s ease, border-color .22s ease, transform .22s ease;
}
.catalog-category.active {
  background: transparent;
  color: var(--white);
}
.catalog-category.active strong {
  border-color: rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .14);
  color: var(--white);
}
.catalog-category:hover:not(.active) {
  background: #e5e0d7;
  box-shadow: 0 8px 18px rgba(28, 25, 20, .08);
  transform: translateY(-2px);
}
.catalog-category:hover:not(.active) strong {
  border-color: var(--category-accent);
  background: var(--category-accent);
  color: #fff;
  transform: scale(1.04);
}
.catalog-category:hover .catalog-category-icon { transform: scale(1.08); }
.catalog-category:focus-visible {
  outline: 3px solid rgba(183, 151, 90, .42);
  outline-offset: -3px;
}
.catalog-layout { display: grid; grid-template-columns: 220px 1fr; gap: clamp(28px, 4vw, 64px); padding-top: 36px; }
.filters {
  position: sticky;
  top: 106px;
  align-self: start;
  max-height: calc(100vh - 130px);
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 8px;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}
.filter-mobile-header { display: none; }
.filter-group { padding: 0 0 25px; margin-bottom: 25px; border-bottom: 1px solid var(--line); }
.filter-group h3 { margin: 0 0 16px; font-size: 13px; text-transform: uppercase; letter-spacing: .09em; }
.filter-group label { display: flex; align-items: center; gap: 10px; margin: 12px 0; color: #494740; font-size: 13px; cursor: pointer; }
.filter-group input[type="checkbox"] { width: 16px; height: 16px; accent-color: var(--ink); }
.filter-group input[type="range"] { width: 100%; accent-color: var(--ink); }
.filter-option-name {
  min-width: 0;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.filter-count {
  min-width: 27px;
  color: var(--muted);
  font-size: 11px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.filter-count::before { content: "("; }
.filter-count::after { content: ")"; }
.filter-group label.option-unavailable {
  cursor: not-allowed;
  opacity: .45;
}
.brand-search {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: 0;
  outline: 0;
  background: rgba(255, 255, 255, .45);
  color: var(--ink);
  font-size: 12px;
}
.brand-search:focus {
  border-color: var(--gold);
  box-shadow: none;
}
.brand-options {
  max-height: 230px;
  margin-top: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}
.brand-options label { margin: 9px 0; }
.brand-empty { color: var(--muted); font-size: 12px; line-height: 1.5; }
.family-options,
.volume-options {
  max-height: 220px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-color: var(--gold) transparent;
  scrollbar-width: thin;
}
.family-options label,
.volume-options label { margin: 9px 0; }
.price-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; }
.price-fields > label { display: block; margin: 0; }
.price-fields > label > span:first-child {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 10px;
  text-transform: uppercase;
}
.price-input {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
}
.price-input b { padding-left: 10px; color: var(--muted); font-size: 12px; }
.price-input input {
  min-width: 0;
  width: 100%;
  padding: 11px 8px 11px 4px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 12px;
}
.price-help { margin: 8px 0 0; color: var(--muted); font-size: 10px; }
.text-button { padding: 5px 0; border: 0; border-bottom: 1px solid; background: none; font-size: 12px; }
.apply-filters { display: none; }
.active-filters { display: none !important; min-height: 0; }
.filter-chip {
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: white;
  font-size: 11px;
}
.product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 42px 22px; }
.product-card {
  position: relative;
  min-width: 0;
  content-visibility: auto;
  contain-intrinsic-size: auto 620px;
}
.product-visual {
  position: relative;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--product-bg);
}
.product-visual::after {
  content: "";
  position: absolute;
  top: -15%;
  right: -30%;
  width: 75%;
  height: 130%;
  background: rgba(255,255,255,.24);
  transform: rotate(20deg);
}
.product-badge {
  position: absolute;
  z-index: 3;
  top: 13px;
  left: 13px;
  padding: 6px 8px;
  background: var(--ink);
  color: white;
  font-size: 9px;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-badge.sale { background: #9e2f22; }
.favorite {
  position: absolute;
  z-index: 3;
  top: 9px;
  right: 9px;
  border: 0;
  background: transparent;
  font-size: 24px;
}
.favorite.active { color: #9b4136; }
.detail-favorite {
  z-index: 4;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(246, 243, 237, .9);
  box-shadow: 0 8px 24px rgba(23, 23, 20, .12);
}
.product-image-link {
  position: absolute;
  z-index: 2;
  inset: 0;
  display: block;
}
.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}
.product-card:hover .product-image { transform: scale(1.035); }
.quick-add {
  position: absolute;
  z-index: 4;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 13px;
  border: 0;
  background: var(--ink);
  color: white;
  opacity: 0;
  transform: translateY(8px);
  transition: .25s;
}
.product-card:hover .quick-add, .quick-add:focus { opacity: 1; transform: none; }
.product-info { padding-top: 15px; }
.product-meta { display: flex; justify-content: space-between; gap: 12px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .08em; }
.brand-link {
  min-width: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-bottom: 1px solid transparent;
  background: transparent;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-align: left;
  text-overflow: ellipsis;
  text-transform: inherit;
  white-space: nowrap;
}
.brand-link:hover,
.brand-link:focus-visible { border-bottom-color: currentColor; }
.product-meta > span:last-child { flex: 0 0 auto; }
.gender-label { font-weight: 700; }
.gender-hombre { color: #0a0aa8; }
.gender-mujer { color: #d10fb1; }
.gender-unisex { color: #d94f0d; }
.product-info h3 { margin: 7px 0 8px; font-family: "Sora", sans-serif; font-size: 20px; font-weight: 650; }
.product-info h3 a:hover,
.product-info h3 a:focus-visible { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 4px; }
.product-info h3,
.cart-item h3 { overflow-wrap: anywhere; }
.product-presentation { margin: 0 0 8px; color: var(--gold); font-size: 10px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; }
.product-family {
  margin: 0 0 8px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-notes { min-height: 34px; margin: 0 0 10px; color: var(--muted); font-size: 12px; line-height: 1.45; }
.note-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0 0 12px; }
.note-chip {
  padding: 5px 7px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, .45);
  color: #625f59;
  font-size: 9px;
  line-height: 1;
}
.note-chip.muted { color: var(--muted); font-style: italic; }
.price-row { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; font-size: 14px; }
.price-row del,
.detail-price del { color: var(--muted); font-size: .86em; }
.discount-label {
  padding: 4px 6px;
  background: #f0d7d2;
  color: #822d23;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .05em;
}

.product-detail { padding: 48px clamp(20px, 5vw, 76px) 110px; }
.product-detail-shell { max-width: 1500px; margin: 0 auto; }
.detail-back {
  margin-bottom: 30px;
  padding: 7px 0;
  border: 0;
  border-bottom: 1px solid var(--ink);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}
.detail-visual {
  position: relative;
  min-height: 620px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--product-bg);
}
.detail-visual::after {
  content: "";
  position: absolute;
  top: -15%;
  right: -22%;
  width: 65%;
  height: 130%;
  background: rgba(255,255,255,.22);
  transform: rotate(18deg);
}
.detail-visual img {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: auto;
  backface-visibility: hidden;
}
.detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.detail-brand { max-width: 75%; }
.detail-copy h1 {
  margin: 14px 0 12px;
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 650;
  line-height: 1;
  letter-spacing: -.04em;
  overflow-wrap: anywhere;
}
.detail-presentation {
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.detail-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin: 0 0 24px;
}
.detail-price-current { font-size: 28px; }
.detail-price small { width: 100%; color: #822d23; font-size: 10px; font-weight: 700; }
.detail-description { color: var(--muted); font-size: 14px; line-height: 1.8; }
.olfactive-profile {
  display: grid;
  gap: 14px;
  margin: 22px 0 4px;
  padding: 18px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .34);
}
.olfactive-profile > div > span {
  display: block;
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.olfactive-profile strong { font-size: 14px; }
.olfactive-profile .note-chips { margin-bottom: 0; }
.detail-add { margin: 16px 0 28px; }
.product-features { margin: 0; border-top: 1px solid var(--line); }
.product-features div {
  display: grid;
  grid-template-columns: 145px 1fr;
  gap: 20px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}
.product-features dt { color: var(--muted); font-size: 11px; }
.product-features dd { margin: 0; font-size: 12px; font-weight: 600; }
.detail-help { margin-top: 22px; color: var(--muted); font-size: 11px; line-height: 1.6; }
.detail-help a { color: var(--ink); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; }
.similar-products { margin-top: 110px; padding-top: 40px; border-top: 1px solid var(--line); }
.similar-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 32px;
}
.similar-heading h2 { margin: 10px 0 0; font-size: clamp(34px, 4vw, 54px); font-weight: 650; }
.similar-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 22px; }
.related-card .product-info h3 { font-size: 17px; }
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 62px;
}
.pagination button {
  min-width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  padding: 0 10px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  font-size: 11px;
  transition: background .2s, color .2s, border-color .2s;
}
.pagination button:hover:not(:disabled),
.pagination button.active {
  border-color: var(--ink);
  background: var(--ink);
  color: var(--white);
}
.pagination button:disabled {
  cursor: not-allowed;
  opacity: .35;
}
.pagination-ellipsis {
  min-width: 24px;
  color: var(--muted);
  text-align: center;
}
.empty-state { padding: 80px 20px; text-align: center; }
.empty-state span, .cart-empty span { font-size: 50px; }
.empty-state h3 { font-family: "Sora", sans-serif; font-size: 30px; font-weight: 650; }

.benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #49463f;
}
.benefits article { min-height: 280px; padding: 50px clamp(25px, 4vw, 65px); background: var(--ink); color: #f7f4ed; }
.benefits article span { color: #b89b71; font-family: "Sora", sans-serif; font-weight: 600; }
.benefits article h3 { margin: 50px 0 12px; font-family: "Sora", sans-serif; font-size: 26px; font-weight: 650; }
.benefits article p { max-width: 300px; color: #bcb8af; font-size: 13px; line-height: 1.6; }
.seo-copy {
  padding: 82px clamp(20px, 8vw, 120px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.seo-copy h2 {
  max-width: 820px;
  margin: 14px 0 24px;
  font-family: "Sora", sans-serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 650;
  line-height: 1.08;
}
.seo-copy > p:not(.eyebrow) {
  max-width: 900px;
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.newsletter { padding: 100px 20px; text-align: center; background: var(--cream); }
.newsletter h2 { max-width: 700px; margin: 14px auto 30px; font-family: "Sora", sans-serif; font-size: clamp(36px, 5vw, 64px); font-weight: 650; line-height: 1.05; }
.newsletter-whatsapp {
  display: inline-block;
  padding: 15px 20px;
  border: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  transition: background .2s, color .2s;
}
.newsletter-whatsapp:hover { background: var(--ink); color: var(--white); }
footer { padding: 65px clamp(20px, 5vw, 76px) 30px; text-align: center; background: #0f0f0d; color: #efede6; }
.footer-brand { margin: auto; }
footer > p { color: #8d8a82; font-size: 12px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 26px; margin: 38px 0 30px; font-size: 12px; }
.footer-socials {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 auto 56px;
}
.social-link {
  min-width: 210px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 15px;
  border: 1px solid #373630;
  color: #c9c6be;
  text-align: left;
  text-decoration: none;
  transition: border-color .2s, color .2s, transform .2s;
}
.social-link:hover { border-color: #77736a; color: #fff; transform: translateY(-2px); }
.social-link svg { width: 24px; height: 24px; flex: 0 0 auto; fill: none; stroke: currentColor; stroke-width: 1.8; }
.social-link:nth-child(2) svg { fill: currentColor; stroke: none; }
.social-link span { display: grid; gap: 2px; font-size: 10px; color: #8d8a82; }
.social-link strong { color: currentColor; font-size: 11px; letter-spacing: .04em; }
footer small { color: #6d6b65; }

.whatsapp-float {
  position: fixed;
  z-index: 45;
  right: 24px;
  bottom: calc(24px + env(safe-area-inset-bottom));
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 19px 0 16px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
  background: #1f9d55;
  color: #fff;
  box-shadow: 0 12px 30px rgba(0,0,0,.24);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: .06em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s, transform .2s, box-shadow .2s;
}
.whatsapp-float:hover { background: #188748; transform: translateY(-2px); box-shadow: 0 15px 34px rgba(0,0,0,.3); }
.whatsapp-float img {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 50%;
  object-fit: contain;
}
.whatsapp-float:focus-visible,
.social-link:focus-visible { outline: 3px solid #d6b783; outline-offset: 3px; }

.overlay { position: fixed; z-index: 50; inset: 0; visibility: hidden; background: rgba(0,0,0,.42); opacity: 0; transition: .3s; }
.overlay.open { visibility: visible; opacity: 1; }
.mobile-menu {
  position: fixed;
  z-index: 70;
  top: 0;
  bottom: 0;
  left: 0;
  width: min(380px, 90%);
  height: 100dvh;
  display: none;
  flex-direction: column;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  touch-action: pan-y;
  padding: 26px;
  background: var(--paper);
  transform: translateX(-100%);
  transition: transform .3s ease;
}
.mobile-menu.open { transform: none; }
.mobile-menu-header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.mobile-menu-header .brand { margin: 0; justify-self: auto; }
.mobile-nav { display: flex; flex-direction: column; padding: 30px 0; }
.mobile-nav a {
  position: relative;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-family: "Sora", sans-serif;
  font-weight: 600;
  font-size: 28px;
}
.mobile-nav a.active { color: var(--gold); }
.mobile-whatsapp {
  margin-top: auto;
  padding: 15px;
  border: 1px solid var(--ink);
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.cart-drawer,
.order-drawer,
.account-drawer {
  position: fixed;
  z-index: 60;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(470px, 100%);
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--paper);
  transform: translateX(100%);
  transition: transform .35s ease;
}
.cart-drawer.open { transform: none; }
.order-drawer { z-index: 65; overflow-y: auto; }
.order-drawer.open { transform: none; }
.account-drawer {
  z-index: 66;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.account-drawer.open { transform: none; }
.cart-header { display: flex; align-items: flex-start; justify-content: space-between; }
.cart-header h2 { margin: 5px 0 22px; font-family: "Sora", sans-serif; font-size: 32px; font-weight: 650; }
.cart-recommendation {
  margin-bottom: 4px;
  padding: 14px 15px;
  border-block: 1px solid var(--line);
  background: var(--cream);
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.cart-recommendation p { margin: 0; }
.cart-items { flex: 1; overflow: auto; }
.cart-item { display: grid; grid-template-columns: 86px minmax(0, 1fr) auto; gap: 15px; padding: 20px 0; border-bottom: 1px solid var(--line); }
.cart-thumb { display: grid; place-items: center; background: var(--product-bg); font-family: "Sora", sans-serif; font-size: 12px; }
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; }
.cart-item h3 { margin: 0 0 6px; font-family: "Sora", sans-serif; font-size: 17px; font-weight: 650; }
.cart-item p { margin: 0 0 12px; color: var(--muted); font-size: 11px; }
.cart-item > div:last-child {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  text-align: right;
}
.quantity { width: max-content; display: flex; align-items: center; border: 1px solid var(--line); }
.quantity button { width: 28px; height: 28px; border: 0; background: transparent; }
.quantity span { width: 24px; text-align: center; font-size: 12px; }
.remove-item { border: 0; background: transparent; color: var(--muted); font-size: 18px; }
.cart-empty { flex: 1; display: grid; align-content: center; justify-items: center; text-align: center; color: var(--muted); }
.cart-footer { padding-top: 20px; border-top: 1px solid var(--line); }
.cart-footer > div { display: flex; justify-content: space-between; font-size: 18px; }
.cart-footer > p { color: var(--muted); font-size: 10px; }
.last-order-card {
  margin: 18px 0;
  padding: 16px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .42);
}
.last-order-card h3 { margin: 4px 0 14px; font-size: 18px; }
.last-order-card dl { margin: 0 0 14px; }
.last-order-card dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  border-bottom: 1px solid var(--line);
  font-size: 10px;
}
.last-order-card dt { color: var(--muted); }
.last-order-card dd { margin: 0; font-weight: 700; text-align: right; }
.last-order-card .secondary-button { padding-block: 11px; }
.order-intro {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}
.order-form { display: grid; gap: 18px; }
.order-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.order-form input,
.order-form select,
.order-form textarea {
  width: 100%;
  padding: 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.order-form textarea { resize: vertical; }
.order-privacy { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.account-loading {
  min-height: 260px;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 11px;
}
.account-spinner {
  width: 26px;
  height: 26px;
  border: 2px solid var(--line);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: account-spin .8s linear infinite;
}
@keyframes account-spin { to { transform: rotate(360deg); } }
.account-benefits {
  margin-bottom: 22px;
  padding: 18px;
  background: var(--cream);
  font-size: 12px;
  line-height: 1.65;
}
.account-benefits p { margin: 0 0 10px; }
.account-benefits ul { margin: 0; padding-left: 18px; color: var(--muted); }
.account-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.account-tabs button {
  padding: 12px 8px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.account-tabs button.active {
  border-bottom-color: var(--ink);
  color: var(--ink);
}
.account-form { display: grid; gap: 16px; }
.account-form label > span {
  display: block;
  margin-bottom: 7px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.account-form input,
.account-form select {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(255, 255, 255, .5);
  color: var(--ink);
  font: inherit;
  font-size: 14px;
}
.account-form select { appearance: auto; }
.password-field {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .5);
}
.password-field input { border: 0; background: transparent; }
.password-field button {
  min-width: 54px;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
}
.text-button {
  width: max-content;
  padding: 6px 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 11px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.field-help,
.account-terms {
  margin: -8px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.55;
}
.account-form-heading { margin-bottom: 4px; }
.account-form-heading h3 { margin: 8px 0; font-size: 23px; }
.account-form-heading p { margin: 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.account-message {
  min-height: 18px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.55;
}
.account-message.error { color: #9b4136; }
.account-message.success { color: #467659; }
.account-identity {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .38);
}
.account-avatar {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 15px;
  font-weight: 700;
}
.account-identity p { margin: 0 0 4px; font-size: 14px; font-weight: 700; }
.account-identity strong {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 9px;
  font-weight: 400;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-user-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.account-user-tabs button {
  padding: 11px 5px;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.account-user-tabs button.active { border-bottom-color: var(--ink); color: var(--ink); }
.account-section-panel[hidden] { display: none !important; }
.account-panel-copy { margin: 7px 0 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.preferences-form fieldset { display: grid; gap: 8px; margin: 0; padding: 14px; border: 1px solid var(--line); }
.preferences-form legend { padding: 0 6px; font-size: 10px; font-weight: 700; text-transform: uppercase; }
.account-form .account-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 3px 0;
  color: var(--ink);
  font-size: 12px;
  line-height: 1.45;
}
.account-form .account-check input { width: 16px; min-height: 16px; margin-top: 1px; accent-color: var(--ink); }
.account-form .account-check span { margin: 0; letter-spacing: 0; text-transform: none; }
.account-check-highlight { padding: 13px !important; background: var(--cream); }
.sync-badge {
  padding: 5px 7px;
  border-radius: 20px;
  background: #e0eadf;
  color: #3d6b4e;
  font-size: 8px;
  font-weight: 700;
  text-transform: uppercase;
}
.sync-badge.syncing { background: #eee4d2; color: #7b653f; }
.sync-badge.error { background: #f2dfdc; color: #8d3d34; }
.profile-form {
  padding-bottom: 25px;
  border-bottom: 1px solid var(--line);
}
.profile-form h3,
.account-orders h3 { margin: 0; font-size: 20px; }
.account-orders { padding-top: 25px; }
.account-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 14px;
}
.account-section-heading .eyebrow { margin-bottom: 5px; }
.account-orders-list { display: grid; gap: 10px; }
.account-order {
  padding: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .4);
}
.account-order-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 9px;
}
.account-order-head strong { font-size: 12px; }
.account-order-head time { color: var(--muted); font-size: 9px; }
.account-order p { margin: 0 0 11px; color: var(--muted); font-size: 10px; line-height: 1.5; }
.account-order .secondary-button { padding-block: 9px; }
.account-empty { margin: 10px 0; color: var(--muted); font-size: 11px; line-height: 1.55; }
.account-signout { margin: 26px auto 5px; }
.password-reset { padding-top: 15px; }
.primary-button, .secondary-button {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--ink);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .09em;
  text-transform: uppercase;
}
.primary-button { background: var(--ink); color: white; }
.secondary-button { background: transparent; color: var(--ink); }
/* El toast permanece completamente fuera de la interfaz hasta tener un mensaje.
   Antes solo se desplazaba 120 px y dejaba una franja negra visible sobre WhatsApp. */
.toast {
  position: fixed;
  z-index: 80;
  right: 25px;
  bottom: 96px;
  max-width: calc(100vw - 50px);
  padding: 14px 18px;
  background: var(--ink);
  color: white;
  font-size: 12px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate3d(0, calc(100% + 40px), 0);
  transition: transform .3s ease, opacity .2s ease, visibility 0s linear .3s;
}
.toast:empty { display: none; }
.toast.show:not(:empty) {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate3d(0, 0, 0);
  transition-delay: 0s;
}
.mobile-only { display: none; }

.favorites-page .collection-hero,
.favorites-page .featured-carousel,
.favorites-page .catalog-categories,
.favorites-page .filters,
.favorites-page .filter-trigger,
.favorites-page .benefits,
.favorites-page .seo-copy,
.favorites-page .newsletter { display: none; }
.favorites-page .catalog-section { min-height: 62vh; padding-top: 72px; }
.favorites-page .catalog-layout { grid-template-columns: 1fr; }
.favorites-page .catalog-heading { margin-bottom: 30px; }
.favorites-page .catalog-heading h2 { font-size: clamp(38px, 5vw, 68px); }
.favorites-page .favorites-empty {
  min-height: 430px;
  display: grid;
  place-content: center;
  justify-items: center;
  border: 1px dashed #cfc8bb;
  background: linear-gradient(135deg, rgba(234, 219, 212, .55), rgba(250, 248, 242, .92));
}
.favorites-page .favorites-empty h3 { max-width: 620px; margin-bottom: 10px; }
.favorites-page .favorites-empty p { max-width: 520px; color: var(--muted); line-height: 1.6; }

@media (max-width: 1000px) {
  .site-header { grid-template-columns: 48px 1fr auto; padding: 0 20px; }
  .main-nav { display: none; }
  .mobile-only { display: block; }
  .mobile-menu { display: flex; }
  .header-actions { gap: 0; }
  .collection-hero { min-height: 430px; }
  .featured-slide { grid-template-columns: minmax(0, 1.1fr) minmax(270px, .9fr); padding-inline: 38px; }
  .featured-slide h3 { font-size: clamp(40px, 6vw, 62px); }
  .featured-image-link { height: 310px; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters {
    position: fixed;
    z-index: 70;
    top: 0;
    bottom: 0;
    left: 0;
    width: min(380px, 90%);
    height: 100dvh;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    touch-action: pan-y;
    padding: 25px;
    background: var(--paper);
    max-height: none;
    transform: translateX(-100%);
    transition: transform .3s ease;
  }
  .filters.open { transform: none; }
  .filter-mobile-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; }
  .filter-trigger { display: block; padding: 12px 16px; border: 1px solid var(--line); background: transparent; }
  .apply-filters { display: block; margin-top: 22px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail-grid { grid-template-columns: 1fr; align-items: start; }
  .detail-visual { min-height: auto; aspect-ratio: 1 / 1; }
  .similar-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 650px) {
  .announcement {
    justify-content: flex-end;
    padding-inline: 12px;
    font-size: 9px;
    letter-spacing: .07em;
  }
  .parent-site-link {
    position: static;
    margin-right: auto;
  }
  .announcement-message { display: none; }
  .announcement-secondary { display: none; }
  .site-header { height: 70px; }
  .header-actions { gap: 0; }
  .account-button { width: 42px; }
  .favorites-button {
    width: 44px;
    justify-content: center;
    padding: 0;
  }
  .favorites-label { display: none; }
  .favorites-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    font-size: 9px;
  }
  .favorites-button.active { border-color: transparent; background: transparent; }
  .cart-button {
    position: relative;
    width: 48px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border: 0;
  }
  .cart-label { display: none; }
  .cart-icon { width: 24px; height: 24px; }
  .cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    padding: 0 4px;
    font-size: 9px;
  }
  .search-panel { top: 104px; }
  .search-panel.open {
    max-height: min(320px, calc(100vh - 104px));
    overflow-y: auto;
  }
  .search-inner { padding: 24px 18px 28px; }
  .search-inner label {
    margin-bottom: 12px;
    font-size: clamp(20px, 6.5vw, 25px);
    line-height: 1.25;
  }
  .search-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px 44px;
    gap: 4px;
    border-bottom: 0;
  }
  .search-row input {
    width: 100%;
    min-height: 48px;
    padding: 12px;
    border: 1px solid var(--ink);
    font-size: 16px;
  }
  .search-submit {
    min-width: 0;
    width: 48px;
    height: 48px;
  }
  .search-submit span:first-child { display: none; }
  .search-submit span:last-child { font-size: 23px; }
  .search-row .icon-button { width: 44px; height: 48px; }
  .search-inner p { margin: 12px 0 0; line-height: 1.5; }
  .featured-carousel {
    width: 100%;
    margin-top: 22px;
  }
  .featured-carousel-heading {
    align-items: flex-start;
    padding: 0 18px;
  }
  .featured-carousel-heading h2 { font-size: 26px; }
  .featured-carousel-status { margin-top: 26px; white-space: nowrap; }
  .featured-carousel-viewport { min-height: 585px; }
  .featured-slide {
    grid-template-columns: 1fr;
    grid-template-rows: auto 238px;
    align-content: center;
    gap: 12px;
    padding: 32px 22px 70px;
    text-align: center;
  }
  .featured-slide-copy { max-width: 100%; }
  .featured-kicker { justify-content: center; }
  .featured-brand { margin-top: 17px; }
  .featured-slide h3 { margin-block: 5px 10px; font-size: clamp(41px, 13vw, 57px); }
  .featured-description {
    display: -webkit-box;
    max-width: 460px;
    margin-inline: auto;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }
  .featured-details { justify-content: center; margin-top: 14px; }
  .featured-cta { margin-top: 18px; }
  .featured-image-link { grid-row: 2; height: 238px; }
  .featured-image-link img { width: min(78vw, 250px); height: 238px; }
  .featured-image-glow { width: 210px; }
  .featured-carousel-controls {
    right: 50%;
    bottom: 16px;
    transform: translateX(50%);
  }
  .collection-hero { min-height: 560px; grid-template-columns: 1fr; padding: 55px 25px; }
  .collection-hero h1 { font-size: 55px; }
  .hero-bottle { width: 150px; height: 195px; }
  .hero-cap { height: 40px; }
  .hero-glass { height: 170px; }
  .hero-glass i { width: 70px; height: 50px; font-size: 20px; }
  .catalog-section { padding: 48px 18px 80px; }
  .catalog-heading { align-items: flex-start; flex-direction: column; }
  .catalog-controls { width: 100%; justify-content: space-between; }
  .sort-control span { display: none; }
  .sort-control select { min-width: 165px; max-width: 190px; }
  .catalog-categories {
    display: flex;
    gap: 10px;
    margin-right: -18px;
    margin-left: -18px;
    padding: 8px 18px 14px;
    overflow-x: auto;
    overflow-y: hidden;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: 0 10px 26px rgba(28, 25, 20, .06);
    scroll-padding-inline: 18px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .catalog-categories::-webkit-scrollbar { display: none; }
  .catalog-category-slider { display: none; }
  .catalog-category {
    width: calc(100vw - 58px);
    min-width: calc(100vw - 58px);
    min-height: 72px;
    padding: 15px 16px;
    border: 1px solid #d7d2c9;
    background: #edebe7;
    scroll-snap-align: start;
  }
  .catalog-category.active {
    overflow: hidden;
    border-color: #171714;
    background: #171714;
    box-shadow: 0 10px 24px rgba(23, 23, 20, .16);
  }
  .catalog-category.active::after {
    position: absolute;
    right: 16px;
    bottom: 0;
    left: 16px;
    height: 3px;
    background: var(--category-accent);
    border-radius: 3px 3px 0 0;
    content: "";
  }
  .catalog-category strong {
    min-width: 32px;
    height: 32px;
  }
  .active-filters { min-height: 0; }
  .product-grid { grid-template-columns: 1fr; gap: 46px; }
  .product-visual { aspect-ratio: 1 / 1.08; }
  .quick-add {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 15px 12px;
    opacity: 1;
    transform: none;
    font-size: 11px;
  }
  .product-info { padding: 16px 2px 0; }
  .product-meta { font-size: 10px; }
  .product-info h3 {
    margin-top: 8px;
    font-size: 25px;
    line-height: 1.12;
  }
  .product-presentation { margin-top: 10px; font-size: 10px; line-height: 1.45; }
  .product-family { margin-top: 8px; }
  .product-notes {
    display: -webkit-box;
    min-height: auto;
    margin-top: 10px;
    overflow: hidden;
    color: #66635d;
    font-size: 12px;
    line-height: 1.55;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
  .price-row { margin-top: 12px; font-size: 18px; }
  .pagination {
    gap: 5px;
    margin-top: 48px;
  }
  .pagination button {
    min-width: 36px;
    height: 36px;
    padding: 0 8px;
  }
  .product-detail { padding: 24px 18px 80px; }
  .detail-back { margin-bottom: 22px; }
  .product-detail-grid { gap: 28px; }
  .detail-visual { aspect-ratio: 1 / 1.08; }
  .detail-copy h1 { font-size: 43px; }
  .detail-description { font-size: 13px; line-height: 1.7; }
  .product-features div { grid-template-columns: 115px 1fr; gap: 12px; }
  .similar-products { margin-top: 75px; }
  .similar-heading { align-items: flex-start; flex-direction: column; gap: 18px; }
  .similar-grid { grid-template-columns: 1fr; gap: 46px; }
  .benefits { grid-template-columns: 1fr; }
  .benefits article { min-height: 220px; }
  .benefits article h3 { margin-top: 35px; }
  .cart-drawer { padding: 22px 18px; }
  .order-drawer { padding: 22px 18px; }
  .account-drawer { padding: 22px 18px; }
  .footer-socials { display: grid; grid-template-columns: 1fr; width: min(100%, 330px); }
  .social-link { min-width: 0; width: 100%; }
  .whatsapp-float {
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    width: 56px;
    min-height: 56px;
    justify-content: center;
    padding: 0;
  }
  .whatsapp-float img { width: 50px; height: 50px; }
  .whatsapp-float span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip-path: inset(50%); white-space: nowrap; }
  .toast { right: 14px; bottom: calc(82px + env(safe-area-inset-bottom)); max-width: calc(100vw - 28px); }
}

@media (max-width: 390px) {
  .site-header {
    grid-template-columns: 38px minmax(0, 1fr) auto;
    padding: 0 8px;
  }
  .site-header > .mobile-only { width: 38px; }
  .featured-carousel-heading { padding-inline: 14px; }
  .featured-carousel-heading h2 { font-size: 23px; }
  .featured-carousel-status { font-size: 9px; }
  .featured-carousel-viewport { min-height: 565px; }
  .featured-slide { grid-template-rows: auto 215px; padding-inline: 16px; }
  .featured-slide h3 { font-size: 42px; }
  .featured-image-link,
  .featured-image-link img { height: 215px; }
  .brand { letter-spacing: .14em; }
  .brand strong { font-size: 15px; }
  .header-actions .icon-button { width: 34px; }
  .account-button { width: 34px; }
  .favorites-button { width: 34px; }
  .cart-button { width: 38px; }
  .catalog-section { padding-inline: 14px; }
  .catalog-categories {
    margin-right: -14px;
    margin-left: -14px;
    padding-right: 14px;
    padding-left: 14px;
    scroll-padding-inline: 14px;
  }
  .catalog-controls { gap: 8px; }
  .filter-trigger { padding-inline: 12px; }
  .sort-control select { min-width: 150px; max-width: 165px; font-size: 11px; }
  .cart-item { grid-template-columns: 68px minmax(0, 1fr) auto; gap: 10px; }
  .cart-item > div:last-child { max-width: 82px; text-align: right; }
  .detail-copy h1 { font-size: 37px; }
  .product-features div { grid-template-columns: 100px 1fr; }
  .toast { right: 14px; bottom: calc(82px + env(safe-area-inset-bottom)); max-width: calc(100vw - 28px); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* BOGA Fragancias v30 — lujo editorial contemporáneo */
:root {
  --ink: #181713;
  --paper: #f8f5ef;
  --cream: #eee7da;
  --line: rgba(62, 52, 39, .14);
  --gold: #b3945f;
  --gold-deep: #896b3b;
  --muted: #716b62;
  --white: #fff;
  --serif: "Cormorant Garamond", Georgia, serif;
  --shadow-soft: 0 18px 50px rgba(42, 34, 24, .08);
  --shadow-lift: 0 26px 65px rgba(42, 34, 24, .14);
}

body {
  background:
    radial-gradient(circle at 12% 18%, rgba(179, 148, 95, .055), transparent 24rem),
    var(--paper);
}

::selection { background: #d9c7a7; color: var(--ink); }

.announcement {
  background: #11110f;
  color: #f7f1e7;
  letter-spacing: .15em;
}

.site-header {
  height: 72px;
  border: 0;
  background: rgba(248, 245, 239, .9);
  box-shadow: 0 8px 30px rgba(40, 33, 24, .035);
  backdrop-filter: blur(18px) saturate(130%);
}

.brand { letter-spacing: .22em; }
.brand strong { font-size: 18px; letter-spacing: .16em; }
.main-nav { gap: clamp(18px, 2vw, 30px); font-size: 11px; }
.main-nav a::after { background: var(--gold); }
.header-actions { gap: 4px; }
.cart-button { border-color: rgba(24, 23, 19, .65); }

.search-panel {
  top: 106px;
  border-bottom: 0;
  background: rgba(248, 245, 239, .98);
  box-shadow: 0 30px 70px rgba(31, 26, 19, .14);
}
.search-panel.open {
  max-height: min(560px, calc(100vh - 106px));
  overflow-y: auto;
  border-bottom: 1px solid var(--line);
}
.search-inner { position: relative; max-width: 980px; padding: 42px 72px 36px 24px; }
.search-inner label {
  font-family: var(--serif);
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 600;
  letter-spacing: -.025em;
}
.search-row {
  min-height: 58px;
  overflow: hidden;
  padding-left: 18px;
  border: 1px solid rgba(62, 52, 39, .22);
  border-radius: 12px;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 10px 30px rgba(42, 34, 24, .06);
  transition: border-color .22s ease, box-shadow .22s ease, background .22s ease;
}
.search-row:focus-within {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 14px 38px rgba(42, 34, 24, .1);
}
.search-row input {
  min-width: 0;
  padding: 17px 12px 17px 0;
  border: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
  font-family: "Sora", sans-serif;
  font-size: 16px;
  color: var(--ink);
}
.search-row input:focus {
  outline: 0;
  box-shadow: none;
}
.search-row input::-webkit-search-cancel-button,
.search-row input::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
}
.search-submit {
  min-width: 128px;
  height: 46px;
  margin-right: 6px;
  border-radius: 8px;
  background: var(--ink);
  transition: background .2s ease, transform .2s ease;
}
.search-submit:hover { background: #2d2b25; transform: translateY(-1px); }
.search-close {
  position: absolute;
  top: 42px;
  right: 18px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(62, 52, 39, .18);
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  color: var(--ink);
  font-size: 24px;
  line-height: 1;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.search-close:hover { border-color: var(--gold); background: #fff; transform: rotate(90deg); }
.search-suggestions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}
.search-suggestions:empty { display: none; }
.search-suggestion {
  min-width: 0;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .55);
  transition: transform .22s ease, border-color .22s ease, background .22s ease;
}
.search-suggestion:hover,
.search-suggestion:focus-visible {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-2px);
}
.search-suggestion img { width: 54px; height: 64px; object-fit: cover; }
.search-suggestion span { min-width: 0; display: grid; gap: 3px; }
.search-suggestion small {
  overflow: hidden;
  color: var(--gold-deep);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: .08em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.search-suggestion strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-suggestion em { color: var(--muted); font-size: 9px; font-style: normal; }
.search-no-results {
  grid-column: 1 / -1;
  margin: 0;
  padding: 15px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.45);
  line-height: 1.55;
}

.collection-hero {
  min-height: min(760px, calc(100vh - 106px));
  grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr);
  gap: clamp(40px, 7vw, 110px);
  padding: clamp(60px, 7vw, 105px) clamp(24px, 7vw, 118px);
  background:
    linear-gradient(90deg, rgba(179, 148, 95, .1) 1px, transparent 1px) 0 0 / 80px 100%,
    linear-gradient(135deg, #f4efe6, #e7dccb 58%, #d1bea0);
}
.collection-hero::before {
  position: absolute;
  width: min(44vw, 680px);
  aspect-ratio: 1;
  border: 1px solid rgba(137, 107, 59, .18);
  border-radius: 50%;
  transform: translate(-45%, -44%);
  content: "";
}
.collection-hero { position: relative; }
.hero-copy { position: relative; z-index: 2; }
.collection-hero .eyebrow { color: var(--gold-deep); }
.collection-hero h1 {
  max-width: 740px;
  margin: 15px 0 22px;
  font-family: var(--serif);
  font-size: clamp(62px, 7.5vw, 116px);
  font-weight: 600;
  line-height: .83;
  letter-spacing: -.055em;
}
.collection-hero .hero-copy > p:not(.eyebrow, .hero-proof) {
  max-width: 580px;
  margin: 0;
  color: #565047;
  font-size: 14px;
  line-height: 1.8;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.hero-primary,
.hero-secondary {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid var(--ink);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
  transition: transform .25s ease, background .25s ease, color .25s ease;
}
.hero-primary { background: var(--ink); color: #fff; }
.hero-secondary { background: rgba(255,255,255,.28); }
.hero-primary:hover,
.hero-secondary:hover { transform: translateY(-2px); }
.hero-primary:hover { background: #2c2a24; }
.hero-secondary:hover { background: #fff; }
.hero-proof {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 24px 0 0 !important;
  color: #5c554b;
  font-size: 10px !important;
  font-weight: 650;
  letter-spacing: .04em;
}
.hero-proof span { color: var(--gold-deep); font-size: 8px; }
.hero-editorial {
  position: relative;
  z-index: 1;
  min-height: 530px;
  align-self: stretch;
}
.hero-image-frame {
  position: absolute;
  inset: 0 9% 0 0;
  overflow: hidden;
  border-radius: 48% 48% 8px 8px / 25% 25% 8px 8px;
  box-shadow: 0 34px 70px rgba(55, 43, 27, .25);
}
.hero-image-frame::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(18, 16, 12, .26));
  content: "";
}
.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 46%;
  transition: transform 1s cubic-bezier(.22, 1, .36, 1);
}
.hero-image-frame:hover img { transform: scale(1.04); }
.hero-caption {
  position: absolute;
  right: 0;
  bottom: 42px;
  z-index: 2;
  width: min(280px, 58%);
  padding: 22px 24px;
  border: 1px solid rgba(255,255,255,.62);
  background: rgba(248,245,239,.9);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(12px);
}
.hero-caption strong { display: block; font-family: var(--serif); font-size: clamp(20px, 2vw, 29px); font-weight: 600; line-height: 1.05; }

.featured-carousel { width: min(100% - 64px, 1440px); margin-top: 70px; }
.featured-carousel-heading h2,
.catalog-heading h2,
.similar-heading h2,
.seo-copy h2,
.newsletter h2 { font-family: var(--serif); font-weight: 600; }
.featured-carousel-heading h2 { font-size: clamp(36px, 4vw, 54px); }
.featured-carousel-viewport { min-height: 470px; border-radius: 2px; box-shadow: var(--shadow-soft); }
.featured-slide {
  background:
    linear-gradient(100deg, rgba(255,255,255,.88), rgba(255,255,255,.16) 63%),
    var(--featured-bg);
}
.featured-slide h3 { font-family: var(--serif); font-size: clamp(56px, 6.5vw, 96px); font-weight: 600; }
.featured-image-link img { filter: drop-shadow(0 28px 25px rgba(23, 23, 20, .18)); }
.featured-cta { border-color: var(--ink); }
.featured-dot.active::before { background: rgba(137, 107, 59, .2); }

.trust-ribbon {
  width: min(100% - 64px, 1440px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 28px auto 0;
  border-block: 1px solid var(--line);
}
.trust-ribbon article {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 16px;
  min-height: 105px;
  padding: 20px clamp(15px, 2.4vw, 34px);
  border-right: 1px solid var(--line);
}
.trust-ribbon article:last-child { border-right: 0; }
.trust-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold-deep);
  font-size: 9px;
  font-weight: 700;
}
.trust-ribbon strong { font-family: var(--serif); font-size: 21px; font-weight: 600; }
.trust-ribbon p { margin: 4px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

.catalog-section { padding-top: 105px; }
.catalog-heading { border-bottom-color: rgba(62, 52, 39, .12); }
.catalog-heading h2 { font-size: clamp(48px, 5.5vw, 76px); letter-spacing: -.035em; }
.catalog-categories { background: rgba(255,255,255,.48); box-shadow: var(--shadow-soft); }
.catalog-category { border-radius: 10px; }
.catalog-layout { margin-top: 42px; }
.filters {
  padding: 24px 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .45);
  box-shadow: 0 14px 40px rgba(42, 34, 24, .055);
}
.brand-search,
.price-input { border-radius: 6px; }
.product-grid { gap: 32px 22px; }
.product-card {
  overflow: hidden;
  border: 1px solid rgba(62, 52, 39, .1);
  border-radius: 4px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 1px 0 rgba(255,255,255,.8);
  transition: transform .35s cubic-bezier(.22, 1, .36, 1), box-shadow .35s ease, border-color .35s ease;
  animation: boga-card-in .52s both;
}
.product-card:nth-child(2n) { animation-delay: .05s; }
.product-card:nth-child(3n) { animation-delay: .1s; }
.product-card:hover {
  border-color: rgba(179, 148, 95, .34);
  box-shadow: var(--shadow-lift);
  transform: translateY(-7px);
}
@keyframes boga-card-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
.product-visual { aspect-ratio: 4 / 4.65; background: #f1ece3; }
.product-visual::after { background: linear-gradient(110deg, transparent 35%, rgba(255,255,255,.23), transparent 68%); transform: translateX(-125%) rotate(0); transition: transform .8s ease; }
.product-card:hover .product-visual::after { transform: translateX(125%) rotate(0); }
.product-image { transform: none; image-rendering: auto; backface-visibility: hidden; }
.product-card:hover .product-image { transform: scale(1.045); }
.product-badge { top: 14px; left: 14px; border-radius: 999px; background: rgba(24,23,19,.9); }
.favorite {
  top: 12px;
  right: 12px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 50%;
  background: rgba(248,245,239,.85);
  box-shadow: 0 7px 22px rgba(30,25,18,.11);
  backdrop-filter: blur(9px);
}
.quick-add { right: 14px; bottom: 14px; left: 14px; border: 1px solid rgba(255,255,255,.4); }
.product-info { padding: 18px 18px 20px; }
.product-info h3 { margin-block: 8px 7px; font-size: 19px; line-height: 1.22; }
.product-presentation { color: var(--gold-deep); }
.product-notes { display: -webkit-box; min-height: 52px; overflow: hidden; -webkit-box-orient: vertical; -webkit-line-clamp: 3; }
.note-chip { border-color: rgba(62,52,39,.12); background: #f8f5ef; }
.price-row strong { font-size: 16px; }

.product-detail { padding-top: 56px; }
.product-detail-grid { align-items: stretch; }
.detail-visual { min-height: 690px; border-radius: 3px; box-shadow: var(--shadow-soft); }
.detail-copy { align-self: center; }
.detail-copy h1 { font-family: var(--serif); font-size: clamp(58px, 6vw, 90px); font-weight: 600; line-height: .88; letter-spacing: -.045em; }
.detail-description { font-size: 15px; }
.olfactive-profile { padding: 22px; border-radius: 3px; background: rgba(255,255,255,.56); }
.detail-add { transition: transform .22s ease, background .22s ease; }
.detail-add:hover { background: #2d2b25; transform: translateY(-2px); }
.detail-assurance {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  margin-top: 22px;
  padding: 16px;
  border: 1px solid rgba(179,148,95,.3);
  background: #f4ede1;
}
.detail-assurance span { color: var(--gold-deep); }
.detail-assurance strong { display: block; font-family: var(--serif); font-size: 19px; }
.detail-assurance p { margin: 3px 0 0; color: var(--muted); font-size: 10px; line-height: 1.5; }

.benefits { margin-top: 20px; background: #35332d; }
.benefits article { min-height: 310px; background: #171713; }
.benefits article h3 { max-width: 360px; font-family: var(--serif); font-size: 35px; font-weight: 600; line-height: 1; }
.benefits article p { font-size: 12px; line-height: 1.75; }
.seo-copy { background: #fffdfa; }
.seo-copy h2 { font-size: clamp(46px, 5vw, 70px); }
.newsletter { background: linear-gradient(135deg, #eee4d5, #f8f5ef 55%, #dfcfb5); }
.newsletter h2 { font-size: clamp(48px, 6vw, 78px); }
.newsletter-whatsapp { background: var(--ink); color: #fff; }
.newsletter-whatsapp:hover { background: transparent; color: var(--ink); }
footer { border-top: 1px solid rgba(255,255,255,.06); background: #11110f; }
.social-link { border-radius: 3px; }

@media (max-width: 1000px) {
  .site-header { height: 68px; }
  .search-panel { top: 102px; }
  .search-panel.open { max-height: min(620px, calc(100vh - 102px)); }
  .search-suggestions { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .collection-hero { min-height: 680px; grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr); padding-inline: 38px; }
  .collection-hero h1 { font-size: clamp(58px, 9vw, 86px); }
  .hero-editorial { min-height: 480px; }
  .trust-ribbon article { padding-inline: 18px; }
  .filters { border: 0; border-radius: 0; background: var(--paper); box-shadow: 18px 0 50px rgba(30,25,18,.16); }
}

@media (max-width: 700px) {
  .announcement { font-size: 8px; letter-spacing: .11em; }
  .announcement-message { display: inline; }
  .site-header { height: 64px; }
  .search-panel { top: 98px; }
  .search-panel.open { max-height: min(650px, calc(100vh - 98px)); }
  .search-inner { padding-top: 27px; }
  .search-inner { padding-right: 58px; padding-left: 16px; }
  .search-close { top: 24px; right: 12px; width: 36px; height: 36px; }
  .search-row { min-height: 54px; padding-left: 14px; }
  .search-row input { font-size: 16px; }
  .brand-search,
  .price-input input { font-size: 16px; }
  .search-submit { min-width: 52px; height: 44px; margin-right: 5px; }
  .search-suggestions { grid-template-columns: 1fr 1fr; gap: 7px; }
  .search-suggestion { grid-template-columns: 42px minmax(0,1fr); padding: 6px; }
  .search-suggestion img { width: 42px; height: 50px; }
  .collection-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 52px 20px 26px;
    background: linear-gradient(145deg, #f5f0e8, #dfcfb6);
  }
  .collection-hero::before { width: 100vw; }
  .collection-hero h1 { max-width: 560px; font-size: clamp(61px, 18vw, 88px); line-height: .84; }
  .collection-hero .hero-copy > p:not(.eyebrow, .hero-proof) { font-size: 13px; }
  .hero-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .hero-primary, .hero-secondary { padding-inline: 12px; font-size: 9px; }
  .hero-proof { align-items: flex-start; line-height: 1.5; }
  .hero-editorial { min-height: 440px; }
  .hero-image-frame { inset: 0 5% 0 5%; border-radius: 48% 48% 5px 5px / 22% 22% 5px 5px; }
  .hero-caption { right: 0; bottom: 20px; width: 64%; padding: 17px; }
  .featured-carousel { width: 100%; margin-top: 50px; }
  .featured-carousel-heading { padding-inline: 20px; }
  .featured-carousel-heading h2 { font-size: 35px; }
  .featured-carousel-viewport { min-height: 600px; border-radius: 0; box-shadow: none; }
  .featured-slide h3 { font-size: clamp(50px, 15vw, 67px); }
  .trust-ribbon {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .trust-ribbon article { min-height: 88px; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-ribbon article:last-child { border-bottom: 0; }
  .catalog-section { padding-top: 72px; }
  .catalog-heading h2 { font-size: 49px; }
  .product-card { animation-duration: .35s; }
  .product-card:hover { transform: none; box-shadow: none; }
  .product-info { padding: 17px 16px 20px; }
  .product-info h3 { font-size: 25px; }
  .detail-copy h1 { font-size: clamp(55px, 16vw, 74px); }
  .detail-visual { min-height: auto; box-shadow: none; }
  .benefits { margin-top: 0; }
  .benefits article { min-height: 250px; }
  .benefits article h3 { font-size: 34px; }
  .seo-copy h2, .newsletter h2 { font-size: 47px; }
}

@media (min-width: 521px) and (max-width: 700px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 20px 12px; }
  .product-info h3 { font-size: 18px; }
  .product-notes, .note-chips { display: none; }
  .quick-add { font-size: 9px; }
}

@media (max-width: 390px) {
  .announcement-message { max-width: 50vw; overflow: hidden; text-overflow: ellipsis; }
  .search-suggestions { grid-template-columns: 1fr; }
  .search-suggestion:nth-child(n+4) { display: none; }
  .collection-hero { padding-inline: 16px; }
  .collection-hero h1 { font-size: 60px; }
  .hero-actions { grid-template-columns: 1fr; }
  .hero-editorial { min-height: 390px; }
  .featured-carousel-heading { padding-inline: 16px; }
  .catalog-heading h2 { font-size: 43px; }
}

@media (prefers-reduced-motion: reduce) {
  .product-card { animation: none; }
  .hero-image-frame:hover img,
  .product-card:hover,
  .product-card:hover .product-image { transform: none; }
  .featured-dot.active::after {
    opacity: 1;
    transform: translateY(-50%) scaleX(1);
    animation: none !important;
  }
}


/* Correcciones responsive v35: alineación móvil y carga estable de la ficha */
.detail-visual {
  width: 100%;
  min-width: 0;
}
.detail-visual img {
  display: block;
  opacity: 1;
  transition: opacity .2s ease;
}
.detail-visual img.is-loading-hd { opacity: .995; }

@media (hover: none), (pointer: coarse) {
  .quick-add {
    opacity: 1;
    transform: none;
  }
  .product-card:hover,
  .product-card:hover .product-image {
    transform: none;
  }
}

@media (max-width: 700px) {
  .product-card,
  .product-visual,
  .product-image-link,
  .quick-add {
    max-width: 100%;
  }
  .quick-add {
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    min-height: 48px;
    margin: 0;
    box-sizing: border-box;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
  }
  .detail-visual {
    height: min(calc((100vw - 36px) * 1.08), 620px);
    min-height: 300px;
    aspect-ratio: auto;
  }
  .detail-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

@media (max-width: 360px) {
  .site-header {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    padding-inline: 6px;
  }
  .site-header > .mobile-only { width: 36px; }
  .brand { letter-spacing: .11em; }
  .brand strong { font-size: 14px; }
  .header-actions .icon-button { width: 34px; }
  .favorites-button { width: 39px; }
  .account-button { width: 38px; }
  .cart-button { width: 42px; }
  .product-detail { padding-inline: 14px; }
  .detail-visual {
    height: calc((100vw - 28px) * 1.08);
    min-height: 280px;
  }
  .detail-copy h1 { font-size: clamp(45px, 15vw, 58px); }
}

/* Ajuste de tablet y cabeceras muy estrechas v35 */
@media (min-width: 701px) and (max-width: 1100px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 42px;
  }
  .detail-visual,
  .detail-copy {
    width: min(100%, 760px);
    justify-self: center;
  }
  .detail-visual {
    min-height: 0;
    aspect-ratio: 1 / 1;
  }
  .detail-copy { align-self: auto; }
}

@media (max-width: 340px) {
  .site-header {
    grid-template-columns: 32px minmax(0, 1fr) auto;
    padding-inline: 5px;
  }
  .site-header > .mobile-only { width: 32px; font-size: 20px; }
  .brand { letter-spacing: .07em; }
  .brand span { font-size: 6px; letter-spacing: .28em; }
  .brand strong { font-size: 13px; letter-spacing: .08em; }
  .header-actions .icon-button { width: 30px; }
  .favorites-button { width: 34px; }
  .account-button { width: 34px; }
  .cart-button { width: 38px; }
  .cart-icon { width: 22px; height: 22px; }
}

/* ==========================================================
   BOGA v36 — Correcciones definitivas para iPhone / móvil
   1) El campo de búsqueda usa únicamente el borde del contenedor.
   2) El cajón de filtros tiene un solo desplazamiento vertical.
   ========================================================== */
@media (max-width: 700px) {
  .search-row {
    grid-template-columns: minmax(0, 1fr) 52px;
    gap: 5px;
  }

  .search-row input,
  .search-row input:focus,
  .search-row input:focus-visible,
  .search-row input:active {
    min-width: 0;
    width: 100%;
    border: 0 !important;
    border-radius: 0;
    outline: 0 !important;
    outline-offset: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    -webkit-appearance: none;
    appearance: none;
  }

  .search-submit {
    width: 52px;
    min-width: 52px;
    margin-right: 0;
  }
}

@media (max-width: 1000px) {
  .filters {
    height: 100dvh;
    max-height: 100dvh;
    overflow-x: hidden !important;
    overflow-y: scroll !important;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-y: auto;
    touch-action: pan-y;
    padding-bottom: calc(110px + env(safe-area-inset-bottom));
  }

  /* Evita scrolls anidados que bloquean el desplazamiento del panel en iOS. */
  .filters .family-options,
  .filters .brand-options,
  .filters .volume-options {
    max-height: none !important;
    overflow: visible !important;
    overscroll-behavior: auto !important;
    touch-action: auto;
  }

  .filters .filter-group {
    overflow: visible;
  }
}
