:root {
    --ink: #02070e;
    --navy: #071524;
    --white: #f7f7f6;
    --muted: #b9c0c9;
    --line: rgba(255, 255, 255, 0.12);
    --page-pad: clamp(1.5rem, 3.65vw, 4rem);
    color-scheme: dark;
    font-family: "Manrope", system-ui, sans-serif;
    font-synthesis: none;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.motion-ready {
    scroll-padding-top: 6.5rem;
}

body {
    min-width: 320px;
    margin: 0;
    overflow-x: hidden;
    color: var(--white);
    background: var(--ink);
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

.skip-link {
    position: fixed;
    z-index: 100;
    top: 0.75rem;
    left: 0.75rem;
    padding: 0.7rem 1rem;
    color: #000;
    background: #fff;
    border-radius: 0.5rem;
    transform: translateY(-160%);
    transition: transform 180ms ease;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    width: 100%;
    min-height: 102px;
    padding: 0 var(--page-pad);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(1, 6, 13, 0.88), rgba(1, 6, 13, 0.18));
    transition: min-height 280ms ease, background-color 280ms ease, box-shadow 280ms ease, backdrop-filter 280ms ease;
}

.site-header.is-scrolled {
    position: fixed;
    min-height: 78px;
    background: rgba(2, 8, 17, 0.86);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.18);
    backdrop-filter: blur(16px) saturate(135%);
}

.site-header.is-scrolled .brand { height: 68px; }

.scroll-progress {
    position: fixed;
    z-index: 80;
    top: 0;
    right: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, #fff, #8eb2d4);
    pointer-events: none;
    transform: scaleX(0);
    transform-origin: left center;
}

.brand {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    justify-self: start;
    align-items: center;
    width: clamp(9rem, 12.5vw, 12rem);
    height: 86px;
}

.brand__logo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.primary-nav {
    display: flex;
    align-self: stretch;
    align-items: center;
    gap: clamp(1.5rem, 3vw, 3rem);
}

.primary-nav a {
    position: relative;
    display: grid;
    height: 100%;
    place-items: center;
    font-size: 1rem;
}

.primary-nav a::after {
    position: absolute;
    bottom: 26px;
    left: 50%;
    width: 0;
    height: 1px;
    background: #fff;
    content: "";
    transform: translateX(-50%);
    transition: width 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.is-active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    justify-self: end;
    align-items: center;
    gap: 0.8rem;
    height: 3rem;
    padding: 0 1.05rem;
    color: #101318;
    background: #fff;
    border-radius: 999px;
}

.header-actions a {
    position: relative;
    display: grid;
    min-width: 1.3rem;
    height: 2rem;
    place-items: center;
}

.header-actions__divider {
    width: 1px;
    height: 1.35rem;
    background: #d5d5d5;
}

.cart-count {
    position: absolute;
    top: -0.16rem;
    right: -0.66rem;
    display: grid;
    min-width: 1.05rem;
    height: 1.05rem;
    padding: 0 0.2rem;
    place-items: center;
    color: #fff;
    background: #c8151e;
    border-radius: 0.22rem;
    font-size: 0.65rem;
    font-weight: 700;
}

.menu-toggle {
    display: none;
}

.hero {
    position: relative;
    min-height: 100svh;
    overflow: hidden;
    isolation: isolate;
}

.hero__backdrop,
.hero__shade {
    position: absolute;
    inset: 0;
}

.hero__backdrop {
    z-index: -3;
    background: #080604 url("../images/hero-branding-bottle.jpg") center center / cover no-repeat;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.04);
    will-change: transform;
    filter: brightness(0.95) contrast(1.05);
}

.hero__shade {
    z-index: -2;
    background:
        linear-gradient(90deg, rgba(3, 4, 7, 0.72) 0%, rgba(3, 4, 7, 0.2) 48%, rgba(3, 4, 7, 0.48) 100%),
        linear-gradient(0deg, rgba(3, 4, 7, 0.75) 0%, transparent 42%);
}

.hero__content {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 340px);
    align-items: center;
    gap: 2rem clamp(1.5rem, 3vw, 3.5rem);
    width: 100%;
    min-height: 100vh;
    min-height: 100svh;
    padding: clamp(8.5rem, 13vh, 11.5rem) var(--page-pad) clamp(2.5rem, 5vh, 4rem);
    box-sizing: border-box;
}

.hero__text-col {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 1.35rem;
    max-width: 680px;
    z-index: 10;
}

.hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 4.4vw, 4.2rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero h1 span {
    display: block;
}

.hero h1 span:last-child,
.hero__title-accent {
    margin-top: 0.35rem;
    color: #162b42;
    color: #1e3a8a;
}

.hero__intro {
    position: relative;
    position: static;
    bottom: auto;
    left: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: min(100%, 540px);
    gap: 1.1rem;
    margin-top: 0;
}

.hero__description {
    margin: 0;
    font-size: clamp(1.02rem, 1.3vw, 1.2rem);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.92);
    text-wrap: pretty;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.button {
    display: inline-grid;
    min-width: 12.5rem;
    min-height: 3.4rem;
    padding: 0.85rem 1.5rem;
    place-items: center;
    border-radius: 999px;
    font-weight: 700;
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.28);
}

.button--light {
    color: #09101a;
    background: #fff;
}

.button--dark {
    color: #ffffff;
    background: #07172a;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.button--dark:hover,
.button--dark:focus-visible {
    color: #ffffff;
    background: #0f253f;
    box-shadow: 0 10px 28px rgba(7, 23, 42, 0.35);
}

.signature-collection__action {
    display: flex;
    justify-content: center;
    margin-top: clamp(2.5rem, 4vw, 4rem);
}

.signature-collection__view-all {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    gap: 0.75rem;
    min-width: auto;
    padding: 0.9rem 2.2rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.signature-collection__view-all i {
    transition: transform 200ms ease;
}

.signature-collection__view-all:hover i {
    transform: translateX(4px);
}

.hero__cta {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    gap: 0.75rem;
    min-width: auto;
    padding: 0.85rem 1.8rem;
    margin-top: 0.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
}

.hero__cta i {
    transition: transform 200ms ease;
}

.hero__cta:hover i {
    transform: translateX(4px);
}

.scent-notes {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    gap: 0.65rem;
    margin: 0.15rem 0;
}

.scent-notes span {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
    font-size: 0.88rem;
    font-weight: 500;
    color: #f7e7c4;
}

.scent-notes span i {
    font-size: 0.95rem;
    color: #1e3a8a;
}

.featured {
    position: relative;
    grid-column: 2;
    top: auto;
    right: auto;
    align-self: flex-end;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 340px;
    margin: 0 0 0 auto;
    transform: none;
    z-index: 10;
}

.product-card {
    padding: 1rem 1.15rem 1.3rem;
    color: #11131a;
    background: rgba(255, 255, 255, 0.97);
    border-radius: 1.1rem;
    box-shadow: 0 28px 55px rgba(0, 0, 0, 0.28);
}

.product-card__badges {
    display: flex;
    gap: 0.65rem;
}

.product-card__badges span {
    padding: 0.35rem 0.72rem;
    border: 1px solid #8d939b;
    border-radius: 0.43rem;
    font-size: 0.78rem;
    font-weight: 600;
    line-height: 1;
}

.product-card__badges span:last-child {
    color: #fff;
    background: #06172a;
    border-color: #06172a;
}

.product-card__visual {
    display: grid;
    grid-template-columns: 2rem 1fr 2rem;
    align-items: center;
    min-height: 225px;
}

.product-card__visual button,
.add-button {
    display: grid;
    padding: 0;
    color: inherit;
    background: transparent;
    border: 0;
    cursor: pointer;
    place-items: center;
}

.product-card__visual button {
    height: 2.5rem;
    font-size: 1.2rem;
}

.product-card__thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 190px;
    padding: 0.35rem;
    overflow: hidden;
}

.product-card__thumb img {
    max-width: 100%;
    max-height: 180px;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 0.65rem;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.22));
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-card__thumb img {
    transform: scale(1.06) translateY(-2px);
}

.mini-bottle {
    display: flex;
    align-self: end;
    justify-self: center;
    flex-direction: column;
    align-items: center;
    filter: drop-shadow(0 11px 8px rgba(0, 0, 0, 0.2));
}

.mini-bottle__cap {
    position: relative;
    z-index: 1;
    width: 3.15rem;
    height: 4.25rem;
    margin-bottom: -0.4rem;
    background: linear-gradient(90deg, #050505, #1d1d1d 48%, #020202);
    border-radius: 0.3rem 0.3rem 0.16rem 0.16rem;
    box-shadow: inset 0 0 0 1px #252525;
}

.mini-bottle__body {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 7.3rem;
    height: 9.5rem;
    color: #fff;
    background: linear-gradient(100deg, #020202, #171717 45%, #030303);
    border: 3px solid #111;
    border-radius: 0.45rem;
    box-shadow: inset 0 0 0 1px #444;
    font-size: 0.87rem;
    letter-spacing: 0.08em;
    text-align: center;
    text-transform: uppercase;
}

.mini-bottle__body b {
    font-weight: 500;
    line-height: 1.2;
}

.mini-bottle__body small {
    position: absolute;
    bottom: 1rem;
    font-size: 0.42rem;
    letter-spacing: 0.09em;
}

.product-card__details {
    display: flex;
    align-items: end;
    justify-content: space-between;
}

.product-card__details small {
    color: #777b81;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.product-card__details h2 {
    margin: 0.12rem 0 0.32rem;
    font-size: 1.1rem;
    font-weight: 400;
}

.product-card__details strong {
    font-size: 1.15rem;
}

.add-button {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
}

.slider-progress {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0.9rem;
    margin-top: 1.25rem;
}

.slider-progress span {
    height: 0.36rem;
    background: rgba(255, 255, 255, 0.28);
    border-radius: 999px;
}

.slider-progress span:first-child {
    background: #fff;
}

.story-intro {
    display: grid;
    min-height: clamp(280px, 19.3vw, 340px);
    padding: clamp(2rem, 3vw, 3rem) var(--page-pad);
    color: #26272a;
    background: #fafafa;
    border-top: 1px solid #d9d9d9;
    place-items: center;
}

.story-intro__inner {
    display: flex;
    width: min(100%, 970px);
    flex-direction: column;
    align-items: center;
}

.story-intro__statement {
    margin: 0;
    font-size: clamp(1.45rem, 2.25vw, 2.15rem);
    font-weight: 400;
    letter-spacing: -0.04em;
    line-height: 1.12;
    text-align: center;
    text-wrap: balance;
}

.story-intro__statement > span {
    display: block;
}

.story-capsule {
    display: inline-block;
    width: 2.45em;
    height: 0.92em;
    margin: 0 0.18em;
    vertical-align: -0.1em;
    background-color: #10151b;
    background-image: url("../images/hero-branding-bottle.jpg");
    background-repeat: no-repeat;
    border: 1px solid rgba(0, 0, 0, 0.18);
    border-radius: 999px;
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, 0.24), 0 1px 2px rgba(0, 0, 0, 0.15);
    animation: capsuleGlow 5s ease-in-out infinite;
}

.story-capsule--bottle {
    background-position: 85% 40%;
    background-size: 500%;
}

.story-capsule--stone {
    background-position: 70% 65%;
    background-size: 450%;
}

.story-capsule--velvet {
    background-position: 15% 45%;
    background-size: 480%;
}

.story-intro__link {
    display: inline-grid;
    min-width: 8.5rem;
    min-height: 2.6rem;
    margin-top: clamp(1.25rem, 2.4vw, 2rem);
    padding: 0.55rem 1.15rem;
    color: #17181b;
    background: #fff;
    border: 1px solid #9d9d9d;
    border-radius: 999px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    font-size: 0.78rem;
    font-weight: 600;
    place-items: center;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.story-intro__link:hover,
.story-intro__link:focus-visible {
    color: #fff;
    background: #081321;
    border-color: #081321;
    transform: translateY(-2px);
}

.story-intro__link:focus-visible {
    outline-color: #081321;
}

.campaigns {
    padding: clamp(1.25rem, 2.8vw, 3rem) var(--page-pad) clamp(1.75rem, 3.5vw, 3.75rem);
    color: #fff;
    background: #fafafa;
}

.campaigns__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 1420px);
    margin: 0 auto;
    gap: clamp(0.9rem, 1.6vw, 1.6rem);
}

.campaign-card {
    position: relative;
    min-height: 240px;
    overflow: hidden;
    background: #090e15;
    border-radius: clamp(1rem, 1.6vw, 1.5rem);
    box-shadow: 0 9px 26px rgba(4, 10, 18, 0.12);
    aspect-ratio: 2.38 / 1;
    isolation: isolate;
}

.campaign-card__image,
.campaign-card__overlay {
    position: absolute;
    inset: 0;
}

.campaign-card__image {
    z-index: 0;
    background-position: center;
    background-size: cover;
    transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.campaign-card:hover .campaign-card__image {
    transform: scale(1.035);
}

.campaign-card--gift .campaign-card__image {
    background-image: url("../images/campaign-gift-new.jpg");
    background-position: center right;
}

.campaign-card--offer .campaign-card__image {
    background-image: url("../images/campaign-him-new.jpg");
    background-position: center right;
}

.campaign-card__overlay {
    z-index: 1;
}

.campaign-card--gift .campaign-card__overlay {
    background: linear-gradient(90deg, rgba(3, 7, 13, 0.85) 0%, rgba(3, 7, 13, 0.4) 55%, transparent 100%);
}

.campaign-card--offer .campaign-card__overlay {
    background: linear-gradient(90deg, rgba(3, 7, 13, 0.88) 0%, rgba(3, 7, 13, 0.45) 55%, transparent 100%);
}

.campaign-card__content {
    position: absolute;
    z-index: 2;
    top: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transform: translateY(-50%);
}

.campaign-card--gift .campaign-card__content {
    left: 8%;
    width: 44%;
    align-items: flex-start;
    text-align: left;
}

.campaign-card--offer .campaign-card__content {
    left: 8%;
    width: 44%;
    align-items: flex-start;
    text-align: left;
}

.campaign-card__content p {
    margin: 0 0 0.55rem;
    color: rgba(255, 255, 255, 0.48);
    font-size: clamp(0.62rem, 0.72vw, 0.78rem);
}

.campaign-card__content h3 {
    margin: 0;
    font-size: clamp(1.45rem, 2.1vw, 2rem);
    font-weight: 400;
    letter-spacing: -0.055em;
    line-height: 1.02;
}

.campaign-card__content h3 strong,
.campaign-card__content h3 span {
    display: block;
}

.campaign-card__content h3 strong {
    font-weight: 700;
}

.campaign-card__content a {
    display: inline-grid;
    min-width: 6.2rem;
    min-height: 2.15rem;
    margin-top: clamp(0.75rem, 1.2vw, 1.15rem);
    padding: 0.45rem 0.9rem;
    color: #0c1118;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
    font-size: 0.65rem;
    font-weight: 700;
    place-items: center;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.campaign-card__content a:hover,
.campaign-card__content a:focus-visible {
    color: #fff;
    background: #081321;
    transform: translateY(-2px);
}

.marketing-line {
    color: #17191d;
    background: #fafafa;
    border-top: 1px solid #ededed;
}

.marketing-line__marquee {
    width: 100%;
    overflow: hidden;
    border-bottom: 1px solid #ededed;
}

.marketing-line__track {
    display: flex;
    min-height: clamp(3rem, 4.2vw, 4rem);
    align-items: center;
    justify-content: center;
    gap: clamp(1.2rem, 2.3vw, 2.5rem);
    padding: 0 var(--page-pad);
    color: #d2d2d4;
    white-space: nowrap;
}

.marketing-line__track.is-animated {
    width: max-content;
    justify-content: flex-start;
    animation: marketingTicker 24s linear infinite;
}

.marketing-line__marquee:hover .marketing-line__track.is-animated {
    animation-play-state: paused;
}

.marketing-line__track span {
    font-size: clamp(1rem, 1.45vw, 1.35rem);
    font-weight: 400;
    letter-spacing: -0.025em;
}

.marketing-line__track i {
    color: #b8b8ba;
    font-size: 0.72rem;
    font-style: normal;
}

.signature-collection {
    position: relative;
    padding: clamp(3.5rem, 6vw, 6rem) var(--page-pad) clamp(4rem, 7vw, 7rem);
    color: #17191d;
    background: #fafafa;
}

.signature-collection > #all-products {
    position: absolute;
    top: 0;
}

.product-grid-section {
    position: relative;
    padding: clamp(3rem, 5vw, 5.5rem) var(--page-pad);
    color: #17191d;
    background: #ffffff;
    border-top: 1px solid #eeeeee;
}

.new-arrivals-section {
    background: #fafafa;
}

.most-sellers-section {
    background: #ffffff;
}

.signature-collection__heading,
.product-grid-section__heading {
    margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
    text-align: center;
}

.signature-collection__heading p,
.product-grid-section__heading p {
    margin: 0 0 0.45rem;
    color: #6b6e76;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.signature-collection__heading h2,
.product-grid-section__heading h2 {
    margin: 0;
    color: #14171c;
    font-size: clamp(1.75rem, 2.8vw, 2.5rem);
    font-weight: 400;
    letter-spacing: -0.04em;
}

.signature-collection__heading h2 strong,
.product-grid-section__heading h2 strong {
    font-weight: 700;
    color: #07172a;
}

.signature-product__badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    right: auto;
    z-index: 3;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.signature-product__badge--new {
    color: #0d4722;
    background: #d1f7dc;
    border: 1px solid #a3edbb;
}

.signature-product__badge--bestseller {
    color: #ffffff;
    background: #0c243e;
    border: 1px solid #162b42;
}

.signature-products {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(100%, 1460px);
    margin: 0 auto;
    gap: clamp(0.9rem, 1.7vw, 1.75rem);
}

.signature-product {
    min-width: 0;
    transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-product:hover { transform: translateY(-8px); }

.signature-product__visual {
    position: relative;
    overflow: hidden;
    background: #fff;
    border: 1px solid #eeeef0;
    border-radius: 0.75rem;
    aspect-ratio: 0.92 / 1;
    transition: box-shadow 320ms ease, border-color 320ms ease;
}

.signature-product:hover .signature-product__visual {
    border-color: #d8dadd;
    box-shadow: 0 22px 48px rgba(7, 19, 33, 0.12);
}

.signature-product__discount {
    position: absolute;
    z-index: 3;
    top: 0.75rem;
    right: 0.75rem;
    left: auto;
    padding: 0.28rem 0.55rem;
    color: #ffffff;
    background: #07172a;
    border-radius: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.signature-product__image-link {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
}

.signature-product__image-link img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.signature-product:hover .signature-product__image-link img {
    transform: scale(1.045);
}

.signature-product__cart {
    position: absolute;
    z-index: 4;
    right: 0.75rem;
    bottom: 0.75rem;
    left: 0.75rem;
    display: flex;
    min-height: 2.8rem;
    visibility: hidden;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    color: #fff;
    background: #071321;
    border-radius: 999px;
    box-shadow: 0 9px 24px rgba(0, 0, 0, 0.24);
    font-size: 0.76rem;
    font-weight: 700;
    opacity: 0;
    transform: translateY(0.75rem);
    transition: visibility 200ms, opacity 200ms ease, transform 200ms ease, background-color 180ms ease;
}

.signature-product:hover .signature-product__cart,
.signature-product__cart:focus-visible {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
}

.signature-product__cart:hover,
.signature-product__cart:focus-visible {
    background: #162b42;
}

.signature-product__info {
    padding: 0.9rem 0.15rem 0;
}

.signature-product__info > p {
    margin: 0 0 0.25rem;
    color: #989a9f;
    font-size: 0.66rem;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.signature-product__info h3 {
    margin: 0;
    font-size: clamp(0.95rem, 1.25vw, 1.12rem);
    font-weight: 500;
}

.signature-product__info h3 a:hover,
.signature-product__info h3 a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.2rem;
}

.signature-product__price {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
    margin-top: 0.55rem;
}

.signature-product__price strong {
    color: #081321;
    font-size: 1rem;
}

.signature-product__price del {
    color: #a4a5a9;
    font-size: 0.78rem;
}

.signature-collection a:focus-visible {
    outline-color: #081321;
}

.fragrance-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: clamp(1rem, 2.2vw, 2rem) var(--page-pad) clamp(2rem, 4vw, 4rem);
    background: #fbfbfb;
    gap: clamp(0.7rem, 1vw, 1rem);
}

.fragrance-showcase__carousel,
.fragrance-showcase__editorial {
    min-height: clamp(390px, 42vw, 620px);
    overflow: hidden;
    border-radius: clamp(1rem, 1.4vw, 1.35rem);
}

.fragrance-showcase__carousel {
    position: relative;
    display: grid;
    background: #031321;
    place-items: center;
}

.showcase-slides {
    position: relative;
    width: min(70%, 430px);
    height: 79%;
}

.showcase-slide {
    position: absolute;
    inset: 0;
    display: grid;
    visibility: hidden;
    grid-template-columns: 1fr auto;
    padding: clamp(0.75rem, 1.3vw, 1.15rem);
    color: #17191d;
    background: #fff;
    border-radius: 0.8rem;
    box-shadow: 0 26px 55px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateX(1.25rem);
    transition: visibility 280ms, opacity 280ms ease, transform 280ms ease;
}

.showcase-slide.is-active {
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
}

.showcase-slide__image {
    display: grid;
    grid-column: 1 / -1;
    min-height: 0;
    place-items: center;
}

.showcase-slide__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.showcase-slide__info {
    align-self: end;
}

.showcase-slide__info p {
    margin: 0 0 0.2rem;
    color: #96989d;
    font-size: 0.64rem;
}

.showcase-slide__info h3 {
    margin: 0 0 0.35rem;
    font-size: clamp(0.92rem, 1.25vw, 1.15rem);
    font-weight: 500;
}

.showcase-slide__info div {
    display: flex;
    align-items: baseline;
    gap: 0.55rem;
}

.showcase-slide__info strong {
    font-size: 0.95rem;
}

.showcase-slide__info del {
    color: #a0a2a7;
    font-size: 0.72rem;
}

.showcase-slide__add {
    display: grid;
    align-self: end;
    width: 2.25rem;
    height: 2.25rem;
    border: 1px solid #000000;
    border-radius: 50%;
    place-items: center;
    transition: color 180ms ease, background-color 180ms ease;
}

.showcase-slide__add:hover,
.showcase-slide__add:focus-visible {
    color: #fff;
    background: #071321;
}

.fragrance-showcase__arrow {
    position: absolute;
    z-index: 4;
    top: 50%;
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.8rem;
    place-items: center;
    transform: translateY(-50%);
    transition: color 180ms ease, background-color 180ms ease;
}

.fragrance-showcase__arrow:hover,
.fragrance-showcase__arrow:focus-visible {
    color: #071321;
    background: #fff;
}

.fragrance-showcase__arrow--previous {
    left: clamp(0.65rem, 2vw, 1.75rem);
}

.fragrance-showcase__arrow--next {
    right: clamp(0.65rem, 2vw, 1.75rem);
}

.fragrance-showcase__dots {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    display: flex;
    gap: 0.4rem;
    transform: translateX(-50%);
}

.fragrance-showcase__dots button {
    width: 0.42rem;
    height: 0.42rem;
    padding: 0;
    background: rgba(255, 255, 255, 0.32);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    transition: width 180ms ease, background-color 180ms ease;
}

.fragrance-showcase__dots button.is-active {
    width: 1.2rem;
    background: #fff;
    border-radius: 999px;
}

.fragrance-showcase__editorial {
    background: #080a0b url("../images/showcase-editorial-new.jpg") center top / cover no-repeat;
}

.fragrance-showcase a:focus-visible {
    outline-color: #071321;
}

.best-seller {
    position: relative;
    min-height: clamp(620px, 57vw, 860px);
    overflow: hidden;
    padding: clamp(2rem, 3.3vw, 3.5rem) var(--page-pad) 4.2rem;
    color: #16191d;
    background: #fbfbfb;
    border-top: 1px solid #ececee;
    isolation: isolate;
}

.best-seller__top {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.best-seller__top h2 {
    margin: 0;
    font-size: clamp(1rem, 1.45vw, 1.35rem);
    font-weight: 700;
    letter-spacing: -0.04em;
    line-height: 1.1;
}

.best-seller__top h2 span {
    display: block;
    margin-bottom: 0.28rem;
    font-weight: 400;
}

.best-seller__top > a {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.1rem;
    font-size: 0.7rem;
    font-weight: 700;
}

.best-seller__top > a i {
    transition: transform 180ms ease;
}

.best-seller__top > a:hover i,
.best-seller__top > a:focus-visible i {
    transform: translateX(0.25rem);
}

.best-seller__wordmark {
    position: absolute;
    z-index: 0;
    top: 12%;
    left: 50%;
    margin: 0;
    color: #c8c9cb;
    font-size: clamp(6rem, 16.6vw, 16rem);
    font-weight: 700;
    letter-spacing: -0.08em;
    line-height: 0.9;
    text-transform: uppercase;
    transform: translateX(-50%);
    white-space: nowrap;
    animation: wordmarkDrift 10s ease-in-out infinite;
}

.best-seller__art {
    position: absolute;
    z-index: 1;
    top: 8%;
    left: 50%;
    width: min(53vw, 720px);
    transform: translateX(-50%);
}

.best-seller__art img {
    display: block;
    width: 100%;
    height: auto;
    mix-blend-mode: normal !important;
    background: transparent !important;
    filter: drop-shadow(0 25px 35px rgba(0, 0, 0, 0.28));
    transition: transform 500ms cubic-bezier(0.22, 1, 0.36, 1);
}

.best-seller__art:hover img,
.best-seller__art:focus-visible img {
    transform: scale(1.025) rotate(1deg);
}

.best-seller__notes {
    position: absolute;
    z-index: 4;
    bottom: 5.6rem;
    left: var(--page-pad);
    display: flex;
    width: min(290px, 26vw);
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    gap: 0.55rem;
}

.best-seller__notes span {
    padding: 0.35rem 0.72rem;
    color: #72757b;
    background: #fff;
    border: 1px solid #dddfe2;
    border-radius: 999px;
    font-size: 0.65rem;
}

.best-seller-card {
    position: absolute;
    z-index: 4;
    right: var(--page-pad);
    bottom: 5.6rem;
    display: grid;
    grid-template-columns: 1fr auto;
    width: min(260px, 22vw);
    min-width: 220px;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid #e1e2e4;
    border-radius: 0.7rem;
    box-shadow: 0 12px 32px rgba(9, 16, 25, 0.08);
}

.best-seller-card__badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.27rem 0.5rem;
    color: #fff;
    background: #cb1b27;
    border-radius: 0.25rem;
    font-size: 0.56rem;
    font-weight: 700;
}

.best-seller-card__image {
    display: block;
    grid-column: 1 / -1;
    height: clamp(100px, 10vw, 145px);
}

.best-seller-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.best-seller-card__info {
    min-width: 0;
}

.best-seller-card__info p {
    margin: 0 0 0.18rem;
    color: #999ba0;
    font-size: 0.52rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.best-seller-card__info h3 {
    margin: 0 0 0.32rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.best-seller-card__info div {
    display: flex;
    align-items: baseline;
    gap: 0.42rem;
}

.best-seller-card__info strong {
    font-size: 0.78rem;
}

.best-seller-card__info del {
    color: #a2a4a8;
    font-size: 0.62rem;
}

.best-seller-card__add {
    display: grid;
    align-self: end;
    width: 1.8rem;
    height: 1.8rem;
    color: #17191d;
    border: 1px solid #d8dade;
    border-radius: 50%;
    font-size: 0.68rem;
    place-items: center;
    transition: color 180ms ease, background-color 180ms ease;
}

.best-seller-card__add:hover,
.best-seller-card__add:focus-visible {
    color: #fff;
    background: #071321;
}

.best-seller__values {
    position: absolute;
    z-index: 5;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: clamp(1.3rem, 2.6vw, 3rem);
    color: #c6c7ca;
    background: rgba(255, 255, 255, 0.88);
    border-top: 1px solid #ededee;
    font-size: clamp(0.85rem, 1.35vw, 1.25rem);
    white-space: nowrap;
}

.best-seller__values i {
    color: #aeb0b4;
    font-size: 0.55rem;
    font-style: normal;
}

.best-seller a:focus-visible {
    outline-color: #081321;
}

.service-promises {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 0 var(--page-pad);
    color: #17191d;
    background: #fff;
    border-top: 1px solid #ebebed;
    border-bottom: 1px solid #ebebed;
}

.service-promises article {
    display: flex;
    min-height: 145px;
    padding: 1.5rem clamp(1rem, 2.3vw, 2.5rem);
    align-items: center;
    gap: 1rem;
    border-right: 1px solid #ebebed;
}

.service-promises article:last-child {
    border-right: 0;
}

.service-promises article > i {
    display: grid;
    width: 3rem;
    height: 3rem;
    flex: 0 0 auto;
    color: #fff;
    background: #071321;
    border-radius: 50%;
    place-items: center;
}

.service-promises h2 {
    margin: 0 0 0.3rem;
    font-size: clamp(0.78rem, 1vw, 0.92rem);
}

.service-promises p {
    margin: 0;
    color: #85878c;
    font-size: 0.68rem;
    line-height: 1.5;
}

.scent-discovery {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.85fr);
    padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
    color: #17191d;
    background: #eeeae3;
    gap: clamp(3rem, 8vw, 8rem);
}

.scent-discovery__visual {
    position: relative;
    display: grid;
    min-height: 590px;
    overflow: hidden;
    background: radial-gradient(circle, rgba(255,255,255,.95), rgba(255,255,255,.48) 48%, transparent 70%);
    border-radius: 50%;
    place-items: center;
}

.scent-discovery__visual img {
    position: relative;
    z-index: 2;
    display: block;
    width: min(72%, 520px);
    height: auto;
    mix-blend-mode: normal !important;
    background: transparent !important;
    filter: drop-shadow(0 25px 28px rgba(21, 28, 36, 0.2));
    animation: bottleFloat 6s ease-in-out infinite;
}

.scent-discovery__orbit {
    position: absolute;
    inset: 13%;
    border: 1px solid rgba(7, 19, 33, 0.16);
    border-radius: 50%;
    animation: orbitTurn 28s linear infinite;
}

.scent-discovery__orbit::before,
.scent-discovery__orbit::after {
    position: absolute;
    width: 0.55rem;
    height: 0.55rem;
    background: #071321;
    border-radius: 50%;
    content: "";
}

.scent-discovery__orbit::before { top: 13%; left: 13%; }
.scent-discovery__orbit::after { right: 6%; bottom: 24%; }

.scent-discovery__note {
    position: absolute;
    z-index: 3;
    padding: 0.5rem 0.85rem;
    color: #fff;
    background: rgba(7, 19, 33, 0.88);
    border-radius: 999px;
    font-size: 0.65rem;
    backdrop-filter: blur(8px);
    animation: noteFloat 4.5s ease-in-out infinite;
}

.scent-discovery__note--one { top: 22%; left: 7%; }
.scent-discovery__note--two { top: 35%; right: 4%; animation-delay: -1.4s; }
.scent-discovery__note--three { bottom: 16%; left: 13%; animation-delay: -2.8s; }

.scent-discovery__content {
    align-self: center;
}

.scent-discovery__content > p:first-child,
.gifting-callout__content > p:first-child,
.newsletter > div:first-child > p {
    margin: 0 0 0.7rem;
    color: #7d8085;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scent-discovery__content h2 {
    margin: 0;
    font-size: clamp(2.6rem, 5.3vw, 5.4rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.scent-discovery__content > p:nth-of-type(2) {
    max-width: 600px;
    margin: 1.5rem 0 2.1rem;
    color: #66696f;
    line-height: 1.75;
}

.scent-discovery__steps {
    display: grid;
    margin-bottom: 2.25rem;
    border-top: 1px solid #cfcac1;
}

.scent-discovery__steps span {
    display: flex;
    padding: 0.9rem 0;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid #cfcac1;
    font-size: 0.78rem;
}

.scent-discovery__steps b {
    color: #9b9b98;
    font-size: 0.62rem;
}

.scent-discovery__content > a {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    min-height: 3rem;
    padding: 0.7rem 1.3rem;
    align-items: center;
    gap: 0.8rem;
    color: #fff;
    background: #071321;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.gifting-callout {
    position: relative;
    display: grid;
    min-height: clamp(500px, 49vw, 740px);
    overflow: hidden;
    color: #fff;
    background: #04090f;
    isolation: isolate;
    place-items: center start;
}

.gifting-callout__image,
.gifting-callout__shade {
    position: absolute;
    inset: 0;
}

.gifting-callout__image {
    z-index: -2;
    background: url("../images/campaign-gift.png") center / cover no-repeat;
    transform: translate3d(0, var(--parallax-y, 0), 0) scale(1.12);
    will-change: transform;
}

.gifting-callout__shade {
    z-index: -1;
    background: linear-gradient(90deg, rgba(2,7,13,.92), rgba(2,7,13,.64) 40%, rgba(2,7,13,.08) 74%);
}

.gifting-callout__content {
    width: min(600px, 48vw);
    margin-left: var(--page-pad);
}

.gifting-callout__content > p:first-child { color: #8ea0b2; }

.gifting-callout__content h2 {
    margin: 0;
    font-size: clamp(3rem, 6.2vw, 6.5rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.95;
}

.gifting-callout__content > p:nth-of-type(2) {
    max-width: 500px;
    margin: 1.5rem 0 2rem;
    color: #a8b3bd;
    line-height: 1.7;
}

.gifting-callout__content div {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    gap: 0.75rem;
}

.gifting-callout__content a {
    display: inline-grid;
    min-height: 3rem;
    padding: 0.7rem 1.3rem;
    border: 1px solid rgba(255,255,255,.5);
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    place-items: center;
}

.gifting-callout__content a:first-child {
    color: #071321;
    background: #fff;
    border-color: #fff;
}

.newsletter {
    display: grid;
    grid-template-columns: minmax(0, .9fr) minmax(380px, 1fr);
    padding: clamp(3.5rem, 6vw, 6rem) var(--page-pad);
    color: #fff;
    background: #0c2236;
    gap: clamp(3rem, 8vw, 9rem);
}

.newsletter > div:first-child > p { color: #7890a4; }

.newsletter h2 {
    max-width: 600px;
    margin: 0;
    font-size: clamp(2.7rem, 5.5vw, 5.6rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.newsletter > div:last-child {
    align-self: center;
}

.newsletter > div:last-child > p:first-child {
    max-width: 590px;
    margin: 0 0 1.5rem;
    color: #a9b6c2;
    line-height: 1.7;
}

.newsletter form {
    position: relative;
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,.35);
}

.newsletter form > input {
    width: 100%;
    padding: 1rem 3rem 1rem 0;
    color: #fff;
    background: transparent;
    border: 0;
    outline: 0;
    font: inherit;
}

.newsletter form > input::placeholder { color: #7e92a3; }

.newsletter form > button {
    width: 3rem;
    color: #fff;
    background: transparent;
    border: 0;
    cursor: pointer;
}

.newsletter small {
    display: block;
    margin-top: 0.8rem;
    color: #708698;
    font-size: 0.6rem;
}

.newsletter__alert {
    margin: 0 0 0.8rem !important;
    font-size: 0.72rem;
}

.newsletter__alert--success { color: #82d4a7 !important; }
.newsletter__alert--error { color: #f0a0a6 !important; }
.newsletter__trap { position: absolute; left: -10000px; }

.reviews {
    padding: clamp(4rem, 7vw, 7rem) var(--page-pad);
    color: #17191d;
    background: #f3f1ed;
}

.reviews__heading {
    display: flex;
    width: min(100%, 1420px);
    margin: 0 auto clamp(2rem, 4vw, 4rem);
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
}

.reviews__heading p {
    margin: 0 0 0.5rem;
    color: #86888d;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.reviews__heading h2 {
    max-width: 650px;
    margin: 0;
    font-size: clamp(2.2rem, 4.5vw, 4.5rem);
    font-weight: 400;
    letter-spacing: -0.065em;
    line-height: 1.02;
}

.reviews__summary {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 0.2rem 0.75rem;
}

.reviews__summary strong {
    grid-row: 1 / 3;
    font-size: 2.65rem;
    line-height: 1;
}

.reviews__summary span,
.review-card__stars {
    color: #071524;
    letter-spacing: 0.12em;
}

.reviews__summary small {
    color: #7c7e83;
    font-size: 0.65rem;
}

.reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(100%, 1420px);
    margin: 0 auto;
    gap: clamp(1rem, 1.8vw, 1.8rem);
}

.review-card {
    display: flex;
    min-height: 300px;
    padding: clamp(1.5rem, 2.6vw, 2.5rem);
    flex-direction: column;
    background: #fff;
    border: 1px solid #e2dfda;
    border-radius: 1rem;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease;
}

.review-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 45px rgba(31, 28, 23, 0.1);
}

.review-card__stars {
    font-size: 0.78rem;
}

.review-card blockquote {
    margin: 1.5rem 0 2rem;
    font-size: clamp(1.05rem, 1.45vw, 1.3rem);
    letter-spacing: -0.025em;
    line-height: 1.55;
}

.review-card footer {
    display: flex;
    margin-top: auto;
    align-items: center;
    gap: 0.8rem;
}

.review-card footer > span {
    display: grid;
    width: 2.6rem;
    height: 2.6rem;
    color: #fff;
    background: #071321;
    border-radius: 50%;
    font-size: 0.7rem;
    font-weight: 700;
    place-items: center;
}

.review-card footer div {
    display: grid;
}

.review-card footer strong {
    font-size: 0.85rem;
}

.review-card footer small {
    margin-top: 0.15rem;
    color: #898b90;
    font-size: 0.62rem;
}

.review-card footer small i {
    color: #35855c;
}

.contact-section {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(400px, 1fr);
    padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
    color: #fff;
    background: #061321;
    gap: clamp(3rem, 8vw, 9rem);
}

.contact-section__intro {
    align-self: center;
    max-width: 610px;
}

.contact-section__intro > p:first-child {
    margin: 0 0 0.75rem;
    color: #8294a5;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.contact-section__intro h2 {
    margin: 0;
    font-size: clamp(2.7rem, 5.6vw, 5.8rem);
    font-weight: 400;
    letter-spacing: -0.075em;
    line-height: 0.98;
}

.contact-section__intro > p:not(:first-child) {
    max-width: 530px;
    margin: 1.5rem 0 2.5rem;
    color: #aeb9c3;
    line-height: 1.75;
}

.contact-methods {
    display: grid;
    gap: 0.8rem;
}

.contact-methods a,
.contact-methods > p {
    display: flex;
    margin: 0;
    align-items: center;
    gap: 1rem;
}

.contact-methods > * > i {
    display: grid;
    width: 2.65rem;
    height: 2.65rem;
    flex: 0 0 auto;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    place-items: center;
}

.contact-methods span {
    display: grid;
    font-size: 0.85rem;
}

.contact-methods small {
    margin-bottom: 0.15rem;
    color: #8091a1;
    font-size: 0.62rem;
    text-transform: uppercase;
}

.contact-panel {
    padding: clamp(1.5rem, 3vw, 3rem);
    color: #17191d;
    background: #fff;
    border-radius: 1.2rem;
}

.contact-alert {
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    border-radius: 0.45rem;
    font-size: 0.78rem;
}

.contact-alert--success {
    color: #185c38;
    background: #e7f6ed;
}

.contact-alert--error {
    color: #8a2932;
    background: #fdebed;
}

.contact-form,
.contact-form label {
    display: grid;
}

.contact-form {
    gap: 1.1rem;
}

.contact-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-form label {
    gap: 0.45rem;
    font-size: 0.7rem;
    font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.85rem 0;
    color: #17191d;
    background: transparent;
    border: 0;
    border-bottom: 1px solid #d6d8dc;
    border-radius: 0;
    outline: 0;
    font: inherit;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #071321;
    box-shadow: 0 1px #071321;
}

.contact-form button {
    display: flex;
    min-height: 3.4rem;
    margin-top: 0.35rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    background: #071321;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

.contact-form__privacy {
    margin: 0;
    color: #87898e;
    font-size: 0.62rem;
    text-align: center;
}

.contact-form__trap {
    position: absolute;
    left: -10000px;
}

.site-footer {
    padding: clamp(3.5rem, 6vw, 6rem) var(--page-pad) 1.5rem;
    color: #fff;
    background: #020811;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.site-footer__top {
    display: grid;
    grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(130px, 0.65fr));
    width: min(100%, 1420px);
    margin: 0 auto clamp(3rem, 5vw, 5rem);
    gap: clamp(2rem, 5vw, 5rem);
}

.site-footer__brand img {
    display: block;
    width: min(230px, 72%);
    height: 120px;
    object-fit: contain;
}

.site-footer__brand p {
    max-width: 420px;
    margin: 0.9rem 0 1.5rem;
    color: #909eab;
    font-size: 0.83rem;
    line-height: 1.7;
}

.site-footer__socials {
    display: flex;
    gap: 0.6rem;
}

.site-footer__socials a {
    display: grid;
    width: 2.35rem;
    height: 2.35rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    place-items: center;
    transition: color 180ms ease, background-color 180ms ease;
}

.site-footer__socials a:hover,
.site-footer__socials a:focus-visible {
    color: #071321;
    background: #fff;
}

.site-footer nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
}

.site-footer nav h2 {
    margin: 0 0 0.55rem;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-footer nav a {
    color: #8f9dab;
    font-size: 0.78rem;
    transition: color 180ms ease;
}

.site-footer nav a:hover,
.site-footer nav a:focus-visible {
    color: #fff;
}

.site-footer__bottom {
    display: flex;
    width: min(100%, 1420px);
    margin: 0 auto;
    padding-top: 1.5rem;
    align-items: center;
    justify-content: space-between;
    color: #687786;
    border-top: 1px solid rgba(255, 255, 255, 0.09);
    font-size: 0.67rem;
}

.site-footer__bottom p {
    margin: 0;
}

.motion-ready .hero h1 span:first-child {
    opacity: 0;
    transform: translateY(38px);
}

.motion-ready .hero h1 span:last-child {
    opacity: 0;
    transform: translateX(-36px);
}

.motion-ready .hero__intro,
.motion-ready .featured,
.motion-ready .site-header {
    opacity: 0;
}

.motion-ready.motion-loaded .hero h1 span:first-child {
    animation: heroTitleIn 950ms 100ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.motion-ready.motion-loaded .hero h1 span:last-child {
    animation: heroBottledIn 950ms 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.motion-ready.motion-loaded .hero__intro {
    animation: heroTitleIn 800ms 600ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.motion-ready.motion-loaded .featured {
    animation: featuredIn 900ms 550ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.motion-ready.motion-loaded .site-header {
    animation: headerIn 700ms 50ms ease forwards;
}

.motion-ready .motion-reveal {
    opacity: 0;
    transition:
        opacity 750ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
        transform 750ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
    will-change: opacity, transform;
}

.motion-ready .motion-reveal--rise { transform: translateY(42px); }
.motion-ready .motion-reveal--left { transform: translateX(-48px); }
.motion-ready .motion-reveal--right { transform: translateX(48px); }
.motion-ready .motion-reveal--scale { transform: scale(0.9); }

.motion-ready .motion-reveal.is-revealed {
    opacity: 1;
    transform: none;
}

.motion-ready .signature-product.motion-reveal.is-revealed:hover,
.motion-ready .review-card.motion-reveal.is-revealed:hover {
    transform: translateY(-7px);
}

.button,
.campaign-card__content a,
.story-intro__link,
.scent-discovery__content > a,
.gifting-callout__content a,
.contact-form button {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.button::before,
.campaign-card__content a::before,
.story-intro__link::before,
.scent-discovery__content > a::before,
.gifting-callout__content a::before,
.contact-form button::before {
    position: absolute;
    z-index: -1;
    top: -120%;
    left: -45%;
    width: 35%;
    height: 340%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,.48), transparent);
    content: "";
    transform: rotate(20deg) translateX(-250%);
    transition: transform 650ms ease;
}

.button:hover::before,
.campaign-card__content a:hover::before,
.story-intro__link:hover::before,
.scent-discovery__content > a:hover::before,
.gifting-callout__content a:hover::before,
.contact-form button:hover::before {
    transform: rotate(20deg) translateX(700%);
}

@keyframes heroTitleIn {
    to { opacity: 1; transform: translateY(0); }
}

@keyframes heroBottledIn {
    to { opacity: 1; transform: translateX(0); }
}

@keyframes featuredIn {
    from { opacity: 0; transform: translateY(30px) scale(.96); }
    to { opacity: 1; transform: translateY(-4%) scale(1); }
}

@keyframes headerIn {
    from { opacity: 0; transform: translateY(-22px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes marketingTicker {
    to { transform: translateX(-50%); }
}

@keyframes bottleFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-14px) rotate(1deg); }
}

@keyframes orbitTurn {
    to { transform: rotate(360deg); }
}

@keyframes noteFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes capsuleGlow {
    0%, 100% { filter: brightness(.86); }
    50% { filter: brightness(1.22); }
}

@keyframes wordmarkDrift {
    0%, 100% { transform: translateX(-50%); letter-spacing: -.08em; }
    50% { transform: translateX(-49%); letter-spacing: -.065em; }
}

.product-page {
    color: #17191d;
    background: #fafafa;
}

.inner-page {
    color: #17191d;
    background: #fafafa;
}

.inner-page .site-header {
    position: relative;
    color: #f7f7f6;
    background: #020811;
}

.inner-page .site-header .primary-nav a {
    color: #f7f7f6;
}

.inner-hero {
    position: relative;
    display: flex;
    min-height: clamp(430px, 52vw, 720px);
    padding: clamp(4rem, 8vw, 8rem) var(--page-pad);
    overflow: hidden;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: #071321;
    isolation: isolate;
}

.inner-hero::before,
.inner-hero::after {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 50%;
    content: "";
}

.inner-hero::before { width: 52vw; height: 52vw; right: -15vw; top: -22vw; }
.inner-hero::after { width: 27vw; height: 27vw; right: 15vw; bottom: -18vw; }

.inner-hero > p {
    margin: 0 0 0.8rem;
    color: #8295a6;
    font-size: 0.7rem;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.inner-hero h1 {
    max-width: 1100px;
    margin: 0;
    font-size: clamp(3.8rem, 8.7vw, 9rem);
    font-weight: 400;
    letter-spacing: -.08em;
    line-height: .9;
}

.inner-hero > span {
    margin-top: 2rem;
    color: #8395a5;
    font-size: .72rem;
}

.shop-catalog {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    width: min(calc(100% - (2 * var(--page-pad))), 1460px);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 6rem) 0;
    gap: clamp(2rem, 4vw, 4rem);
    color: #17191d;
    color-scheme: light;
}

.shop-filter-toggle { display: none; }

.shop-filters {
    position: sticky;
    top: 100px;
    display: flex;
    height: max-content;
    flex-direction: column;
    gap: 1.35rem;
}

.shop-filters__head { display:flex; align-items:center; justify-content:space-between; }
.shop-filters__head h2 { margin:0; color:#17191d; font-size:1rem; }
.shop-filters__head button { display:none; }
.shop-filters > label { display:grid; gap:.5rem; font-size:.7rem; font-weight:700; }
.shop-filters input[type="search"], .shop-filters select { width:100%; padding:.78rem .8rem; color:#17191d; background:#fff; border:1px solid #dcdde0; border-radius:.4rem; font:inherit; }
.shop-filters input[type="search"]::placeholder { color:#777a80; opacity:1; }
.shop-filters select option { color:#17191d; background:#fff; }
.shop-filters fieldset { display:grid; margin:0; padding:0 0 1.2rem; gap:.62rem; border:0; border-bottom:1px solid #e1e2e4; }
.shop-filters legend { margin-bottom:.75rem; font-size:.7rem; font-weight:700; }
.shop-filters fieldset label { color:#6f7278; font-size:.72rem; }
.shop-filters input[type="radio"] { accent-color:#071321; }
.shop-filters__switch { display:flex !important; grid-template-columns:auto 1fr; align-items:center; }
.shop-filters__switch input { accent-color:#071321; }
.shop-filters__apply { min-height:2.8rem; color:#fff; background:#071321; border:0; border-radius:999px; cursor:pointer; font-weight:700; }
.shop-filters > a { color:#777a80; font-size:.7rem; text-align:center; text-decoration:underline; }

.shop-results__bar { display:flex; min-height:3.5rem; margin-bottom:1.5rem; align-items:center; justify-content:space-between; border-bottom:1px solid #e2e3e5; }
.shop-results__bar p { margin:0; color:#777a80; font-size:.75rem; }
.shop-results__bar p strong { color:#17191d; }
.shop-results__bar label { display:flex; align-items:center; gap:.6rem; color:#777a80; font-size:.7rem; }
.shop-results__bar select { padding:.5rem .65rem; color:#17191d; background:#fff; border:1px solid #e2e3e5; border-radius:.35rem; font:inherit; font-weight:700; }
.shop-results__bar select option { color:#17191d; background:#fff; }
.shop-grid { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:clamp(1rem,2vw,2rem); }
.shop-product__visual { position:relative; overflow:hidden; background:#fff; border:1px solid #ececef; border-radius:.75rem; aspect-ratio:.9/1; }
.shop-product__visual > a:first-of-type { display:grid; width:100%; height:100%; place-items:center; }
.shop-product__visual img { display:block; width:100%; height:100%; object-fit:cover; transition:transform 420ms cubic-bezier(.22,1,.36,1); }
.shop-product:hover img { transform:scale(1.045); }
.shop-product__badge { position:absolute; z-index:2; top:.7rem; left:.7rem; padding:.3rem .55rem; color:#fff; background:#071321; border-radius:.3rem; font-size:.6rem; }
.shop-product__quick { position:absolute; right:.7rem; bottom:.7rem; left:.7rem; display:inline-flex; align-items:center; justify-content:center; gap:0.45rem; min-height:2.7rem; visibility:hidden; color:#fff; background:#071321; border:0; border-radius:999px; opacity:0; transform:translateY(.6rem); font-size:.72rem; font-weight:700; text-decoration:none; cursor:pointer; white-space:nowrap; transition:all 180ms ease; }
.shop-product:hover .shop-product__quick, .shop-product__quick:focus-visible { visibility:visible; opacity:1; transform:none; }
.shop-product > p { margin:.85rem 0 .2rem; color:#92949a; font-size:.61rem; text-transform:uppercase; }
.shop-product > h2 { margin:0; color:#17191d; font-size:1rem; font-weight:500; }
.shop-product > div:last-child { display:flex; margin-top:.45rem; align-items:center; gap:.5rem; }
.shop-product > div strong { color:#17191d; font-size:.9rem; }.shop-product > div del { color:#777a80; font-size:.68rem; }.shop-product > div span { margin-left:auto; color:#a2323a; font-size:.6rem; }
.shop-empty { display:grid; min-height:420px; place-items:center; align-content:center; text-align:center; }.shop-empty i{font-size:2rem;color:#adb0b5}.shop-empty h2{margin:1rem 0 .3rem}.shop-empty p{color:#80838a}.shop-empty a{padding:.7rem 1.2rem;color:#fff;background:#071321;border-radius:999px;font-size:.72rem}

.about-manifesto { padding:clamp(5rem,10vw,10rem) var(--page-pad); text-align:center; background:#f1eee8; }
.about-manifesto > p { margin:0 0 1rem;color:#8a8b8e;font-size:.7rem;letter-spacing:.1em;text-transform:uppercase; }
.about-manifesto h2 { width:min(100%,1100px);margin:0 auto;font-size:clamp(2.3rem,5vw,5.2rem);font-weight:400;letter-spacing:-.065em;line-height:1.08; }
.about-split { display:grid;grid-template-columns:1fr 1fr;min-height:650px;background:#fff; }
.about-split--reverse .about-split__image { order:2; }.about-split--reverse > div:last-child { order:1; }
.about-split__image { min-height:580px;background-position:center;background-size:cover; }
.about-split__image--craft { background-image:url('../images/hero-perfume.png'); }.about-split__image--future { background-image:url('../images/fragrance-ritual.png'); }
.about-split > div:not(.about-split__image) { display:flex;padding:clamp(3rem,7vw,7rem);flex-direction:column;justify-content:center; }
.about-split span { color:#898b90;font-size:.68rem;letter-spacing:.1em;text-transform:uppercase; }.about-split h2 { margin:.8rem 0 1.5rem;font-size:clamp(2.5rem,4.5vw,4.8rem);font-weight:400;letter-spacing:-.07em;line-height:1; }.about-split p{color:#686b70;line-height:1.75}.about-split a{align-self:flex-start;margin-top:1rem;padding:.75rem 1.2rem;color:#fff;background:#071321;border-radius:999px;font-size:.7rem;font-weight:700}
.about-values { display:grid;grid-template-columns:repeat(3,1fr);padding:clamp(4rem,7vw,7rem) var(--page-pad);background:#071321;color:#fff;gap:1px; }.about-values article{padding:clamp(2rem,4vw,4rem);border:1px solid rgba(255,255,255,.1)}.about-values strong{color:#667d91;font-size:.65rem}.about-values h2{margin:2rem 0 .6rem;font-size:1.5rem}.about-values p{margin:0;color:#8da0b1;font-size:.8rem;line-height:1.6}

.stories-feature { display:grid;grid-template-columns:1.15fr .85fr;min-height:620px;background:#f0ece5; }.stories-feature__image{background:url('../images/bestseller-splash.png') center/cover no-repeat;mix-blend-mode:multiply}.stories-feature>div:last-child{display:flex;padding:clamp(3rem,7vw,7rem);flex-direction:column;justify-content:center}.stories-feature p:first-child{color:#87898d;font-size:.68rem;text-transform:uppercase}.stories-feature h2{margin:.8rem 0 1.2rem;font-size:clamp(2.4rem,4.5vw,4.6rem);font-weight:400;letter-spacing:-.07em;line-height:1}.stories-feature p:not(:first-child){color:#696c71;line-height:1.7}.stories-feature a{align-self:flex-start;margin-top:1rem;font-size:.75rem;font-weight:700}
.stories-grid { display:grid;grid-template-columns:repeat(2,minmax(0,1fr));padding:clamp(4rem,7vw,7rem) var(--page-pad);gap:clamp(2rem,4vw,4rem) }.stories-card__image{display:block;min-height:400px;background-position:center;background-size:cover;border-radius:.8rem;transition:transform 300ms ease}.stories-grid article:hover .stories-card__image{transform:translateY(-6px)}.stories-grid article>p:first-of-type{margin:1rem 0 .5rem;color:#929499;font-size:.65rem;text-transform:uppercase}.stories-grid h2{margin:0;font-size:clamp(1.5rem,2.5vw,2.4rem);font-weight:400;letter-spacing:-.05em}.stories-grid article>p:nth-of-type(2){color:#74777c;line-height:1.65}.stories-grid article>a:last-child{font-size:.72rem;font-weight:700}
.stories-card__image--1 { background-image:url('../images/hero-perfume.png'); }
.stories-card__image--2 { background-image:url('../images/campaign-gift.png'); }
.stories-card__image--3 { background-image:url('../images/fragrance-ritual.png'); }
.stories-card__image--4 { background-image:url('../images/campaign-him.png'); }

.legal-hero { padding:clamp(5rem,9vw,9rem) var(--page-pad);color:#fff;background:#071321;text-align:center}.legal-hero p{margin:0;color:#71889b;font-size:.7rem;text-transform:uppercase}.legal-hero h1{margin:1rem 0;font-size:clamp(3.5rem,7vw,7rem);font-weight:400;letter-spacing:-.075em}.legal-hero span{color:#8396a6;font-size:.7rem}.legal-notice{display:flex;width:min(calc(100% - 2*var(--page-pad)),1100px);margin:2rem auto 0;padding:1rem 1.2rem;align-items:center;gap:1rem;color:#ffffff;background:#f4f6f9;border:1px solid #a9b6c2;border-radius:.5rem;font-size:.75rem;line-height:1.5}.legal-notice p{margin:0}.legal-layout{display:grid;grid-template-columns:230px minmax(0,760px);width:min(calc(100% - 2*var(--page-pad)),1100px);margin:0 auto;padding:clamp(3rem,6vw,6rem) 0;gap:clamp(3rem,7vw,7rem)}.legal-layout aside{position:sticky;top:100px;height:max-content}.legal-layout aside>p{font-size:.68rem;font-weight:700;text-transform:uppercase}.legal-layout aside nav{display:grid}.legal-layout aside a{padding:.5rem 0;color:#888a8f;font-size:.68rem}.legal-content__intro{margin:0 0 3rem;font-size:1.25rem;line-height:1.65}.legal-content section{padding:0 0 2rem;margin-bottom:2rem;border-bottom:1px solid #e1e2e4;scroll-margin-top:100px}.legal-content h2{font-size:1.3rem}.legal-content p{color:#63666c;font-size:.85rem;line-height:1.8}

.product-page .site-header {
    position: relative;
    background: #020811;
}

.product-detail {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
    width: min(calc(100% - (2 * var(--page-pad))), 1260px);
    min-height: calc(100svh - 102px);
    margin: 0 auto;
    padding: clamp(3rem, 6vw, 6rem) 0;
    gap: clamp(2.5rem, 7vw, 7rem);
}

.product-detail__notice {
    position: absolute;
    top: 1rem;
    left: 0;
    width: 100%;
    margin: 0;
    padding: 0.7rem 1rem;
    color: #ffffff;
    background: #0c2236;
    border-radius: 0.4rem;
    text-align: center;
}

.product-detail__media {
    position: relative;
    display: grid;
    overflow: hidden;
    background: #fff;
    border: 1px solid #ececee;
    border-radius: 1rem;
    place-items: center;
}

.product-detail__media > span {
    position: absolute;
    z-index: 1;
    top: 1.25rem;
    left: 1.25rem;
    padding: 0.4rem 0.7rem;
    color: #fff;
    background: #07172a;
    border-radius: 0.35rem;
    font-size: 0.75rem;
    font-weight: 700;
}

.product-detail__media img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail__content {
    align-self: center;
}

.product-detail__back {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: clamp(2rem, 5vw, 4rem);
    color: #777a80;
    font-size: 0.78rem;
    font-weight: 600;
}

.product-detail__content > p:not(.product-detail__description) {
    margin: 0;
    color: #898b90;
    font-size: 0.72rem;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.product-detail__content h1 {
    margin: 0.45rem 0 1rem;
    font-size: clamp(2.8rem, 5vw, 5rem);
    font-weight: 400;
    letter-spacing: -0.07em;
    line-height: 1;
}

.product-detail__price {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.product-detail__price strong {
    font-size: 1.5rem;
}

.product-detail__price del {
    color: #999ba0;
}

.product-detail__price span {
    padding: 0.3rem 0.55rem;
    color: #126535;
    background: #e7f6ed;
    border-radius: 0.3rem;
    font-size: 0.7rem;
    font-weight: 700;
}

.product-detail__description {
    margin: 1.75rem 0;
    color: #61646a;
    line-height: 1.75;
}

.product-detail dl {
    margin: 0 0 2rem;
    border-top: 1px solid #dddfe2;
}

.product-detail dl div {
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 0;
    border-bottom: 1px solid #dddfe2;
}

.product-detail dt {
    color: #85878c;
}

.product-detail dd {
    margin: 0;
    font-weight: 600;
}

.product-detail__content button {
    display: flex;
    width: 100%;
    min-height: 3.5rem;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: #fff;
    background: #071321;
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 700;
}

:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 4px;
}

@media (max-width: 1050px) {
    .site-header {
        grid-template-columns: 1fr auto auto;
    }

    .menu-toggle {
        z-index: 2;
        display: grid;
        width: 2.7rem;
        height: 2.7rem;
        margin-right: 0.7rem;
        padding: 0.72rem;
        background: transparent;
        border: 0;
        cursor: pointer;
    }

    .menu-toggle span {
        display: block;
        height: 1px;
        background: #fff;
        transition: transform 180ms ease, opacity 180ms ease;
    }

    .menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .menu-open .menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    .menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .primary-nav {
        position: absolute;
        top: 102px;
        right: var(--page-pad);
        display: flex;
        visibility: hidden;
        align-items: stretch;
        flex-direction: column;
        width: min(19rem, calc(100vw - 3rem));
        height: auto;
        padding: 1rem;
        gap: 0;
        background: rgba(4, 11, 20, 0.97);
        border: 1px solid var(--line);
        border-radius: 0.8rem;
        opacity: 0;
        transform: translateY(-0.5rem);
        transition: opacity 180ms ease, transform 180ms ease, visibility 180ms;
    }

    .menu-open .primary-nav {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .primary-nav a {
        height: auto;
        padding: 0.9rem;
        place-items: start;
    }

    .primary-nav a::after {
        display: none;
    }

    .hero__content {
        grid-template-columns: 1fr 270px;
    }

    .hero h1 {
        font-size: clamp(4rem, 9.5vw, 6.5rem);
    }

    .signature-products {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .contact-section {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .site-footer__top {
        grid-template-columns: 1.4fr repeat(2, 1fr);
    }

    .site-footer__top nav:last-child {
        grid-column: 2;
    }

    .service-promises {
        grid-template-columns: repeat(2, 1fr);
    }

    .service-promises article:nth-child(2) { border-right: 0; }

    .service-promises article:nth-child(-n+2) { border-bottom: 1px solid #ebebed; }

    .scent-discovery {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .scent-discovery__visual { min-height: 500px; }

    .shop-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }

    .stories-card__image { min-height:330px; }
}

@media (max-width: 760px) {
    .site-header {
        min-height: 82px;
    }

    .brand {
        width: 8.5rem;
        height: 70px;
    }

    .header-actions {
        gap: 0.55rem;
        height: 2.55rem;
        padding: 0 0.75rem;
    }

    .primary-nav {
        top: 82px;
    }

    .hero {
        min-height: auto;
    }

    .hero__backdrop {
        background-position: 60% top;
    }

    .hero__shade {
        background: linear-gradient(180deg, rgba(0, 4, 9, 0.12), rgba(0, 4, 9, 0.42) 35%, #020811 68%);
    }

    .hero__content {
        display: flex;
        min-height: 100svh;
        padding-top: 7.2rem;
        flex-direction: column;
    }

    .hero h1 {
        font-size: clamp(2.2rem, 9.5vw, 3.4rem);
        line-height: 1.1;
    }

    .hero h1 span:last-child {
        margin-top: 0.35rem;
    }

    .hero__intro {
        position: static;
        order: 3;
        margin-top: 1.25rem;
    }

    .featured {
        position: static;
        order: 2;
        width: min(100%, 310px);
        max-width: none;
        margin: 2rem 0 0 auto;
        transform: none;
    }

    .product-card__visual {
        min-height: 200px;
    }

    .mini-bottle {
        transform: scale(0.86);
    }

    .story-intro {
        min-height: 330px;
        padding-block: 3rem;
    }

    .story-intro__statement {
        font-size: clamp(1.45rem, 5vw, 1.85rem);
        line-height: 1.2;
    }

    .story-intro__statement > span {
        display: inline;
    }

    .campaigns__grid {
        grid-template-columns: 1fr;
    }

    .campaign-card {
        min-height: 230px;
    }

    .marketing-line__marquee {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .marketing-line__marquee::-webkit-scrollbar {
        display: none;
    }

    .marketing-line__track {
        width: max-content;
        justify-content: flex-start;
    }

    .signature-products {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .signature-product__cart {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .product-detail {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 2.5rem;
    }

    .product-detail__media {
        max-height: 70svh;
    }

    .fragrance-showcase {
        grid-template-columns: 1fr;
    }

    .fragrance-showcase__carousel,
    .fragrance-showcase__editorial {
        min-height: min(112vw, 520px);
    }

    .showcase-slides {
        width: min(72%, 390px);
        height: 78%;
    }

    .fragrance-showcase__editorial {
        background-position: center;
    }

    .best-seller {
        display: flex;
        min-height: auto;
        padding-bottom: 0;
        flex-direction: column;
    }

    .best-seller__wordmark {
        top: 7rem;
        font-size: 22vw;
    }

    .best-seller__art {
        position: relative;
        top: auto;
        left: auto;
        align-self: center;
        width: min(100%, 560px);
        margin: -1rem 0 -2rem;
        transform: none;
    }

    .best-seller__notes,
    .best-seller-card,
    .best-seller__values {
        position: relative;
        right: auto;
        bottom: auto;
        left: auto;
    }

    .motion-ready.motion-loaded .featured {
        animation-name: featuredMobileIn;
    }

    .best-seller__notes {
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .best-seller-card {
        width: 100%;
        min-width: 0;
        margin-bottom: 2rem;
    }

    .best-seller__values {
        width: calc(100% + (2 * var(--page-pad)));
        margin-left: calc(-1 * var(--page-pad));
        padding: 0 var(--page-pad);
        overflow-x: auto;
        justify-content: flex-start;
        scrollbar-width: none;
    }

    .reviews__heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews__grid {
        grid-template-columns: 1fr;
    }

    .review-card {
        min-height: 250px;
    }

    .contact-section {
        grid-template-columns: 1fr;
    }

    .site-footer__top {
        grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
        grid-column: 1 / -1;
    }

    .site-footer__top nav:last-child {
        grid-column: auto;
    }

    .scent-discovery,
    .newsletter {
        grid-template-columns: 1fr;
    }

    .scent-discovery__visual { min-height: min(105vw, 560px); }

    .gifting-callout {
        min-height: 600px;
        align-items: end;
    }

    .gifting-callout__image { background-position: 65% center; }

    .gifting-callout__shade { background: linear-gradient(0deg, rgba(2,7,13,.96), rgba(2,7,13,.55) 65%, rgba(2,7,13,.15)); }

    .gifting-callout__content {
        width: auto;
        margin: 0 var(--page-pad) 3rem;
    }

    .inner-hero { min-height:430px; }

    .inner-hero h1 { font-size:clamp(3rem,12vw,6rem); line-height:.94; }

    .shop-catalog { display:block; }

    .shop-filter-toggle { display:flex;min-height:2.8rem;margin-bottom:1rem;padding:0 1rem;align-items:center;gap:.6rem;color:#fff;background:#071321;border:0;border-radius:999px;font-weight:700; }

    .shop-filters { position:fixed;z-index:100;top:0;bottom:0;left:0;width:min(88vw,360px);height:100svh;padding:1.5rem;overflow-y:auto;background:#fafafa;box-shadow:18px 0 45px rgba(0,0,0,.2);transform:translateX(-105%);transition:transform 260ms cubic-bezier(.22,1,.36,1); }

    .filters-open .shop-filters { transform:none; }

    .filters-open::after { position:fixed;z-index:90;inset:0;background:rgba(0,5,12,.56);content:"";backdrop-filter:blur(4px); }

    .shop-filters__head button { display:grid;width:2.2rem;height:2.2rem;background:transparent;border:1px solid #ddd;border-radius:50%;place-items:center; }

    .shop-product__quick { visibility:visible;opacity:1;transform:none; }

    .about-split,.stories-feature { grid-template-columns:1fr; }

    .about-split__image { min-height:500px; }

    .about-split--reverse .about-split__image { order:1; }.about-split--reverse>div:last-child{order:2}

    .about-values { grid-template-columns:1fr; }

    .stories-feature__image { min-height:500px; }

    .stories-grid { grid-template-columns:1fr; }

    .legal-layout { display:block; }

    .legal-layout aside { position:static;margin-bottom:3rem;overflow-x:auto; }

    .legal-layout aside nav { display:flex;width:max-content;gap:1rem; }

    .legal-layout aside a { padding:.6rem .9rem;background:#f0f1f2;border-radius:999px;white-space:nowrap; }
}

@media (max-width: 480px) {
    :root {
        --page-pad: 1rem;
    }

    .brand {
        width: 7.25rem;
    }

    .site-header {
        grid-template-columns: 1fr auto;
    }

    .header-actions {
        display: none;
    }

    .hero h1 {
        font-size: clamp(2rem, 8.5vw, 3rem);
    }

    .hero h1 span:last-child {
        margin-top: 0.35rem;
    }

    .hero__intro p {
        font-size: 0.98rem;
    }

    .campaign-card {
        min-height: 210px;
        aspect-ratio: 1.65 / 1;
    }

    .campaign-card--gift .campaign-card__image {
        background-position: 58% center;
    }

    .campaign-card--gift .campaign-card__content {
        left: 8%;
        width: 45%;
    }

    .campaign-card--offer .campaign-card__image {
        background-position: 58% center;
    }

    .campaign-card--offer .campaign-card__content {
        left: 7%;
        width: 48%;
    }

    .signature-collection {
        padding-inline: 1rem;
    }

    .signature-products {
        gap: 0.75rem;
    }

    .signature-product__visual {
        aspect-ratio: 0.82 / 1;
    }

    .signature-product__discount {
        top: 0.5rem;
        right: 0.5rem;
        left: auto;
    }

    .signature-product__cart {
        right: 0.45rem;
        bottom: 0.45rem;
        left: 0.45rem;
        min-height: 2.5rem;
        font-size: 0.68rem;
    }

    .product-detail {
        width: calc(100% - 2rem);
    }

    .contact-form__row {
        grid-template-columns: 1fr;
    }

    .service-promises {
        grid-template-columns: 1fr;
    }

    .service-promises article,
    .service-promises article:nth-child(2) {
        min-height: 115px;
        border-right: 0;
        border-bottom: 1px solid #ebebed;
    }

    .service-promises article:last-child { border-bottom: 0; }

    .shop-grid { gap:.75rem; }

    .shop-product__visual { aspect-ratio:.8/1; }

    .shop-product__quick { right:.4rem;bottom:.4rem;left:.4rem;min-height:2.35rem;font-size:.6rem; }

    .shop-results__bar { align-items:flex-start;flex-direction:column;justify-content:center;gap:.5rem; }

    .about-split__image,.stories-feature__image { min-height:380px; }

    .stories-card__image { min-height:280px; }

    .site-footer__top {
        grid-template-columns: 1fr;
    }

    .site-footer__brand {
        grid-column: auto;
    }

    .site-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.75rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .motion-ready .hero h1 span,
    .motion-ready .hero__intro,
    .motion-ready .featured,
    .motion-ready .site-header,
    .motion-ready .motion-reveal {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
    }

    .marketing-line__track,
    .story-capsule,
    .best-seller__wordmark,
    .scent-discovery__visual img,
    .scent-discovery__orbit,
    .scent-discovery__note {
        animation: none !important;
    }

    .hero__backdrop,
    .gifting-callout__image {
        transform: scale(1.02) !important;
    }
}

@keyframes featuredMobileIn {
    from { opacity: 0; transform: translateY(30px) scale(.96); }
    to { opacity: 1; transform: none; }
}



/* Navbar Right Group & Search Icon - Right Corner Aligned */
.header-right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    justify-self: end;
    margin-left: auto;
    gap: 0.85rem;
}

.site-header__search-trigger {
    background: none !important;
    border: none !important;
    outline: none !important;
    padding: 0.5rem;
    color: #ffffff;
    font-size: 1.15rem;
    cursor: pointer;
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    justify-content: center;
    box-shadow: none !important;
    border-radius: 0 !important;
    transition: color 180ms ease, transform 180ms ease;
}

.site-header__search-trigger:hover,
.site-header__search-trigger:focus-visible {
    color: #e1e6ed;
    transform: scale(1.12);
    background: transparent !important;
}

/* Centered Search Modal Overlay */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.search-modal.is-open {
    opacity: 1;
    pointer-events: auto;
}

.search-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(4, 10, 20, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.search-modal__box {
    position: relative;
    z-index: 2;
    width: min(92vw, 620px);
    padding: 2.5rem 2.2rem;
    background: #ffffff;
    color: #0b1523;
    border-radius: 1.25rem;
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.45);
    transform: translateY(12px) scale(0.95);
    transition: transform 280ms cubic-bezier(0.16, 1, 0.3, 1);
}

.search-modal.is-open .search-modal__box {
    transform: translateY(0) scale(1);
}

.search-modal__close {
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    background: #f0f3f7 !important;
    border: none !important;
    border-radius: 50% !important;
    width: 2.3rem;
    height: 2.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5a6472;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: none !important;
    transition: background 180ms ease, color 180ms ease;
}

.search-modal__close:hover,
.search-modal__close:focus-visible {
    background: #06172a !important;
    color: #ffffff;
}

.search-modal__title {
    margin: 0 0 1.25rem;
    font-family: var(--font-title, serif);
    font-size: 1.65rem;
    color: #091524;
    font-weight: 500;
    text-align: center;
}

.search-modal__field {
    position: relative;
    display: flex;
    align-items: center;
    background: #f4f6f9;
    border: 1.5px solid #e1e6ed;
    border-radius: 999px;
    padding: 0.35rem 0.4rem 0.35rem 1.1rem;
    transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.search-modal__field:focus-within {
    border-color: #0c243e;
    box-shadow: 0 0 0 3px rgba(200, 151, 62, 0.18);
    background: #ffffff;
}

.search-modal__icon {
    color: #8a94a2;
    font-size: 1.05rem;
    margin-right: 0.75rem;
}

.search-modal__input {
    flex: 1;
    border: none !important;
    background: transparent !important;
    outline: none !important;
    font-size: 1rem;
    color: #0b1523;
    font-weight: 500;
    min-width: 0;
    box-shadow: none !important;
}

.search-modal__submit {
    border: none !important;
    background: #06172a !important;
    color: #ffffff;
    font-weight: 600;
    padding: 0.75rem 1.6rem;
    border-radius: 999px !important;
    cursor: pointer;
    box-shadow: none !important;
    transition: background 180ms ease;
}

.search-modal__submit:hover,
.search-modal__submit:focus-visible {
    background: #0c243e !important;
    color: #ffffff;
}

.search-modal__suggestions {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    align-items: center;
    gap: 0.5rem 0.75rem;
    margin-top: 1.25rem;
    font-size: 0.88rem;
    color: #6a7482;
}

.search-modal__suggestions a {
    color: #06172a;
    text-decoration: none;
    padding: 0.3rem 0.8rem;
    background: #f0f3f7;
    border-radius: 999px;
    font-weight: 500;
    transition: background 180ms ease, color 180ms ease;
}

.search-modal__suggestions a:hover {
    background: #06172a;
    color: #e1e6ed;
}

@media (max-width: 760px) {
    .header-right {
        gap: 0.4rem;
    }
    .site-header__search-trigger {
        font-size: 1.05rem;
        padding: 0.35rem;
    }
}

/* Search Modal Typography Fix */
.search-modal,
.search-modal input,
.search-modal button,
.search-modal a,
.search-modal span {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif !important;
}

.search-modal__title {
    font-family: "Manrope", system-ui, sans-serif !important;
}

input, button, select, textarea {
    font-family: inherit;
}

/* About Page Custom Luxury Styles */
.about-hero__eyebrow {
    color: #162b42;
    font-size: clamp(0.78rem, 1.2vw, 0.92rem);
    letter-spacing: 0.14em;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.about-hero__subtitle {
    max-width: 680px;
    margin: 1.25rem auto 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: clamp(1.02rem, 1.4vw, 1.2rem);
    line-height: 1.65;
}

.about-manifesto__body {
    margin-top: 1.25rem;
    font-size: 1.08rem;
    line-height: 1.75;
    color: #55585d;
}

.about-motto-banner {
    padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
    background: #07172a;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-motto-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.about-motto-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.about-motto-banner__tag {
    display: inline-block;
    color: #e1e6ed;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 600;
}

.about-motto-banner__text {
    font-family: var(--font-title, serif);
    font-size: clamp(2.2rem, 5vw, 4.2rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 2rem;
    color: #ffffff;
}

.about-motto-banner a {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    background: #0c243e;
    color: #ffffff;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: background 180ms ease, transform 180ms ease;
}

.about-motto-banner a:hover {
    background: #ffffff;
    color: #07172a;
    transform: translateY(-2px);
}

/* Smaller About Hero Title */
.about-hero {
    min-height: clamp(340px, 38vw, 480px) !important;
    padding: clamp(3.5rem, 6vw, 6rem) var(--page-pad) !important;
    text-align: center;
}

.about-hero__title {
    font-size: clamp(2rem, 3.8vw, 3.2rem) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.03em !important;
    font-weight: 400 !important;
    margin: 0.5rem auto 1rem !important;
    max-width: 850px !important;
}

/* Story Section Container & Cards */
.about-story-section {
    padding: clamp(3.5rem, 6vw, 6rem) var(--page-pad);
    background: #fbfaf7;
    color: #171a21;
}

.about-story-container {
    max-width: 920px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.about-story-card {
    background: #ffffff;
    padding: clamp(2rem, 4vw, 3.2rem);
    border-radius: 1.2rem;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.05);
    border: 1px solid #eeebdf;
}

.about-story-card__badge {
    display: inline-block;
    color: #0c243e;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.1rem;
}

.about-story-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a4d54;
    margin: 0 0 1.1rem;
}

.about-story-text:last-child {
    margin-bottom: 0;
}

.about-story-text.lead {
    font-size: 1.18rem;
    line-height: 1.75;
    color: #152232;
    font-weight: 500;
}

.about-story-text.highlight {
    font-size: 1.15rem;
    color: #07172a;
    font-weight: 600;
    padding: 1rem 1.25rem;
    background: #f7f3e8;
    border-left: 3px solid #0c243e;
    border-radius: 0 0.5rem 0.5rem 0;
    margin-top: 1.25rem;
}

.about-story-quote {
    margin: 1.8rem 0;
    padding: 1.5rem 1.8rem;
    background: #07172a;
    color: #e1e6ed;
    border-radius: 0.85rem;
    font-family: var(--font-title, serif);
    font-size: clamp(1.2rem, 2vw, 1.45rem);
    line-height: 1.5;
    font-style: italic;
}

/* Universal Typography - Manrope for Text Elements Only */
:root {
    --font-title: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body, h1, h2, h3, h4, h5, h6, p, a, button, input, select, textarea, label, div, blockquote, article, section, header, footer, nav {
    font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* About Page & Split Section Button Icon Visibility Fix */
.about-split > div:not(.about-split__image) a,
.about-split a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    align-self: flex-start !important;
    margin-top: 1.5rem !important;
    padding: 0.85rem 1.8rem !important;
    color: #ffffff !important;
    background: #07172a !important;
    border-radius: 999px !important;
    font-size: 0.92rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(7, 23, 42, 0.25) !important;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.about-split > div:not(.about-split__image) a i,
.about-split a i,
.button i {
    display: inline-block !important;
    font-size: 1rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    color: #e1e6ed !important;
    transition: transform 200ms ease !important;
}

.about-split a:hover i,
.button:hover i {
    transform: translateX(4px) !important;
}

/* Master 20+ Year Senior Web Designer About Us Layout & Spacing */
.about-page-main {
    background: #fbfaf7;
}

.about-hero {
    min-height: clamp(380px, 45vw, 540px) !important;
    padding: clamp(4rem, 7vw, 7rem) var(--page-pad) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #07172a !important;
}

.about-hero__container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #e1e6ed;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.about-hero__title {
    font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.03em !important;
    font-weight: 400 !important;
    margin: 0 0 1.25rem !important;
    color: #ffffff !important;
    max-width: 860px !important;
}

.about-hero__subtitle {
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.88);
    max-width: 720px;
    margin: 0 auto;
}

/* Manifesto Section */
.about-manifesto {
    padding: clamp(4.5rem, 8vw, 7.5rem) var(--page-pad);
    text-align: center;
    background: #ffffff;
    border-bottom: 1px solid #eae7dc;
}

.about-manifesto__inner {
    max-width: 940px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-manifesto__badge {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: #0c243e;
    margin-bottom: 1.1rem;
    text-transform: uppercase;
}

.about-manifesto__heading {
    font-size: clamp(1.75rem, 3.2vw, 2.65rem);
    line-height: 1.28;
    color: #0b1523;
    font-weight: 500;
    margin: 0 0 1.5rem;
    letter-spacing: -0.02em;
}

.about-manifesto__divider {
    width: 60px;
    height: 3px;
    background: #1e3a8a;
    margin: 0 auto 1.5rem;
    border-radius: 999px;
}

.about-manifesto__text {
    font-size: clamp(1.02rem, 1.2vw, 1.15rem);
    line-height: 1.78;
    color: #52565e;
    max-width: 820px;
    margin: 0 auto;
}

/* Split Visual Sections */
.about-split-wrapper {
    padding: clamp(4rem, 7vw, 7rem) var(--page-pad);
    background: #fbfaf7;
}

.about-split-wrapper--alt {
    background: #ffffff;
}

.about-split-container {
    max-width: 1280px;
    margin: 0 auto;
}

.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(2.5rem, 5vw, 5rem);
    align-items: center;
}

.about-split__visual {
    width: 100%;
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
    border: 1px solid #eae7dc;
}

.about-split__image {
    width: 100%;
    min-height: clamp(380px, 35vw, 520px);
    background-position: center;
    background-size: cover;
}

.about-split__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
}

.about-split__tag {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #0c243e;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.about-split__title {
    font-size: clamp(1.75rem, 3vw, 2.65rem);
    line-height: 1.18;
    color: #07172a;
    margin: 0 0 1.25rem;
    letter-spacing: -0.03em;
}

.about-split__text {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4e525a;
    margin: 0 0 1rem;
}

.about-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    margin-top: 1.25rem !important;
    padding: 0.85rem 1.8rem !important;
    background: #07172a !important;
    color: #ffffff !important;
    border-radius: 999px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 0.92rem !important;
    box-shadow: 0 8px 25px rgba(7, 23, 42, 0.22) !important;
    transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.about-btn i {
    font-size: 1rem !important;
    color: #e1e6ed !important;
    transition: transform 200ms ease !important;
}

.about-btn:hover {
    background: #0c243e !important;
    transform: translateY(-2px) !important;
}

.about-btn:hover i {
    transform: translateX(4px) !important;
    color: #ffffff !important;
}

/* Values Grid Section */
.about-values-wrapper {
    padding: clamp(4.5rem, 8vw, 7.5rem) var(--page-pad);
    background: #07172a;
    color: #ffffff;
}

.about-values-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.about-values-header {
    margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.about-values-header__eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #e1e6ed;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.about-values-header__title {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    line-height: 1.2;
    color: #ffffff;
    margin: 0;
    letter-spacing: -0.03em;
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.about-value-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 2.2rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1.25rem;
    backdrop-filter: blur(10px);
    transition: transform 250ms ease, border-color 250ms ease, background 250ms ease;
}

.about-value-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 151, 62, 0.4);
    background: rgba(255, 255, 255, 0.06);
}

.about-value-card__num {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    color: #0c243e;
    background: rgba(200, 151, 62, 0.14);
    border: 1px solid rgba(200, 151, 62, 0.3);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1.25rem;
}

.about-value-card__title {
    font-size: 1.35rem;
    font-weight: 600;
    color: #ffffff;
    margin: 0 0 0.85rem;
    letter-spacing: -0.02em;
}

.about-value-card__desc {
    font-size: 0.96rem;
    line-height: 1.68;
    color: #a5b4c3;
    margin: 0;
}

/* Motto Banner */
.about-motto-banner {
    padding: clamp(5rem, 9vw, 9rem) var(--page-pad);
    background: #07172a;
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-motto-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: none;
    pointer-events: none;
}

.about-motto-banner__inner {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.about-motto-banner__tag {
    display: inline-block;
    color: #e1e6ed;
    font-size: 0.85rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 1rem;
    font-weight: 700;
}

.about-motto-banner__text {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 400;
    letter-spacing: -0.03em;
    line-height: 1.15;
    margin: 0 0 2rem;
    color: #ffffff;
}

.about-motto-banner__btn {
    display: inline-flex;
    white-space: nowrap;
    flex: 0 0 auto;
    width: auto !important;
    max-width: max-content;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 2.2rem;
    background: #0c243e;
    color: #ffffff !important;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 10px 30px rgba(200, 151, 62, 0.3);
    transition: background 180ms ease, transform 180ms ease;
}

.about-motto-banner__btn i {
    font-size: 1rem;
    transition: transform 200ms ease;
}

.about-motto-banner__btn:hover {
    background: #ffffff;
    color: #07172a !important;
    transform: translateY(-2px);
}

.about-motto-banner__btn:hover i {
    transform: translateX(4px);
}

/* Responsive Alignment Fixes */
@media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-split--reverse .about-split__visual {
        order: 1;
    }

    .about-split--reverse .about-split__content {
        order: 2;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* About Button Icon Visibility Enforcement */
.about-btn,
.about-motto-banner__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
}

.about-btn i,
.about-motto-banner__btn i {
    display: inline-block !important;
    font-size: 1rem !important;
    color: #e1e6ed !important;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 200ms ease, color 200ms ease !important;
}

.about-btn:hover i {
    transform: translateX(4px) !important;
    color: #ffffff !important;
}

.about-motto-banner__btn:hover i {
    transform: translateX(4px) !important;
    color: #07172a !important;
}

/* Font Awesome Icon Protection - High Specificity including ::before */
.fa, .fas, .far, .fal, .fab, .fa-solid, .fa-regular, .fa-brands, [class*="fa-"],
.fa::before, .fas::before, .far::before, .fal::before, .fab::before, .fa-solid::before, .fa-regular::before, .fa-brands::before, [class*="fa-"]::before {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands", "FontAwesome" !important;
    font-weight: 900 !important;
    font-style: normal !important;
    font-variant: normal !important;
    text-rendering: auto !important;
    line-height: 1 !important;
    -webkit-font-smoothing: antialiased !important;
}

.fa-regular, .fa-regular::before {
    font-weight: 400 !important;
}

.fa-brands, .fa-brands::before {
    font-family: "Font Awesome 6 Brands" !important;
    font-weight: 400 !important;
}

/* About Page Image Cover Enforcement */
.about-split__image {
    width: 100% !important;
    height: 100% !important;
    min-height: 480px !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 1.25rem !important;
}

/* Full-Bleed Edge-to-Edge Split Image Cover Layout */
.about-split-section {
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
}

.about-split-section--alt {
    background: #fbfaf7 !important;
}

.about-split {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    width: 100% !important;
    min-height: 560px !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 0 !important;
}

.about-split__image {
    width: 100% !important;
    height: 100% !important;
    min-height: 560px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
}

.about-split__content {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: flex-start !important;
    padding: clamp(3rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem) !important;
    max-width: 680px !important;
}

@media (max-width: 900px) {
    .about-split {
        grid-template-columns: 1fr !important;
    }
    
    .about-split__image {
        min-height: 380px !important;
    }

    .about-split--reverse .about-split__image {
        order: 1 !important;
    }

    .about-split--reverse .about-split__content {
        order: 2 !important;
    }
}

/* Site-Wide Button Uniform Alignment & Styling */
.button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    min-width: auto !important;
    min-height: 3.2rem !important;
    padding: 0.85rem 1.8rem !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    text-decoration: none !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25) !important;
    transition: background 200ms ease, color 200ms ease, transform 200ms ease, box-shadow 200ms ease !important;
}

.button i {
    display: inline-block !important;
    font-size: 0.95rem !important;
    transition: transform 200ms ease !important;
}

.button:hover i {
    transform: translateX(4px) !important;
}

.button--dark {
    color: #ffffff !important;
    background: #07172a !important;
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.button--dark:hover,
.button--dark:focus-visible {
    color: #ffffff !important;
    background: #0f253f !important;
    box-shadow: 0 10px 28px rgba(7, 23, 42, 0.4) !important;
}

.button--light {
    color: #09101a !important;
    background: #ffffff !important;
    border: none !important;
}

.button--light:hover,
.button--light:focus-visible {
    color: #09101a !important;
    background: #e1e6ed !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

/* Universal Sticky Navbar Across Entire Website */
.site-header,
.product-page .site-header,
.inner-page .site-header {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    background: rgba(3, 10, 20, 0.88) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: background-color 200ms ease, box-shadow 200ms ease !important;
}

.site-header.is-scrolled {
    background: rgba(2, 7, 14, 0.96) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4) !important;
}

/* Contact Us Page Custom Luxury Styling */
.contact-page-main {
    background: #fbfaf7;
}

.contact-hero {
    min-height: clamp(340px, 36vw, 460px) !important;
    padding: clamp(4rem, 7vw, 7rem) var(--page-pad) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: #07172a !important;
}

.contact-hero__container {
    max-width: 860px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-hero__eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    color: #e1e6ed;
    margin-bottom: 0.85rem;
    text-transform: uppercase;
}

.contact-hero__title {
    font-size: clamp(2.1rem, 4vw, 3.4rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.03em !important;
    font-weight: 400 !important;
    margin: 0 0 1.25rem !important;
    color: #ffffff !important;
}

.contact-hero__subtitle {
    font-size: clamp(1.02rem, 1.35vw, 1.2rem);
    line-height: 1.68;
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin: 0 auto;
}

.contact-cards-section {
    padding: clamp(3.5rem, 6vw, 6rem) var(--page-pad) 2rem;
    background: #fbfaf7;
}

.contact-cards-container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: stretch;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 2.2rem 1.8rem;
    background: #ffffff;
    border: 1px solid #eae7dc;
    border-radius: 1.25rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.contact-card:hover {
    transform: translateY(-4px);
    border-color: #0c243e;
    box-shadow: 0 20px 50px rgba(7, 23, 42, 0.08);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3.2rem;
    height: 3.2rem;
    min-width: 3.2rem;
    background: #07172a;
    color: #e1e6ed;
    border-radius: 50%;
    font-size: 1.25rem;
}

.contact-card__content {
    min-width: 0;
}

.contact-card__content h3 {
    margin: 0 0 0.4rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: #07172a;
}

.contact-card__content p {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: #555860;
}

.contact-card__content a {
    color: #07172a;
    text-decoration: none;
    font-weight: 600;
    transition: color 180ms ease;
}

.contact-card__content a:hover {
    color: #0c243e;
}

.contact-page-form-container {
    max-width: 1340px;
    margin: 0 auto;
    padding-bottom: clamp(4rem, 7vw, 7rem);
}

@media (max-width: 900px) {
    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
}

/* Make Hero Title Bold */
.hero h1,
.hero h1 span,
.hero__title-accent,
#hero-title {
    font-weight: 700 !important;
}

/* Align Hero Featured Product Box to Right Corner Below / Bottom */
.featured {
    position: relative !important;
    grid-column: 2 !important;
    top: auto !important;
    right: auto !important;
    align-self: flex-end !important;
    margin-top: auto !important;
    margin-bottom: 0 !important;
    margin-left: auto !important;
    transform: none !important;
    z-index: 10 !important;
}

.hero__content {
    align-items: stretch !important;
}

/* Hero Slider Prev/Next Arrow Button Clickability */
.product-card__visual button {
    position: relative !important;
    z-index: 20 !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(0, 0, 0, 0.1) !important;
    border-radius: 50% !important;
    width: 2.5rem !important;
    height: 2.5rem !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #07172a !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.12) !important;
    transition: background 180ms ease, color 180ms ease, transform 180ms ease !important;
}

.product-card__visual button:hover,
.product-card__visual button:focus-visible {
    background: #07172a !important;
    color: #e1e6ed !important;
    transform: scale(1.12) !important;
}

/* Functional Hero Slider Progress Line Spans */
.slider-progress span {
    height: 0.42rem !important;
    background: rgba(255, 255, 255, 0.28) !important;
    border-radius: 999px !important;
    cursor: pointer !important;
    pointer-events: auto !important;
    transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease !important;
}

.slider-progress span:hover {
    background: rgba(255, 255, 255, 0.7) !important;
    transform: scaleY(1.25) !important;
}

.slider-progress span.is-active {
    background: #e1e6ed !important;
    box-shadow: 0 0 10px rgba(243, 215, 155, 0.7) !important;
}

/* Smooth Hero Background Image Transition */
.hero__backdrop {
    transition: background-image 450ms ease-in-out !important;
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERHAUL
   Professional 20+ Year Web Dev � Mobile First Architecture
   Breakpoints: 480px � 600px � 760px � 1050px
   ============================================================ */

/* ��� Global body padding for fixed sticky navbar ��� */
body {
    padding-top: 80px;
}

/* ��� 480px and below: Small phones ��� */
@media (max-width: 480px) {

    /* Navbar */
    .site-header {
        min-height: 70px !important;
        padding: 0 1rem !important;
    }

    .header-right {
        gap: 0.5rem !important;
    }

    .site-header__search-trigger {
        font-size: 1rem !important;
    }

    /* Hero */
    .hero__content {
        padding-top: 6rem !important;
        flex-direction: column !important;
        padding-bottom: 2rem !important;
    }

    .hero h1 {
        font-size: clamp(1.85rem, 8vw, 2.4rem) !important;
        font-weight: 700 !important;
    }

    .hero__description {
        font-size: 0.92rem !important;
        line-height: 1.6 !important;
    }

    .scent-notes {
        flex-wrap: wrap !important;
        gap: 0.5rem !important;
    }

    .scent-notes span {
        font-size: 0.78rem !important;
        padding: 0.25rem 0.6rem !important;
    }

    .hero__cta {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.85rem 1.5rem !important;
    }

    .featured {
        width: 100% !important;
        margin: 1.5rem 0 0 !important;
        max-width: none !important;
    }

    /* About Page */
    .about-hero {
        padding: 4rem 1rem 3rem !important;
    }

    .about-hero__title {
        font-size: 1.85rem !important;
    }

    .about-hero__subtitle {
        font-size: 0.95rem !important;
    }

    .about-manifesto__heading {
        font-size: 1.35rem !important;
    }

    .about-split-section {
        padding: 0 !important;
    }

    .about-split {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .about-split__image {
        min-height: 280px !important;
    }

    .about-split__content {
        padding: 2rem 1.25rem !important;
    }

    .about-split__title {
        font-size: 1.45rem !important;
    }

    .about-values-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .about-value-card {
        padding: 1.5rem 1.25rem !important;
    }

    .about-motto-banner__text {
        font-size: 1.85rem !important;
    }

    /* Contact Page */
    .contact-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-card {
        padding: 1.4rem 1.1rem !important;
    }

    .contact-hero__title {
        font-size: 1.85rem !important;
    }

    .contact-section {
        grid-template-columns: 1fr !important;
    }

    .contact-form__row {
        grid-template-columns: 1fr !important;
    }

    /* Search Modal */
    .search-modal__box {
        width: 94vw !important;
        padding: 1.5rem 1.2rem !important;
    }

    /* Signature Products */
    .signature-products {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.65rem !important;
    }

    /* Best Seller */
    .best-seller-card {
        width: 100% !important;
    }

    /* Footer */
    .site-footer__top {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .site-footer__bottom {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.6rem !important;
        font-size: 0.78rem !important;
    }

    /* Inner Pages Hero */
    .inner-hero {
        min-height: 280px !important;
        padding: 5.5rem 1rem 2.5rem !important;
    }

    .inner-hero h1 {
        font-size: clamp(1.8rem, 9vw, 2.8rem) !important;
    }

    /* Shop Grid */
    .shop-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.75rem !important;
    }

    /* Reviews */
    .reviews__grid {
        grid-template-columns: 1fr !important;
    }

    /* Values Section */
    .about-values-header__title {
        font-size: 1.5rem !important;
    }
}

/* ��� 481�600px: Large phones ��� */
@media (min-width: 481px) and (max-width: 600px) {

    .about-hero__title {
        font-size: 2rem !important;
    }

    .about-split {
        grid-template-columns: 1fr !important;
    }

    .about-split__image {
        min-height: 320px !important;
    }

    .about-values-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr !important;
    }

    .signature-products {
        grid-template-columns: 1fr 1fr !important;
    }

    .featured {
        width: 100% !important;
        max-width: 340px !important;
    }

    .contact-form__row {
        grid-template-columns: 1fr !important;
    }
}

/* ��� 601�760px: Small tablets ��� */
@media (min-width: 601px) and (max-width: 760px) {

    .about-split {
        grid-template-columns: 1fr !important;
    }

    .about-split__image {
        min-height: 360px !important;
    }

    .about-values-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .about-motto-banner__text {
        font-size: 2.2rem !important;
    }
}

/* ��� Button/CTA Responsive ��� */
@media (max-width: 600px) {
    .button {
        font-size: 0.88rem !important;
        padding: 0.78rem 1.5rem !important;
    }

    .about-btn,
    .about-motto-banner__btn {
        font-size: 0.88rem !important;
        padding: 0.78rem 1.5rem !important;
    }
}

/* ��� Manifesto padding on mobile ��� */
@media (max-width: 760px) {
    .about-manifesto {
        padding: 3rem 1.5rem !important;
    }

    .about-values-wrapper {
        padding: 3rem 1.5rem !important;
    }

    .about-motto-banner {
        padding: 3.5rem 1.5rem !important;
    }

    .contact-cards-section {
        padding: 2.5rem 1.5rem 1.5rem !important;
    }

    .contact-page-form-container {
        padding: 0 0 3rem !important;
    }

    .contact-section {
        padding: 3rem 1.5rem !important;
    }
}

/* Home page body offset for sticky header */
body:not(.inner-page) {
    padding-top: 90px !important;
}

/* Ensure inner-pages also account for sticky navbar */
.inner-page {
    padding-top: 90px !important;
}

/* ��� Mobile Header: Logo | [Search + Hamburger] in one row ��� */
@media (max-width: 760px) {
    .site-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: nowrap !important;
        padding: 0 1.1rem !important;
        min-height: 70px !important;
    }

    .brand {
        flex: 0 0 auto !important;
        margin-right: auto !important;
    }

    /* Group hamburger + search together on the right in a row */
    .menu-toggle {
        order: 3 !important;
        flex: 0 0 auto !important;
        margin-right: 0 !important;
    }

    .header-right {
        order: 2 !important;
        flex: 0 0 auto !important;
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-left: auto !important;
        margin-right: 0.5rem !important;
        justify-self: unset !important;
    }

    /* Hide account/cart box on small mobile, show only search */
    .header-actions {
        display: none !important;
    }

    .site-header__search-trigger {
        display: inline-flex !important;
        font-size: 1.1rem !important;
    }
}

@media (max-width: 480px) {
    .site-header {
        padding: 0 0.9rem !important;
        min-height: 64px !important;
    }

    .brand {
        width: 7.5rem !important;
        height: auto !important;
    }

    .header-right {
        margin-right: 0.4rem !important;
        gap: 0.35rem !important;
    }
}

/* ��� Fix Mobile Horizontal Overflow / Right-Side Empty Space ��� */
html,
body {
    max-width: 100% !important;
    overflow-x: hidden !important;
}

/* Prevent any element from overflowing viewport width */
.hero,
.hero__content,
.hero__backdrop,
.hero__shade,
.site-header,
.primary-nav,
.marketing-line,
.marketing-line__marquee,
.marketing-line__track,
.best-seller,
.best-seller__wordmark,
.story-intro,
.campaigns__grid,
.signature-collection,
.signature-products,
.fragrance-showcase,
.scent-discovery,
.about-split-section,
.about-values-wrapper,
.about-motto-banner,
.contact-cards-section,
.contact-page-form-container,
.site-footer {
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

img,
video,
svg,
iframe {
    max-width: 100% !important;
}

/* Fix any fixed-width elements that may overflow */
@media (max-width: 760px) {
    .best-seller__wordmark {
        width: 100% !important;
        overflow: hidden !important;
        white-space: nowrap !important;
    }

    .marketing-line__track {
        padding-right: 0 !important;
    }
}

/* ��� Navbar Height Increase & Remove Hero Gap on Mobile ��� */
@media (max-width: 760px) {

    /* Increase navbar height */
    .site-header {
        min-height: 80px !important;
        height: 80px !important;
    }

    /* Hero section: start flush right below navbar, no gap */
    .hero {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .hero__content {
        padding-top: 80px !important;
    }

    /* Inner pages: account for 80px navbar exactly */
    body,
    body:not(.inner-page),
    .inner-page {
        padding-top: 80px !important;
    }

    /* Inner hero: ensure no extra gap */
    .inner-hero {
        margin-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .site-header {
        min-height: 76px !important;
        height: 76px !important;
    }

    .hero__content {
        padding-top: 76px !important;
    }

    body,
    body:not(.inner-page),
    .inner-page {
        padding-top: 76px !important;
    }
}

/* ��� Product Box: Bottom Center on Mobile ��� */
@media (max-width: 760px) {
    .featured {
        width: min(100%, 320px) !important;
        margin: 2rem auto 0 !important;
        left: 0 !important;
        right: 0 !important;
        align-self: center !important;
    }
}

@media (max-width: 480px) {
    .featured {
        width: 100% !important;
        max-width: 100% !important;
        margin: 1.5rem auto 0 !important;
    }
}

/* ��� Hero Text Content Box: Left/Right Padding on Mobile ��� */
@media (max-width: 760px) {
    .hero__text-col {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }
}

@media (max-width: 480px) {
    .hero__text-col {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }
}

/* ��� Product Grid Section: Fix Horizontal Overflow on Mobile ��� */
@media (max-width: 760px) {
    .product-grid-section,
    .most-sellers-section {
        overflow-x: hidden !important;
        padding-left: 1rem !important;
        padding-right: 1rem !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .signature-products {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0.9rem !important;
        width: 100% !important;
        overflow: hidden !important;
    }

    .signature-product {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .signature-product__visual {
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .signature-product__visual img {
        width: 100% !important;
        height: auto !important;
        object-fit: cover !important;
    }
}

@media (max-width: 480px) {
    .product-grid-section,
    .most-sellers-section {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
    }

    .signature-products {
        grid-template-columns: 1fr 1fr !important;
        gap: 0.65rem !important;
    }
}

/* ��� Increase Height of Product Grid Images on Mobile ��� */
@media (max-width: 760px) {
    .signature-product__visual,
    .shop-product__visual {
        aspect-ratio: 0.75 / 1 !important;
        min-height: 220px !important;
        height: auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .signature-product__image-link,
    .shop-product__visual > a:first-of-type {
        display: flex !important;
        width: 100% !important;
        height: 100% !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .signature-product__visual img,
    .shop-product__visual img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }
}

@media (max-width: 480px) {
    .signature-product__visual,
    .shop-product__visual {
        aspect-ratio: 0.72 / 1 !important;
        min-height: 210px !important;
    }
}

/* ��� Best Seller Section: Product Card Sizing on Mobile ��� */
@media (max-width: 760px) {
    .best-seller {
        padding-left: 1.2rem !important;
        padding-right: 1.2rem !important;
        overflow: hidden !important;
    }

    .best-seller__art {
        width: min(85vw, 360px) !important;
        height: auto !important;
        max-height: 420px !important;
        margin: 1rem auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
    }

    .best-seller__art img {
        width: 100% !important;
        height: auto !important;
        max-height: 380px !important;
        object-fit: contain !important;
    }

    .best-seller-card {
        display: grid !important;
        grid-template-columns: 5.2rem 1fr auto !important;
        gap: 1rem !important;
        align-items: center !important;
        width: min(100%, 340px) !important;
        max-width: 340px !important;
        margin: 1.5rem auto 2.5rem auto !important;
        padding: 0.9rem 1.1rem !important;
        background: #ffffff !important;
        border-radius: 1rem !important;
        box-shadow: 0 14px 35px rgba(0, 0, 0, 0.12) !important;
        border: 1px solid #eeebdf !important;
        position: relative !important;
    }

    .best-seller-card__image {
        width: 5.2rem !important;
        height: 5.2rem !important;
        min-width: 5.2rem !important;
        border-radius: 0.6rem !important;
        background: #fbfaf7 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }

    .best-seller-card__image img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
    }

    .best-seller-card__info {
        min-width: 0 !important;
    }

    .best-seller-card__info p {
        font-size: 0.68rem !important;
        margin-bottom: 0.2rem !important;
    }

    .best-seller-card__info h3 {
        font-size: 0.95rem !important;
        font-weight: 600 !important;
        margin-bottom: 0.35rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .best-seller-card__info div {
        display: flex !important;
        align-items: baseline !important;
        gap: 0.5rem !important;
    }

    .best-seller-card__info strong {
        font-size: 0.95rem !important;
        color: #07172a !important;
    }

    .best-seller-card__info del {
        font-size: 0.75rem !important;
    }

    .best-seller-card__add {
        width: 2.3rem !important;
        height: 2.3rem !important;
        min-width: 2.3rem !important;
        border-radius: 50% !important;
        background: #07172a !important;
        color: #e1e6ed !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.85rem !important;
        border: none !important;
    }

    .best-seller-card__badge {
        top: -0.4rem !important;
        left: 0.8rem !important;
        font-size: 0.6rem !important;
        padding: 0.2rem 0.55rem !important;
    }
}

@media (max-width: 480px) {
    .best-seller-card {
        width: calc(100% - 1.5rem) !important;
        max-width: 330px !important;
        grid-template-columns: 4.8rem 1fr auto !important;
        gap: 0.85rem !important;
        padding: 0.8rem 0.95rem !important;
    }

    .best-seller-card__image {
        width: 4.8rem !important;
        height: 4.8rem !important;
        min-width: 4.8rem !important;
    }
}

/* ��� Match Best Seller Product Box to Hero Product Box on Mobile & Desktop ��� */
.best-seller-card {
    display: flex !important;
    flex-direction: column !important;
    padding: 1.1rem 1.25rem 1.4rem !important;
    color: #11131a !important;
    background: rgba(255, 255, 255, 0.98) !important;
    border-radius: 1.2rem !important;
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.25) !important;
    border: 1px solid rgba(0, 0, 0, 0.08) !important;
    box-sizing: border-box !important;
}

.best-seller-card__badges {
    display: flex !important;
    gap: 0.5rem !important;
    margin-bottom: 0.85rem !important;
}

.best-seller-card__badges span {
    display: inline-flex !important;
    padding: 0.35rem 0.72rem !important;
    border: 1px solid #8d939b !important;
    border-radius: 0.43rem !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    color: #17191d !important;
    background: transparent !important;
}

.best-seller-card__image {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 190px !important;
    min-height: 190px !important;
    margin-bottom: 1rem !important;
    background: transparent !important;
}

.best-seller-card__image img {
    width: auto !important;
    max-width: 100% !important;
    height: 100% !important;
    max-height: 180px !important;
    object-fit: contain !important;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.15)) !important;
}

.best-seller-card__bottom {
    display: flex !important;
    align-items: flex-end !important;
    justify-content: space-between !important;
    width: 100% !important;
    border-top: 1px solid #f0f0f2 !important;
    padding-top: 0.9rem !important;
}

.best-seller-card__info {
    min-width: 0 !important;
}

.best-seller-card__info small {
    display: block !important;
    font-size: 0.72rem !important;
    color: #787b82 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    margin-bottom: 0.25rem !important;
}

.best-seller-card__info h3 {
    margin: 0 0 0.35rem !important;
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.best-seller-card__info h3 a {
    color: #07172a !important;
    text-decoration: none !important;
}

.best-seller-card__pricing {
    display: flex !important;
    align-items: baseline !important;
    gap: 0.5rem !important;
}

.best-seller-card__pricing strong {
    font-size: 1.1rem !important;
    font-weight: 700 !important;
    color: #07172a !important;
}

.best-seller-card__pricing del {
    font-size: 0.82rem !important;
    color: #92959c !important;
}

.best-seller-card__add {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 2.8rem !important;
    height: 2.8rem !important;
    min-width: 2.8rem !important;
    background: #07172a !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    font-size: 1rem !important;
    box-shadow: 0 6px 18px rgba(7, 23, 42, 0.25) !important;
    text-decoration: none !important;
    transition: background 180ms ease, transform 180ms ease !important;
}

.best-seller-card__add:hover {
    background: #0c243e !important;
    color: #07172a !important;
    transform: scale(1.08) !important;
}

@media (max-width: 760px) {
    .best-seller-card {
        width: min(100%, 320px) !important;
        max-width: 320px !important;
        margin: 1.5rem auto 2.5rem auto !important;
    }
}

@media (max-width: 480px) {
    .best-seller-card {
        width: calc(100% - 1.5rem) !important;
        max-width: 320px !important;
        padding: 1rem 1.15rem 1.25rem !important;
    }

    .best-seller-card__image {
        height: 175px !important;
        min-height: 175px !important;
    }
}

/* ��� Bulletproof Mobile Hamburger Toggle & Drawer Menu ��� */
@media (max-width: 1050px) {
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        z-index: 10001 !important;
        padding: 8px !important;
        order: 3 !important;
        flex: 0 0 auto !important;
    }

    .menu-toggle span {
        display: block !important;
        width: 24px !important;
        height: 2px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        transition: transform 220ms ease, opacity 220ms ease, background-color 220ms ease !important;
    }

    .menu-open .menu-toggle span:nth-child(1),
    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
        background: #e1e6ed !important;
    }

    .menu-open .menu-toggle span:nth-child(2),
    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .menu-open .menu-toggle span:nth-child(3),
    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
        background: #e1e6ed !important;
    }

    .primary-nav {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        background: rgba(3, 10, 20, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6) !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: stretch !important;
        padding: 1.5rem 1.75rem 2rem !important;
        gap: 0.5rem !important;
        z-index: 10000 !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateY(-15px) !important;
        transition: opacity 220ms ease, transform 220ms ease, visibility 220ms ease !important;
    }

    .menu-open .primary-nav,
    .site-header.menu-open .primary-nav {
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateY(0) !important;
    }

    .primary-nav a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0.95rem 1.25rem !important;
        font-size: 1.1rem !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        border-radius: 0.75rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        transition: background 180ms ease, color 180ms ease !important;
    }

    .primary-nav a:hover,
    .primary-nav a.is-active {
        background: rgba(243, 215, 155, 0.12) !important;
        color: #e1e6ed !important;
    }
}

/* ��� Fix Mobile Menu Overflow Clipping & Guarantee Visibility ��� */
.site-header {
    overflow: visible !important;
}

@media (max-width: 1050px) {
    .site-header {
        overflow: visible !important;
        height: auto !important;
        min-height: 76px !important;
    }

    .primary-nav {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        background: #030a14 !important;
        box-shadow: 0 25px 60px rgba(0, 0, 0, 0.85) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        display: none !important;
        flex-direction: column !important;
        padding: 1.5rem !important;
        gap: 0.65rem !important;
        z-index: 999999 !important;
        visibility: visible !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .site-header.menu-open .primary-nav,
    .menu-open .primary-nav,
    header.menu-open .primary-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .primary-nav a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1.25rem !important;
        color: #ffffff !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-radius: 0.6rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .primary-nav a:hover,
    .primary-nav a.is-active {
        background: rgba(243, 215, 155, 0.15) !important;
        color: #e1e6ed !important;
        border-color: rgba(243, 215, 155, 0.3) !important;
    }
}

/* ��� Master Mobile Menu & Hamburger System ��� */
@media (min-width: 1051px) {
    .menu-toggle {
        display: none !important;
    }
}

@media (max-width: 1050px) {
    .site-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        overflow: visible !important;
        min-height: 76px !important;
        height: 76px !important;
        padding: 0 1.2rem !important;
    }

    .brand {
        flex: 0 0 auto !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 0.65rem !important;
        margin-left: auto !important;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        background: transparent !important;
        border: none !important;
        cursor: pointer !important;
        padding: 6px !important;
        z-index: 100000 !important;
        pointer-events: auto !important;
        position: relative !important;
    }

    .menu-toggle span {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        pointer-events: none !important;
        transition: transform 200ms ease, opacity 200ms ease, background 200ms ease !important;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
        background: #e1e6ed !important;
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
        background: #e1e6ed !important;
    }

    .primary-nav {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100vw !important;
        max-width: 100vw !important;
        background: #030a14 !important;
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.9) !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
        display: none !important;
        flex-direction: column !important;
        padding: 1.5rem 1.25rem 2rem 1.25rem !important;
        gap: 0.6rem !important;
        z-index: 999999 !important;
    }

    .site-header.menu-open .primary-nav {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    .primary-nav a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1.25rem !important;
        color: #ffffff !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-radius: 0.6rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .primary-nav a:hover,
    .primary-nav a.is-active {
        background: rgba(243, 215, 155, 0.15) !important;
        color: #e1e6ed !important;
        border-color: rgba(243, 215, 155, 0.3) !important;
    }
}

/* ��� Rock-Solid High-Specificity Mobile Menu System ��� */
@media (max-width: 1050px) {
    .site-header {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 99999 !important;
        height: 76px !important;
        min-height: 76px !important;
        padding: 0 1rem !important;
        overflow: visible !important;
        background: #030a14 !important;
    }

    .brand {
        display: block !important;
        width: 7.5rem !important;
        height: auto !important;
    }

    .header-right {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-left: auto !important;
    }

    .site-header__search-trigger {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 1.15rem !important;
        color: #ffffff !important;
        background: none !important;
        border: none !important;
        padding: 0.5rem !important;
        cursor: pointer !important;
    }

    .header-actions {
        display: none !important;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        min-height: 44px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 8px !important;
        cursor: pointer !important;
        padding: 8px !important;
        z-index: 100001 !important;
        pointer-events: auto !important;
    }

    .menu-toggle span {
        display: block !important;
        width: 22px !important;
        height: 2px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        pointer-events: none !important;
        transition: transform 200ms ease, opacity 200ms ease, background 200ms ease !important;
    }

    .site-header.menu-open .menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg) !important;
        background: #e1e6ed !important;
    }

    .site-header.menu-open .menu-toggle span:nth-child(2) {
        opacity: 0 !important;
    }

    .site-header.menu-open .menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg) !important;
        background: #e1e6ed !important;
    }

    .primary-nav {
        position: fixed !important;
        top: 76px !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: auto !important;
        max-height: calc(100vh - 76px) !important;
        overflow-y: auto !important;
        background: #030a14 !important;
        border-bottom: 2px solid #0c243e !important;
        box-shadow: 0 25px 50px rgba(0, 0, 0, 0.95) !important;
        display: none !important;
        flex-direction: column !important;
        padding: 1.5rem 1.25rem 2rem !important;
        gap: 0.75rem !important;
        z-index: 100000 !important;
    }

    .site-header.menu-open .primary-nav,
    .menu-open .primary-nav,
    header.menu-open .primary-nav {
        display: flex !important;
    }

    .primary-nav a {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 1rem 1.25rem !important;
        color: #ffffff !important;
        font-size: 1.15rem !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-radius: 0.6rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .primary-nav a:hover,
    .primary-nav a.is-active {
        background: rgba(243, 215, 155, 0.15) !important;
        color: #e1e6ed !important;
        border-color: rgba(243, 215, 155, 0.3) !important;
    }
}

/* ============================================================
   PREMIUM HERO SECTION TYPOGRAPHY & VISUAL ENHANCEMENT
   High-End Parfumerie Aesthetics & Fluid Responsiveness
   ============================================================ */

/* Hero Text Column Container */
.hero__text-col {
    position: relative;
    z-index: 2;
    max-width: 660px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* 1. Haute Parfumerie Luxury Tag Badge */
.hero__badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.65rem !important;
    padding: 0.42rem 1.1rem !important;
    border-radius: 999px !important;
    background: rgba(7, 23, 42, 0.7) !important;
    border: 1px solid rgba(243, 215, 155, 0.35) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    margin-bottom: 1.35rem !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    transition: all 250ms ease !important;
}

.hero__badge:hover {
    border-color: rgba(243, 215, 155, 0.6) !important;
    background: rgba(7, 23, 42, 0.85) !important;
    transform: translateY(-1px) !important;
}

.hero__badge-pulse {
    width: 7px !important;
    height: 7px !important;
    border-radius: 50% !important;
    background: #e1e6ed !important;
    box-shadow: 0 0 10px #e1e6ed, 0 0 18px rgba(243, 215, 155, 0.6) !important;
    animation: heroPulseGlow 2.2s infinite ease-in-out !important;
}

@keyframes heroPulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.9;
    }
    50% {
        transform: scale(1.35);
        opacity: 1;
        box-shadow: 0 0 14px #e1e6ed, 0 0 24px rgba(243, 215, 155, 0.9);
    }
}

.hero__badge-text {
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.16em !important;
    text-transform: uppercase !important;
    color: #e1e6ed !important;
    line-height: 1 !important;
}

/* 2. Main Hero Title Hierarchy */
#hero-title,
.hero h1 {
    margin: 0 0 1.35rem 0 !important;
    font-size: clamp(2.35rem, 4.6vw, 4.35rem) !important;
    font-weight: 700 !important;
    line-height: 1.12 !important;
    letter-spacing: -0.03em !important;
    color: #ffffff !important;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.5) !important;
}

.hero__title-white,
#hero-title span:first-child {
    display: block !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    letter-spacing: -0.025em !important;
}

.hero__title-accent,
#hero-title .hero__title-accent {
    display: block !important;
    font-weight: 800 !important;
    letter-spacing: -0.025em !important;
    color: #1e3a8a !important;
    filter: drop-shadow(0 2px 14px rgba(200, 138, 44, 0.38)) !important;
    margin-top: 0.2rem !important;
}

/* 3. Description Narrative Copy */
.hero__description {
    font-size: clamp(1.02rem, 1.25vw, 1.14rem) !important;
    line-height: 1.76 !important;
    color: rgba(255, 255, 255, 0.88) !important;
    font-weight: 400 !important;
    max-width: 550px !important;
    margin: 0 0 1.85rem 0 !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55) !important;
    letter-spacing: -0.005em !important;
}

/* 4. Scent Notes Luxury Chips */
.scent-notes {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.75rem !important;
    margin-bottom: 2.2rem !important;
}

.scent-notes span {
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.6rem !important;
    padding: 0.52rem 1.15rem !important;
    background: rgba(5, 18, 33, 0.7) !important;
    border: 1px solid rgba(243, 215, 155, 0.28) !important;
    border-radius: 999px !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    color: #e1e6ed !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.025em !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.32) !important;
    transition: all 250ms cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    cursor: default !important;
}

.scent-notes span i {
    color: #dfac54 !important;
    font-size: 0.96rem !important;
    transition: transform 220ms ease !important;
}

.scent-notes span:hover {
    background: rgba(200, 138, 44, 0.2) !important;
    border-color: #dfac54 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(223, 172, 84, 0.35) !important;
    color: #ffffff !important;
}

.scent-notes span:hover i {
    transform: scale(1.18) rotate(5deg) !important;
    color: #a9b6c2 !important;
}

/* 5. Call To Action Luxury Button */
.hero__cta-wrapper {
    display: flex !important;
    align-items: center !important;
}

.hero__cta {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.85rem !important;
    padding: 0.98rem 2.4rem !important;
    min-height: 3.4rem !important;
    border-radius: 999px !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
    text-transform: uppercase !important;
    color: #040c17 !important;
    background: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.75) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(243, 215, 155, 0.4) !important;
    text-decoration: none !important;
    transition: all 260ms cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    position: relative !important;
}

.hero__cta span {
    color: #040c17 !important;
    font-weight: 700 !important;
}

.hero__cta i {
    font-size: 0.98rem !important;
    color: #040c17 !important;
    transition: transform 220ms ease !important;
}

.hero__cta:hover {
    background: #e1e6ed !important;
    color: #040c17 !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 16px 45px rgba(0, 0, 0, 0.6), 0 0 35px rgba(223, 172, 84, 0.6) !important;
}

.hero__cta:hover i {
    transform: translateX(5px) !important;
}

/* ============================================================
   RESPONSIVE HERO TYPOGRAPHY BREAKPOINTS
   ============================================================ */

@media (max-width: 900px) {
    .hero__text-col {
        max-width: 100% !important;
    }

    #hero-title,
    .hero h1 {
        font-size: clamp(2.1rem, 5.5vw, 3.2rem) !important;
        line-height: 1.14 !important;
    }

    .hero__description {
        font-size: 1.02rem !important;
        line-height: 1.72 !important;
        max-width: 580px !important;
    }
}

@media (max-width: 760px) {
    .hero__text-col {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
        align-items: flex-start !important;
        text-align: left !important;
    }

    .hero__badge {
        margin-bottom: 1.1rem !important;
        padding: 0.38rem 0.95rem !important;
    }

    .hero__badge-text {
        font-size: 0.74rem !important;
        letter-spacing: 0.14em !important;
    }

    #hero-title,
    .hero h1 {
        font-size: clamp(1.95rem, 7.8vw, 2.75rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 1.15rem !important;
    }

    .hero__description {
        font-size: 0.98rem !important;
        line-height: 1.68 !important;
        margin-bottom: 1.45rem !important;
    }

    .scent-notes {
        gap: 0.55rem !important;
        margin-bottom: 1.75rem !important;
    }

    .scent-notes span {
        font-size: 0.82rem !important;
        padding: 0.42rem 0.9rem !important;
    }

    .hero__cta {
        padding: 0.92rem 2.1rem !important;
        font-size: 0.92rem !important;
    }
}

@media (max-width: 480px) {
    .hero__text-col {
        padding-left: 1rem !important;
        padding-right: 1rem !important;
    }

    .hero__badge {
        padding: 0.32rem 0.8rem !important;
        margin-bottom: 0.95rem !important;
    }

    .hero__badge-text {
        font-size: 0.68rem !important;
        letter-spacing: 0.12em !important;
    }

    #hero-title,
    .hero h1 {
        font-size: clamp(1.8rem, 8.2vw, 2.35rem) !important;
        line-height: 1.16 !important;
    }

    .hero__description {
        font-size: 0.93rem !important;
        line-height: 1.65 !important;
        margin-bottom: 1.35rem !important;
    }

    .scent-notes {
        gap: 0.45rem !important;
        margin-bottom: 1.5rem !important;
    }

    .scent-notes span {
        font-size: 0.78rem !important;
        padding: 0.35rem 0.75rem !important;
        gap: 0.45rem !important;
    }

    .hero__cta-wrapper {
        width: 100% !important;
    }

    .hero__cta {
        width: 100% !important;
        justify-content: center !important;
        padding: 0.88rem 1.6rem !important;
        font-size: 0.88rem !important;
    }
}

/* ============================================================
   HERO TYPOGRAPHY REFINEMENT: SEMIBOLD, 2-LINED & TIGHT SPACING
   ============================================================ */

/* Reduced Overall Spacing & Tight Flow */
.hero__text-col {
    max-width: 600px !important;
}

.hero__badge {
    margin-bottom: 0.65rem !important;
    padding: 0.32rem 0.9rem !important;
}

.hero__badge-text {
    font-size: 0.72rem !important;
    letter-spacing: 0.14em !important;
}

/* Semibold 2-Lined Title */
#hero-title,
.hero h1,
.hero h1 span,
.hero__title-accent,
.hero__title-white {
    font-weight: 600 !important;
}

#hero-title,
.hero h1 {
    margin: 0 0 0.75rem 0 !important;
    font-size: clamp(1.85rem, 3.6vw, 3.2rem) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.025em !important;
    color: #ffffff !important;
    text-shadow: 0 3px 15px rgba(0, 0, 0, 0.4) !important;
}

.hero__title-white,
#hero-title span:first-child {
    display: block !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
}

.hero__title-accent,
#hero-title .hero__title-accent {
    display: block !important;
    font-weight: 600 !important;
    white-space: nowrap !important;
    margin-top: 0.15rem !important;
    color: #1e3a8a !important;
    filter: drop-shadow(0 2px 10px rgba(200, 138, 44, 0.3)) !important;
}

/* Compact Narrative Copy */
.hero__description {
    font-size: clamp(0.94rem, 1.1vw, 1.04rem) !important;
    line-height: 1.62 !important;
    color: rgba(255, 255, 255, 0.85) !important;
    font-weight: 400 !important;
    max-width: 520px !important;
    margin: 0 0 1rem 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5) !important;
}

/* Compact Scent Notes Chips */
.scent-notes {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 0.55rem !important;
    margin-bottom: 1.25rem !important;
}

.scent-notes span {
    padding: 0.38rem 0.95rem !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    gap: 0.5rem !important;
}

.scent-notes span i {
    font-size: 0.88rem !important;
}

/* Compact CTA Button */
.hero__cta {
    padding: 0.82rem 2.1rem !important;
    min-height: 3rem !important;
    font-size: 0.88rem !important;
    letter-spacing: 0.06em !important;
}

/* Responsive Adjustments for Mobile / Tablet */
@media (max-width: 760px) {
    .hero__badge {
        margin-bottom: 0.55rem !important;
    }

    #hero-title,
    .hero h1 {
        font-size: clamp(1.65rem, 6.8vw, 2.35rem) !important;
        margin-bottom: 0.65rem !important;
    }

    .hero__title-white,
    .hero__title-accent,
    #hero-title span:first-child,
    #hero-title .hero__title-accent {
        white-space: normal !important;
    }

    .hero__description {
        font-size: 0.92rem !important;
        line-height: 1.58 !important;
        margin-bottom: 0.9rem !important;
    }

    .scent-notes {
        gap: 0.45rem !important;
        margin-bottom: 1.15rem !important;
    }

    .scent-notes span {
        font-size: 0.76rem !important;
        padding: 0.32rem 0.8rem !important;
    }

    .hero__cta {
        padding: 0.78rem 1.8rem !important;
        min-height: 2.85rem !important;
        font-size: 0.84rem !important;
    }
}

@media (max-width: 480px) {
    #hero-title,
    .hero h1 {
        font-size: clamp(1.55rem, 7.2vw, 2.05rem) !important;
    }

    .hero__title-white,
    .hero__title-accent,
    #hero-title span:first-child,
    #hero-title .hero__title-accent {
        white-space: normal !important;
    }

    .hero__description {
        font-size: 0.88rem !important;
        line-height: 1.55 !important;
    }
}

/* ��� Remove Excess Space Between Hero Title & Description on Mobile ��� */
.hero__intro {
    margin-top: 0 !important;
}

@media (max-width: 760px) {
    #hero-title,
    .hero h1 {
        margin-bottom: 0.35rem !important;
    }

    .hero__intro {
        margin-top: 0 !important;
    }

    .hero__description {
        margin-top: 0 !important;
        margin-bottom: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    #hero-title,
    .hero h1 {
        margin-bottom: 0.25rem !important;
    }

    .hero__intro {
        margin-top: 0 !important;
    }

    .hero__description {
        margin-top: 0 !important;
        margin-bottom: 0.65rem !important;
    }
}

/* ============================================================
   PERMANENT ZERO-HORIZONTAL-SCROLL PROTECTION
   Guarantees 0 horizontal overflow across entire website
   ============================================================ */

html,
body {
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
    position: relative !important;
    box-sizing: border-box !important;
}

*,
*::before,
*::after {
    box-sizing: border-box !important;
}

main,
section,
header,
footer,
article,
aside,
nav {
    max-width: 100% !important;
    box-sizing: border-box !important;
}

/* Fix 100vw bug in navigation drawers */
.primary-nav {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    box-sizing: border-box !important;
}

/* Fix Marketing Marquee Overflow */
.marketing-line {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.marketing-line__marquee {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

/* Fix Best Seller Section Overflow */
.best-seller {
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

.best-seller__wordmark {
    max-width: 100% !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.best-seller__values {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 0.8rem 1rem !important;
    overflow-x: hidden !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 0.75rem !important;
    box-sizing: border-box !important;
}

/* Fix All Grid Sections Overflow */
.signature-collection,
.product-grid-section,
.most-sellers-section,
.fragrance-showcase,
.scent-discovery,
.gifting-callout,
.reviews,
.contact-section,
.about-split-section,
.about-values-wrapper,
.about-motto-banner,
.contact-cards-section {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
}

/* Fix Mobile Images & Media */
img,
video,
svg,
canvas {
    max-width: 100% !important;
    height: auto;
}

@media (max-width: 760px) {
    .best-seller__values {
        width: 100% !important;
        margin-left: 0 !important;
        padding: 0.75rem 1rem !important;
        overflow-x: hidden !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

/* ============================================================
   FIX: ELIMINATE VERTICAL SCROLLBAR ON PRODUCT GRID SECTION
   ============================================================ */

.product-grid-section,
.most-sellers-section,
.signature-collection,
.signature-products,
.signature-product,
.signature-product__info {
    overflow-y: visible !important;
    height: auto !important;
    max-height: none !important;
}

.product-grid-section::-webkit-scrollbar,
.most-sellers-section::-webkit-scrollbar,
.signature-collection::-webkit-scrollbar,
.signature-products::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

@media (max-width: 760px) {
    .product-grid-section,
    .most-sellers-section,
    .signature-collection,
    .signature-products {
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
    }
}

/* ============================================================
   FIX: ELIMINATE VERTICAL SCROLLBAR ON CAMPAIGNS & MOST SELLERS
   ============================================================ */

.campaigns,
.campaigns__grid,
.campaign-card,
.campaign-card__content,
.product-grid-section,
.most-sellers-section,
.signature-collection,
.signature-products,
.signature-product {
    overflow-y: visible !important;
    height: auto !important;
    max-height: none !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

.campaigns::-webkit-scrollbar,
.campaigns__grid::-webkit-scrollbar,
.campaign-card::-webkit-scrollbar,
.campaign-card__content::-webkit-scrollbar,
.product-grid-section::-webkit-scrollbar,
.most-sellers-section::-webkit-scrollbar,
.signature-collection::-webkit-scrollbar,
.signature-products::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

@media (max-width: 760px) {
    .campaigns,
    .campaigns__grid,
    .campaign-card,
    .product-grid-section,
    .most-sellers-section,
    .signature-collection,
    .signature-products {
        overflow-y: visible !important;
        height: auto !important;
        max-height: none !important;
    }

    .campaign-card {
        min-height: 240px !important;
        height: auto !important;
    }

    .campaign-card__content {
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        max-height: none !important;
        overflow: visible !important;
    }
}


/* Variant Options Grid Styling */
.variant-options-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.25rem;
    gap: 0.5rem;
    margin-top: 0.5rem;
}



/* ============================================================
   PRODUCT DETAIL PAGE â€“ REDESIGN STYLES
   ============================================================ */
.pd-page { background: #ffffff; min-height: 100vh; }

.pd-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1380px;
    margin: 0 auto;
    padding: 2.5rem clamp(1.5rem, 4vw, 4rem) 4rem;
    gap: 4rem;
    align-items: start;
}
@media (max-width: 860px) {
    .pd-hero { grid-template-columns: 1fr; gap: 2rem; }
}
.pd-gallery__main-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f3ee;
    aspect-ratio: 1 / 1;
}
.pd-gallery__main {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: opacity 200ms ease;
}
.pd-gallery__badge {
    position: absolute; top: 1.1rem; left: 1.1rem;
    background: #07172a; color: #fff;
    font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    padding: 0.32rem 0.8rem; border-radius: 999px;
}
.pd-gallery__disc {
    position: absolute; top: 1.1rem; right: 1.1rem;
    background: #c53030; color: #fff;
    font-family: 'Manrope', sans-serif; font-size: 0.78rem; font-weight: 800;
    padding: 0.32rem 0.7rem; border-radius: 999px;
}
.pd-gallery__thumbs {
    display: flex; gap: 0.6rem; margin-top: 0.85rem;
    overflow-x: auto; padding-bottom: 0.2rem; scrollbar-width: none;
}
.pd-gallery__thumbs::-webkit-scrollbar { display: none; }
.pd-thumb-btn {
    all: unset; box-sizing: border-box;
    width: 68px; height: 68px; border-radius: 12px;
    border: 2px solid transparent;
    background: #f5f3ee; padding: 0.2rem;
    cursor: pointer; flex-shrink: 0; overflow: hidden;
    transition: border-color 180ms ease;
}
.pd-thumb-btn img { width: 100%; height: 100%; object-fit: contain; }
.pd-thumb-btn.is-active { border-color: #07172a; }
.pd-content { display: flex; flex-direction: column; gap: 0; }
.pd-back {
    display: inline-flex; align-items: center; gap: 0.45rem;
    font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 600;
    color: #07172a; text-decoration: none; text-transform: uppercase;
    letter-spacing: 0.08em; margin-bottom: 1.5rem; opacity: 0.5;
    transition: opacity 200ms;
}
.pd-back:hover { opacity: 1; }
.pd-category {
    font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 700;
    letter-spacing: 0.14em; text-transform: uppercase; color: #9ba8b8;
    margin: 0 0 0.4rem;
}
.pd-name {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500; line-height: 1.08; color: #07172a; margin: 0 0 0.4rem;
}
.pd-tagline {
    font-family: 'Manrope', sans-serif; font-size: 0.9rem;
    color: #7a8898; font-style: italic; margin: 0 0 1.5rem;
}
.pd-divider { height: 1px; background: rgba(7,23,42,0.08); border: none; margin: 1.25rem 0; }
.pd-price-row { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; margin-bottom: 0.25rem; }
.pd-price {
    font-family: 'Manrope', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 1.9rem; font-weight: 600; color: #07172a; line-height: 1;
}
.pd-compare {
    font-family: 'Manrope', sans-serif; font-size: 0.95rem;
    color: #b0bac8; text-decoration: line-through;
}
.pd-save {
    background: #ecfdf2; color: #166534;
    font-family: 'Manrope', sans-serif; font-size: 0.75rem; font-weight: 700;
    padding: 0.28rem 0.65rem; border-radius: 999px;
}
.pd-variants-wrap { margin: 1.4rem 0; }
.pd-variants-lbl {
    display: flex; justify-content: space-between; align-items: center;
    font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.1em; color: #9ba8b8;
    margin-bottom: 0.7rem;
}
.pd-variants-lbl strong { color: #07172a; font-size: 0.82rem; }
.pd-variants-grid {
    display: flex; flex-wrap: nowrap; gap: 0.55rem;
    overflow-x: auto; padding-bottom: 0.2rem; scrollbar-width: none;
}
.pd-variants-grid::-webkit-scrollbar { display: none; }
.pd-size-btn {
    all: unset;
    box-sizing: border-box;
    display: inline-flex; align-items: center; justify-content: center; gap: 0.3rem;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    border: 1.5px solid #d1d5db;
    background: #ffffff;
    color: #07172a;
    font-family: 'Manrope', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    cursor: pointer; white-space: nowrap; flex-shrink: 0;
    transition: all 180ms ease;
}
.pd-size-btn i { font-size: 0.68rem; color: #9ba8b8; transition: color 180ms; }
.pd-size-btn.is-active {
    border-color: #07172a;
    background: #07172a;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(7,23,42,0.18);
}
.pd-size-btn.is-active i { color: rgba(255,255,255,0.55); }
.pd-notes { display: flex; flex-wrap: wrap; gap: 0.45rem; margin: 1.1rem 0; }
.pd-note {
    display: inline-flex; align-items: center; gap: 0.28rem;
    font-family: 'Manrope', sans-serif; font-size: 0.76rem; font-weight: 600;
    color: #5a6880; background: #f5f3ee; padding: 0.28rem 0.7rem; border-radius: 999px;
}
.pd-note i { color: #c9a85a; font-size: 0.66rem; }
.pd-desc {
    font-family: 'Manrope', sans-serif; font-size: 0.91rem;
    line-height: 1.78; color: #5a6880; margin: 0.5rem 0 1.5rem;
}
.pd-meta {
    display: grid; grid-template-columns: 1fr 1fr; gap: 0 1rem; margin-bottom: 1.75rem;
}
.pd-meta div {
    display: flex; justify-content: space-between; align-items: center;
    padding: 0.55rem 0; border-bottom: 1px solid rgba(7,23,42,0.06);
}
.pd-meta dt {
    font-family: 'Manrope', sans-serif; font-size: 0.72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 0.08em; color: #9ba8b8;
}
.pd-meta dd {
    font-family: 'Manrope', sans-serif; font-size: 0.82rem; font-weight: 600;
    color: #07172a; margin: 0;
}
.pd-add-btn {
    all: unset; box-sizing: border-box;
    display: flex; align-items: center; justify-content: center; gap: 0.65rem;
    width: 100%; padding: 1rem 2rem;
    background: #07172a; color: #ffffff;
    border-radius: 999px; font-family: 'Manrope', sans-serif;
    font-size: 0.98rem; font-weight: 700; cursor: pointer;
    box-shadow: 0 8px 28px rgba(7,23,42,0.22);
    transition: background 200ms, transform 200ms, box-shadow 200ms;
    margin-bottom: 0.75rem;
}
.pd-add-btn:hover { background: #0f2540; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(7,23,42,0.3); }
.pd-wish-btn {
    all: unset; box-sizing: border-box;
    display: flex; align-items: center; justify-content: center; gap: 0.5rem;
    width: 100%; padding: 0.85rem 2rem;
    border: 1.5px solid rgba(7,23,42,0.14);
    border-radius: 999px; font-family: 'Manrope', sans-serif;
    font-size: 0.9rem; font-weight: 600; color: #07172a; cursor: pointer;
    transition: border-color 200ms, background 200ms;
}
.pd-wish-btn:hover { border-color: #07172a; background: rgba(7,23,42,0.03); }
.pd-trust {
    display: flex; flex-wrap: wrap; gap: 1rem;
    margin-top: 1.4rem; padding-top: 1.4rem;
    border-top: 1px solid rgba(7,23,42,0.06);
}
.pd-trust-item {
    display: flex; align-items: center; gap: 0.38rem;
    font-family: 'Manrope', sans-serif; font-size: 0.74rem; font-weight: 600; color: #5a6880;
}
.pd-trust-item i { color: #c9a85a; font-size: 0.86rem; }

.pd-actions-wrap {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1.5rem 0 1.25rem;
}
.pd-add-btn {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #07172a;
    color: #ffffff;
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(7, 23, 42, 0.2);
    transition: background 200ms ease, transform 200ms ease, box-shadow 200ms ease;
}
.pd-add-btn:hover {
    background: #0f2540;
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(7, 23, 42, 0.28);
}
.pd-buy-btn {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #ffffff;
    color: #07172a;
    border: 2px solid #07172a;
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.98rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 200ms ease;
}
.pd-buy-btn:hover {
    background: #07172a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(7, 23, 42, 0.16);
}
.pd-wish-btn {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 2rem;
    border: 1.5px solid rgba(7, 23, 42, 0.14);
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #07172a;
    cursor: pointer;
    transition: border-color 200ms ease, background 200ms ease, color 200ms ease;
}
.pd-wish-btn:hover {
    border-color: #07172a;
    background: rgba(7, 23, 42, 0.03);
}


/* ============================================================
   AUTHENTICATION, ACCOUNT, CART DRAWER & CHECKOUT SYSTEM STYLES
   ============================================================ */

/* ── Auth Pages (Login & Register) ── */
.auth-section {
    min-height: calc(100vh - 160px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 1.5rem;
    background: #fbfaf8;
}

.auth-card {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.2rem);
    width: 100%;
    max-width: 520px;
    box-shadow: 0 16px 48px rgba(7, 23, 42, 0.08);
    border: 1px solid rgba(7, 23, 42, 0.06);
}

.auth-card--register {
    max-width: 680px;
}

.auth-card__header {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-card__eyebrow {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #9ba8b8;
    display: block;
    margin-bottom: 0.4rem;
}

.auth-card__title {
    
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 600;
    color: #07172a;
    margin: 0 0 0.5rem;
    line-height: 1.2;
}

.auth-card__subtitle {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 auto;
    max-width: 440px;
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.auth-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.auth-alert--success {
    background: #f0fdf4;
    color: #166534;
    border: 1px solid #bbf7d0;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .auth-grid-2 {
        grid-template-columns: 1fr;
    }
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-field label {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #07172a;
}

.auth-field label .req {
    color: #c53030;
}

.auth-field__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
}

.auth-input-icon {
    position: absolute;
    left: 1.1rem;
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 0.85rem 1.1rem 0.85rem 2.85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #07172a;
    background: #ffffff;
    outline: none;
    transition: all 180ms ease;
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: #07172a;
    box-shadow: 0 0 0 3px rgba(7, 23, 42, 0.08);
}

.auth-pw-toggle {
    all: unset;
    position: absolute;
    right: 1rem;
    color: #94a3b8;
    cursor: pointer;
    padding: 0.25rem;
    transition: color 180ms;
}

.auth-pw-toggle:hover {
    color: #07172a;
}

.auth-submit-btn {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1rem 2rem;
    background: #07172a;
    color: #ffffff;
    border-radius: 12px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(7, 23, 42, 0.18);
    transition: all 200ms ease;
    margin-top: 0.5rem;
}

.auth-submit-btn:hover {
    background: #0f2540;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(7, 23, 42, 0.25);
}

.auth-card__footer {
    text-align: center;
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    color: #64748b;
}

.pd-page { background: #ffffff; min-height: 100vh; }

.pd-container {
    max-width: 1380px;
    margin: 0 auto;
    padding: clamp(1.75rem, 3.5vw, 2.5rem) clamp(1.5rem, 4vw, 4rem) 0;
}

.pd-back {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Manrope', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #07172a;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 1.75rem;
    opacity: 0.65;
    transition: all 200ms ease;
}

.pd-back:hover {
    opacity: 1;
    transform: translateX(-3px);
}

.pd-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
    margin: 0;
    padding: 0 0 4rem 0;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    align-items: start;
}
@media (max-width: 860px) {
    .pd-hero { grid-template-columns: 1fr; gap: 2.25rem; }
}

.auth-card__footer a {
    color: #07172a;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 180ms;
}

.auth-card__footer a:hover {
    text-decoration: underline;
}

/* ── Customer Account Dashboard ── */
.account-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem clamp(1.5rem, 4vw, 3.5rem) 5rem;
}

.account-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: #07172a;
    color: #ffffff;
    padding: 2.25rem;
    border-radius: 20px;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.account-header__avatar {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 1.8rem;
    font-weight: 600;
    color: #ffffff;
    flex-shrink: 0;
}

.account-header__info {
    flex-grow: 1;
}

.account-header__tag {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #c9a85a;
    display: block;
    margin-bottom: 0.2rem;
}

.account-header__name {
    
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 600;
    margin: 0 0 0.25rem;
    line-height: 1.2;
}

.account-header__email {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.account-header__actions {
    margin-left: auto;
}

.account-btn {
    all: unset;
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.4rem;
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 180ms ease;
    text-decoration: none;
}

.account-btn--logout {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.account-btn--logout:hover {
    background: #c53030;
    border-color: #c53030;
}

.account-btn--primary {
    background: #07172a;
    color: #ffffff;
}

.account-btn--primary:hover {
    background: #0f2540;
    transform: translateY(-2px);
}

.account-btn--secondary {
    background: #ffffff;
    color: #07172a;
    border: 1.5px solid #07172a;
}

.account-btn--secondary:hover {
    background: #07172a;
    color: #ffffff;
}

.account-btn--save {
    background: #07172a;
    color: #ffffff;
    width: 100%;
    border-radius: 12px;
    padding: 0.9rem;
    margin-top: 0.5rem;
}

.account-btn--save:hover {
    background: #0f2540;
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 960px) {
    .account-grid {
        grid-template-columns: 1fr;
    }
}

.account-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(7, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(7, 23, 42, 0.04);
}

.account-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(7, 23, 42, 0.06);
}

.account-panel__header h2 {
    
    font-size: 1.2rem;
    font-weight: 600;
    color: #07172a;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.account-badge {
    background: #f1f5f9;
    color: #07172a;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.account-divider {
    height: 1px;
    background: rgba(7, 23, 42, 0.06);
    border: none;
    margin: 2rem 0;
}

.account-empty-orders {
    text-align: center;
    padding: 3rem 1rem;
}

.account-empty-icon {
    font-size: 2.5rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
}

.account-empty-orders h3 {
    
    font-size: 1.2rem;
    color: #07172a;
    margin: 0 0 0.5rem;
}

.account-empty-orders p {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 1.5rem;
}

.account-orders-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.order-card {
    background: #fbfaf8;
    border-radius: 16px;
    padding: 1.25rem;
    border: 1px solid rgba(7, 23, 42, 0.06);
}

.order-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(7, 23, 42, 0.06);
}

.order-card__num {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 800;
    color: #07172a;
    display: block;
}

.order-card__date {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
}

.order-card__status {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
}

.status--pending { background: #fef3c7; color: #92400e; }
.status--processing { background: #dbeafe; color: #1e40af; }
.status--completed, .status--delivered { background: #dcfce7; color: #166534; }
.status--cancelled { background: #fee2e2; color: #991b1b; }

.order-card__items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.order-item-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.order-item-row__img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #ffffff;
    padding: 0.25rem;
    flex-shrink: 0;
}

.order-item-row__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.order-item-row__info {
    flex-grow: 1;
}

.order-item-row__info h4 {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #07172a;
    margin: 0 0 0.15rem;
}

.order-item-row__info p {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    margin: 0;
}

.order-item-row__price {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #07172a;
}

.order-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(7, 23, 42, 0.06);
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.order-card__address {
    color: #64748b;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.order-card__total strong {
    font-size: 0.95rem;
    color: #07172a;
}

/* ── Cart Drawer Component ── */
.cart-drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    display: none;
}

.cart-drawer-overlay.is-open {
    display: block;
}

.cart-drawer-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(7, 23, 42, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}

.cart-drawer {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: 440px;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    animation: drawerSlideIn 280ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes drawerSlideIn {
    to { transform: translateX(0); }
}

.cart-drawer__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.75rem;
    border-bottom: 1px solid rgba(7, 23, 42, 0.08);
}

.cart-drawer__title-wrap {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.cart-drawer__title-wrap i {
    color: #07172a;
    font-size: 1.1rem;
}

.cart-drawer__title {
    
    font-size: 1.15rem;
    font-weight: 600;
    color: #07172a;
    margin: 0;
}

.cart-drawer__count {
    background: #07172a;
    color: #ffffff;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-drawer__close {
    all: unset;
    cursor: pointer;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #64748b;
    transition: all 180ms ease;
}

.cart-drawer__close:hover {
    background: #f1f5f9;
    color: #07172a;
}

.cart-drawer__promo {
    background: #fbfaf8;
    padding: 0.6rem 1.75rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid rgba(7, 23, 42, 0.05);
}

.cart-drawer__body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.25rem 1.75rem;
}

.cart-drawer__empty {
    text-align: center;
    padding: 4rem 1rem;
}

.cart-drawer__list {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.cart-item-row {
    display: flex;
    gap: 1rem;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(7, 23, 42, 0.06);
}

.cart-item-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item-row__img {
    width: 72px;
    height: 72px;
    border-radius: 12px;
    background: #f5f3ee;
    padding: 0.4rem;
    flex-shrink: 0;
}

.cart-item-row__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cart-item-row__details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-item-row__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
}

.cart-item-row__name {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #07172a;
    margin: 0;
}

.cart-item-row__remove {
    all: unset;
    cursor: pointer;
    color: #94a3b8;
    font-size: 0.85rem;
    transition: color 180ms ease;
    padding: 0.2rem;
}

.cart-item-row__remove:hover {
    color: #c53030;
}

.cart-item-row__size {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: #64748b;
    background: #f1f5f9;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    align-self: flex-start;
    margin: 0.25rem 0;
}

.cart-item-row__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 0.35rem;
}

.cart-qty-ctrl {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    overflow: hidden;
}

.cart-qty-ctrl button {
    all: unset;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.85rem;
    color: #07172a;
    background: #f8fafc;
    transition: background 180ms;
}

.cart-qty-ctrl button:hover {
    background: #e2e8f0;
}

.cart-qty-val {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.cart-item-row__price {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 800;
    color: #07172a;
}

.cart-drawer__footer {
    padding: 1.5rem 1.75rem;
    border-top: 1px solid rgba(7, 23, 42, 0.08);
    background: #ffffff;
}

.cart-drawer__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.35rem;
    font-family: 'Manrope', system-ui, sans-serif;
}

.cart-drawer__subtotal span {
    font-size: 0.95rem;
    color: #64748b;
    font-weight: 600;
}

.cart-drawer__subtotal strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: #07172a;
}

.cart-drawer__tax-note {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    color: #94a3b8;
    margin: 0 0 1.25rem;
}

.cart-drawer__checkout-btn {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1rem;
    background: #07172a;
    color: #ffffff;
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(7, 23, 42, 0.2);
    transition: all 200ms ease;
    text-decoration: none;
}

.cart-drawer__checkout-btn:hover {
    background: #0f2540;
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(7, 23, 42, 0.28);
}

/* ── Checkout Page ── */
.checkout-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem clamp(1.5rem, 4vw, 3.5rem) 5rem;
}

.checkout-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.checkout-header__eyebrow {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #166534;
    display: block;
    margin-bottom: 0.4rem;
}

.checkout-header__title {
    
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 600;
    color: #07172a;
    margin: 0 0 0.5rem;
}

.checkout-header__subtitle {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}

.checkout-guest-banner {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 0.85rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    color: #07172a;
}

.checkout-guest-banner a {
    color: #07172a;
    font-weight: 700;
    text-decoration: underline;
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 3rem;
    align-items: start;
}

@media (max-width: 960px) {
    .checkout-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.checkout-form-col {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.checkout-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(7, 23, 42, 0.08);
    box-shadow: 0 8px 32px rgba(7, 23, 42, 0.04);
}

.checkout-card__title {
    
    font-size: 1.15rem;
    font-weight: 600;
    color: #07172a;
    margin: 0 0 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(7, 23, 42, 0.06);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.payment-option {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.15rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 14px;
    cursor: pointer;
    transition: all 180ms ease;
}

.payment-option:hover {
    border-color: #07172a;
    background: #fbfaf8;
}

.payment-option input[type="radio"] {
    margin-top: 0.25rem;
    accent-color: #07172a;
}

.payment-option__content {
    font-family: 'Manrope', system-ui, sans-serif;
}

.payment-option__title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.92rem;
    color: #07172a;
    margin-bottom: 0.25rem;
}

.payment-option__content p {
    font-size: 0.78rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

.checkout-summary-col {
    position: sticky;
    top: 100px;
}

.checkout-summary-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(7, 23, 42, 0.08);
    box-shadow: 0 12px 40px rgba(7, 23, 42, 0.06);
}

.checkout-summary__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    font-size: 1.15rem;
    font-weight: 600;
    color: #07172a;
    margin: 0 0 1.25rem;
}

.checkout-item-count {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 600;
}

.checkout-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-height: 340px;
    overflow-y: auto;
    padding-right: 0.25rem;
}

.checkout-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.checkout-item__img {
    width: 52px;
    height: 52px;
    border-radius: 10px;
    background: #f5f3ee;
    padding: 0.3rem;
    flex-shrink: 0;
}

.checkout-item__img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.checkout-item__info {
    flex-grow: 1;
}

.checkout-item__info h4 {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #07172a;
    margin: 0 0 0.15rem;
}

.checkout-item__info p {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    color: #64748b;
    margin: 0;
}

.checkout-item__price {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #07172a;
}

.checkout-divider {
    height: 1px;
    background: rgba(7, 23, 42, 0.06);
    border: none;
    margin: 1.5rem 0;
}

.checkout-totals {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    font-family: 'Manrope', system-ui, sans-serif;
}

.checkout-totals__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.88rem;
    color: #64748b;
}

.free-shipping-tag {
    color: #166534;
    font-weight: 800;
    font-size: 0.78rem;
    background: #dcfce7;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

.checkout-totals__row--grand {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(7, 23, 42, 0.08);
    font-size: 1rem;
    color: #07172a;
}

.checkout-totals__row--grand strong {
    font-size: 1.35rem;
    font-weight: 800;
}

.checkout-submit-btn {
    all: unset;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    width: 100%;
    padding: 1.1rem;
    background: #07172a;
    color: #ffffff;
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(7, 23, 42, 0.22);
    transition: all 200ms ease;
    margin-top: 1.5rem;
}

.checkout-submit-btn:hover {
    background: #0f2540;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(7, 23, 42, 0.3);
}

.checkout-trust-badges {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-top: 1.25rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    color: #94a3b8;
    text-align: center;
}

/* ── Order Confirmed Page ── */
.order-confirmed-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 4rem clamp(1.5rem, 4vw, 3rem) 6rem;
}

.confirmed-card {
    background: #ffffff;
    border-radius: 24px;
    padding: clamp(2rem, 5vw, 3.5rem);
    border: 1px solid rgba(7, 23, 42, 0.08);
    box-shadow: 0 16px 48px rgba(7, 23, 42, 0.06);
    text-align: center;
}

.confirmed-card__badge {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: #dcfce7;
    color: #166534;
    font-size: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.confirmed-card__eyebrow {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: #166534;
    display: block;
    margin-bottom: 0.35rem;
}

.confirmed-card__title {
    
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 600;
    color: #07172a;
    margin: 0 0 0.5rem;
}

.confirmed-card__subtitle {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.92rem;
    color: #64748b;
    margin: 0 0 1.75rem;
    line-height: 1.6;
}

.order-meta-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fbfaf8;
    border: 1px solid rgba(7, 23, 42, 0.08);
    padding: 0.6rem 1.25rem;
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    margin-bottom: 2.5rem;
}

.order-meta-pill strong {
    color: #07172a;
    font-weight: 800;
}

.confirmed-items-box {
    background: #fbfaf8;
    border-radius: 16px;
    padding: 1.5rem;
    text-align: left;
    margin-bottom: 1.75rem;
}

.confirmed-items-box h3 {
    
    font-size: 1.05rem;
    color: #07172a;
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(7, 23, 42, 0.06);
}

.confirmed-items-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.confirmed-item-row {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.confirmed-item-row__img {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #ffffff;
    padding: 0.25rem;
    object-fit: contain;
}

.confirmed-item-row__info {
    flex-grow: 1;
}

.confirmed-item-row__info h4 {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #07172a;
    margin: 0 0 0.15rem;
}

.confirmed-item-row__info p {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    color: #64748b;
    margin: 0;
}

.confirmed-item-row__price {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: #07172a;
}

.confirmed-summary-row {
    display: flex;
    justify-content: space-between;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    color: #64748b;
    padding: 0.35rem 0;
}

.confirmed-summary-row--total {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(7, 23, 42, 0.08);
    font-size: 0.95rem;
    color: #07172a;
}

.confirmed-summary-row--total strong {
    font-size: 1.15rem;
    font-weight: 800;
}

.confirmed-shipping-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    text-align: left;
    background: #ffffff;
    border: 1px solid rgba(7, 23, 42, 0.08);
    border-radius: 16px;
    padding: 1.25rem;
    margin-bottom: 2.25rem;
}

@media (max-width: 600px) {
    .confirmed-shipping-box {
        grid-template-columns: 1fr;
    }
}

.confirmed-shipping-item {
    display: flex;
    gap: 0.75rem;
}

.confirmed-shipping-item i {
    color: #07172a;
    font-size: 1rem;
    margin-top: 0.2rem;
}

.confirmed-shipping-item h4 {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #94a3b8;
    margin: 0 0 0.2rem;
}

.confirmed-shipping-item p {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.82rem;
    color: #07172a;
    margin: 0;
    line-height: 1.4;
}

.confirmed-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.reviews__stars-row,
.review-card__stars {
    color: #eab308;
    display: inline-flex;
    gap: 0.2rem;
    font-size: 0.85rem;
}
.reviews__stars-row i,
.review-card__stars i {
    color: #eab308;
}


/* ============================================================
   HERO NOIR SPLIT-SCREEN REDESIGN (MATCHING REFERENCE DESIGN)
   ============================================================ */

.hero-noir {
    min-height: calc(100vh - 84px);
    width: 100%;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    background: #000000;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

@media (max-width: 1024px) {
    .hero-noir {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 900px) {
    .hero-noir {
        grid-template-columns: 1fr;
        min-height: auto;
    }
}

/* ── Left Column ── */
.hero-noir__left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(2rem, 3.5vw, 3.2rem) clamp(2rem, 5vw, 4.5rem) clamp(2rem, 3.5vw, 3rem);
    background: #000000;
    position: relative;
    z-index: 2;
}

.hero-noir__header {
    display: flex;
    align-items: center;
    gap: clamp(2rem, 4vw, 4rem);
    margin-bottom: 2rem;
}

.hero-noir__brand {
    text-decoration: none;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.hero-noir__brand-text {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-noir__nav {
    display: flex;
    align-items: center;
    gap: 1.85rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
}

.hero-noir__nav a {
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
    transition: color 180ms ease;
}

.hero-noir__nav a:hover {
    color: #ffffff;
}

@media (max-width: 600px) {
    .hero-noir__nav {
        display: none;
    }
}

.hero-noir__main {
    margin: auto 0;
    max-width: 560px;
    padding: 1.5rem 0;
}

.hero-noir__headline {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(2.7rem, 4.8vw, 4.4rem);
    font-weight: 600;
    line-height: 1.06;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0 0 1.25rem;
}

.hero-noir__description {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: clamp(0.88rem, 1.05vw, 0.98rem);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.65;
    max-width: 460px;
    margin: 0 0 2.2rem;
}

.hero-noir__actions {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    margin-bottom: 3rem;
}

.hero-noir__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.4rem 0.45rem 0.4rem 1.85rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255, 255, 255, 0.22);
    color: #ffffff;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 220ms ease;
    background: transparent;
}

.hero-noir__btn:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.hero-noir__btn-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #6b8067;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 220ms ease;
    flex-shrink: 0;
}

.hero-noir__btn:hover .hero-noir__btn-icon {
    background: #7c9477;
    transform: rotate(6deg) scale(1.04);
}

/* ── Floating Mini Glass Card ── */
.hero-noir__mini-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    padding: 1.15rem 1.4rem;
    max-width: 360px;
    text-decoration: none;
    color: inherit;
    transition: all 250ms ease;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.hero-noir__mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.08);
}

.hero-noir__mini-info {
    flex-grow: 1;
}

.hero-noir__mini-title {
    
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #ffffff;
    margin: 0 0 0.2rem;
}

.hero-noir__mini-sub {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
    margin: 0 0 0.65rem;
}

.hero-noir__mini-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.45rem;
}

.hero-noir__mini-price {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
}

.hero-noir__mini-compare {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.hero-noir__mini-visual {
    position: relative;
    width: 104px;
    height: 76px;
    flex-shrink: 0;
}

.hero-noir__mini-box {
    position: absolute;
    left: 0;
    top: 0;
    width: 62px;
    height: 76px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    z-index: 2;
}

.hero-noir__mini-bottle {
    position: absolute;
    right: 0;
    top: 4px;
    width: 58px;
    height: 68px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.25rem;
    z-index: 1;
    opacity: 0.85;
}

.hero-noir__mini-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ── Bottom Controls ── */
.hero-noir__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
}

.hero-noir__progress {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-noir__progress span {
    height: 2.5px;
    width: 32px;
    background: rgba(255, 255, 255, 0.22);
    border-radius: 2px;
    cursor: pointer;
    transition: all 280ms ease;
}

.hero-noir__progress span.is-active {
    width: 52px;
    background: #ffffff;
}

.hero-noir__arrows {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.hero-noir__nav-btn {
    all: unset;
    cursor: pointer;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    transition: all 200ms ease;
}

.hero-noir__nav-btn--prev {
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
    background: transparent;
}

.hero-noir__nav-btn--prev:hover {
    border-color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
}

.hero-noir__nav-btn--next {
    border: 1px solid #ffffff;
    color: #000000;
    background: #ffffff;
}

.hero-noir__nav-btn--next:hover {
    background: #e2e8f0;
    transform: scale(1.05);
}

/* ── Right Column (Full Bleed Visual) ── */
.hero-noir__right {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #000000;
}

@media (max-width: 900px) {
    .hero-noir__right {
        height: 520px;
        min-height: 520px;
    }
}

.hero-noir__top-utility {
    position: absolute;
    top: clamp(2rem, 3.5vw, 3.2rem);
    right: clamp(1.5rem, 4vw, 3.5rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.hero-noir__util-btn {
    all: unset;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.15rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: opacity 180ms ease;
    position: relative;
}

.hero-noir__util-btn:hover {
    opacity: 0.8;
}

.hero-cart-badge {
    position: absolute;
    top: -2px;
    right: -4px;
    background: #ffffff;
    color: #000000;
    font-size: 0.65rem;
    font-weight: 800;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-noir__login-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.45rem;
    border-radius: 999px;
    background: #6b8067;
    color: #ffffff;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 200ms ease;
}

.hero-noir__login-pill:hover {
    background: #7c9477;
    transform: translateY(-1px);
}

.hero-noir__login-pill.is-logged {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.hero-noir__img-wrap {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.hero-noir__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: opacity 400ms ease, transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-noir__dashes {
    position: absolute;
    bottom: clamp(2rem, 3.5vw, 3rem);
    right: clamp(1.5rem, 4vw, 3.5rem);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.hero-noir__dashes span {
    width: 18px;
    height: 2.5px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    cursor: pointer;
    transition: all 280ms ease;
}

.hero-noir__dashes span.is-active {
    width: 28px;
    background: #ffffff;
}


/* ============================================================
   GLOBAL BUTTON & ACTION SINGLE-LINE HORIZONTAL ALIGNMENT FIX
   ============================================================ */

.shop-product__quick {
    all: unset;
    box-sizing: border-box !important;
    position: absolute !important;
    right: 0.7rem !important;
    bottom: 0.7rem !important;
    left: 0.7rem !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    min-height: 2.7rem !important;
    padding: 0.6rem 1rem !important;
    color: #ffffff !important;
    background: #071321 !important;
    border-radius: 999px !important;
    
    font-size: 0.78rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    visibility: hidden;
    opacity: 0;
    transform: translateY(0.6rem);
    transition: all 180ms ease !important;
    z-index: 4;
}

.shop-product:hover .shop-product__quick,
.shop-product__quick:focus-visible {
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
}

.signature-product__cart {
    all: unset;
    box-sizing: border-box !important;
    position: absolute !important;
    z-index: 4 !important;
    right: 0.75rem !important;
    bottom: 0.75rem !important;
    left: 0.75rem !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    min-height: 2.8rem !important;
    padding: 0.6rem 1rem !important;
    color: #ffffff !important;
    background: #071321 !important;
    border-radius: 999px !important;
    
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    visibility: hidden;
    opacity: 0;
    transition: all 180ms ease !important;
}

.signature-product:hover .signature-product__cart,
.signature-product__cart:focus-visible {
    visibility: visible !important;
    opacity: 1 !important;
}

/* Enforce Single-Line Horizontal Layout on ALL site buttons & links */
.button,
.btn,
.signature-product__cart,
.shop-product__quick,
.pd-add-btn,
.pd-buy-btn,
.pd-wish-btn,
.pd-wishlist-btn,
.auth-submit-btn,
.account-btn,
.cart-drawer__checkout-btn,
.checkout-submit-btn,
.shop-filter-toggle,
.hero-noir__btn,
.story-intro__link,
.about-btn,
.about-motto-banner__btn,
.contact-form__submit {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    white-space: nowrap !important;
    text-align: center !important;
    vertical-align: middle !important;
}

.button i,
.btn i,
.signature-product__cart i,
.shop-product__quick i,
.pd-add-btn i,
.pd-buy-btn i,
.pd-wish-btn i,
.pd-wishlist-btn i,
.auth-submit-btn i,
.account-btn i,
.cart-drawer__checkout-btn i,
.checkout-submit-btn i,
.shop-filter-toggle i {
    display: inline-block !important;
    vertical-align: middle !important;
    margin: 0 !important;
    line-height: 1 !important;
    flex-shrink: 0 !important;
}

.button span,
.btn span,
.signature-product__cart span,
.shop-product__quick span,
.pd-add-btn span,
.pd-buy-btn span,
.pd-wish-btn span,
.auth-submit-btn span,
.account-btn span,
.cart-drawer__checkout-btn span,
.checkout-submit-btn span {
    display: inline-block !important;
    line-height: normal !important;
    white-space: nowrap !important;
}

/* ============================================================
   EXPLICIT 2-COLUMN SHOP LAYOUT (FILTERS LEFT, PRODUCTS RIGHT)
   ============================================================ */

.shop-mobile-toggle-bar {
    display: none;
    width: min(calc(100% - (2 * var(--page-pad))), 1460px);
    margin: 1.5rem auto 0;
}

.shop-catalog {
    display: grid !important;
    grid-template-columns: 260px minmax(0, 1fr) !important;
    gap: clamp(2.5rem, 4vw, 4.5rem) !important;
    width: min(calc(100% - (2 * var(--page-pad))), 1460px) !important;
    margin: 0 auto !important;
    padding: clamp(3rem, 5vw, 5rem) 0 6rem !important;
    align-items: start !important;
}

.shop-filters {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: sticky !important;
    top: 96px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1.35rem !important;
    width: 100% !important;
}

.shop-results {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100% !important;
}

.shop-grid {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: clamp(1.25rem, 2.2vw, 2.2rem) !important;
}

@media (max-width: 1200px) {
    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .shop-mobile-toggle-bar {
        display: block !important;
    }

    .shop-filter-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.6rem !important;
        min-height: 2.8rem !important;
        padding: 0 1.2rem !important;
        color: #fff !important;
        background: #071321 !important;
        border: 0 !important;
        border-radius: 999px !important;
        font-weight: 700 !important;
        cursor: pointer !important;
    }

    .shop-catalog {
        display: block !important;
        padding: 1.5rem 0 4rem !important;
    }

    .shop-filters {
        position: fixed !important;
        z-index: 100001 !important;
        top: 0 !important;
        bottom: 0 !important;
        left: 0 !important;
        width: min(88vw, 360px) !important;
        height: 100svh !important;
        padding: 1.5rem !important;
        overflow-y: auto !important;
        background: #fafafa !important;
        box-shadow: 18px 0 45px rgba(0, 0, 0, 0.3) !important;
        transform: translateX(-105%) !important;
        transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1) !important;
    }

    .filters-open .shop-filters {
        transform: none !important;
    }

    .filters-open::after {
        position: fixed !important;
        z-index: 100000 !important;
        inset: 0 !important;
        background: rgba(0, 5, 12, 0.6) !important;
        content: "" !important;
        backdrop-filter: blur(4px) !important;
    }

    .shop-filters__head button {
        display: inline-flex !important;
        width: 2.2rem !important;
        height: 2.2rem !important;
        background: transparent !important;
        border: 1px solid #ddd !important;
        border-radius: 50% !important;
        align-items: center !important;
        justify-content: center !important;
        cursor: pointer !important;
    }

    .shop-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 1rem !important;
    }
}

@media (max-width: 600px) {
    .shop-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ============================================================
   WHITE TEXT ON ALL NEW & PRODUCT TAG BADGES
   ============================================================ */
.signature-product__badge--new,
.signature-product__badge,
.shop-product__badge,
.shop-product__badge--new,
.pd-gallery__badge {
    color: #ffffff !important;
    background: #07172a !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
}


/* ============================================================
   PROFESSIONAL LUXURY AUTHENTICATION (LOGIN & REGISTER)
   ============================================================ */

.auth-section {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(3rem, 6vw, 5.5rem) var(--page-pad);
    background: #fbfaf8;
}

.auth-card {
    width: 100%;
    max-width: 480px;
    background: #ffffff;
    border: 1px solid rgba(7, 23, 42, 0.08);
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3rem);
    box-shadow: 0 20px 50px rgba(7, 23, 42, 0.06);
    margin: 0 auto;
    text-align: left;
    position: relative;
    box-sizing: border-box;
}

.auth-card--register {
    max-width: 640px;
}

.auth-card__brand-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(201, 168, 90, 0.12);
    color: #9c7a2b;
    
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.25rem;
}

.auth-card__title {
    
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 600;
    color: #07172a;
    margin: 0 0 0.6rem;
    letter-spacing: -0.01em;
}

.auth-card__subtitle {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    line-height: 1.6;
    margin: 0 0 1.8rem;
}

.auth-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 1.15rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
}

.auth-alert--error {
    background: #fef2f2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 1.15rem;
}

.auth-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

@media (max-width: 600px) {
    .auth-grid-2 {
        grid-template-columns: 1fr;
    }
}

.auth-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.auth-field label {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #07172a;
}

.auth-field label .req {
    color: #c53030;
}

.auth-input-wrap {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.auth-input-icon {
    position: absolute;
    left: 1.1rem;
    color: #94a3b8;
    font-size: 0.95rem;
    pointer-events: none;
}

.auth-input {
    width: 100%;
    padding: 0.85rem 1.1rem 0.85rem 2.85rem;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.9rem;
    color: #07172a;
    background: #f8fafc;
    outline: none;
    transition: all 180ms ease;
    box-sizing: border-box;
}

.auth-input:focus {
    border-color: #07172a;
    background: #ffffff;
    box-shadow: 0 0 0 3.5px rgba(7, 23, 42, 0.08);
}

.auth-pw-toggle {
    all: unset;
    cursor: pointer;
    position: absolute;
    right: 1rem;
    color: #94a3b8;
    font-size: 1rem;
    padding: 0.4rem;
    transition: color 180ms ease;
}

.auth-pw-toggle:hover {
    color: #07172a;
}

.auth-submit-btn {
    all: unset;
    box-sizing: border-box;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.65rem !important;
    width: 100%;
    min-height: 3.2rem;
    padding: 0.9rem 2rem;
    background: #07172a !important;
    color: #ffffff !important;
    border-radius: 999px;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 200ms ease;
    margin-top: 0.6rem;
    box-shadow: 0 8px 24px rgba(7, 23, 42, 0.2);
    white-space: nowrap !important;
}

.auth-submit-btn:hover {
    background: #0c2340 !important;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px rgba(7, 23, 42, 0.28);
}

.auth-card__footer {
    margin-top: 1.8rem;
    padding-top: 1.4rem;
    border-top: 1px solid #f1f5f9;
    text-align: center;
}

.auth-card__footer p {
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.88rem;
    color: #64748b;
    margin: 0 0 0.85rem;
}

.auth-card__footer a {
    color: #07172a;
    font-weight: 700;
    text-decoration: underline;
    transition: color 180ms ease;
}

.auth-card__footer a:hover {
    color: #c9a85a;
}

.auth-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Manrope', system-ui, sans-serif;
    font-size: 0.72rem;
    color: #94a3b8;
    font-weight: 600;
}


/* ============================================================
   GLOBAL FIX: ELIMINATE ANY INTERNAL SECTION VERTICAL SCROLLBARS
   ============================================================ */

html, body {
    overflow-x: hidden !important;
    overflow-y: auto !important;
    height: auto !important;
    min-height: 100% !important;
}

section,
main,
.hero-noir,
.hero-noir__left,
.hero-noir__right,
.hero-noir__img-wrap,
.story-intro,
.campaigns,
.campaigns__grid,
.campaign-card,
.product-grid-section,
.most-sellers-section,
.signature-collection,
.signature-products,
.signature-product,
.fragrance-showcase,
.showcase-slides,
.new-arrivals-section,
.best-seller,
.service-promises,
.scent-discovery,
.gifting-callout,
.newsletter,
.reviews,
.site-footer,
.shop-catalog,
.shop-results,
.shop-grid,
.shop-product {
    overflow-y: visible !important;
    max-height: none !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
}

section::-webkit-scrollbar,
main::-webkit-scrollbar,
.hero-noir::-webkit-scrollbar,
.hero-noir__left::-webkit-scrollbar,
.hero-noir__right::-webkit-scrollbar,
.product-grid-section::-webkit-scrollbar,
.most-sellers-section::-webkit-scrollbar,
.signature-collection::-webkit-scrollbar,
.signature-products::-webkit-scrollbar,
.fragrance-showcase::-webkit-scrollbar,
.new-arrivals-section::-webkit-scrollbar,
.shop-catalog::-webkit-scrollbar,
.shop-results::-webkit-scrollbar,
.shop-grid::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

/* ============================================================
   DEFINITIVE FIX: OVERFLOW VISIBLE ON ALL HOMEPAGE SECTIONS
   ============================================================ */
.campaigns,
.campaigns__grid,
.campaign-card,
.product-grid-section,
.most-sellers-section,
.signature-collection,
.signature-products,
.signature-product,
.new-arrivals-section,
.fragrance-showcase,
.best-seller {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
}

/* ============================================================
   PRODUCTS YOU MIGHT LIKE (PDP RELATED SECTION)
   ============================================================ */
.pd-related-section {
    padding: clamp(4rem, 6vw, 6rem) var(--page-pad) clamp(4rem, 7vw, 7rem);
    background: #fafafa;
    border-top: 1px solid #eeeeee;
    width: 100%;
    overflow: visible !important;
}

.pd-related__container {
    max-width: 1440px;
    margin: 0 auto;
}

.pd-related__head {
    text-align: center;
    margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
}

.pd-related__eyebrow {
    display: inline-block;
    font-family: 'Manrope', sans-serif;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #64748b;
    margin-bottom: 0.45rem;
}

.pd-related__title {
    
    font-size: clamp(1.85rem, 3vw, 2.7rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    color: #07172a;
    margin: 0 0 0.5rem;
}

.pd-related__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    color: #64748b;
    max-width: 580px;
    margin: 0 auto;
}

/* ============================================================
   HERO-NOIR THEMED "PRODUCTS YOU MIGHT LIKE" GRID SECTION
   ============================================================ */

.pd-related-noir {
    background: #000000 !important;
    color: #ffffff !important;
    padding: clamp(4.5rem, 7vw, 7rem) var(--page-pad) !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    width: 100% !important;
    overflow: visible !important;
}

.pd-related-noir__container {
    max-width: 1440px;
    margin: 0 auto;
}

.pd-related-noir__head {
    text-align: center;
    margin-bottom: clamp(2.5rem, 4vw, 4rem);
}

.pd-related-noir__eyebrow {
    display: inline-block;
    
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #c9a85a;
    margin-bottom: 0.75rem;
}

.pd-related-noir__title {
    
    font-size: clamp(2rem, 3.5vw, 2.9rem);
    font-weight: 600;
    color: #ffffff;
    letter-spacing: -0.02em;
    margin: 0 0 0.75rem;
}

.pd-related-noir__subtitle {
    font-family: 'Manrope', sans-serif;
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 600px;
    margin: 0 auto;
}

.pd-related-noir__grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(1.2rem, 2.2vw, 2.2rem) !important;
}

@media (max-width: 1200px) {
    .pd-related-noir__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 600px) {
    .pd-related-noir__grid {
        grid-template-columns: 1fr !important;
    }
}

/* â”€â”€ Hero Noir Themed Product Card â”€â”€ */
.pd-related-card {
    background: #090e17 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 22px !important;
    padding: 1.15rem !important;
    display: flex !important;
    flex-direction: column !important;
    transition: transform 300ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 300ms ease, border-color 300ms ease !important;
    position: relative !important;
    overflow: hidden !important;
}

.pd-related-card:hover {
    transform: translateY(-6px) !important;
    border-color: rgba(201, 168, 90, 0.45) !important;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7) !important;
}

.pd-related-card__visual {
    position: relative !important;
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    background: #03070f !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    border-radius: 16px !important;
    overflow: hidden !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin-bottom: 1.1rem !important;
}

.pd-related-card__img-link {
    display: flex !important;
    width: 100% !important;
    height: 100% !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
}

.pd-related-card__visual img {
    display: block !important;
    width: 84% !important;
    height: 84% !important;
    object-fit: contain !important;
    transition: transform 400ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.pd-related-card:hover .pd-related-card__visual img {
    transform: scale(1.08) !important;
}

.pd-related-card__badge {
    position: absolute !important;
    top: 0.75rem !important;
    left: 0.75rem !important;
    z-index: 2 !important;
    padding: 0.3rem 0.75rem !important;
    border-radius: 999px !important;
    
    font-size: 0.65rem !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

.pd-related-card__badge--new {
    background: #0c2340 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.pd-related-card__badge--bestseller {
    background: #c9a85a !important;
    color: #07172a !important;
    border: 1px solid #c9a85a !important;
}

.pd-related-card__btn {
    all: unset;
    box-sizing: border-box !important;
    position: absolute !important;
    bottom: 0.85rem !important;
    left: 0.85rem !important;
    right: 0.85rem !important;
    background: #ffffff !important;
    color: #07172a !important;
    border-radius: 999px !important;
    padding: 0.75rem 1.25rem !important;
    
    font-size: 0.8rem !important;
    font-weight: 700 !important;
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.55rem !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    cursor: pointer !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
    opacity: 0 !important;
    transform: translateY(8px) !important;
    transition: all 220ms ease !important;
    z-index: 4 !important;
}

.pd-related-card:hover .pd-related-card__btn,
.pd-related-card__btn:focus-visible {
    opacity: 1 !important;
    transform: none !important;
}

.pd-related-card__btn:hover {
    background: #f0ece3 !important;
    color: #000000 !important;
    transform: scale(1.02) !important;
}

.pd-related-card__info {
    display: flex !important;
    flex-direction: column !important;
    flex-grow: 1 !important;
}

.pd-related-card__meta {
    
    font-size: 0.72rem !important;
    font-weight: 600 !important;
    color: #c9a85a !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    margin: 0 0 0.35rem !important;
}

.pd-related-card__title {
    
    font-size: 1.15rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    margin: 0 0 0.6rem !important;
}

.pd-related-card__title a {
    color: #ffffff !important;
    text-decoration: none !important;
    transition: color 180ms ease !important;
}

.pd-related-card__title a:hover {
    color: #c9a85a !important;
}

.pd-related-card__pricing {
    display: flex !important;
    align-items: baseline !important;
    gap: 0.65rem !important;
    margin-top: auto !important;
    padding-top: 0.35rem !important;
}

.pd-related-card__pricing strong {
    
    font-size: 1.15rem !important;
    font-weight: 800 !important;
    color: #ffffff !important;
}

.pd-related-card__pricing del {
    
    font-size: 0.82rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    text-decoration: line-through !important;
}

/* ============================================================
   ZERO PADDING ON ALL PRODUCT GRID VISUAL IMAGES
   ============================================================ */

.pd-related-card__visual,
.signature-product__visual,
.shop-product__visual {
    padding: 0 !important;
}

.pd-related-card__visual img,
.signature-product__visual img,
.shop-product__visual img,
.pd-related-card__img-link img,
.shop-product__img-link img {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    object-fit: cover !important;
    display: block !important;
}

.pd-related-card__img-link,
.shop-product__img-link {
    width: 100% !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

/* ============================================================
   NAVBAR COMPACT UNDERLINE SPACING & REDUCED WIDTH
   ============================================================ */
@media (min-width: 1051px) {
    .primary-nav a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        height: 100% !important;
    }

    .primary-nav a::after {
        position: absolute !important;
        top: calc(50% + 14px) !important;
        bottom: auto !important;
        left: 50% !important;
        width: 0 !important;
        height: 1.5px !important;
        background: #ffffff !important;
        border-radius: 999px !important;
        transform: translateX(-50%) !important;
        transition: width 220ms cubic-bezier(0.22, 1, 0.36, 1) !important;
        pointer-events: none !important;
    }

    .primary-nav a:hover::after,
    .primary-nav a:focus-visible::after,
    .primary-nav a.is-active::after {
        width: 22px !important;
    }
}

/* ============================================================
   DISABLE FLOATING / UNSTABLE TITLE SCROLL SHIFT
   ============================================================ */
.motion-ready .motion-reveal,
.motion-ready .motion-reveal--rise,
.motion-ready .motion-reveal--left,
.motion-ready .motion-reveal--right,
.motion-ready .motion-reveal--scale,
.product-grid-section__heading,
.signature-collection__heading,
.story-intro__inner,
.story-intro h2,
.story-intro p,
.reviews__heading,
.best-seller__top,
.scent-discovery__content,
.gifting-callout__content,
.about-manifesto h2,
.about-manifesto p {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

/* ============================================================
   TIGHTEN VERTICAL WHITE SPACE BELOW HEADINGS & SECTIONS
   ============================================================ */

/* â”€â”€ Section Headings Spacing â”€â”€ */
.signature-collection__heading,
.product-grid-section__heading,
.pd-related-noir__head,
.reviews__heading,
.best-seller__top,
.fragrance-showcase__heading {
    margin-bottom: 1.5rem !important;
}

.signature-collection__heading p,
.product-grid-section__heading p,
.pd-related-noir__subtitle,
.reviews__heading p {
    margin-top: 0.35rem !important;
    margin-bottom: 0 !important;
}

.signature-collection__heading h2,
.product-grid-section__heading h2,
.pd-related-noir__title,
.reviews__heading h2 {
    margin: 0 !important;
    line-height: 1.2 !important;
}

/* â”€â”€ Section Paddings â”€â”€ */
.signature-collection,
.product-grid-section,
.most-sellers-section,
.new-arrivals-section,
.reviews,
.service-promises {
    padding-top: clamp(2.5rem, 4vw, 3.8rem) !important;
    padding-bottom: clamp(2.5rem, 4vw, 3.8rem) !important;
}

.pd-related-noir {
    padding-top: clamp(3rem, 4.5vw, 4.5rem) !important;
    padding-bottom: clamp(3rem, 4.5vw, 4.5rem) !important;
}

.story-intro {
    padding-top: clamp(2.5rem, 4vw, 4rem) !important;
    padding-bottom: clamp(2.5rem, 4vw, 4rem) !important;
}

.story-intro__inner h2 {
    margin: 0.6rem 0 0.8rem !important;
}

.story-intro__inner p {
    margin: 0 0 1.25rem !important;
}

/* â”€â”€ Hero Spacing â”€â”€ */
.hero-noir__description {
    margin: 0 0 1.4rem !important;
}

.hero-noir__actions {
    margin-bottom: 1.5rem !important;
}

.hero-noir__main {
    gap: 1.25rem !important;
}

/* ============================================================
   PERFECT COMPACT INNER HERO & TITLE SECTIONS SITE-WIDE
   ============================================================ */

.inner-hero,
.shop-hero,
.legal-hero,
.contact-hero,
.about-hero,
.stories-hero {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    min-height: auto !important;
    height: auto !important;
    padding-top: clamp(6.5rem, 9vw, 8.5rem) !important;
    padding-bottom: clamp(2.2rem, 3.5vw, 3.2rem) !important;
    padding-left: var(--page-pad) !important;
    padding-right: var(--page-pad) !important;
    background: #020811 !important;
    color: #ffffff !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    overflow: visible !important;
}

.inner-hero p,
.shop-hero p,
.legal-hero p,
.contact-hero p,
.inner-hero__eyebrow {
    
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.16em !important;
    color: #c9a85a !important;
    margin: 0 0 0.55rem !important;
}

.inner-hero h1,
.shop-hero h1,
.legal-hero h1,
.contact-hero h1,
.inner-hero__title {
    
    font-size: clamp(2rem, 4.2vw, 3.4rem) !important;
    font-weight: 600 !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    color: #ffffff !important;
    width: min(100%, 880px) !important;
    margin: 0 auto 0.65rem !important;
}

.inner-hero span,
.shop-hero span,
.legal-hero span,
.inner-hero__subtitle {
    
    font-size: 0.88rem !important;
    color: rgba(255, 255, 255, 0.65) !important;
    letter-spacing: normal !important;
    text-transform: none !important;
    margin: 0 !important;
}

/* â”€â”€ Content Margins Below Inner Heroes â”€â”€ */
.shop-catalog {
    padding-top: clamp(2.5rem, 4vw, 4rem) !important;
    padding-bottom: clamp(3.5rem, 6vw, 6rem) !important;
}

.about-manifesto {
    padding-top: clamp(3.5rem, 5.5vw, 5.5rem) !important;
    padding-bottom: clamp(3.5rem, 5.5vw, 5.5rem) !important;
}

.about-manifesto h2 {
    
    font-size: clamp(1.85rem, 3.5vw, 3.2rem) !important;
    line-height: 1.25 !important;
    margin: 0.85rem auto !important;
}

.contact-section {
    padding-top: clamp(3rem, 5vw, 5rem) !important;
    padding-bottom: clamp(3.5rem, 6vw, 6rem) !important;
}

.stories-feature {
    min-height: auto !important;
}

.stories-grid {
    padding-top: clamp(3rem, 5vw, 5rem) !important;
    padding-bottom: clamp(3.5rem, 6vw, 6rem) !important;
}

/* ============================================================
   SMOOTH SUBTLE CARD & CONTENT REVEAL MOTION
   ============================================================ */
.motion-ready .motion-reveal {
    opacity: 0;
    transition: opacity 600ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms),
                transform 600ms cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms) !important;
    will-change: opacity, transform;
}

.motion-ready .motion-reveal--rise { transform: translateY(22px); }
.motion-ready .motion-reveal--left { transform: translateX(-24px); }
.motion-ready .motion-reveal--right { transform: translateX(24px); }
.motion-ready .motion-reveal--scale { transform: scale(0.96); }

.motion-ready .motion-reveal.is-revealed {
    opacity: 1 !important;
    transform: none !important;
}

/* Enforce Static Anchored Section Headings */
.signature-collection__heading,
.product-grid-section__heading,
.story-intro__inner,
.story-intro h2,
.story-intro p,
.reviews__heading,
.best-seller__top,
.fragrance-showcase__heading {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto !important;
}

/* ============================================================
   SHOP CATALOG LUXURY PAGINATION
   ============================================================ */
.shop-pagination {
    margin-top: clamp(2.5rem, 4vw, 3.5rem);
    padding-top: 1.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.25rem;
    width: 100%;
}

.shop-pagination__info {
    font-size: 0.86rem;
    color: #94a3b8;
}

.shop-pagination__info strong {
    color: #ffffff;
    font-weight: 700;
}

.shop-pagination__controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.shop-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.95rem;
    background: #091322;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.82rem;
    font-weight: 600;
    transition: all 180ms ease;
    cursor: pointer;
    user-select: none;
}

.shop-pagination__btn:hover:not(.shop-pagination__btn--disabled) {
    background: #13243d;
    border-color: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    transform: translateY(-1px);
}

.shop-pagination__btn--disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.shop-pagination__pages {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.shop-pagination__page {
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    color: #94a3b8;
    background: transparent;
    border: 1px solid transparent;
    transition: all 180ms ease;
    user-select: none;
}

.shop-pagination__page:hover {
    background: #091322;
    border-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.shop-pagination__page.is-active {
    background: #ffffff;
    color: #07172a;
    border-color: #ffffff;
    font-weight: 700;
    box-shadow: 0 4px 14px rgba(255, 255, 255, 0.18);
}

@media (max-width: 600px) {
    .shop-pagination {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .shop-pagination__controls {
        justify-content: center;
        width: 100%;
    }
}

/* ============================================================
   MOBILE SPACING FIX FOR 3RD SECTION (CAMPAIGN BANNERS)
   ============================================================ */
@media (max-width: 900px) {
    .campaigns {
        padding: 1.5rem 1.25rem 2rem !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .campaigns__grid {
        grid-template-columns: 1fr !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        gap: 1.25rem !important;
        padding: 0 !important;
        box-sizing: border-box !important;
    }

    .campaign-card {
        width: 100% !important;
        max-width: 100% !important;
        min-height: 200px !important;
        aspect-ratio: auto !important;
        height: auto !important;
        padding: 1.75rem 1.25rem !important;
        box-sizing: border-box !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
    }

    .campaign-card__content {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        width: 100% !important;
        max-width: 68% !important;
        z-index: 2 !important;
    }

    .campaign-card--offer .campaign-card__content,
    .campaign-card--gift .campaign-card__content {
        width: 68% !important;
        left: 0 !important;
    }
}

@media (max-width: 480px) {
    .campaigns {
        padding: 1.25rem 1rem 1.75rem !important;
    }

    .campaign-card {
        padding: 1.5rem 1rem !important;
        min-height: 190px !important;
        border-radius: 14px !important;
    }

    .campaign-card__content {
        max-width: 72% !important;
    }
}
.campaign-card__content a {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 0.5rem !important;
    min-width: max-content !important;
    width: max-content !important;
    min-height: 2.2rem !important;
    margin-top: clamp(0.75rem, 1.2vw, 1.15rem) !important;
    padding: 0.45rem 1.1rem !important;
    color: #0c1118 !important;
    background: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.7) !important;
    border-radius: 999px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24) !important;
    font-size: 0.72rem !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease !important;
}

.campaign-card__content a i {
    display: inline-block !important;
    font-size: 0.72rem !important;
    line-height: 1 !important;
}

/* ============================================================
   GENEROUS MOBILE VERTICAL ROW GAP ON ALL PRODUCT GRIDS
   ============================================================ */
@media (max-width: 900px) {
    .signature-products,
    .shop-grid,
    .pd-related-grid,
    .most-sellers-section .signature-products,
    .new-arrivals-section .signature-products {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        row-gap: clamp(1.75rem, 4.5vw, 2.75rem) !important;
        column-gap: clamp(0.75rem, 2.5vw, 1.25rem) !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .signature-product,
    .shop-product,
    .pd-related-card {
        display: flex !important;
        flex-direction: column !important;
        margin-bottom: 0 !important;
    }

    .signature-product__info,
    .shop-product > p:first-of-type,
    .pd-related-card__info {
        margin-top: 0.75rem !important;
    }
}

@media (max-width: 480px) {
    .signature-products,
    .shop-grid,
    .pd-related-grid,
    .most-sellers-section .signature-products,
    .new-arrivals-section .signature-products {
        row-gap: 2rem !important;
        column-gap: 0.85rem !important;
    }

    .signature-product__info,
    .pd-related-card__info {
        margin-top: 0.65rem !important;
    }
}

/* ============================================================
   TIGHTEN PRODUCT CARD TEXT & PRICE VERTICAL SPACING
   ============================================================ */
.signature-product__info,
.pd-related-card__info {
    padding: 0.4rem 0.1rem 0 !important;
    margin-top: 0 !important;
}

.shop-product > p:first-of-type,
.signature-product__info > p,
.pd-related-card__info > p {
    margin: 0.35rem 0 0.12rem !important;
    padding: 0 !important;
    line-height: 1.2 !important;
}

.signature-product__info h3,
.shop-product > h2,
.pd-related-card__info h3 {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.18 !important;
}

.signature-product__price,
.shop-product > div:last-child,
.pd-related-card__price {
    margin-top: 0.22rem !important;
    margin-bottom: 0 !important;
    display: flex !important;
    align-items: baseline !important;
    gap: 0.45rem !important;
    line-height: 1.15 !important;
}

@media (max-width: 900px) {
    .signature-product__info,
    .pd-related-card__info {
        padding: 0.35rem 0.1rem 0 !important;
        margin-top: 0 !important;
    }

    .shop-product > p:first-of-type,
    .signature-product__info > p,
    .pd-related-card__info > p {
        margin: 0.3rem 0 0.1rem !important;
    }

    .signature-product__price,
    .shop-product > div:last-child,
    .pd-related-card__price {
        margin-top: 0.2rem !important;
    }
}

/* ============================================================
   MOBILE SEARCH MODAL & INPUT BOX OPTIMIZATIONS
   ============================================================ */
@media (max-width: 600px) {
    .search-modal {
        padding: 1rem !important;
        align-items: center !important;
    }

    .search-modal__box {
        width: 100% !important;
        max-width: calc(100vw - 1.5rem) !important;
        padding: 1.75rem 1.15rem 1.5rem !important;
        border-radius: 18px !important;
        box-sizing: border-box !important;
        margin: 0 auto !important;
    }

    .search-modal__close {
        top: 0.75rem !important;
        right: 0.75rem !important;
        width: 2rem !important;
        height: 2rem !important;
        font-size: 0.85rem !important;
    }

    .search-modal__title {
        font-size: 1.25rem !important;
        margin-bottom: 1rem !important;
        padding-right: 1.75rem !important;
    }

    .search-modal__field {
        padding: 0.28rem 0.35rem 0.28rem 0.85rem !important;
        border-radius: 999px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .search-modal__icon {
        margin-right: 0.45rem !important;
        font-size: 0.95rem !important;
    }

    .search-modal__input {
        font-size: 0.88rem !important;
        min-width: 0 !important;
        flex: 1 1 auto !important;
    }

    .search-modal__submit {
        padding: 0.55rem 1rem !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .search-modal__suggestions {
        flex-wrap: wrap !important;
        gap: 0.4rem 0.5rem !important;
        margin-top: 1rem !important;
        font-size: 0.78rem !important;
        overflow-x: visible !important;
    }

    .search-modal__suggestions a {
        padding: 0.28rem 0.65rem !important;
        font-size: 0.75rem !important;
    }
}

/* ============================================================
   ULTRA-LUXURY PROFESSIONAL MOBILE NAVIGATION & HAMBURGER
   ============================================================ */
/* Desktop Defaults (Hidden) */
@media (min-width: 901px) {
    .mobile-nav-header,
    .mobile-nav-footer,
    .mobile-menu-backdrop,
    .mobile-nav-num,
    .mobile-nav-arrow {
        display: none !important;
    }
}

/* Mobile Luxury Slide-Over Experience */
@media (max-width: 900px) {
    /* Luxury Capsule Hamburger Button */
    .menu-toggle {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 42px !important;
        height: 42px !important;
        border-radius: 999px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        cursor: pointer !important;
        padding: 0 !important;
        gap: 0 !important;
        transition: all 240ms cubic-bezier(0.16, 1, 0.3, 1) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25) !important;
    }

    .menu-toggle:hover {
        background: rgba(255, 255, 255, 0.14) !important;
        border-color: rgba(255, 255, 255, 0.3) !important;
        transform: scale(1.04) !important;
    }

    .menu-toggle span {
        display: block !important;
        height: 2px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        transition: all 260ms cubic-bezier(0.16, 1, 0.3, 1) !important;
    }

    .menu-toggle .bar-1 {
        width: 20px !important;
    }

    .menu-toggle .bar-2 {
        width: 13px !important;
        margin: 4px 0 !important;
        align-self: flex-start !important;
        margin-left: 11px !important;
    }

    .menu-toggle .bar-3 {
        width: 20px !important;
    }

    /* Morphing "X" on Menu Open */
    .site-header.menu-open .menu-toggle {
        background: rgba(255, 255, 255, 0.16) !important;
        border-color: rgba(255, 255, 255, 0.35) !important;
    }

    .site-header.menu-open .menu-toggle .bar-1 {
        transform: translateY(6px) rotate(45deg) !important;
        width: 20px !important;
    }

    .site-header.menu-open .menu-toggle .bar-2 {
        opacity: 0 !important;
        transform: scaleX(0) !important;
    }

    .site-header.menu-open .menu-toggle .bar-3 {
        transform: translateY(-6px) rotate(-45deg) !important;
        width: 20px !important;
    }

    /* Luxury Full-Height Slide-Over Drawer */
    .primary-nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(88vw, 380px) !important;
        height: 100vh !important;
        height: 100dvh !important;
        background: linear-gradient(180deg, #06111f 0%, #030810 100%) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85) !important;
        z-index: 9999 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 1.5rem 1.35rem 1.6rem !important;
        transform: translateX(105%) !important;
        transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1), visibility 380ms !important;
        visibility: hidden !important;
        overflow-y: auto !important;
        box-sizing: border-box !important;
        backdrop-filter: blur(24px) !important;
        -webkit-backdrop-filter: blur(24px) !important;
    }

    .site-header.menu-open .primary-nav {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    /* Drawer Header */
    .mobile-nav-header {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding-bottom: 1.15rem !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
        margin-bottom: 1.25rem !important;
    }

    .mobile-nav-brand img {
        height: 36px !important;
        width: auto !important;
        object-fit: contain !important;
    }

    .mobile-nav-brand p {
        font-size: 0.62rem !important;
        color: #94a3b8 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.12em !important;
        margin: 0.25rem 0 0 !important;
        font-family: 'Manrope', sans-serif !important;
    }

    .mobile-nav-close {
        width: 36px !important;
        height: 36px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.07) !important;
        border: 1px solid rgba(255, 255, 255, 0.12) !important;
        color: #ffffff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.95rem !important;
        cursor: pointer !important;
        transition: all 180ms ease !important;
    }

    .mobile-nav-close:hover {
        background: rgba(255, 255, 255, 0.18) !important;
        color: #ffffff !important;
        transform: rotate(90deg) !important;
    }

    /* Drawer Menu Links */
    .mobile-nav-links {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.35rem !important;
        flex: 1 0 auto !important;
    }

    .mobile-nav-links a {
        display: flex !important;
        align-items: center !important;
        gap: 0.85rem !important;
        padding: 0.85rem 1rem !important;
        border-radius: 12px !important;
        color: #e2e8f0 !important;
        text-decoration: none !important;
        background: rgba(255, 255, 255, 0.02) !important;
        border: 1px solid transparent !important;
        transition: all 200ms ease !important;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a.is-active {
        background: rgba(255, 255, 255, 0.08) !important;
        border-color: rgba(255, 255, 255, 0.12) !important;
        color: #ffffff !important;
        transform: translateX(4px) !important;
    }

    .mobile-nav-num {
        font-family: 'Cinzel', serif !important;
        font-size: 0.74rem !important;
        color: rgba(255, 255, 255, 0.35) !important;
        font-weight: 600 !important;
        width: 22px !important;
    }

    .mobile-nav-links a:hover .mobile-nav-num,
    .mobile-nav-links a.is-active .mobile-nav-num {
        color: #ffffff !important;
    }

    .mobile-nav-text {
        flex: 1 !important;
        font-family: 'Cinzel', serif !important;
        font-size: 1.05rem !important;
        letter-spacing: 0.03em !important;
        font-weight: 600 !important;
    }

    .mobile-nav-arrow {
        font-size: 0.8rem !important;
        color: rgba(255, 255, 255, 0.25) !important;
        transform: translateX(-4px) !important;
        transition: all 200ms ease !important;
    }

    .mobile-nav-links a:hover .mobile-nav-arrow,
    .mobile-nav-links a.is-active .mobile-nav-arrow {
        color: #ffffff !important;
        transform: translateX(2px) !important;
    }

    /* Drawer Footer & VIP Perks */
    .mobile-nav-footer {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.85rem !important;
        margin-top: 1.5rem !important;
        padding-top: 1.25rem !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    }

    .mobile-vip-btn {
        display: flex !important;
        align-items: center !important;
        gap: 0.85rem !important;
        padding: 0.75rem 0.95rem !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 12px !important;
        text-decoration: none !important;
        color: #ffffff !important;
        transition: all 180ms ease !important;
    }

    .mobile-vip-btn i {
        font-size: 1.15rem !important;
        color: #ffffff !important;
    }

    .mobile-vip-btn div {
        display: flex !important;
        flex-direction: column !important;
        text-align: left !important;
    }

    .mobile-vip-btn strong {
        font-size: 0.86rem !important;
        color: #ffffff !important;
        font-family: 'Manrope', sans-serif !important;
    }

    .mobile-vip-btn small {
        font-size: 0.72rem !important;
        color: #94a3b8 !important;
        font-family: 'Manrope', sans-serif !important;
    }

    .mobile-vip-btn:hover {
        background: rgba(255, 255, 255, 0.1) !important;
        border-color: rgba(255, 255, 255, 0.2) !important;
    }

    .mobile-nav-whatsapp {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        padding: 0.65rem 1rem !important;
        background: rgba(37, 211, 102, 0.12) !important;
        border: 1px solid rgba(37, 211, 102, 0.3) !important;
        border-radius: 999px !important;
        color: #25d366 !important;
        text-decoration: none !important;
        font-size: 0.8rem !important;
        font-weight: 700 !important;
        transition: all 180ms ease !important;
    }

    .mobile-nav-whatsapp:hover {
        background: rgba(37, 211, 102, 0.2) !important;
        color: #ffffff !important;
    }

    .mobile-nav-socials {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 1.25rem !important;
        margin-top: 0.25rem !important;
    }

    .mobile-nav-socials a {
        color: #94a3b8 !important;
        font-size: 1.05rem !important;
        text-decoration: none !important;
        transition: color 180ms ease !important;
    }

    .mobile-nav-socials a:hover {
        color: #ffffff !important;
    }

    .mobile-nav-copy {
        font-size: 0.65rem !important;
        color: #64748b !important;
        text-align: center !important;
        margin: 0 !important;
        font-family: 'Manrope', sans-serif !important;
    }

    /* Luxury Backdrop Blur Overlay */
    .mobile-menu-backdrop {
        position: fixed !important;
        inset: 0 !important;
        background: rgba(3, 7, 13, 0.75) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        z-index: 9998 !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: opacity 320ms cubic-bezier(0.16, 1, 0.3, 1), visibility 320ms !important;
    }

    .site-header.menu-open .mobile-menu-backdrop {
        opacity: 1 !important;
        visibility: visible !important;
    }
}

/* ============================================================
   MOBILE SLIDING PANEL: FULL 100% SCREEN HEIGHT + STRICT MANROPE FONT
   ============================================================ */
@media (max-width: 900px) {
    .primary-nav,
    .primary-nav *,
    .mobile-nav-header,
    .mobile-nav-links,
    .mobile-nav-links a,
    .mobile-nav-text,
    .mobile-nav-num,
    .mobile-nav-footer,
    .mobile-vip-btn,
    .mobile-vip-btn strong,
    .mobile-vip-btn small,
    .mobile-nav-whatsapp,
    .mobile-nav-copy {
        font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    }

    .primary-nav {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        left: auto !important;
        width: min(88vw, 380px) !important;
        height: 100vh !important;
        height: 100dvh !important;
        min-height: 100vh !important;
        min-height: 100dvh !important;
        max-height: 100vh !important;
        max-height: 100dvh !important;
        background: linear-gradient(180deg, #06111f 0%, #030810 100%) !important;
        border-left: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: -15px 0 50px rgba(0, 0, 0, 0.85) !important;
        z-index: 9999 !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: space-between !important;
        padding: 1.5rem 1.35rem 1.6rem !important;
        transform: translateX(105%) !important;
        transition: transform 380ms cubic-bezier(0.16, 1, 0.3, 1), visibility 380ms !important;
        visibility: hidden !important;
        overflow-y: auto !important;
        box-sizing: border-box !important;
    }

    .site-header.menu-open .primary-nav {
        transform: translateX(0) !important;
        visibility: visible !important;
    }

    .mobile-nav-text {
        font-size: 1.02rem !important;
        font-weight: 600 !important;
        letter-spacing: -0.01em !important;
    }

    .mobile-nav-num {
        font-size: 0.72rem !important;
        font-weight: 700 !important;
        letter-spacing: 0.05em !important;
        opacity: 0.5 !important;
    }
}

/* ============================================================
   REFINED COMPACT FONT SIZES FOR MOBILE SLIDING DRAWER
   ============================================================ */
@media (max-width: 900px) {
    .primary-nav a,
    .mobile-nav-links a {
        padding: 0.65rem 0.85rem !important;
        font-size: 0.92rem !important;
        font-weight: 500 !important;
        letter-spacing: 0.01em !important;
        gap: 0.75rem !important;
    }

    .mobile-nav-text {
        font-size: 0.92rem !important;
        font-weight: 500 !important;
        letter-spacing: 0.01em !important;
        line-height: 1.3 !important;
    }

    .mobile-nav-num {
        font-size: 0.65rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.04em !important;
        width: 18px !important;
        opacity: 0.45 !important;
    }

    .mobile-nav-arrow {
        font-size: 0.72rem !important;
        opacity: 0.4 !important;
    }

    .mobile-nav-brand img {
        height: 30px !important;
    }

    .mobile-nav-brand p {
        font-size: 0.58rem !important;
        letter-spacing: 0.12em !important;
    }

    .mobile-vip-btn {
        padding: 0.65rem 0.85rem !important;
        gap: 0.75rem !important;
    }

    .mobile-vip-btn strong {
        font-size: 0.8rem !important;
        font-weight: 600 !important;
    }

    .mobile-vip-btn small {
        font-size: 0.68rem !important;
    }

    .mobile-nav-whatsapp {
        font-size: 0.74rem !important;
        padding: 0.5rem 0.85rem !important;
        font-weight: 600 !important;
    }

    .mobile-nav-socials a {
        font-size: 0.95rem !important;
    }

    .mobile-nav-copy {
        font-size: 0.62rem !important;
    }
}

/* ============================================================
   COMPACT GAP BETWEEN ICON AND TEXT IN MOBILE DRAWER BUTTONS
   ============================================================ */
@media (max-width: 900px) {
    .mobile-vip-btn {
        gap: 0.5rem !important;
        padding: 0.6rem 0.8rem !important;
    }

    .mobile-vip-btn i {
        font-size: 0.95rem !important;
        width: 18px !important;
        text-align: center !important;
        flex-shrink: 0 !important;
    }

    .mobile-vip-btn div {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.1rem !important;
    }

    .mobile-vip-btn strong {
        font-size: 0.78rem !important;
        line-height: 1.2 !important;
    }

    .mobile-vip-btn small {
        font-size: 0.65rem !important;
        line-height: 1.2 !important;
    }

    .mobile-nav-whatsapp {
        gap: 0.4rem !important;
        padding: 0.48rem 0.85rem !important;
        font-size: 0.74rem !important;
    }

    .mobile-nav-whatsapp i {
        font-size: 0.88rem !important;
        flex-shrink: 0 !important;
    }
}

/* ============================================================
   FIX: OVERRIDE SPACE-BETWEEN ON MOBILE VIP & WHATSAPP BUTTONS
   ============================================================ */
.primary-nav .mobile-vip-btn,
.primary-nav a.mobile-vip-btn,
a.mobile-vip-btn {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 0.75rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.65rem 0.9rem !important;
}

.primary-nav .mobile-vip-btn i,
.primary-nav a.mobile-vip-btn i,
a.mobile-vip-btn i {
    flex: 0 0 auto !important;
    font-size: 1rem !important;
    margin: 0 !important;
    width: 20px !important;
    text-align: center !important;
}

.primary-nav .mobile-vip-btn div,
.primary-nav a.mobile-vip-btn div,
a.mobile-vip-btn div {
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    text-align: left !important;
    margin: 0 !important;
}

.primary-nav .mobile-nav-whatsapp,
.primary-nav a.mobile-nav-whatsapp,
a.mobile-nav-whatsapp {
    display: inline-flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.45rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0.55rem 1rem !important;
}

.primary-nav .mobile-nav-whatsapp i,
.primary-nav a.mobile-nav-whatsapp i,
a.mobile-nav-whatsapp i {
    flex: 0 0 auto !important;
    font-size: 0.95rem !important;
    margin: 0 !important;
}

.primary-nav .mobile-nav-whatsapp span,
.primary-nav a.mobile-nav-whatsapp span,
a.mobile-nav-whatsapp span {
    flex: 0 0 auto !important;
    margin: 0 !important;
}

/* ============================================================
   MOBILE SHOP RESULTS BAR: FULL WIDTH + RIGHT-ALIGNED SORT
   ============================================================ */
@media (max-width: 900px) {
    .shop-results__bar {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 100% !important;
        min-height: auto !important;
        margin-bottom: 1.25rem !important;
        padding-bottom: 0.75rem !important;
        border-bottom: 1px solid #e2e8f0 !important;
        gap: 0.75rem !important;
        box-sizing: border-box !important;
    }

    .shop-results__bar p {
        margin: 0 !important;
        font-size: 0.82rem !important;
        color: #64748b !important;
        white-space: nowrap !important;
        flex-shrink: 0 !important;
    }

    .shop-results__bar p strong {
        color: #0f172a !important;
        font-weight: 700 !important;
    }

    .shop-results__bar form {
        margin: 0 0 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
    }

    .shop-results__bar label {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        font-size: 0.78rem !important;
        color: #64748b !important;
        white-space: nowrap !important;
    }

    .shop-results__bar select {
        padding: 0.42rem 0.65rem !important;
        border-radius: 8px !important;
        border: 1px solid #cbd5e1 !important;
        background: #ffffff !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        cursor: pointer !important;
        outline: none !important;
    }
}

@media (max-width: 480px) {
    .shop-results__bar {
        gap: 0.5rem !important;
    }

    .shop-results__bar p {
        font-size: 0.78rem !important;
    }

    .shop-results__bar label {
        font-size: 0.74rem !important;
        gap: 0.3rem !important;
    }

    .shop-results__bar select {
        padding: 0.38rem 0.55rem !important;
        font-size: 0.76rem !important;
    }
}

/* ============================================================
   UNIFIED MOBILE TOOLBAR: FILTER (LEFT) & SORT/COUNT (RIGHT)
   ============================================================ */
@media (min-width: 901px) {
    .shop-mobile-toggle-bar {
        display: none !important;
    }
}

@media (max-width: 900px) {
    .shop-results__bar {
        display: none !important;
    }

    .shop-mobile-toggle-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: min(calc(100% - (2 * var(--page-pad))), 1460px) !important;
        margin: 1.25rem auto 1rem !important;
        padding-bottom: 0.85rem !important;
        border-bottom: 1px solid #e2e8f0 !important;
        box-sizing: border-box !important;
        gap: 0.75rem !important;
    }

    .shop-filter-toggle {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.45rem !important;
        padding: 0.48rem 0.95rem !important;
        background: #07172a !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        border-radius: 999px !important;
        color: #ffffff !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        flex-shrink: 0 !important;
        transition: all 180ms ease !important;
    }

    .shop-filter-toggle:hover {
        background: #0f243d !important;
        transform: translateY(-1px) !important;
    }

    .shop-mobile-sort-wrap {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 0.65rem !important;
        flex-wrap: nowrap !important;
        margin-left: auto !important;
    }

    .shop-mobile-count {
        font-size: 0.82rem !important;
        color: #64748b !important;
        white-space: nowrap !important;
    }

    .shop-mobile-count strong {
        color: #0f172a !important;
        font-weight: 700 !important;
    }

    .shop-mobile-sort-form {
        display: inline-flex !important;
        align-items: center !important;
        margin: 0 !important;
    }

    .shop-mobile-sort-form select {
        padding: 0.42rem 0.65rem !important;
        border-radius: 8px !important;
        border: 1px solid #cbd5e1 !important;
        background: #ffffff !important;
        font-size: 0.8rem !important;
        font-weight: 600 !important;
        color: #0f172a !important;
        cursor: pointer !important;
        outline: none !important;
        font-family: 'Manrope', sans-serif !important;
    }
}

@media (max-width: 480px) {
    .shop-mobile-toggle-bar {
        margin: 1rem auto 0.75rem !important;
        padding-bottom: 0.65rem !important;
        gap: 0.45rem !important;
    }

    .shop-filter-toggle {
        padding: 0.42rem 0.85rem !important;
        font-size: 0.78rem !important;
    }

    .shop-mobile-sort-wrap {
        gap: 0.45rem !important;
    }

    .shop-mobile-count {
        font-size: 0.76rem !important;
    }

    .shop-mobile-sort-form select {
        padding: 0.38rem 0.5rem !important;
        font-size: 0.76rem !important;
    }
}

/* ============================================================
   REMOVE EMPTY SPACE BEFORE PRODUCT GRID ON SHOP PAGE
   ============================================================ */
@media (max-width: 900px) {
    .shop-mobile-toggle-bar {
        margin-top: 0.85rem !important;
        margin-bottom: 0.5rem !important;
        padding-bottom: 0.65rem !important;
    }

    .shop-catalog {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .shop-results {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .shop-grid {
        margin-top: 0.5rem !important;
        padding-top: 0 !important;
    }
}

@media (max-width: 480px) {
    .shop-mobile-toggle-bar {
        margin-top: 0.75rem !important;
        margin-bottom: 0.35rem !important;
        padding-bottom: 0.5rem !important;
    }

    .shop-catalog {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    .shop-grid {
        margin-top: 0.35rem !important;
    }
}

/* ============================================================
   PERFECT VERTICAL MIDDLE ALIGNMENT FOR MOBILE SHOP TOOLBAR
   ============================================================ */
@media (max-width: 900px) {
    .shop-mobile-toggle-bar {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        min-height: 42px !important;
        box-sizing: border-box !important;
    }

    .shop-filter-toggle {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 38px !important;
        line-height: 1 !important;
        margin: 0 !important;
        box-sizing: border-box !important;
    }

    .shop-filter-toggle i {
        display: inline-block !important;
        line-height: 1 !important;
    }

    .shop-mobile-sort-wrap {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        height: 38px !important;
        margin: 0 !important;
        padding: 0 !important;
        gap: 0.65rem !important;
        box-sizing: border-box !important;
    }

    .shop-mobile-count {
        display: inline-flex !important;
        align-items: center !important;
        height: 38px !important;
        line-height: 1 !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .shop-mobile-sort-form {
        display: inline-flex !important;
        align-items: center !important;
        height: 38px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .shop-mobile-sort-form label {
        display: inline-flex !important;
        align-items: center !important;
        height: 38px !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .shop-mobile-sort-form select {
        display: inline-flex !important;
        align-items: center !important;
        height: 38px !important;
        line-height: normal !important;
        margin: 0 !important;
        padding: 0 0.75rem !important;
        box-sizing: border-box !important;
        vertical-align: middle !important;
    }
}

/* ============================================================
   REMOVE CATEGORY / CONCENTRATION TITLE BEFORE PRODUCT NAME
   ============================================================ */
.signature-product__info > p,
.shop-product > p:first-of-type,
.pd-related-card__cat,
.best-seller-card__info small {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
}

.signature-product__info h3,
.shop-product h2,
.pd-related-card__title {
    margin-top: 0.5rem !important;
}

/* ============================================================
   PRODUCT DETAIL PAGE: COMPREHENSIVE MOBILE RESPONSIVENESS
   ============================================================ */
@media (max-width: 900px) {
    .pd-container {
        padding: 1.25rem 1rem 3rem !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .pd-back {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.45rem !important;
        font-size: 0.82rem !important;
        font-weight: 600 !important;
        color: #64748b !important;
        text-decoration: none !important;
        margin-bottom: 1rem !important;
        transition: color 180ms ease !important;
    }

    .pd-back:hover {
        color: #07172a !important;
    }

    .pd-hero {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.5rem !important;
        width: 100% !important;
        margin: 0 !important;
    }

    .pd-gallery {
        width: 100% !important;
    }

    .pd-gallery__main-wrap {
        position: relative !important;
        width: 100% !important;
        aspect-ratio: 1 / 1 !important;
        border-radius: 16px !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    #pd-main-image {
        max-width: 88% !important;
        max-height: 88% !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        padding: 0.75rem !important;
    }

    .pd-gallery__badge {
        position: absolute !important;
        top: 0.75rem !important;
        left: 0.75rem !important;
        font-size: 0.68rem !important;
        font-weight: 700 !important;
        padding: 0.28rem 0.55rem !important;
        border-radius: 6px !important;
        color: #ffffff !important;
        background: #07172a !important;
        letter-spacing: 0.04em !important;
    }

    .pd-gallery__disc {
        position: absolute !important;
        top: 0.75rem !important;
        right: 0.75rem !important;
        font-size: 0.72rem !important;
        font-weight: 800 !important;
        padding: 0.25rem 0.55rem !important;
        border-radius: 999px !important;
        color: #ffffff !important;
        background: #c53030 !important;
    }

    .pd-gallery__thumbs {
        display: flex !important;
        gap: 0.5rem !important;
        margin-top: 0.75rem !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        padding-bottom: 0.2rem !important;
    }

    .pd-gallery__thumbs::-webkit-scrollbar {
        display: none !important;
    }

    .pd-thumb-btn {
        flex: 0 0 54px !important;
        width: 54px !important;
        height: 54px !important;
        border-radius: 10px !important;
        border: 1.5px solid #e2e8f0 !important;
        background: #f8fafc !important;
        padding: 3px !important;
        cursor: pointer !important;
        box-sizing: border-box !important;
    }

    .pd-thumb-btn img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        border-radius: 6px !important;
    }

    .pd-thumb-btn.is-active {
        border-color: #07172a !important;
        box-shadow: 0 0 0 1px #07172a !important;
    }

    .pd-content {
        width: 100% !important;
    }

    .pd-name {
        font-size: 1.65rem !important;
        font-family: 'Cinzel', serif !important;
        font-weight: 600 !important;
        line-height: 1.25 !important;
        color: #07172a !important;
        margin: 0 0 0.35rem !important;
    }

    .pd-tagline {
        font-size: 0.85rem !important;
        color: #64748b !important;
        line-height: 1.4 !important;
        margin: 0 0 0.75rem !important;
    }

    .pd-divider {
        margin: 0.75rem 0 !important;
        border: 0 !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .pd-price-row {
        display: flex !important;
        align-items: baseline !important;
        gap: 0.6rem !important;
        flex-wrap: wrap !important;
        margin: 0.75rem 0 1rem !important;
    }

    .pd-price {
        font-size: 1.45rem !important;
        font-weight: 800 !important;
        color: #07172a !important;
    }

    .pd-compare {
        font-size: 0.95rem !important;
        color: #94a3b8 !important;
        text-decoration: line-through !important;
    }

    .pd-save {
        font-size: 0.75rem !important;
        font-weight: 700 !important;
        color: #166534 !important;
        background: #dcfce7 !important;
        padding: 0.2rem 0.55rem !important;
        border-radius: 999px !important;
    }

    .pd-variants-wrap {
        margin-bottom: 1rem !important;
    }

    .pd-variants-lbl {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        font-size: 0.8rem !important;
        color: #64748b !important;
        font-weight: 600 !important;
        margin-bottom: 0.45rem !important;
    }

    .pd-variants-lbl strong {
        color: #07172a !important;
        font-weight: 700 !important;
    }

    .pd-variants-grid {
        display: grid !important;
        grid-template-columns: repeat(auto-fit, minmax(75px, 1fr)) !important;
        gap: 0.45rem !important;
    }

    .pd-size-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.35rem !important;
        padding: 0.6rem 0.5rem !important;
        border-radius: 10px !important;
        border: 1.5px solid #cbd5e1 !important;
        background: #ffffff !important;
        color: #334155 !important;
        font-size: 0.82rem !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        transition: all 180ms ease !important;
        box-sizing: border-box !important;
        width: 100% !important;
    }

    .pd-size-btn.is-active {
        border-color: #07172a !important;
        background: #07172a !important;
        color: #ffffff !important;
    }

    .pd-actions-wrap {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.6rem !important;
        margin: 1.25rem 0 !important;
        width: 100% !important;
    }

    .pd-add-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
        min-height: 48px !important;
        padding: 0.75rem 1rem !important;
        border-radius: 12px !important;
        background: #07172a !important;
        color: #ffffff !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 180ms ease !important;
    }

    .pd-buy-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
        min-height: 48px !important;
        padding: 0.75rem 1rem !important;
        border-radius: 12px !important;
        background: #c59b27 !important;
        color: #07172a !important;
        font-size: 0.92rem !important;
        font-weight: 700 !important;
        border: none !important;
        cursor: pointer !important;
        transition: all 180ms ease !important;
    }

    .pd-wish-btn {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        width: 100% !important;
        min-height: 42px !important;
        padding: 0.6rem 1rem !important;
        border-radius: 12px !important;
        background: transparent !important;
        border: 1.5px solid #cbd5e1 !important;
        color: #334155 !important;
        font-size: 0.84rem !important;
        font-weight: 600 !important;
        cursor: pointer !important;
    }

    .pd-notes {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 0.4rem !important;
        margin-bottom: 1rem !important;
    }

    .pd-note {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.35rem !important;
        padding: 0.35rem 0.65rem !important;
        background: #f1f5f9 !important;
        border-radius: 8px !important;
        font-size: 0.76rem !important;
        color: #334155 !important;
        font-weight: 600 !important;
    }

    .pd-desc {
        font-size: 0.86rem !important;
        line-height: 1.6 !important;
        color: #475569 !important;
        margin-bottom: 1.25rem !important;
    }

    .pd-meta {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
        padding: 0.85rem !important;
        background: #f8fafc !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        margin: 0 0 1.25rem !important;
    }

    .pd-meta dt {
        font-size: 0.7rem !important;
        color: #64748b !important;
        text-transform: uppercase !important;
        font-weight: 600 !important;
        margin-bottom: 0.15rem !important;
    }

    .pd-meta dd {
        font-size: 0.82rem !important;
        color: #0f172a !important;
        font-weight: 600 !important;
        margin: 0 !important;
    }

    .pd-trust {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.65rem !important;
        padding-top: 0.85rem !important;
        border-top: 1px solid #e2e8f0 !important;
    }

    .pd-trust-item {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.4rem !important;
        font-size: 0.76rem !important;
        color: #475569 !important;
        font-weight: 600 !important;
    }

    /* Related Products Noir Grid on Mobile */
    .pd-related-noir {
        padding: 2.5rem 1rem 3.5rem !important;
    }

    .pd-related-noir__title {
        font-size: 1.5rem !important;
    }

    .pd-related-noir__subtitle {
        font-size: 0.82rem !important;
        margin-top: 0.35rem !important;
    }

    .pd-related-noir__grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0.85rem !important;
    }

    .pd-related-card__btn {
        padding: 0.45rem 0.6rem !important;
        font-size: 0.74rem !important;
        gap: 0.35rem !important;
    }

    .pd-related-card__title a {
        font-size: 0.88rem !important;
    }

    .pd-related-card__pricing {
        font-size: 0.82rem !important;
    }
}

/* ============================================================
   PERFECT MOBILE RELATED PRODUCT BOXES (PRODUCT DETAILS PAGE)
   ============================================================ */
@media (max-width: 900px) {
    .pd-related-noir__grid {
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 0.85rem !important;
        row-gap: 1.75rem !important;
        width: 100% !important;
    }

    .pd-related-card {
        display: flex !important;
        flex-direction: column !important;
        width: 100% !important;
        background: transparent !important;
    }

    .pd-related-card__visual {
        position: relative !important;
        width: 100% !important;
        aspect-ratio: 0.9 / 1 !important;
        border-radius: 12px !important;
        overflow: hidden !important;
        background: #0d1825 !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-sizing: border-box !important;
    }

    .pd-related-card__img-link {
        display: block !important;
        width: 100% !important;
        height: 100% !important;
    }

    .pd-related-card__visual img {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        display: block !important;
    }

    .pd-related-card__badge {
        position: absolute !important;
        top: 0.55rem !important;
        left: 0.55rem !important;
        z-index: 2 !important;
        padding: 0.22rem 0.5rem !important;
        font-size: 0.62rem !important;
        font-weight: 700 !important;
        border-radius: 4px !important;
        letter-spacing: 0.04em !important;
    }

    .pd-related-card__badge--new {
        background: #07172a !important;
        color: #ffffff !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }

    .pd-related-card__badge--bestseller {
        background: #c59b27 !important;
        color: #07172a !important;
    }

    .pd-related-card__btn {
        position: absolute !important;
        bottom: 0.5rem !important;
        left: 0.5rem !important;
        right: 0.5rem !important;
        width: calc(100% - 1rem) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.35rem !important;
        padding: 0.45rem 0.6rem !important;
        background: rgba(7, 23, 42, 0.9) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
        border-radius: 8px !important;
        color: #ffffff !important;
        font-size: 0.74rem !important;
        font-weight: 700 !important;
        cursor: pointer !important;
        opacity: 1 !important;
        transform: none !important;
        z-index: 2 !important;
        box-sizing: border-box !important;
        text-decoration: none !important;
    }

    .pd-related-card__btn i {
        font-size: 0.68rem !important;
    }

    .pd-related-card__info {
        display: flex !important;
        flex-direction: column !important;
        margin-top: 0.5rem !important;
        padding: 0 !important;
        background: transparent !important;
    }

    .pd-related-card__title {
        margin: 0 !important;
        line-height: 1.25 !important;
    }

    .pd-related-card__title a {
        font-size: 0.92rem !important;
        font-family: 'Cinzel', serif !important;
        font-weight: 600 !important;
        color: #ffffff !important;
        text-decoration: none !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 1 !important;
        -webkit-box-orient: vertical !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
    }

    .pd-related-card__pricing {
        display: flex !important;
        align-items: baseline !important;
        gap: 0.45rem !important;
        margin-top: 0.25rem !important;
        line-height: 1.2 !important;
    }

    .pd-related-card__pricing strong {
        font-size: 0.92rem !important;
        font-weight: 800 !important;
        color: #ffffff !important;
    }

    .pd-related-card__pricing del {
        font-size: 0.76rem !important;
        color: rgba(255, 255, 255, 0.45) !important;
        text-decoration: line-through !important;
    }
}

/* ============================================================
   MATCH PRODUCT DETAIL RELATED CARDS EXACTLY WITH HOME SIGNATURE CARDS
   ============================================================ */
.pd-related-noir .signature-products {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(1.2rem, 2.2vw, 2.2rem) !important;
    width: 100% !important;
}

.pd-related-noir .signature-product__info h3 a {
    color: #ffffff !important;
}

.pd-related-noir .signature-product__info h3 a:hover {
    color: #c9a85a !important;
}

.pd-related-noir .signature-product__price strong {
    color: #ffffff !important;
}

.pd-related-noir .signature-product__price del {
    color: rgba(255, 255, 255, 0.45) !important;
}

@media (max-width: 900px) {
    .pd-related-noir .signature-products {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        column-gap: 0.85rem !important;
        row-gap: 1.85rem !important;
    }
}

/* ============================================================
   DESKTOP NAVBAR SPACING & CENTERING FIX
   ============================================================ */
@media (min-width: 901px) {
    .primary-nav {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        position: static !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        transform: none !important;
        visibility: visible !important;
        padding: 0 !important;
        margin: 0 auto !important;
        width: auto !important;
    }

    .mobile-nav-links {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        gap: clamp(1.8rem, 2.6vw, 3.2rem) !important;
        height: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .mobile-nav-links a,
    .primary-nav a {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
        padding: 0 0.4rem !important;
        position: relative !important;
        font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif !important;
        font-size: 0.92rem !important;
        font-weight: 600 !important;
        letter-spacing: 0.03em !important;
        color: #f1f5f9 !important;
        text-decoration: none !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        transform: none !important;
        transition: color 200ms ease !important;
    }

    .mobile-nav-num,
    .mobile-nav-arrow,
    .mobile-nav-header,
    .mobile-nav-footer,
    .mobile-menu-backdrop {
        display: none !important;
    }

    .mobile-nav-text {
        display: inline !important;
        font-family: inherit !important;
        font-size: inherit !important;
        font-weight: inherit !important;
        letter-spacing: inherit !important;
        color: inherit !important;
    }

    .mobile-nav-links a::after,
    .primary-nav a::after {
        content: '' !important;
        position: absolute !important;
        bottom: 22px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 0 !important;
        height: 2px !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        transition: width 220ms ease !important;
    }

    .mobile-nav-links a:hover,
    .mobile-nav-links a.is-active,
    .primary-nav a:hover,
    .primary-nav a.is-active {
        color: #ffffff !important;
        background: transparent !important;
    }

    .mobile-nav-links a:hover::after,
    .mobile-nav-links a.is-active::after,
    .primary-nav a:hover::after,
    .primary-nav a.is-active::after {
        width: 22px !important;
    }
}