/* Buttons */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; min-height: 46px; padding: 12px 20px; border-radius: 999px; border: 1px solid transparent; font-weight: 750; letter-spacing: .045em; text-transform: uppercase; font-size: .76rem; transition: transform .22s ease, box-shadow .22s ease, background .22s ease, color .22s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--ff-charcoal); color: #fff6d8; box-shadow: 0 12px 30px rgba(25,21,18,.16); }
.btn-primary:hover { background: var(--ff-burgundy); color: #fff; }
.btn-secondary { background: transparent; color: var(--ff-charcoal); border-color: var(--ff-border); }
.btn-secondary:hover { background: rgba(184,137,61,.10); color: var(--ff-charcoal); }
.btn-gold { background: linear-gradient(135deg, var(--ff-gold), var(--ff-gold-light)); color: #2a1810; }
.btn-full { width: 100%; }

/* Cards / grids */
.card { background: rgba(255, 253, 248, .88); border: 1px solid rgba(223,207,179,.85); border-radius: var(--ff-radius-lg); box-shadow: var(--ff-shadow-soft); }
.lux-card { padding: clamp(22px, 3vw, 34px); }
.grid-4 { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px; }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 28px; }
.section-head p { margin-top: 10px; }

/* Hero */
.hero { padding: clamp(54px, 7vw, 98px) 0 clamp(44px, 6vw, 76px); }
.hero-grid { display: grid; grid-template-columns: 1fr .88fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.hero-copy h1 { max-width: 10ch; }
.hero-copy .lead { margin: 20px 0 28px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-meta { display: grid; grid-template-columns: repeat(3, max-content); gap: 20px; margin-top: 32px; color: var(--ff-muted); font-size: .92rem; }
.hero-visual { position: relative; isolation: isolate; }
.hero-panel { min-height: 520px; border-radius: 42px; background: radial-gradient(circle at 60% 22%, rgba(226,195,117,.24), transparent 26%), linear-gradient(145deg, #16110d, #2c1d14 58%, #140e0a); display: grid; place-items: center; padding: 34px; overflow: hidden; box-shadow: var(--ff-shadow); border: 1px solid rgba(226,195,117,.35); }
.hero-panel::before { content: ""; position: absolute; inset: 18px; border: 1px solid rgba(226,195,117,.25); border-radius: 34px; pointer-events: none; }
.hero-logo { width: min(92%, 560px); filter: drop-shadow(0 24px 32px rgba(0,0,0,.30)); }
.float-badge { position: absolute; right: -14px; bottom: 44px; width: min(280px, 64%); padding: 18px 20px; border-radius: 22px; background: rgba(255,250,240,.94); border: 1px solid var(--ff-border); box-shadow: var(--ff-shadow-soft); }
.float-badge strong { display: block; font-family: var(--ff-serif); color: var(--ff-charcoal); font-size: 1.7rem; line-height: 1; }

.collection-card { min-height: 220px; display: flex; flex-direction: column; justify-content: end; padding: 24px; position: relative; overflow: hidden; background: linear-gradient(135deg, #fffdf8, #f2e2c6); }
.collection-card::before { content: ""; position: absolute; width: 170px; height: 170px; border-radius: 999px; right: -44px; top: -42px; background: rgba(184,137,61,.14); }
.collection-card h3, .collection-card p, .collection-card a { position: relative; }
.collection-card p { margin: 8px 0 18px; }

/* Product cards */
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.product-card { overflow: hidden; transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease; }
.product-card:hover { transform: translateY(-5px); box-shadow: var(--ff-shadow); border-color: rgba(184,137,61,.55); }
.product-image-wrap { position: relative; aspect-ratio: 1 / 1; background: linear-gradient(135deg, #fff9ec, #efe2c8); display: grid; place-items: center; overflow: hidden; }
.product-image-wrap img { width: 100%; height: 100%; object-fit: contain; padding: 18px; transition: transform .32s ease; }
.product-card:hover .product-image-wrap img { transform: scale(1.035); }
.badge-stack { position: absolute; left: 12px; top: 12px; display: grid; gap: 6px; }
.badge { display: inline-flex; width: max-content; align-items: center; border-radius: 999px; padding: 5px 9px; font-size: .68rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; background: rgba(25,21,18,.88); color: #fff6d8; }
.badge.new { background: var(--ff-gold); color: #21140d; }
.badge.sale { background: var(--ff-sale); color: #fff; }
.badge.prive { background: #2b2118; color: #fff6d8; }
.badge.signature { background: rgba(25,21,18,.72); color: #fff6d8; }
.product-info { padding: 16px; display: grid; gap: 7px; }
.product-brand { color: var(--ff-bronze); text-transform: none; letter-spacing: .06em; font-size: .76rem; font-weight: 800; }
.product-name { font-family: var(--ff-serif); font-size: 1.35rem; line-height: 1.05; color: var(--ff-charcoal); }
.product-meta { color: var(--ff-muted); font-size: .9rem; }
.price-row { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.price { color: var(--ff-charcoal); font-weight: 800; }
.price-sale { color: var(--ff-sale); font-weight: 850; }
.price-regular-cut { color: var(--ff-soft); text-decoration: line-through; }
.card-cta { margin-top: 8px; }

.trust-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.trust-item { padding: 22px; border-radius: var(--ff-radius-lg); background: rgba(255,253,248,.68); border: 1px solid rgba(223,207,179,.75); }
.trust-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 999px; background: rgba(184,137,61,.12); color: var(--ff-bronze); margin-bottom: 12px; }
.story { display: grid; grid-template-columns: .85fr 1fr; gap: 42px; align-items: center; }
.story-logo-panel { border-radius: 34px; background: linear-gradient(145deg, #17110d, #2b1d14); min-height: 410px; display: grid; place-items: center; padding: 30px; box-shadow: var(--ff-shadow); }
.story-logo-panel img { max-width: 94%; }
.inquiry-band { background: linear-gradient(135deg, #1a110d, #351d17); border-radius: 34px; padding: clamp(28px, 5vw, 54px); color: #fff6d8; display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center; }
.inquiry-band h2 { color: #fff7de; }
.inquiry-band p { color: rgba(255,247,222,.76); margin-top: 10px; }

/* Shop */
.shop-layout { display: grid; grid-template-columns: 282px 1fr; gap: 24px; align-items: start; }
.filters-panel { position: sticky; top: 100px; padding: 20px; }
.filter-group { display: grid; gap: 8px; padding: 14px 0; border-bottom: 1px solid rgba(223,207,179,.75); }
.filter-group:last-child { border-bottom: 0; }
.filter-title { font-weight: 850; color: var(--ff-charcoal); }
.input, select, textarea { width: 100%; border: 1px solid var(--ff-border); border-radius: 13px; padding: 12px 13px; color: var(--ff-charcoal); background: rgba(255,253,248,.88); }
.check-row { display: flex; align-items: center; gap: 9px; color: var(--ff-muted); }
.check-row input { width: 16px; height: 16px; accent-color: var(--ff-bronze); }
.catalog-toolbar { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.catalog-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.load-more-wrap { display: grid; place-items: center; margin-top: 28px; }
.empty-state { padding: 34px; text-align: center; }

/* Product detail */
.product-detail { display: grid; grid-template-columns: .9fr 1fr; gap: clamp(28px, 5vw, 66px); align-items: start; }
.product-gallery { padding: clamp(18px, 3vw, 28px); }
.product-main-image { aspect-ratio: 1 / 1; background: linear-gradient(135deg, #fffaf0, #efe1c4); border-radius: 24px; display: grid; place-items: center; overflow: hidden; }
.product-main-image img { width: 100%; height: 100%; object-fit: contain; padding: 22px; }
.product-summary { padding-top: 10px; }
.detail-meta { display: flex; gap: 10px; flex-wrap: wrap; margin: 20px 0; }
.pill { border: 1px solid var(--ff-border); border-radius: 999px; padding: 8px 12px; background: rgba(255,253,248,.8); color: var(--ff-muted); font-size: .9rem; }
.detail-price { font-size: 1.45rem; margin: 16px 0; }
.fragrance-profile,
.olfactive-destiny { margin: 22px 0 18px; padding: clamp(18px, 2.4vw, 24px); border-left: 1px solid rgba(184,137,61,.42); background: linear-gradient(90deg, rgba(184,137,61,.075), rgba(255,253,248,0)); }
.profile-kicker,
.destiny-kicker { margin-bottom: 10px; }
.profile-copy,
.destiny-copy { display: grid; gap: 12px; }
.profile-copy p,
.destiny-copy p { color: var(--ff-muted); font-size: clamp(.98rem, 1.04vw, 1.06rem); line-height: 1.82; margin: 0; }
.note-list { display: flex; gap: 8px; flex-wrap: wrap; margin: 18px 0; }
.note-chip { background: rgba(184,137,61,.12); border: 1px solid rgba(184,137,61,.26); color: var(--ff-bronze); border-radius: 999px; padding: 8px 12px; font-weight: 700; font-size: .88rem; }

/* Contact / content pages */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 28px; align-items: start; }
.info-list { display: grid; gap: 14px; margin-top: 20px; }
.info-item { display: grid; grid-template-columns: 44px 1fr; gap: 12px; align-items: start; }
.info-icon { width: 44px; height: 44px; border-radius: 999px; display: grid; place-items: center; background: rgba(184,137,61,.13); color: var(--ff-bronze); }
.form-grid { display: grid; gap: 14px; }
.policy-content { display: grid; gap: 22px; max-width: 860px; }
.policy-content h2 { margin-top: 16px; }

/* V2.0/V2.1 luxury boutique refinements */
.btn { min-height: 42px; padding: 10px 18px; font-size: .72rem; letter-spacing: .055em; }
.card {
  background: rgba(255, 253, 248, .82);
  border-color: rgba(214, 194, 158, .92);
  box-shadow: 0 16px 42px rgba(60, 36, 19, .075);
}
.section-head { margin-bottom: 24px; }
.section-note { margin-top: 10px; max-width: 58ch; color: var(--ff-muted); }
.hero { padding: clamp(46px, 6.5vw, 82px) 0 clamp(38px, 5vw, 64px); }
.hero-grid { grid-template-columns: .92fr 1fr; gap: clamp(30px, 5vw, 68px); }
.hero-copy h1 { max-width: 12ch; }
.hero-copy .lead { margin: 18px 0 24px; }
.hero-meta { margin-top: 26px; font-size: .86rem; gap: 16px; }
.hero-panel {
  min-height: 560px;
  border-radius: 36px;
  padding: 30px;
  background:
    radial-gradient(circle at 60% 18%, rgba(226,195,117,.28), transparent 24%),
    radial-gradient(circle at 12% 84%, rgba(75,23,31,.18), transparent 32%),
    linear-gradient(145deg, #130e0b, #2c1d14 62%, #100b08);
}
.hero-panel::before { inset: 16px; border-radius: 28px; }
.hero-logo { width: min(86%, 520px); }
.float-badge {
  position: static;
  justify-self: end;
  width: min(100%, 370px);
  margin-top: 16px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(255,250,240,.96);
}
.float-badge strong { font-size: 1.45rem; }
.collection-card {
  min-height: 205px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255,253,248,.95), rgba(243,229,202,.86)),
    radial-gradient(circle at 100% 0%, rgba(184,137,61,.14), transparent 44%);
}
.collection-card h3 { font-size: clamp(1.55rem, 2vw, 2.15rem); }
.product-grid { gap: 16px; }
.product-image-wrap { background: linear-gradient(145deg, #fffaf0, #f3e7cf); }
.product-info { padding: 15px; gap: 6px; }
.product-name { font-size: 1.22rem; line-height: 1.08; }
.product-meta, .product-family { font-size: .84rem; }
.trust-row { gap: 18px; }
.trust-item {
  padding: 24px 22px;
  background: linear-gradient(180deg, rgba(255,253,248,.82), rgba(250,240,222,.62));
  min-height: 205px;
}
.trust-item h3 { margin-bottom: 8px; }
.trust-item p { font-size: .95rem; line-height: 1.55; }
.story-logo-panel {
  min-height: 390px;
  background:
    radial-gradient(circle at 50% 10%, rgba(226,195,117,.22), transparent 25%),
    linear-gradient(145deg, #15100d, #2b1d14);
}
.inquiry-band {
  background:
    radial-gradient(circle at 85% 8%, rgba(226,195,117,.18), transparent 28%),
    linear-gradient(135deg, #15100d, #3a1d18);
}
.filters-panel { box-shadow: 0 18px 42px rgba(60,36,19,.07); }

/* V2.1 visual refinements */
.hero-panel {
  min-height: 505px;
  border-radius: 34px;
}
.hero-logo { width: min(82%, 490px); }
.hero-meta {
  display: flex;
  flex-wrap: wrap;
}
.hero-meta span {
  position: relative;
  padding-right: 22px;
  font-weight: 550;
}
.hero-meta span:not(:last-child)::after {
  content: "•";
  position: absolute;
  right: 5px;
  color: var(--ff-bronze);
}
.collection-card {
  min-height: 176px;
  padding: 22px 24px;
  justify-content: center;
  text-align: left;
  background:
    radial-gradient(circle at 93% 10%, rgba(184,137,61,.16), transparent 31%),
    linear-gradient(135deg, rgba(255,253,248,.98), rgba(246,233,207,.88));
}
.collection-card::before {
  width: 132px;
  height: 132px;
  right: -34px;
  top: -34px;
  background: rgba(184,137,61,.10);
}
.collection-card h3 { font-size: clamp(1.75rem, 2.25vw, 2.35rem); }
.collection-card p {
  margin: 8px 0 16px;
  max-width: 33ch;
}
.collection-kicker {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 6px;
  color: var(--ff-bronze);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .66rem;
  font-weight: 850;
}
.story-copy .lead,
.about-copy {
  text-align: justify;
  text-justify: inter-word;
  font-size: 1.03rem;
  line-height: 1.78;
}
.lux-card .about-copy { color: var(--ff-muted); }
.trust-item h3 { text-transform: capitalize; }


/* V2.5 Luxury Homepage + Global Title Case Refinements */
.announcement,
.eyebrow,
.collection-kicker,
.brand-location,
.btn {
  text-transform: none;
}

.announcement {
  letter-spacing: .08em;
}

.eyebrow,
.collection-kicker {
  letter-spacing: .12em;
  font-weight: 800;
}

.btn {
  letter-spacing: .035em;
}

/* V2.5 Homepage Layout Refinement */
.hero-welcome {
  padding: clamp(46px, 6vw, 76px) 0 clamp(26px, 4vw, 44px);
}

.hero-welcome .hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(300px, .82fr);
  gap: clamp(28px, 4.5vw, 58px);
  align-items: center;
}

.hero-welcome .hero-copy h1 {
  max-width: 13ch;
}

.hero-welcome .hero-copy .lead {
  max-width: 62ch;
}

.hero-welcome .hero-panel {
  position: relative;
  width: min(100%, 520px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  max-height: 500px;
  margin-left: auto;
  padding: clamp(22px, 3vw, 34px);
}

.hero-welcome .hero-logo {
  width: min(78%, 420px);
  height: auto;
  object-fit: contain;
}

.hero-signature-line {
  margin: clamp(20px, 3vw, 34px) auto 0;
  text-align: center;
  font-weight: 850;
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  letter-spacing: .08em;
  color: var(--ff-charcoal);
}

.story {
  grid-template-columns: .9fr 1fr;
}

.story-logo-panel {
  min-height: 0;
  height: clamp(310px, 34vw, 410px);
  overflow: hidden;
}

.story-logo-panel img {
  width: min(84%, 430px);
  height: auto;
  max-height: 84%;
  object-fit: contain;
}

.story-copy h2 {
  max-width: 12ch;
}

.inquiry-band {
  align-items: center;
}

.inquiry-hours {
  margin-top: 16px;
  color: rgba(255, 247, 222, .86);
  font-size: .98rem;
  letter-spacing: .015em;
}

.signature-closing {
  padding: clamp(20px, 3vw, 34px) 0;
}

.signature-closing img {
  display: block;
  width: min(100%, 1120px);
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: 0 18px 48px rgba(25, 17, 13, .18);
}

.signature-closing + .site-footer {
  margin-top: 0;
}

/* V2.5 Compact Global Footer */
.site-footer .footer-main,
.site-footer .footer-bottom {
  width: min(100% - 32px, 1080px);
}

.footer-main {
  grid-template-columns: .55fr .55fr .55fr 1.15fr;
  gap: clamp(28px, 4vw, 54px);
  padding: 44px 0 28px;
  align-items: start;
}

.footer-stamp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 108px;
  margin-bottom: 0;
  border-radius: 18px;
  padding: 7px;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-links {
  gap: 6px;
}

.footer-contact p {
  margin-top: 7px;
  line-height: 1.55;
}

.footer-contact p:first-of-type {
  max-width: 34ch;
}

.footer-bottom {
  padding: 18px 0 24px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-tagline {
  color: rgba(248, 233, 195, .82);
  white-space: nowrap;
}

.footer-bottom .social-row {
  gap: 8px;
}

.footer-bottom .social-icon {
  width: 34px;
  height: 34px;
  font-size: .78rem;
}

.homepage-footer { margin-top: 0; }

/* V2.6 Romantic Collection Buttons + Zero-Box Homepage Closing + Backup Footer Email */

/* Global Title Case / Luxury Text Refinement */
.announcement,
.eyebrow,
.collection-kicker,
.brand-location,
.btn {
  text-transform: none;
}

.announcement {
  letter-spacing: .08em;
}

.eyebrow,
.collection-kicker {
  letter-spacing: .12em;
  font-weight: 800;
}

.btn {
  letter-spacing: .035em;
}

/* Featured Collection Button Refinement */
.collection-card .btn {
  text-transform: none;
  letter-spacing: .04em;
}

/* Zero-Box Homepage Closing */
.homepage-closing {
  background: transparent;
  padding: clamp(72px, 9vw, 118px) 0 clamp(20px, 3vw, 34px);
  margin-top: clamp(18px, 4vw, 44px);
}

.homepage-closing-inner {
  max-width: 860px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(14px, 2vw, 22px);
}

.homepage-closing h2 {
  margin: 0;
  max-width: 13ch;
  font-family: var(--ff-serif);
  font-size: clamp(2.15rem, 4.6vw, 3.85rem);
  line-height: .95;
  font-weight: 700;
  color: var(--ff-charcoal);
  letter-spacing: -.025em;
}

.homepage-closing-hours {
  margin: 0;
  color: rgba(114, 95, 77, .92);
  font-size: clamp(.98rem, 1.35vw, 1.08rem);
  line-height: 1.7;
  letter-spacing: .015em;
}

.homepage-closing-button {
  margin-top: 6px;
  min-width: 220px;
  text-transform: none;
}

/* Hallmark Signature Closing */
.signature-closing.hallmark-signature {
  background: transparent;
  padding: clamp(10px, 2.2vw, 26px) 0 clamp(44px, 6vw, 78px);
}

.signature-closing.hallmark-signature img {
  display: block;
  width: min(92vw, 940px);
  max-height: 265px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 0;
  box-shadow: none;
}

.signature-closing.hallmark-signature + .site-footer {
  margin-top: 0;
}

/* Compact Global Footer */
.site-footer .footer-main,
.site-footer .footer-bottom {
  width: min(100% - 32px, 1080px);
}

.footer-main {
  grid-template-columns: .55fr .55fr .55fr 1.2fr;
  gap: clamp(28px, 4vw, 54px);
  padding: 44px 0 28px;
  align-items: start;
}

.footer-stamp {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  max-width: 108px;
  margin-bottom: 0;
  border-radius: 18px;
  padding: 7px;
}

.footer-title {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

.footer-links {
  gap: 6px;
}

.footer-contact p {
  margin-top: 7px;
  line-height: 1.55;
}

.footer-contact p:first-of-type {
  max-width: 36ch;
}

.footer-contact a {
  color: inherit;
  text-decoration: none;
}

.footer-contact a:hover {
  color: var(--ff-gold-light);
}

.footer-bottom {
  padding: 18px 0 24px;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-tagline {
  color: rgba(248, 233, 195, .82);
  white-space: nowrap;
}

.footer-bottom .social-row {
  gap: 8px;
}

.footer-bottom .social-icon {
  width: 34px;
  height: 34px;
  font-size: .78rem;
}

.homepage-footer,
.signature-closing.hallmark-signature + .homepage-footer {
  margin-top: 0;
}


/* V2.7 Navigation Copy, Luxury Alignment + One-Line Closing CTA */

/* Elevated paragraph alignment for desktop/tablet reading without forcing awkward mobile justification. */
.hero-copy .lead,
.section-head .lead,
.section-note,
.story-copy .lead,
.about-copy,
.lux-card p,
.collection-card p,
.trust-item p,
.page-hero .lead,
.product-summary .lead,
.profile-copy p,
.destiny-copy p,
.empty-state p,
.contact-grid p {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

/* Keep the four trust descriptions visually identical and neatly justified. */
.trust-item p {
  font-size: .96rem;
  line-height: 1.72;
}

/* V2.7: reduce and stretch the closing CTA so the heading reads as one crisp line on desktop. */
.homepage-closing-inner {
  max-width: 1120px;
}

.homepage-closing h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.9rem, 3.25vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: -.018em;
}

/* V2.8 Atelier opening narrative override: strict left alignment for the catalog intro. */
.atelier-page-hero .container,
.atelier-page-hero .breadcrumb,
.atelier-page-hero .eyebrow,
.atelier-page-hero h1,
.atelier-page-hero .lead {
  text-align: left;
}

.atelier-page-hero .lead {
  max-width: 760px;
  text-align: left;
  text-justify: auto;
  hyphens: manual;
}


/* V3.0 Hours Declutter, Store Hours + Contact Balance */
.homepage-hours-button {
  margin-top: 2px;
  min-width: 268px;
  padding-inline: 34px;
  text-transform: none;
}

.homepage-closing-button {
  min-width: 220px;
}

.boutique-hours-card {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 22px;
  background: linear-gradient(135deg, rgba(255, 253, 248, .92), rgba(242, 226, 198, .62));
  border: 1px solid rgba(184, 137, 61, .22);
}

.boutique-hours-card > strong,
.hours-info strong {
  display: block;
  margin-bottom: 12px;
  color: var(--ff-charcoal);
}

.hours-list {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.hours-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  color: var(--ff-muted);
  font-size: .94rem;
  line-height: 1.45;
}

.hours-row span:first-child {
  color: var(--ff-espresso);
  font-weight: 700;
}

.hours-row span:last-child {
  text-align: right;
  white-space: nowrap;
}

.contact-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
}

.contact-board {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.contact-details-board .info-list,
.product-inquiry-board .form-grid {
  flex: 1;
}

.product-inquiry-board .form-grid {
  align-content: start;
}

.product-inquiry-board .form-grid button {
  justify-self: start;
  margin-top: auto;
}

.contact-social-row {
  margin-top: auto;
  padding-top: 24px;
}


/* V3.1 Global Footer Baseline Bar — Stacked Luxury Symmetry */
.footer-social-block {
  margin-top: 14px;
}

.footer-social-block .social-row {
  gap: 8px;
}

.footer-social-block .social-icon {
  width: 34px;
  height: 34px;
  font-size: .78rem;
}

.site-footer .footer-baseline {
  width: min(100% - 32px, 1080px);
}

.footer-bottom.footer-baseline {
  border-top: 1px solid rgba(248, 233, 195, .15);
  padding: 24px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 9px;
  text-align: center;
  color: rgba(248, 233, 195, .68);
}

.footer-baseline-row {
  width: 100%;
  display: block;
}

.footer-pillars {
  color: rgba(248, 233, 195, .78);
  font-size: .78rem;
  line-height: 1.45;
  letter-spacing: .32em;
  text-transform: uppercase;
  font-weight: 700;
}

.footer-pillars span {
  letter-spacing: .12em;
}

.footer-parent {
  color: #fff6d8;
  font-family: var(--ff-serif);
  font-size: calc(.9rem + 2px);
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: .045em;
}

.footer-legal {
  color: rgba(248, 233, 195, .62);
  font-size: .9rem;
  line-height: 1.5;
}


/* V3.3 Footer Contact Polish + Homepage Spacing Tightening */
.footer-phone-lines a {
  display: inline-block;
}

.home-trust-section {
  padding-bottom: clamp(18px, 3vw, 34px);
}

.home-trust-section + .homepage-closing {
  margin-top: 0;
  padding-top: clamp(30px, 4vw, 54px);
}

/* V3.4/V3.6 About Page Split-Column Philosophy Balance */
.about-philosophy-grid {
  align-items: center;
  gap: clamp(30px, 4.5vw, 56px);
}

.about-philosophy-logo {
  align-self: center;
  justify-self: stretch;
  min-height: clamp(390px, 38vw, 540px);
  height: auto;
  max-height: none;
  overflow: visible;
  display: grid;
  place-items: center;
  padding: clamp(24px, 3vw, 40px);
}

.about-philosophy-logo img {
  display: block;
  width: min(86%, 430px);
  height: auto;
  max-width: 100%;
  max-height: min(480px, 100%);
  object-fit: contain;
}

.about-philosophy-card {
  align-self: center;
  text-align: left;
}

.about-philosophy-card h2,
.about-philosophy-card .about-kicker,
.about-philosophy-card .boutique-hours-card,
.about-philosophy-card .boutique-hours-card strong {
  text-align: left;
}

.about-opening-hero .lead {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-philosophy-card .about-kicker {
  margin: 0 0 10px;
  color: var(--ff-bronze);
  font-family: var(--ff-sans);
  font-size: .72rem;
  line-height: 1.4;
  letter-spacing: .12em;
  font-weight: 800;
}

.about-philosophy-card .about-copy {
  margin-top: 18px;
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.about-hours-card {
  margin-top: 24px;
}

.about-hours-card .hours-list {
  gap: 8px;
}

.about-hours-card .hours-row {
  display: grid;
  grid-template-columns: minmax(104px, 132px) 1fr;
  justify-content: start;
  align-items: baseline;
  gap: 14px;
  text-align: left;
}

.about-hours-card .hours-row span:last-child {
  text-align: left;
  white-space: normal;
}

/* V3.5 About Page Bottom Value Cards */
.about-value-cards .trust-item h3 {
  font-weight: 850;
}

/* V3.7: avoid exaggerated inter-word spacing in narrow About value cards. */
.about-value-cards .trust-item p {
  text-align: left;
  text-justify: auto;
  hyphens: none;
  word-spacing: normal;
  overflow-wrap: normal;
  text-wrap: pretty;
}

/* V3.8 Contact page narrative alignment and elevated form text. */
.contact-hero .lead,
.product-inquiry-board .contact-card-copy {
  text-align: justify;
  text-justify: inter-word;
  hyphens: auto;
}

.contact-board .contact-card-kicker {
  margin: 0 0 10px;
}

.product-inquiry-board .contact-card-copy {
  margin: 12px 0 22px;
}

.contact-details-board .info-item p {
  text-align: left;
  text-justify: auto;
  hyphens: manual;
}


/* V3.8 Global Navigation Label Refinement */
.primary-nav a {
  white-space: nowrap;
}

/* V3.9 Dialogue page curation/social refinement + V4.1 shared card-title alignment */
.contact-board .contact-card-title {
  margin: 0;
  white-space: nowrap;
  font-family: var(--ff-serif);
  font-size: clamp(1.65rem, 3.5vw, 2.35rem);
  font-weight: 600;
  line-height: 1.03;
  letter-spacing: -.018em;
  color: var(--ff-charcoal);
}

.load-more-button {
  min-width: 178px;
  border-color: rgba(184, 137, 61, .32);
  background: rgba(255, 253, 248, .52);
  box-shadow: none;
}

.load-more-button:hover {
  background: rgba(184, 137, 61, .10);
  border-color: rgba(184, 137, 61, .48);
  color: var(--ff-charcoal);
}

.contact-social-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-social-row .brand-social-icon {
  width: 42px;
  height: 42px;
  border: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: .02em;
  box-shadow: 0 12px 24px rgba(28, 18, 12, .13);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-social-row .brand-social-icon:hover {
  transform: translateY(-2px);
  filter: saturate(1.08);
  box-shadow: 0 16px 28px rgba(28, 18, 12, .18);
}

.contact-social-row .brand-instagram {
  background: radial-gradient(circle at 30% 110%, #feda75 0 22%, #fa7e1e 34%, #d62976 58%, #962fbf 78%, #4f5bd5 100%);
}

.contact-social-row .brand-tiktok {
  background: #010101;
}

.contact-social-row .brand-tiktok span {
  color: #fff;
  text-shadow: -1.4px 0 #25f4ee, 1.4px 0 #fe2c55;
}

.contact-social-row .brand-facebook {
  background: #1877f2;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.28rem;
  text-transform: none;
}

.contact-social-row .brand-google {
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(66, 133, 244, .2), 0 12px 24px rgba(28, 18, 12, .13);
}

.contact-social-row .brand-google span {
  background: linear-gradient(90deg, #4285f4 0 26%, #ea4335 26% 52%, #fbbc05 52% 74%, #34a853 74% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* V4.0 Global Top Marquee Ticker */
.announcement {
  position: relative;
  overflow: hidden;
  width: 100%;
  background: linear-gradient(90deg, #15100d, #2c1713, #15100d);
  color: #f4deaa;
  font-family: var(--ff-sans);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .15em;
  line-height: 1;
  text-align: left;
  text-transform: none;
  white-space: nowrap;
  padding: 10px 0;
}
.announcement-track {
  display: flex;
  width: max-content;
  min-width: 100%;
  will-change: transform;
  animation: ff-marquee-left 38s linear infinite;
}
.announcement-copy {
  flex: 0 0 auto;
  padding-right: clamp(56px, 9vw, 110px);
}
@keyframes ff-marquee-left {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .announcement-track { animation: none; transform: none; }
}

/* V4.2 Product Card Metadata Normalization + Retail Language Refinement */
.product-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-card .product-image-wrap {
  flex: 0 0 auto;
}

.product-card .badge-stack {
  left: 14px;
  top: 14px;
  display: block;
  pointer-events: none;
  z-index: 2;
}

.product-card .badge {
  padding: 0;
  border-radius: 0;
  background: transparent !important;
  color: var(--ff-charcoal) !important;
  font-family: var(--ff-sans);
  font-size: .68rem;
  font-weight: 850;
  letter-spacing: .14em;
  line-height: 1;
  text-transform: none;
  text-shadow: 0 1px 12px rgba(255, 250, 240, .84);
}

.product-info {
  flex: 1;
  display: grid;
  grid-template-rows: 18px 30px 20px 20px 20px 24px auto;
  align-content: start;
  gap: 6px;
  min-height: 190px;
}

.product-line {
  min-width: 0;
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-brand {
  line-height: 18px;
}

.product-name {
  display: block;
  line-height: 30px;
}

.product-size,
.product-family,
.product-meta {
  color: var(--ff-muted);
  font-size: .86rem;
  line-height: 20px;
}

.price-row.product-line,
.product-info .price-row {
  min-height: 24px;
  margin-top: 0;
  line-height: 24px;
}

.price,
.price-sale {
  color: var(--ff-charcoal) !important;
  font-weight: 850;
}

.price-regular-cut {
  color: rgba(114, 95, 77, .34) !important;
  text-decoration: line-through;
  text-decoration-color: rgba(114, 95, 77, .28);
}

.card-cta {
  margin-top: 10px;
  align-self: end;
  width: 100%;
}


/* V4.4 product detail spatial refinement and communication cleanup */
.product-page-hero { padding: clamp(24px, 3.2vw, 42px) 0 14px; }
.product-detail-section { padding-top: clamp(18px, 2.4vw, 30px); }
.product-detail { grid-template-columns: minmax(300px, .82fr) minmax(0, 1fr); gap: clamp(22px, 4vw, 52px); }
.product-gallery { padding: clamp(14px, 2.2vw, 22px); }
.product-main-image img { padding: clamp(16px, 2vw, 20px); }
.product-summary { padding-top: 0; }
.product-summary h1 { font-size: clamp(2.2rem, 4.15vw, 4.35rem); line-height: .96; max-width: 11.5ch; }
.product-summary .eyebrow { margin-bottom: 8px; }
.detail-meta { margin: 14px 0 12px; }
.product-image-price { margin: 12px 0 0; justify-content: flex-start; font-size: clamp(.78rem, .9vw, .9rem); letter-spacing: .08em; text-transform: uppercase; color: var(--ff-muted); }
.product-image-price .price,
.product-image-price .price-sale { color: var(--ff-charcoal); font-weight: 760; }
.product-image-price .price-regular-cut { color: var(--ff-soft); font-weight: 650; }
.fragrance-profile,
.olfactive-destiny { margin: 14px 0 12px; padding: clamp(14px, 1.8vw, 18px); }
.profile-kicker,
.destiny-kicker { margin-bottom: 8px; }
.profile-copy,
.destiny-copy { gap: 8px; }
.profile-copy p,
.destiny-copy p { font-size: clamp(.9rem, .96vw, 1rem); line-height: 1.58; }
.note-list { margin: 12px 0 14px; }
.note-chip { padding: 7px 10px; font-size: .8rem; }
.product-actions { margin-top: 4px; }
.email-text, .phone-text { color: inherit; }
.dialogue-form { transition: opacity .18s ease, transform .18s ease, filter .18s ease; }
.dialogue-form.is-transitioning-out { opacity: 0; transform: translateY(8px); filter: blur(1px); }
.dialogue-form button[disabled] { opacity: .68; cursor: wait; }
.dialogue-success-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(260px, 33vw, 380px);
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid rgba(184, 137, 61, .26);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,253,248,.92), rgba(245,232,208,.62));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.66), 0 18px 46px rgba(60, 36, 19, .08);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .34s ease, transform .34s ease;
}
.dialogue-success-card::before,
.dialogue-success-card::after {
  content: "";
  position: absolute;
  left: clamp(28px, 5vw, 52px);
  right: clamp(28px, 5vw, 52px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184, 137, 61, .34), transparent);
}
.dialogue-success-card::before { top: clamp(22px, 4vw, 38px); }
.dialogue-success-card::after { bottom: clamp(22px, 4vw, 38px); }
.dialogue-success-card.is-visible { opacity: 1; transform: translateY(0); }
.dialogue-success-card p {
  max-width: 42ch;
  margin: 0;
  color: var(--ff-charcoal);
  font-family: var(--ff-serif);
  font-size: clamp(1.34rem, 2.35vw, 2.12rem);
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -.014em;
  text-align: center;
}

/* V5.0 launch-phase form safety and product fallback states */
.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.form-status {
  min-height: 1.2em;
  color: var(--ff-muted);
  font-size: .92rem;
}
.form-status[data-status="error"] { color: #7b1f1f; }
.form-status[data-status="pending"] { color: var(--ff-bronze); }
.dialogue-status-card--error {
  background: linear-gradient(145deg, rgba(255,253,248,.96), rgba(246,235,218,.78));
}
.dialogue-status-card--error p {
  font-size: clamp(1.05rem, 1.55vw, 1.42rem);
  line-height: 1.45;
}
.dialogue-status-inner {
  display: grid;
  justify-items: center;
  gap: 18px;
  max-width: 52ch;
  text-align: center;
}
.dialogue-status-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.product-not-found {
  grid-column: 1 / -1;
  padding: clamp(28px, 5vw, 54px);
  text-align: center;
}
.product-not-found h1 { margin-bottom: 14px; }
.product-not-found p { max-width: 58ch; margin-inline: auto; }

/* V5.0.1 Critical Hotfix: Product Card Row Lock
   Prevents the Unveil button and price row from sliding upward when a product
   has fewer metadata lines. This keeps all catalog cards structurally stable
   without changing catalog data or starting the next phase. */
.product-card .product-info {
  grid-template-rows: 18px 30px 20px 20px 20px 24px 42px;
  min-height: 216px;
}

.product-card .product-brand { grid-row: 1; }
.product-card .product-name { grid-row: 2; }
.product-card .product-size { grid-row: 3; }
.product-card .product-family { grid-row: 4; }
.product-card .product-meta { grid-row: 5; }
.product-card .price-row { grid-row: 6; }
.product-card .card-cta {
  grid-row: 7;
  align-self: stretch;
  margin-top: 0;
}

.product-card .card-cta .btn {
  min-height: 42px;
}

/* V5.5.0 Desktop Product / Navigation QA
   Keeps catalog and related-product cards row-locked while giving longer names
   a controlled two-line desktop space, tightening badge placement, and keeping
   the sticky filter panel usable on shorter desktop screens. */
@media (min-width: 641px) {
  .product-card .product-info {
    grid-template-rows: 18px 44px 20px 20px 20px 24px 42px;
    min-height: 230px;
  }

  .product-card .product-name {
    display: -webkit-box;
    line-height: 1.12;
    white-space: normal;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.product-card .badge-stack {
  left: 12px;
  top: 12px;
  max-width: calc(100% - 24px);
}

.product-card .badge {
  max-width: 100%;
  padding: 6px 10px;
  border: 1px solid rgba(184, 137, 61, .30);
  border-radius: 999px;
  background: rgba(255, 253, 248, .86) !important;
  box-shadow: 0 8px 22px rgba(60, 36, 19, .07);
  color: var(--ff-charcoal) !important;
  letter-spacing: .09em;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: none;
  white-space: nowrap;
}

.product-card .price-row {
  gap: 7px;
  white-space: nowrap;
}

.product-card .card-cta .btn {
  white-space: nowrap;
}

@media (min-width: 861px) {
  .filters-panel {
    max-height: calc(100vh - 118px);
    overflow: auto;
    scrollbar-gutter: stable;
  }
}
