:root {
    --bg: #fdf8f3;
    --bg-2: #fff2ea;
    --bg-3: #f2f7ef;
    --brand-green: #67B346;
    --panel: rgba(255, 255, 255, 0.72);
    --panel-strong: rgba(255, 255, 255, 0.88);
    --line: rgba(223, 198, 184, 0.72);
    --title: #2d201d;
    --text: #564744;
    --muted: #8a7772;
    --accent: #ea8e79;
    --accent-strong: #cf6676;
    --accent-soft: #f6ddd2;
    --sage: #dce9d7;
    --shadow: 0 28px 80px rgba(216, 184, 167, 0.22);
    --radius-xl: 40px;
    --radius-lg: 28px;
    --radius-md: 20px;
    --edge: 56px;
    --content-max: 1320px;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: #faf7f4;
    font-family: "Manrope", sans-serif;
}

body::before {
    display: none;
}

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

button,
input {
    font: inherit;
}

button {
    -webkit-appearance: none;
    appearance: none;
}



.brand,
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.brand-mark {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    background: linear-gradient(135deg, #fbe4d9, #efbfb1);
    color: #4a352f;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.95rem;
    font-weight: 700;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.65);
}

.footer-logo strong {
    display: block;
    color: var(--title);
    font-size: 1rem;
    font-weight: 800;
}

.footer-logo span {
    display: block;
    color: var(--muted);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.nav,
.hero-actions,
.footer-social,
.payment-row {
    display: flex;
}

.nav {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.nav .nav-item,
.button,
.tool-button,
.subscribe-form button,
.cartBtn {
    transition:
        transform 0.28s ease,
        background-color 0.28s ease,
        border-color 0.28s ease,
        box-shadow 0.28s ease,
        color 0.28s ease;
}

.nav .nav-item {
    padding: 10px 14px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #75615c;
    font-size: 0.92rem;
    font-weight: 700;
}

.footer-social,
.payment-row {
    align-items: center;
    gap: 10px;
}

.tool-button {
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 24px rgba(222, 183, 163, 0.16);
}

.tool-button:hover,
.button:hover,
.subscribe-form button:hover {
    transform: translateY(-2px);
}

.tool-icon,
.event-icon,
.done-check {
    position: relative;
    display: inline-block;
}

.tool-icon {
    width: 18px;
    height: 18px;
}

.tool-send::before,
.tool-send::after,
.tool-instagram::before,
.tool-instagram::after,
.event-icon::before,
.event-icon::after,
.done-check::before,
.done-check::after {
    content: "";
    position: absolute;
}

.tool-send::before {
    left: 2px;
    top: 2px;
    width: 14px;
    height: 14px;
    border-top: 2px solid #4d3a34;
    border-right: 2px solid #4d3a34;
    transform: rotate(45deg);
}

.tool-send::after {
    left: 6px;
    top: 8px;
    width: 9px;
    height: 2px;
    background: #4d3a34;
    transform: rotate(-45deg);
}

.tool-instagram::before {
    inset: 1px;
    border: 2px solid #4d3a34;
    border-radius: 5px;
}

.tool-instagram::after {
    left: 5px;
    top: 5px;
    width: 8px;
    height: 8px;
    border: 2px solid #4d3a34;
    border-radius: 50%;
    box-shadow: 6px -6px 0 -4px #4d3a34;
}

.page-shell {
    min-height: 100vh;
    overflow: visible;
}

.screen {
    position: relative;
    z-index: 1;
}

.page-shell>section {
    display: block;
    width: 100%;
    margin: 0 !important;
    padding: 80px var(--edge);
    background: transparent;
    border: none;
    position: relative;
    box-sizing: border-box;
}

/* Base hero reset - specific overrides go below or use stronger selectors */
.page-shell>.hero-screen {
    padding: 0 !important;
    margin: 0 !important;
}

.hero-screen .hero-banner {
    width: 100%;
    height: 100%;
}

.screen> :not(.hero-banner) {
    width: min(100%, var(--content-max));
    margin-inline: auto;
}





.concept-adv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: var(--content-max);
    margin: 0 auto;
}

.concept-adv-pill {
    position: relative;
    background: #fff;
    border-radius: 999px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border: 1px solid rgba(220, 206, 199, 0.4);
    box-shadow: 0 15px 35px rgba(216, 184, 167, 0.12);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    isolation: isolate;
}

.concept-adv-pill:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(234, 142, 121, 0.22), inset 0 2px 0 rgba(255, 255, 255, 1);
    background: rgba(255, 255, 255, 0.85);
}

.concept-pill-glow {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 60%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(234, 142, 121, 0.45) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    filter: blur(24px);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.concept-adv-pill:hover .concept-pill-glow {
    opacity: 1;
}

.concept-pill-visual {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 50%;
    z-index: 1;
    padding: 8px;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.concept-adv-pill:hover .concept-pill-visual {
    transform: scale(1.02);
}

.concept-pill-img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.concept-adv-pill:hover .concept-pill-img {
    transform: scale(1.08) rotate(3deg);
}

.concept-pill-badge {
    position: absolute;
    bottom: 0px;
    right: 0px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(234, 142, 121, 0.4);
    transform: scale(0) rotate(-45deg);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transition-delay: 0.05s;
    z-index: 2;
}

.concept-pill-badge svg {
    width: 22px;
    height: 22px;
}

.concept-adv-pill:hover .concept-pill-badge {
    transform: scale(1) rotate(0deg);
    opacity: 1;
}

.concept-pill-content {
    padding: 24px 10px 40px;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.concept-pill-num {
    display: inline-block;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 12px;
    background: rgba(234, 142, 121, 0.1);
    padding: 4px 14px;
    border-radius: 999px;
    border: 1px solid rgba(234, 142, 121, 0.2);
    transition: transform 0.4s ease;
}

.concept-adv-pill:hover .concept-pill-num {
    transform: translateY(-4px);
    background: rgba(234, 142, 121, 0.15);
}

.concept-pill-title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.35;
    margin: 0;
    color: var(--title);
    max-width: 90%;
    transition: color 0.4s ease;
}



.premium-footer-wrapper {
    position: relative;
    padding: 60px 28px 24px;
}

.occasion-grid,
.popular-showcase,
.journey-track {
    min-height: 0;
}

.hero-actions {
    gap: 14px;
    margin-top: 34px;
}

.section-head h2,
.journey-header h2,
.occasion-copy h3 {
    margin: 0;
    color: var(--title);
    font-family: "Cormorant Garamond", serif;
    font-weight: 600;
    letter-spacing: -0.05em;
}

.section-head p,
.journey-header p {
    color: var(--muted);
    line-height: 1.75;
}

/* ── Eyebrow label ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-strong);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 34px;
    height: 1px;
    background: currentColor;
}

/* ── Buttons ── */
.button {
    min-height: 54px;
    padding: 0 24px;
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.button-primary,
.subscribe-form button,
.accent-pill {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    box-shadow: 0 18px 34px rgba(216, 111, 120, 0.22);
}

.button-soft,
.screen-pill,
.success-pill {
    color: var(--title);
    background: rgba(255, 255, 255, 0.88);
    border-color: var(--line);
}

/* ═══════════════════════════════════════════
   UNIFIED SECTION HEADING – Premium Floral
   ═══════════════════════════════════════════ */

@keyframes eyebrowShimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes floatBotanical {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

.section-heading {
    text-align: center;
    max-width: 960px;
    margin: 0 auto 64px;
    position: relative;
    padding: 0 20px;
    isolation: isolate;
}

/* ── Botanical leaf decorators ── */
.section-heading::before,
.section-heading::after {
    content: "";
    position: absolute;
    top: 12px;
    width: 64px;
    height: 64px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    animation: floatBotanical 6s ease-in-out infinite;
}

.section-heading::before {
    left: -10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M32 60C32 60 8 44 8 24C8 12 18 4 32 4' stroke='%23ea8e79' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M32 60C32 60 56 44 56 24C56 12 46 4 32 4' stroke='%23dce9d7' stroke-width='1.5' stroke-linecap='round'/%3E%3Cpath d='M32 8V56' stroke='%23ea8e79' stroke-width='1' opacity='.4'/%3E%3Cpath d='M20 18Q32 26 32 26' stroke='%23ea8e79' stroke-width='1' opacity='.3'/%3E%3Cpath d='M44 18Q32 26 32 26' stroke='%23dce9d7' stroke-width='1' opacity='.3'/%3E%3Cpath d='M16 30Q32 38 32 38' stroke='%23ea8e79' stroke-width='1' opacity='.3'/%3E%3Cpath d='M48 30Q32 38 32 38' stroke='%23dce9d7' stroke-width='1' opacity='.3'/%3E%3C/svg%3E");
    animation-delay: 0s;
}

.section-heading::after {
    right: -10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Ccircle cx='32' cy='32' r='12' stroke='%23ea8e79' stroke-width='1' opacity='.5'/%3E%3Ccircle cx='32' cy='32' r='6' stroke='%23cf6676' stroke-width='1' opacity='.4'/%3E%3Cpath d='M32 20C32 20 38 26 38 32C38 38 32 44 32 44' stroke='%23ea8e79' stroke-width='1' opacity='.35'/%3E%3Cpath d='M32 20C32 20 26 26 26 32C26 38 32 44 32 44' stroke='%23dce9d7' stroke-width='1' opacity='.35'/%3E%3Cpath d='M20 32H44' stroke='%23f6ddd2' stroke-width='1' opacity='.3'/%3E%3Cpath d='M32 18V46' stroke='%23f6ddd2' stroke-width='1' opacity='.25'/%3E%3C/svg%3E");
    animation-delay: 3s;
}

/* ── Eyebrow pill with shimmer ── */
.section-heading .eyebrow {
    justify-content: center;
    margin-bottom: 28px;
    position: relative;
    z-index: 2;
    padding: 8px 28px;
    border-radius: 999px;
    width: fit-content;
    margin-inline: auto;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    color: var(--accent-strong);
    border: 1px solid rgba(234, 142, 121, 0.22);
    background: linear-gradient(90deg,
            rgba(246, 221, 210, 0.25) 0%,
            rgba(234, 142, 121, 0.12) 25%,
            rgba(255, 255, 255, 0.6) 50%,
            rgba(234, 142, 121, 0.12) 75%,
            rgba(246, 221, 210, 0.25) 100%);
    background-size: 200% 100%;
    animation: eyebrowShimmer 5s ease-in-out infinite;
    box-shadow:
        0 4px 16px rgba(234, 142, 121, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.7);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.section-heading .eyebrow:hover {
    transform: translateY(-2px);
    box-shadow:
        0 8px 24px rgba(234, 142, 121, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.section-heading .eyebrow::before {
    display: none;
}

/* ── Watermark ghost text behind heading ── */
.section-heading h2 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.6rem, 5.5vw, 4.4rem);
    line-height: 1.05;
    font-weight: 600;
    margin: 0 0 28px;
    position: relative;
    z-index: 2;
    /* Gradient text — warm coral to rose */
    background: linear-gradient(135deg,
            #c4736a 0%,
            #b5696a 30%,
            #d4918a 60%,
            #c4736a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    /* Subtle text shadow via filter for depth */
    filter: drop-shadow(0 2px 8px rgba(207, 102, 118, 0.08));
}

.section-heading h2::before {
    content: attr(data-watermark);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Cormorant Garamond", serif;
    font-size: 2.2em;
    font-weight: 700;
    letter-spacing: 0.08em;
    white-space: nowrap;
    pointer-events: none;
    z-index: -1;
    -webkit-text-stroke: 1px rgba(234, 142, 121, 0.06);
    -webkit-text-fill-color: transparent;
    color: transparent;
    background: none;
    filter: none;
}

.section-heading h2::after {
    content: "";
    display: block;
    width: 72px;
    height: 3px;
    margin: 20px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg,
            transparent,
            rgba(234, 142, 121, 0.5),
            rgba(207, 102, 118, 0.4),
            rgba(234, 142, 121, 0.5),
            transparent);
}

/* ── Paragraph / subtitle ── */
.section-heading p {
    font-family: "Manrope", sans-serif;
    font-size: 1.12rem;
    color: #9a8a85;
    line-height: 1.78;
    margin: 0;
    max-width: 680px;
    margin-inline: auto;
    position: relative;
    z-index: 2;
    font-weight: 400;
    letter-spacing: 0.005em;
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.88fr);
    gap: 26px;
    align-items: end;
    margin-bottom: 26px;
}

.section-head h2,
.order-center h2 {
    margin-top: 16px;
    font-size: clamp(2.5rem, 4.5vw, 4.8rem);
    line-height: 0.94;
}

.section-head p,
.order-center p {
    max-width: 640px;
    margin: 0;
    font-size: 1rem;
}

.occasion-grid {
    min-height: 0;
    display: flex;
    align-items: stretch;
    gap: 12px;
}

.occasion-card {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    min-height: 190px;
    width: 100%;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 32px;
    display: grid;
    grid-template-rows: minmax(112px, 1fr) auto;
    overflow: hidden;
    isolation: isolate;
    background-image: var(--occasion-fill);
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow:
        0 20px 34px rgba(216, 184, 167, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.84);
    cursor: pointer;
    transition:
        transform 0.28s ease,
        box-shadow 0.28s ease,
        background 0.28s ease;
    appearance: none;
    -webkit-appearance: none;
    text-align: left;
    font: inherit;
    color: inherit;
}

.occasion-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--occasion-art);
    background-repeat: no-repeat;
    background-position: right 10px top 8px;
    background-size: 62% auto;
    z-index: -1;
    pointer-events: none;
    transition: transform 0.32s ease;
}

.occasion-card::before {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    height: 62px;
    border-radius: 24px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.8)),
        linear-gradient(90deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
    z-index: -1;
    pointer-events: none;
}

.occasion-card:hover {
    transform: translateY(-5px);
    box-shadow:
        0 24px 40px rgba(216, 184, 167, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.occasion-card.is-active,
.occasion-card[aria-selected="true"] {
    transform: translateY(-5px);
    border-color: rgba(231, 150, 127, 0.44);
    box-shadow:
        0 26px 42px rgba(216, 184, 167, 0.18),
        0 12px 22px rgba(234, 142, 121, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.occasion-card:hover::after {
    transform: translateX(-4px) scale(1.03);
}

.occasion-card.is-active::after,
.occasion-card[aria-selected="true"]::after {
    transform: translateX(-4px) scale(1.03);
}

.occasion-card:focus-visible {
    outline: 3px solid rgba(226, 142, 120, 0.44);
    outline-offset: 5px;
}

.occasion-stage {
    position: relative;
    padding: 18px 18px 0;
    display: flex;
    align-items: flex-start;
}

.occasion-stage::after {
    content: "";
    position: absolute;
    left: 8px;
    top: 10px;
    width: 118px;
    height: 118px;
    border-radius: 38px;
    background: radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.occasion-emoji {
    position: relative;
    z-index: 1;
    display: block;
    font-size: 4.8rem;
    line-height: 1;
    filter: drop-shadow(0 10px 14px rgba(255, 255, 255, 0.32));
    transform: translate3d(0, 0, 0);
    transition: transform 0.28s ease;
}

.event-icon {
    width: 34px;
    height: 34px;
}

.occasion-card:hover .occasion-emoji {
    transform: translateY(-2px) scale(1.03);
}

.occasion-caption {
    --border-radius: 2.2vmin;
    --bg: linear-gradient(135deg, rgba(57, 162, 42, 0.92), rgba(234, 242, 0, 0.96));
    --color: #fff;
    --deg: 30deg;
    -webkit-perspective: 200px;
    perspective: 200px;
    -webkit-transform-origin: top center;
    -ms-transform-origin: top center;
    transform-origin: top center;
    position: absolute;
    left: 50%;
    bottom: 14px;
    z-index: 4;
    max-width: 100%;
    width: fit-content;
    text-align: center;
    outline: none;
    border: none;
    background: none;
    overflow: visible;
    transform: translateX(-50%);
}

.occasion-caption p {
    margin: 0;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -webkit-transform: rotateY(var(--deg));
    transform: rotateY(var(--deg));
    -webkit-transition: all 800ms ease-in-out;
    transition: all 800ms ease-in-out;
    border-radius: var(--border-radius);
    font-style: normal;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 172px;
    min-height: 48px;
    padding: 0.9vmin 1.8vmin;
    background: var(--bg);
    color: var(--color);
    font-family: "Manrope", sans-serif;
    font-size: clamp(0.76rem, 0.78vw, 0.88rem);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    box-shadow:
        0 10px 18px rgba(91, 69, 63, 0.16),
        inset 1px 1px 0 rgba(255, 255, 255, 0.08);
}

.occasion-card:hover .occasion-caption p,
.occasion-card:focus-visible .occasion-caption p {
    -webkit-transform: rotateY(calc(-1 * var(--deg)));
    transform: rotateY(calc(-1 * var(--deg)));
}

.occasion-card:active .occasion-caption p {
    -webkit-transform: rotateY(calc(-1 * var(--deg) / 3));
    transform: rotateY(calc(-1 * var(--deg) / 3));
}

.occasion-card:focus-visible .occasion-caption p {
    border: 0.05vmin solid var(--color);
}

.occasion-wedding {
    --occasion-art: url("/assets/generated/occasion-wedding.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(164, 211, 190, 0.48), transparent 72%),
        linear-gradient(165deg, #dff1e8 0%, #f7fcfa 70%);
}

.occasion-birthday {
    --occasion-art: url("/assets/generated/occasion-birthday.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(166, 194, 231, 0.5), transparent 72%),
        linear-gradient(165deg, #deebfb 0%, #f7fbff 70%);
}

.occasion-anniversary {
    --occasion-art: url("/assets/generated/occasion-anniversary.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(237, 184, 173, 0.48), transparent 72%),
        linear-gradient(165deg, #f8e5dd 0%, #fff8f6 70%);
}

.occasion-valentine {
    --occasion-art: url("/assets/generated/occasion-valentine.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(217, 190, 160, 0.5), transparent 72%),
        linear-gradient(165deg, #f4e9df 0%, #fff9f4 70%);
}

.occasion-march-8 {
    --occasion-art: url("/assets/generated/occasion-march8.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(237, 203, 158, 0.48), transparent 72%),
        linear-gradient(165deg, #f7ebe1 0%, #fffaf6 70%);
}

.occasion-graduation {
    --occasion-art: url("/assets/generated/occasion-graduation.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(177, 204, 167, 0.48), transparent 72%),
        linear-gradient(165deg, #e8efe3 0%, #fbfdf9 70%);
}

.occasion-housewarming {
    --occasion-art: url("/assets/generated/occasion-housewarming.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(174, 193, 216, 0.5), transparent 72%),
        linear-gradient(165deg, #e3ecf4 0%, #f8fbff 70%);
}

.occasion-just-because {
    --occasion-art: url("/assets/generated/occasion-justbecause.svg");
    --occasion-fill:
        radial-gradient(92px 74px at 82% 22%, rgba(228, 203, 159, 0.42), transparent 72%),
        linear-gradient(165deg, #f4eadf 0%, #fff9f3 70%);
}

.occasion-products-shell {
    margin-top: 30px;
    display: grid;
    gap: 22px;
}

.occasion-products-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 20px;
}

.occasion-products-copy .eyebrow {
    margin-bottom: 10px;
}

.occasion-products-title {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.95rem, 2.6vw, 2.85rem);
    font-weight: 500;
    line-height: 0.98;
    color: var(--title);
}

.occasion-products-meta {
    margin: 0;
    font-family: "Manrope", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: rgba(86, 69, 62, 0.72);
}

.occasion-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.occasion-products-grid[role="tabpanel"]:focus-visible {
    outline: none;
}

.occasion-products-grid > .popular-product-card {
    height: 100%;
    align-self: stretch;
}

.occasion-products-grid .popular-product-card .card__inner {
    height: 100%;
    min-height: 340px;
}

.occasion-banner-card .card__inner {
    min-height: 340px;
}

.occasion-banner-body {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 12px;
    min-height: 100%;
}

.occasion-banner-card .card__inner::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0) 24%),
        linear-gradient(180deg, rgba(20, 13, 12, 0.12) 18%, rgba(20, 13, 12, 0.74) 100%);
    pointer-events: none;
}

.occasion-banner-card .card__cover {
    filter: saturate(1.02) contrast(1.02);
}

.occasion-banner-card .card__body {
    position: relative;
    z-index: 2;
    padding: 1.1rem 1.2rem 1.2rem;
}

.occasion-banner-eyebrow {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: rgba(255, 248, 246, 0.96);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.occasion-banner-title {
    font-size: clamp(1rem, 1vw, 1.22rem);
    line-height: 1.08;
    max-width: 100%;
}

.occasion-banner-copy {
    margin: 0;
    max-width: 100%;
    color: rgba(255, 246, 244, 0.9);
    font-size: 0.82rem;
    line-height: 1.5;
}

.occasion-banner-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
}

.occasion-banner-chip {
    min-width: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 247, 245, 0.94);
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.3;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.occasion-banner-icon {
    width: 2.4rem;
    height: 2.4rem;
    flex: 0 0 auto;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.24);
    color: #fff;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.occasion-products-grid > [hidden] {
    display: none !important;
}

.screen-photo {
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

/* ═══════════════════════════════════════════
   PRODUCT CARDS — Premium Floral (Overlay)
   ═══════════════════════════════════════════ */

.popular-showcase {
    min-height: auto;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.56fr);
    gap: 24px;
    align-items: start;
}

.popular-showcase > .popular-feature-card,
.popular-showcase > .popular-catalog-grid {
    align-self: start;
    margin-top: 0;
}

.popular-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

@media (min-width: 1181px) {
    .popular-showcase {
        --popular-feature-height: 700px;
        align-items: start;
    }

    .popular-showcase > .popular-feature-card {
        height: var(--popular-feature-height);
        align-self: start;
    }

    .popular-feature-card .card__inner {
        height: 100%;
        min-height: 0;
    }

    .popular-catalog-grid {
        height: var(--popular-feature-height);
        grid-template-rows: repeat(2, minmax(0, 1fr));
        align-content: stretch;
        align-items: stretch;
    }

    .popular-product-card {
        height: 100%;
        align-self: stretch;
    }

    .popular-product-card .card__inner {
        height: 100%;
        min-height: 0;
    }
}

.popular-icons {
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}

/* ── Card base ── */
.product-card-rail .card {
    max-width: none;
    border-radius: 28px;
    overflow: hidden;
    padding: 0;
    position: relative;
    font-size: 1rem;
    font-weight: 400;
    background: transparent;
    border: 0;
    box-shadow:
        0 12px 32px rgba(216, 184, 167, 0.16),
        0 4px 12px rgba(216, 184, 167, 0.08);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.45s ease,
        border-color 0.35s ease;
}

.product-card-rail .card:hover {
    transform: translateY(-6px);
    border-color: rgba(234, 142, 121, 0.3);
    box-shadow:
        0 24px 56px rgba(216, 184, 167, 0.22),
        0 8px 20px rgba(234, 142, 121, 0.08);
}

/* ── Card inner — stacked layout ── */
.product-card-rail .card__inner {
    grid-template-areas: "stack";
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    display: grid;
    min-height: 100%;
    box-shadow: none;
}

/* Warm blur overlay at bottom — ensures text readability */
.product-card-rail .card__inner::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(180deg,
            rgba(22, 14, 13, 0.12) 22%,
            rgba(22, 14, 13, 0.38) 58%,
            rgba(22, 14, 13, 0.82) 100%);
    pointer-events: none;
    z-index: 1;
}

/* ── Card image — fills entire card ── */
.product-card-rail .card__cover {
    grid-area: stack;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card-rail .card:hover .card__cover {
    transform: scale(1.05);
}

/* ── Card body — overlaid on image ── */
.product-card-rail .card__body {
    z-index: 2;
    grid-area: stack;
    margin-top: auto;
    padding: 1.2rem 1.6rem 1.4rem;
    background: transparent;
}

/* ── Card header — light text on overlay ── */
.product-card-rail .card__header {
    margin: 0;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.28rem;
    font-weight: 500;
    line-height: 1.15;
    color: #fff;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
    letter-spacing: 0;
}

.popular-feature-card .card__header {
    font-size: clamp(2rem, 2.3vw, 2.75rem);
    font-weight: 400;
    line-height: 1.05;
}

.popular-product-card .card__header {
    font-size: clamp(1.05rem, 1.05vw, 1.28rem);
}

.product-card-rail .card__body p {
    margin-block: 0.8rem 0;
}

/* ── Price & actions row ── */
.product-card-rail .chips {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-weight: 400;
}

.product-card-rail .flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.55rem;
}

.product-card-rail .icon {
    width: 1em;
    height: 1em;
}

.product-card-rail .button {
    text-decoration: none;
    font: inherit;
    font-weight: 500;
    color: #1c1614;
    padding: 0.75em 1.25em;
    border: 0;
    border-radius: 5rem;
    display: flex;
    background: #fff;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    min-height: 0;
    font-size: 0.92rem;
    letter-spacing: 0;
    text-transform: none;
}

/* ── Buy button — coral gradient with cart icon ── */
.popular-buy {
    width: 2.6rem;
    height: 2.6rem;
    padding: 0;
    gap: 0;
    border-radius: 999px;
    flex: 0 0 auto;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
    color: var(--accent-strong);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        background 0.3s ease;
}

.popular-buy:hover {
    transform: scale(1.12);
    background: linear-gradient(135deg, var(--accent), var(--accent-strong));
    color: #fff;
    box-shadow: 0 8px 22px rgba(234, 142, 121, 0.35);
}

.popular-buy .icon {
    width: 1.2rem;
    height: 1.2rem;
    display: block;
    flex: 0 0 auto;
    margin: auto;
    stroke: currentColor;
}

/* ── Price tag — glass pill ── */
.popular-price-current {
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    background: rgba(255, 255, 255, 0.15);
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}

/* ── Feature card (large) ── */
.popular-feature-card .card__inner {
    min-height: 700px;
    position: relative;
    z-index: 1;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.28),
        inset 0 26px 40px rgba(255, 255, 255, 0.1),
        0 24px 44px rgba(69, 47, 42, 0.22),
        0 12px 24px rgba(234, 142, 121, 0.2);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

.popular-feature-card .card__body {
    padding: 1.4rem 2rem 1.6rem;
}

.product-card-rail .card.popular-feature-card {
    overflow: visible;
    isolation: isolate;
    border-color: rgba(255, 244, 239, 0.42);
}

.popular-feature-card::after {
    content: "";
    position: absolute;
    left: 20px;
    right: 20px;
    bottom: 12px;
    height: 64px;
    border-radius: 999px;
    background: radial-gradient(50% 100% at 50% 50%, rgba(234, 142, 121, 0.3) 0%, rgba(234, 142, 121, 0) 100%);
    filter: blur(16px);
    opacity: 0.62;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.product-card-rail .card.popular-feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 229, 0.58);
    box-shadow:
        0 28px 52px rgba(69, 47, 42, 0.28),
        0 14px 30px rgba(234, 142, 121, 0.26);
}

.popular-feature-card:hover::after {
    opacity: 0.84;
    transform: translateY(2px) scale(1.04);
}

.popular-feature-card:hover .card__inner {
    transform: translateY(-6px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.42),
        inset 0 30px 44px rgba(255, 255, 255, 0.14),
        0 30px 52px rgba(69, 47, 42, 0.28),
        0 14px 28px rgba(234, 142, 121, 0.26);
}

/* ── Product card (small) ── */
.popular-product-card .card__inner {
    min-height: 340px;
    position: relative;
    z-index: 1;
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.34),
        inset 0 22px 34px rgba(255, 255, 255, 0.1),
        0 16px 32px rgba(69, 47, 42, 0.2),
        0 8px 18px rgba(234, 142, 121, 0.2);
    transition:
        transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.35s ease;
}

.popular-product-card {
    align-self: start;
    position: relative;
    isolation: isolate;
    overflow: visible;
}

.product-card-rail .card.popular-product-card {
    border-color: rgba(255, 244, 239, 0.42);
    box-shadow:
        0 18px 34px rgba(69, 47, 42, 0.2),
        0 10px 20px rgba(234, 142, 121, 0.2);
}

.product-card-rail .card.popular-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 235, 229, 0.58);
    box-shadow:
        0 26px 48px rgba(69, 47, 42, 0.26),
        0 14px 28px rgba(234, 142, 121, 0.26);
}

.popular-product-card::after {
    content: "";
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 8px;
    height: 52px;
    border-radius: 999px;
    background: radial-gradient(50% 100% at 50% 50%, rgba(234, 142, 121, 0.34) 0%, rgba(234, 142, 121, 0) 100%);
    filter: blur(14px);
    opacity: 0.62;
    z-index: 0;
    pointer-events: none;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.popular-product-card:hover::after {
    opacity: 0.86;
    transform: translateY(2px) scale(1.04);
}

.popular-product-card:hover .card__inner {
    transform: translateY(-6px);
    box-shadow:
        inset 0 0 0 1px rgba(255, 255, 255, 0.45),
        inset 0 26px 38px rgba(255, 255, 255, 0.14),
        0 24px 42px rgba(69, 47, 42, 0.24),
        0 12px 24px rgba(234, 142, 121, 0.25);
}

.popular-product-card .card__body {
    padding: 1rem 1.2rem 1.1rem;
}

.popular-product-card .popular-price-current {
    font-size: 0.88rem;
    padding: 5px 11px;
}

.popular-product-card .popular-buy {
    width: 2.3rem;
    height: 2.3rem;
}

.popular-product-card .popular-buy .icon {
    width: 1.05rem;
    height: 1.05rem;
}

/* ── Favorite heart button ── */
.popular-favorite {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 3;
    width: 2.5rem;
    height: 2.5rem;
    border: 0;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 0;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    cursor: pointer;
    flex: 0 0 auto;
    opacity: 1;
    transform: scale(1);
    transition:
        opacity 0.3s ease,
        transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
        background 0.2s ease,
        color 0.2s ease;
}

.popular-favorite:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 6px 20px rgba(234, 142, 121, 0.2);
}

.popular-favorite svg {
    width: 1.14rem;
    height: 1.14rem;
    display: block;
    flex: 0 0 auto;
    overflow: visible;
    transform: translateY(0);
    stroke: currentColor;
    stroke-width: 1.8;
}

.section-head-compact {
    grid-template-columns: 1fr;
    margin-bottom: 16px;
}



.journey-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 64px;
    position: relative;
    z-index: 2;
}

.journey-header h2 {
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-family: "Cormorant Garamond", serif;
    color: var(--title);
    line-height: 1.1;
    margin: 16px 0;
}

.journey-track {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: var(--content-max);
    margin: 0 auto;
    position: relative;
}

.journey-step-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.journey-smart-mockup {
    position: relative;
    width: 250px;
    height: 510px;
    margin-bottom: 30px;
    perspective: 1200px;
}

.device-bezel {
    width: 100%;
    height: 100%;
    border-radius: 40px;
    background: #e6e2df;
    padding: 8px;
    box-shadow:
        inset 0 0 0 2px #fff,
        inset 0 0 4px 5px rgba(0, 0, 0, 0.02),
        15px 25px 35px rgba(138, 119, 114, 0.15),
        5px 10px 10px rgba(138, 119, 114, 0.1);
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
    position: relative;
    z-index: 2;
}

.journey-step-card:hover .device-bezel {
    transform: rotateY(-12deg) rotateX(6deg) translateY(-10px);
    box-shadow:
        inset 0 0 0 2px #fff,
        inset 0 0 4px 5px rgba(0, 0, 0, 0.02),
        25px 40px 50px rgba(138, 119, 114, 0.2),
        10px 15px 15px rgba(138, 119, 114, 0.12);
}

.device-screen-disp {
    width: 100%;
    height: 100%;
    border-radius: 32px;
    background: #faf7f4;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.device-screen-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 22px;
    background: #111;
    border-radius: 999px;
    z-index: 20;
    box-shadow: inset 0 -2px 5px rgba(255, 255, 255, 0.15);
}

.ui-mock-nav {
    height: 70px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-end;
    padding: 0 16px 14px;
    gap: 8px;
    z-index: 10;
}

.ui-nav-bar {
    height: 6px;
    border-radius: 4px;
    background: #eaded7;
}

.ui-nav-bar.w-3s {
    width: 60%;
}

.ui-nav-bar.w-2s {
    width: 40%;
}

.ui-nav-bar.w-1s {
    width: 20%;
    margin-left: auto;
}

.ui-nav-bar.center {
    margin: 0 auto;
}

.ui-mock-product {
    width: calc(100% - 24px);
    aspect-ratio: 1;
    margin: 12px auto;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.ui-mock-title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 16px 6px;
    color: var(--title);
}

.ui-mock-price {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--accent);
    margin: 0 16px 16px;
}

.ui-mock-btn {
    margin: auto 16px 16px;
    height: 42px;
    border-radius: 12px;
    background: #eaded7;
    display: grid;
    place-items: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.ui-mock-btn.accent-btn {
    background: var(--accent);
    box-shadow: 0 6px 14px rgba(234, 142, 121, 0.3);
}

.ui-mock-input {
    height: 38px;
    border-radius: 8px;
    background: #fff;
    margin: 0 16px 12px;
    border: 1px solid #eaded7;
}

.mb-sm {
    margin-bottom: 16px;
    margin-top: 24px;
}

.chat-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 12px;
}

.ui-chat-ava-small {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-soft);
}

.ui-chat-msg {
    display: flex;
    gap: 8px;
    padding: 12px 14px;
}

.ui-chat-msg.right {
    flex-direction: row-reverse;
}

.ui-chat-ava {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #dce9d7;
    flex-shrink: 0;
}

.ui-chat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ui-chat-text {
    background: #fff;
    padding: 10px 14px;
    border-radius: 14px 14px 14px 4px;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.3;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.04);
}

.ui-chat-msg.right .ui-chat-text {
    border-radius: 14px 14px 4px 14px;
}

.ui-chat-text.accent {
    background: var(--brand-green);
    color: #fff;
}

.ui-chat-photo {
    width: 140px;
    height: 160px;
    border-radius: 12px;
    background-size: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.ui-success-scene {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    position: relative;
    background: #fbfdf9;
}

.ui-success-glow {
    position: absolute;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(103, 179, 70, 0.15), transparent 70%);
    filter: blur(10px);
    z-index: 1;
}

.ui-success-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--brand-green);
    display: grid;
    place-items: center;
    color: #fff;
    box-shadow: 0 10px 20px rgba(103, 179, 70, 0.25);
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
}

.ui-success-icon svg {
    width: 34px;
    height: 34px;
}

.ui-success-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--title);
    margin-bottom: 16px;
    position: relative;
    z-index: 2;
}

.journey-badge-float {
    position: absolute;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--title);
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    z-index: 10;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(234, 142, 121, 0.2);
}

.badge-pos-catalog {
    top: 25%;
    right: -35px;
}

.badge-pos-form {
    bottom: 30%;
    left: -45px;
}

.badge-pos-chat {
    top: 45%;
    right: -40px;
}

.badge-pos-done {
    bottom: 25%;
    right: -30px;
}

.journey-step-card:hover .journey-badge-float {
    transform: translateY(-8px) scale(1.03);
}

.journey-info {
    text-align: center;
    max-width: 250px;
}

.journey-num-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 800;
    color: var(--accent);
    background: rgba(234, 142, 121, 0.12);
    padding: 4px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
}

.journey-step-title {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--title);
    margin: 0;
}

.footer-scene {
    min-height: calc(100svh - var(--header-h) - 165px);
    display: grid;
    grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1.12fr);
    gap: 20px;
}

.footer-brand-card,
.footer-card {
    border-radius: var(--radius-xl);
    padding: 26px;
}

.footer-brand-card {
    display: grid;
    align-content: start;
    gap: 18px;
}

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

.footer-card {
    display: grid;
    align-content: start;
    gap: 12px;
}

.footer-card h4 {
    margin: 0;
    color: var(--title);
    font-size: 1.1rem;
}

.footer-card a {
    color: var(--muted);
}

.footer-card a:hover {
    color: var(--title);
}

.subscribe-form {
    display: grid;
    gap: 10px;
}

.subscribe-form input {
    min-height: 48px;
    padding: 0 16px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--title);
    background: rgba(255, 255, 255, 0.94);
}

.subscribe-form button {
    min-height: 48px;
    border: 0;
    border-radius: 16px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    align-items: center;
    color: var(--muted);
}

.payment-row span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.92);
    box-shadow: 0 10px 22px rgba(225, 196, 183, 0.12);
}

@media (max-width: 1180px) {
    .page-shell {
        height: auto;
        overflow: visible;
        scroll-snap-type: none;
    }

    .screen {
        min-height: auto;
    }

    .hero-screen,
    .section-head,
    .popular-showcase {
        grid-template-columns: 1fr;
    }

    .popular-showcase {
        min-height: auto;
    }

    .popular-feature-card .card__inner {
        min-height: 560px;
    }

    .popular-catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .occasion-products-head {
        align-items: start;
        flex-direction: column;
    }

    .occasion-grid {
        flex-wrap: wrap;
        min-height: auto;
    }

    .occasion-card {
        flex: 1 1 calc(25% - 9px);
        min-width: 180px;
        min-height: 186px;
    }

    .concept-adv-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journey-track {
        min-height: auto;
        padding-top: 20px;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
    }

    .badge-pos-catalog,
    .badge-pos-form,
    .badge-pos-chat,
    .badge-pos-done {
        right: -20px;
        left: auto;
        bottom: 20%;
        top: auto;
    }

    .pf-middle {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .premium-footer-glass {
        padding: 40px;
    }
}

@media (max-width: 860px) {
    :root {
        --edge: 28px;
        --header-h: 232px;
    }

    .page-shell>section {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        padding-left: var(--edge) !important;
        padding-right: var(--edge) !important;
    }

    .page-shell>.hero-screen {
        margin-top: var(--header-h) !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 500px !important;
    }

    .section-head h2,
    .order-center h2 {
        font-size: clamp(2.3rem, 11vw, 3.5rem);
    }

    .journey-track {
        grid-template-columns: 1fr;
    }

    .popular-feature-card .card__inner {
        min-height: 480px;
    }

    .popular-product-card .card__header {
        font-size: 1.22rem;
    }

    .occasion-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .occasion-card {
        flex-basis: calc(33.333% - 8px);
        min-width: 164px;
        min-height: 182px;
    }


}

@media (max-width: 640px) {
    :root {
        --edge: 18px;
        --header-h: 244px;
    }

    .button,
    .screen-pill,
    .subscribe-form button {
        width: 100%;
    }

    .hero-banner {
        min-height: calc(92svh - var(--header-h));
        background-position: 72% center;
    }

    .catalog-screen,
    .concept-adv-screen,
    .custom-journey-screen,
    .delivery-screen {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .hero-actions {
        flex-direction: column;
    }

    .concept-adv-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .concept-adv-pill {
        flex-direction: row;
        border-radius: 999px;
        padding: 12px;
        text-align: left;
    }

    .concept-pill-visual {
        width: 100px;
        flex: 0 0 100px;
        padding: 6px;
    }

    .concept-pill-badge {
        width: 36px;
        height: 36px;
        bottom: 2px;
        right: 2px;
    }

    .concept-pill-badge svg {
        width: 16px;
        height: 16px;
    }

    .concept-pill-content {
        padding: 0 16px;
        align-items: flex-start;
    }

    .concept-pill-glow {
        top: 50%;
        left: 20%;
        width: 120px;
    }

    .occasion-grid {
        gap: 10px;
    }

    .occasion-card {
        flex-basis: calc(50% - 5px);
        min-width: 0;
        min-height: 176px;
    }

    .occasion-emoji {
        font-size: 4.2rem;
    }

    .occasion-stage::after {
        width: 104px;
        height: 104px;
    }

    .product-card-rail .card {
        border-radius: 22px;
    }

    .product-card-rail .card__inner {
        border-radius: 22px;
    }

    .popular-product-card .card__inner {
        min-height: 224px;
    }

    .popular-feature-card .card__inner {
        min-height: 400px;
    }

    .product-card-rail .card__body {
        padding: 12px 14px 14px;
    }

    .popular-catalog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .occasion-products-head {
        gap: 10px;
    }

    .occasion-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .popular-feature-card .card__header {
        font-size: clamp(1.7rem, 7vw, 2.3rem);
    }

    .popular-product-card .card__header {
        font-size: 1.12rem;
    }

    .popular-price-current {
        font-size: 0.9rem;
    }

    .product-card-rail .button {
        width: auto;
        font-size: 0.86rem;
    }

    .popular-buy {
        width: 2.6rem;
        height: 2.6rem;
    }

    .order-stage {
        grid-template-columns: 1fr;
    }

}

@media (max-width: 480px) {
    :root {
        --edge: 14px;
    }

    .occasion-card {
        flex-basis: 100%;
        min-height: 164px;
    }

    .occasion-caption {
        padding: 11px 13px 13px;
    }


    .occasion-card::after {
        background-size: 56% auto;
        background-position: right 6px top 12px;
    }

    .popular-feature-card .card__inner {
        min-height: 320px;
    }

}

/* Header + hero override */

:root {
    --header-h: 110px;
    --header-bg: rgba(241, 236, 232, 0.82);
    --header-bg-strong: rgba(248, 244, 240, 0.92);
    --header-panel: rgba(250, 246, 242, 0.44);
    --header-panel-strong: rgba(255, 251, 248, 0.56);
    --header-panel-deep: rgba(234, 227, 222, 0.52);
    --header-line: rgba(214, 202, 194, 0.88);
    --header-line-soft: rgba(228, 218, 211, 0.7);
    --header-ink: #2c2220;
    --header-muted: #7c6e67;
    --header-accent: #de96b3;
    --header-accent-deep: #c87a9d;
    --header-green: var(--brand-green);
    --header-search: rgba(227, 234, 237, 0.72);
    --header-shadow: 0 18px 34px rgba(91, 72, 64, 0.08);
}

body {
    background: #f6f2ee;
}

.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: block;
    padding: 0;
    background:
        linear-gradient(180deg, var(--header-bg-strong) 0%, var(--header-bg) 100%);
    border-bottom: 1px solid var(--header-line);
    box-shadow: var(--header-shadow);
    backdrop-filter: blur(20px) saturate(1.08);
}

.header-shell {
    width: min(1640px, calc(100% - 48px));
    min-height: var(--header-h);
    margin: 0 auto;
    padding: 12px 0;
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
}

.header-logo {
    width: fit-content;
    display: flex;
    justify-content: flex-start;
    align-self: center;
    line-height: 0;
}

.header-logo-lockup {
    display: none;
}

.header-logo-composite {
    width: 136px;
    max-width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(71, 121, 62, 0.12));
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.header-logo:hover .header-logo-composite {
    transform: translateY(-1px);
}

.header-logo-image-box {
    display: none;
}

.header-logo-image-box img {
    display: none;
}

.header-logo-text-image {
    display: none;
}

.header-center {
    min-width: 0;
    display: block;
}

.header-mainline {
    display: flex;
    align-items: center;
    gap: 18px;
    min-width: 0;
}

.header-links {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
    min-width: 0;
    order: 1;
}

.header-links .header-nav-item {
    color: var(--header-ink);
    font-family: "Cormorant Garamond", serif;
    font-size: 0.98rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0.9;
    min-height: 42px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(248, 237, 241, 0.82) 0%, rgba(240, 230, 234, 0.52) 100%);
    box-shadow:
        10px 10px 20px rgba(182, 168, 160, 0.18),
        -8px -8px 16px rgba(255, 251, 248, 0.18),
        inset 1px 1px 0 rgba(255, 255, 255, 0.2),
        inset -1px -1px 0 rgba(211, 199, 192, 0.12);
}

.header-inline-phone {
    order: 2;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    width: auto;
    min-width: 238px;
    max-width: 100%;
    margin-right: 14px;
    padding: 10px 32px 10px 10px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 24px;
    box-sizing: border-box;
    background: linear-gradient(180deg, rgba(255, 251, 248, 0.54) 0%, rgba(240, 233, 228, 0.38) 100%);
    box-shadow:
        12px 12px 24px rgba(182, 168, 160, 0.18),
        -10px -10px 20px rgba(255, 251, 248, 0.18),
        inset 1px 1px 0 rgba(255, 255, 255, 0.16),
        inset -1px -1px 0 rgba(211, 199, 192, 0.18);
}

.header-inline-phone .header-contact-icon {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.88) 0%, rgba(242, 235, 230, 0.82) 100%);
    box-shadow:
        6px 6px 12px rgba(182, 168, 160, 0.18),
        -4px -4px 10px rgba(255, 251, 248, 0.22);
}

.header-inline-phone .header-contact-copy strong {
    display: block;
    font-size: 0.94rem;
    line-height: 1;
    letter-spacing: 0.015em;
    white-space: nowrap;
}

.header-mainline>.header-inline-phone {
    min-width: 0;
    margin-right: 24px;
    padding-right: 24px;
}

.search-shell {
    height: 54px;
    padding: 0 16px 0 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(180deg, rgba(255, 251, 248, 0.54) 0%, rgba(240, 233, 228, 0.38) 100%);
    box-shadow:
        12px 12px 24px rgba(182, 168, 160, 0.18),
        -10px -10px 20px rgba(255, 251, 248, 0.18),
        inset 1px 1px 0 rgba(255, 255, 255, 0.16),
        inset -1px -1px 0 rgba(211, 199, 192, 0.18);
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.search-shell:focus-within {
    border-color: rgba(255, 255, 255, 0.44);
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.78) 0%, rgba(244, 237, 232, 0.52) 100%);
    box-shadow:
        14px 14px 26px rgba(182, 168, 160, 0.2),
        -10px -10px 20px rgba(255, 251, 248, 0.22),
        inset 1px 1px 0 rgba(255, 255, 255, 0.22),
        inset -1px -1px 0 rgba(211, 199, 192, 0.2);
}

.search-shell input {
    flex: 1 1 auto;
    min-width: 0;
    border: 0;
    outline: none;
    color: #372d2a;
    background: transparent;
    font-size: 0.98rem;
    font-weight: 500;
}

.search-shell input::placeholder {
    color: #8f8784;
}

.search-tools {
    display: inline-flex;
    align-items: center;
}

.search-tool-primary {
    width: 28px;
    height: 28px;
    color: #7d7370;
}

.search-tool-primary svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-search-actions {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.header-inline-search {
    order: 3;
    flex: 1 1 auto;
    min-width: 180px;
}

.header-inline-actions {
    order: 4;
    flex: 0 0 auto;
}

.header-action-divider {
    order: 5;
    width: 1px;
    height: 42px;
    flex: 0 0 auto;
    background: linear-gradient(180deg, rgba(55, 94, 43, 0.05) 0%, rgba(55, 94, 43, 0.26) 50%, rgba(55, 94, 43, 0.05) 100%);
}

.header-inline-social {
    order: 6;
    flex: 0 0 auto;
}

.header-icon-link {
    position: relative;
    width: 54px;
    height: 54px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    background: linear-gradient(180deg, rgba(255, 251, 248, 0.54) 0%, rgba(240, 233, 228, 0.38) 100%);
    box-shadow:
        12px 12px 24px rgba(182, 168, 160, 0.18),
        -10px -10px 20px rgba(255, 251, 248, 0.18),
        inset 1px 1px 0 rgba(255, 255, 255, 0.16),
        inset -1px -1px 0 rgba(211, 199, 192, 0.18);
    transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, box-shadow 0.22s ease;
}

.header-icon-link svg {
    width: 22px;
    height: 22px;
}

.header-social-icon {
    width: 42px;
    height: 42px;
    display: block;
    object-fit: contain;
    filter:
        drop-shadow(10px 10px 20px rgba(182, 168, 160, 0.2)) drop-shadow(-8px -8px 16px rgba(255, 251, 248, 0.2));
    transition: transform 0.22s ease, filter 0.22s ease;
}

.header-icon-link svg {
    stroke: currentColor;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-icon-link:hover {
    transform: translateY(-1px);
}

.header-icon-link:hover {
    border-color: rgba(255, 255, 255, 0.44);
    background: linear-gradient(180deg, rgba(255, 253, 250, 0.78) 0%, rgba(244, 237, 232, 0.52) 100%);
    box-shadow:
        14px 14px 26px rgba(182, 168, 160, 0.2),
        -10px -10px 20px rgba(255, 251, 248, 0.22),
        inset 1px 1px 0 rgba(255, 255, 255, 0.22),
        inset -1px -1px 0 rgba(211, 199, 192, 0.2);
}

.header-social-icon:hover {
    transform: translateY(-1px);
    filter:
        drop-shadow(12px 12px 22px rgba(182, 168, 160, 0.22)) drop-shadow(-8px -8px 16px rgba(255, 251, 248, 0.22));
}

.header-contact-link {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
    color: #1d1716;
    padding: 2px 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.header-contact-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 999px;
    color: #2f2624;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 243, 239, 0.92) 100%);
    border: 1px solid var(--header-line-soft);
    box-shadow: 0 10px 16px rgba(124, 100, 90, 0.07);
}

.header-contact-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.header-contact-copy {
    min-width: 0;
    display: grid;
    gap: 6px;
}

.header-contact-copy strong {
    color: #171110;
    line-height: 1.06;
}

.header-contact-copy span {
    color: var(--header-green);
    display: block;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.15;
    margin-top: 2px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.header-contact-link:hover {
    color: #16100f;
    transform: translateX(1px);
}

.page-shell>.hero-screen {
    width: 100% !important;
    height: calc(100vh - var(--header-h)) !important;
    margin-top: var(--header-h) !important;
    padding: 0 !important;
    overflow: hidden;
    background: #f6f1ed;
    display: block;
}

.hero-banner {
    position: relative;
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 16% 30%, rgba(244, 214, 225, 0.18) 0%, rgba(244, 214, 225, 0) 26%),
        linear-gradient(92deg, rgba(18, 14, 13, 0.74) 0%, rgba(26, 20, 18, 0.58) 22%, rgba(26, 20, 18, 0.24) 44%, rgba(26, 20, 18, 0.08) 66%, rgba(26, 20, 18, 0.02) 100%),
        linear-gradient(180deg, rgba(17, 14, 13, 0.04) 0%, rgba(17, 14, 13, 0.2) 100%);
}

.hero-banner::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 190px;
    background: linear-gradient(180deg, rgba(10, 8, 8, 0) 0%, rgba(10, 8, 8, 0.26) 100%);
    pointer-events: none;
}

.hero-copy-clean {
    position: relative;
    z-index: 2;
    box-sizing: border-box;
    width: min(var(--content-max), calc(100% - (var(--edge) * 2)));
    height: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: clamp(40px, 6vh, 68px) 0;
    display: grid;
    grid-template-columns: minmax(0, clamp(460px, 34vw, 620px)) 1fr;
    align-items: center;
    gap: 0;
}

.hero-surface {
    width: min(100%, clamp(460px, 34vw, 620px));
    min-height: clamp(320px, 34svh, 430px);
    padding: clamp(28px, 3.6vw, 42px) clamp(28px, 3.8vw, 42px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(244, 233, 230, 0.1) 100%);
    box-shadow:
        0 26px 54px rgba(14, 10, 9, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-overline {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-bottom: 18px;
    padding: 9px 16px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.09);
    color: rgba(255, 246, 247, 0.92);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero-copy-clean h1 {
    margin: 0;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: clamp(2.35rem, 3.9vw, 3.65rem);
    font-weight: 600;
    line-height: 1.03;
    letter-spacing: 0.055em;
    text-transform: uppercase;
    text-shadow: 0 6px 12px rgba(13, 9, 8, 0.1);
}

.hero-copy-clean h1 span {
    display: block;
}

.hero-copy-clean p {
    max-width: 480px;
    margin: 22px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.04rem, 1.08vw, 1.14rem);
    line-height: 1.72;
}

.hero-copy-clean .hero-actions {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 14px 18px;
}

.cartBtn {
    width: 155px;
    height: 50px;
    border: none;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: white;
    font-weight: 500;
    position: relative;
    background-color: rgba(29, 29, 29, 0.28);
    box-shadow: 0 20px 30px -7px rgba(27, 27, 27, 0.219);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    box-sizing: border-box;
}

.cart {
    z-index: 2;
}

.cartBtn:hover {
    color: white;
}

.cartBtn:active {
    transform: scale(0.96);
}

.product {
    position: absolute;
    width: 12px;
    border-radius: 3px;
    content: "";
    left: 23px;
    bottom: 23px;
    opacity: 0;
    z-index: 1;
    fill: rgb(211, 211, 211);
}

.cartBtn:hover .product {
    animation: slide-in-top 1.2s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-top {
    0% {
        transform: translateY(-30px);
        opacity: 1;
    }

    100% {
        transform: translateY(0) rotate(-90deg);
        opacity: 1;
    }
}

.cartBtn:hover .cart {
    animation: slide-in-left 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

@keyframes slide-in-left {
    0% {
        transform: translateX(-10px);
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@media (max-width: 1420px) {
    .header-shell {
        width: calc(100% - 40px);
        grid-template-columns: 140px minmax(0, 1fr);
        gap: 22px;
    }

    .header-links {
        gap: 14px 18px;
    }

    .header-links .header-nav-item {
        padding: 0 14px;
        font-size: 0.9rem;
    }

    .header-contact-phone .header-contact-copy strong {
        font-size: 1.02rem;
    }

    .header-inline-search {
        min-width: 220px;
    }

    .hero-copy-clean h1 {
        font-size: clamp(2.1rem, 3.35vw, 3.05rem);
    }
}

@media (max-width: 1080px) {
    :root {
        --header-h: 196px;
    }

    .header-shell {
        width: calc(100% - 28px);
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .header-logo {
        justify-self: center;
    }

    .header-mainline {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px 16px;
    }

    .header-links {
        order: 1;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .header-inline-phone {
        order: 2;
        width: auto;
        min-width: 238px;
        max-width: 100%;
    }

    .header-inline-search {
        order: 3;
        flex: 1 1 420px;
        max-width: 560px;
    }

    .header-inline-actions {
        order: 4;
    }

    .header-action-divider {
        order: 5;
    }

    .header-inline-social {
        order: 6;
    }

    .hero-copy-clean {
        width: calc(100% - 36px);
        min-height: calc(100svh - var(--header-h));
        margin: 0 auto;
        padding: 28px 0 32px;
        grid-template-columns: 1fr;
        gap: 0;
    }

    .hero-copy-clean h1 {
        font-size: clamp(2rem, 5.2vw, 2.95rem);
        letter-spacing: 0.045em;
    }

    .hero-surface {
        width: min(100%, 640px);
        min-height: auto;
        padding: 28px 28px 26px;
        border: 1px solid rgba(255, 255, 255, 0.18);
        border-radius: 26px;
        background: linear-gradient(180deg, rgba(31, 24, 22, 0.34) 0%, rgba(31, 24, 22, 0.22) 100%);
        box-shadow: 0 24px 48px rgba(14, 10, 9, 0.16);
        backdrop-filter: blur(10px);
    }

    .hero-overline {
        margin-bottom: 14px;
        font-size: 0.74rem;
        letter-spacing: 0.14em;
    }
}

@media (max-width: 720px) {
    :root {
        --header-h: 228px;
    }

    .header-shell {
        width: calc(100% - 20px);
        padding: 16px 0 18px;
        gap: 14px;
    }

    .header-links {
        justify-content: center;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

    .header-links .header-nav-item {
        font-size: 0.8rem;
        letter-spacing: 0.03em;
        text-align: center;
        white-space: normal;
        min-height: 36px;
        padding: 0 12px;
    }

    .header-inline-phone {
        width: auto;
        min-height: auto;
        min-width: 0;
        max-width: 100%;
        padding: 10px 24px 10px 10px;
    }

    .header-inline-search {
        order: 3;
        flex-basis: 100%;
        min-width: 0;
    }

    .header-inline-actions {
        order: 4;
        gap: 8px;
    }

    .hero-banner {
        min-height: auto;
        align-items: center;
        background-position: 72% center;
    }

    .hero-copy-clean {
        width: calc(100% - 22px);
        min-height: auto;
        padding: 22px 0;
    }

    .hero-copy-clean h1 {
        font-size: clamp(1.9rem, 8.1vw, 2.45rem);
        letter-spacing: 0.025em;
    }

    .hero-copy-clean p {
        max-width: none;
        font-size: 0.95rem;
        line-height: 1.58;
    }

    .hero-surface {
        padding: 22px 18px 20px;
        border-radius: 22px;
    }

    .hero-overline {
        margin-bottom: 12px;
        padding: 8px 14px;
        font-size: 0.7rem;
    }

    .hero-copy-clean .hero-actions {
        gap: 12px;
    }

    .cartBtn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    :root {
        --header-h: 242px;
    }

    .header-logo-composite {
        width: 117px;
    }

    .header-inline-phone {
        width: 100%;
        justify-content: center;
        min-width: 0;
        max-width: none;
        padding: 10px 28px 10px 10px;
    }

    .header-inline-search {
        order: 3;
        flex-basis: 100%;
    }

    .search-shell {
        height: 46px;
        padding: 0 14px 0 16px;
    }

    .header-inline-actions {
        order: 4;
    }

    .header-action-divider {
        height: 24px;
    }

    .header-icon-link {
        width: 40px;
        height: 40px;
    }

    .header-social-icon {
        width: 36px;
        height: 36px;
    }

    .header-links {
        gap: 8px;
    }

    .header-links .header-nav-item {
        flex: 0 1 auto;
        font-size: 0.8rem;
        min-height: 34px;
        padding: 0 10px;
    }

    .header-contact-link {
        gap: 10px;
    }

    .header-contact-icon {
        width: 40px;
        height: 40px;
    }

    .header-contact-phone .header-contact-copy strong {
        font-size: 1rem;
    }

    .hero-screen {
        padding-top: var(--header-h);
    }

    .hero-copy-clean {
        width: calc(100% - 16px);
        padding: 18px 0;
    }

    .hero-surface {
        padding: 18px 14px 16px;
        border-radius: 20px;
    }

    .hero-overline {
        margin-bottom: 10px;
        padding: 7px 12px;
        font-size: 0.66rem;
        letter-spacing: 0.12em;
    }

    .hero-copy-clean h1 {
        font-size: clamp(1.72rem, 8vw, 2.15rem);
        letter-spacing: 0.03em;
    }

    .hero-copy-clean p {
        margin-top: 16px;
        font-size: 0.9rem;
        line-height: 1.54;
    }

    .hero-copy-clean .hero-actions {
        margin-top: 20px;
    }
}

/* LIGHT FULL WIDTH FOOTER */
.light-fw-footer {
    position: relative;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
    padding: 30px 0 24px;
    overflow: hidden;
    background:
        radial-gradient(circle at 12% 18%, rgba(255, 228, 216, 0.82) 0%, rgba(255, 228, 216, 0) 28%),
        radial-gradient(circle at 88% 76%, rgba(221, 240, 224, 0.76) 0%, rgba(221, 240, 224, 0) 26%),
        linear-gradient(180deg, #fffaf7 0%, #fff4ee 100%);
    border-top: 1px solid rgba(229, 200, 187, 0.72);
}

.light-fw-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0));
    pointer-events: none;
}

.l-footer-inner {
    position: relative;
    z-index: 1;
    width: min(1480px, calc(100% - (var(--edge) * 2)));
    margin: 0 auto;
}

.l-footer-main {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1.55fr);
    gap: 36px;
    align-items: start;
}

.l-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.l-brand-desc {
    max-width: 24rem;
    margin: 0;
    color: #66544f;
    font-size: 0.96rem;
    line-height: 1.65;
}

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

.l-footer-col {
    min-width: 0;
}

.l-footer-title {
    margin: 0;
    color: var(--title);
    font-size: 1rem;
    font-weight: 800;
}

.l-footer-list,
.l-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
}

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

.l-footer-list span,
.l-footer-contact span {
    color: #6e5b56;
    font-size: 0.93rem;
    line-height: 1.55;
}

.l-footer-link {
    width: fit-content;
    color: #342522;
    font-weight: 700;
    text-decoration: none;
}

.l-footer-link-muted {
    color: var(--accent);
}

.l-footer-legal span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(236, 214, 205, 0.9);
    color: #735f59;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.l-footer-payment {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.l-footer-payment img {
    display: block;
    width: auto;
    height: 15px;
    max-width: 56px;
    object-fit: contain;
}

.l-footer-payment--mir img {
    max-width: 56px;
}

.l-footer-payment--sbp img {
    max-width: 38px;
}

.l-footer-payment--sberpay img {
    max-width: 31px;
}

.l-footer-payment--tpay img {
    max-width: 36px;
}

.l-footer-bottom {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 12px 18px;
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid rgba(231, 204, 193, 0.78);
}

.l-footer-copy {
    margin: 0;
    color: #6c5954;
    font-size: 0.9rem;
    font-weight: 700;
}

.l-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.l-footer-payments {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: auto;
}

.light-fw-footer a:focus-visible {
    outline: 3px solid rgba(103, 179, 70, 0.35);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .l-footer-main {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .light-fw-footer {
        padding: 28px 0 24px;
    }

    .l-footer-inner {
        width: calc(100% - (var(--edge) * 2));
    }

    .l-footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .l-footer-bottom {
        align-items: flex-start;
    }

    .l-footer-payments {
        margin-left: 0;
    }
}

@media (max-width: 560px) {
    .l-footer-columns {
        grid-template-columns: 1fr;
    }
}
