/*
 * Zovelo global and homepage styles.
 *
 * Table of contents
 * 1. Design tokens and reset
 * 2. Header and navigation
 * 3. Homepage sections
 * 4. Product cards and drawers
 * 5. Footer
 * 6. Responsive adjustments
 */

:root {
    --ink: #151714;
    --muted: #6e7169;
    --paper: #f6f4ee;
    --card: #fff;
    --line: rgba(21,23,20,.11);
    --lime: #d9ff57;
    --sage: #dfe8d6;
    --peach: #ffd9c4;
    --blue: #d9e7ff;
    --radius: 28px;
    --shadow: 0 28px 80px rgba(26,30,22,.12);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: Inter,Arial,sans-serif;
    overflow-x: hidden;
}

body.lock {
    overflow: hidden;
}

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

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

button,input {
    font: inherit;
}

button {
    cursor: pointer;
}

.container {
    width: min(var(--zovelo-container,1280px),calc(100% - 40px));
    margin: auto;
}

.section {
    padding: 106px 0;
}

.kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.kicker:before {
    content: "";
    width: 24px;
    height: 2px;
    background: var(--ink);
}

.section-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 34px;
}

.section-head h2 {
    font: 800 clamp(2.4rem,5vw,5rem)/.94 "Manrope",sans-serif;
    letter-spacing: -.065em;
    margin: 7px 0 0;
    max-width: 760px;
}

.section-head p {
    max-width: 520px;
    color: var(--muted);
    margin: 0;
}

.btn {
    min-height: 52px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    transition: .3s;
}

.btn:hover {
    transform: translateY(-3px);
}

.btn-dark {
    background: var(--ink);
    color: #fff;
}

.btn-lime {
    background: var(--lime);
    color: var(--ink);
}

.btn-ghost {
    border-color: var(--line);
    background: rgba(255,255,255,.55);
}

.icon-btn {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 1px solid var(--line);
    background: #fff;
    display: grid;
    place-items: center;
    position: relative;
    transition: .3s;
}

.icon-btn:hover {
    transform: translateY(-3px);
    background: var(--lime);
}

.topbar {
    background: var(--ink);
    color: #fff;
    font-size: .78rem;
    overflow: hidden;
}

.topbar-track {
    display: flex;
    width: max-content;
    will-change: transform;
    animation: zoveloTopbarLoop var(--zovelo-topbar-speed,34s) linear infinite;
}

.topbar-group {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 100vw;
}

.topbar-item {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
    padding: 10px 34px;
    white-space: nowrap;
}

.topbar-item>a,.topbar-item>span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.topbar-item strong {
    color: var(--lime);
}

.topbar:hover .topbar-track,.topbar:focus-within .topbar-track {
    animation-play-state: paused;
}

@keyframes zoveloTopbarLoop {
    to {
        transform: translate3d(-50%,0,0);
    }
}

@media (prefers-reduced-motion:reduce) {
    .topbar {
        overflow-x: auto;
    }

    .topbar-track {
        animation: none;
        transform: none;
    }

    .topbar-group[aria-hidden=true] {
        display: none;
    }
}

.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(246,244,238,.86);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid transparent;
    transition: .3s;
}

.header.scrolled {
    border-color: var(--line);
    box-shadow: 0 14px 40px rgba(21,23,20,.06);
}

.header-main {
    height: 86px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 36px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font: 900 1.35rem "Manrope",sans-serif;
    letter-spacing: -.04em;
}

.brand-mark {
    width: 40px;
    height: 40px;
    border-radius: 14px 14px 4px 14px;
    background: var(--ink);
    color: var(--lime);
    display: grid;
    place-items: center;
}

.nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 14px 13px;
    font-weight: 700;
    font-size: .92rem;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 999px;
}

.nav-link:hover {
    background: #fff;
}

.mega {
    position: absolute;
    left: 50%;
    top: calc(100% + 18px);
    transform: translate(-50%,14px);
    width: 850px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 28px;
    padding: 24px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 24px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: .28s;
}

.nav-item:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%,0);
}

.mega h4 {
    margin: 0 0 12px;
    font-family: Manrope;
}

.mega a {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    color: var(--muted);
}

.mega-promo {
    border-radius: 22px;
    overflow: hidden;
    min-height: 200px;
    position: relative;
}

.mega-promo img {
    height: 100%;
    object-fit: cover;
}

.mega-promo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 20%,rgba(0,0,0,.72));
}

.mega-promo span {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 16px;
    color: #fff;
    font-weight: 800;
}

.header-actions {
    display: flex;
    gap: 8px;
}

.header-actions .count,.market-action-icon .count {
    position: absolute;
    right: -4px;
    top: -5px;
    min-width: 19px;
    height: 19px;
    padding: 0 4px;
    border-radius: 20px;
    background: var(--lime);
    color: var(--ink);
    border: 2px solid var(--paper);
    font-size: .66rem;
    font-weight: 900;
    display: grid;
    place-items: center;
}

.menu-btn {
    display: none;
}

.hero {
    padding: 22px 0 22px;
}

.hero-shell {
    position: relative;
    min-height: 720px;
    border-radius: 42px 42px 120px 42px;
    overflow: hidden;
    background: #222;
    box-shadow: var(--shadow);
}

.hero-swiper,.hero-swiper .swiper-wrapper,.hero-slide {
    height: 720px;
}

.hero-slide {
    position: relative;
    isolation: isolate;
}

.hero-slide img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-slide:after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg,rgba(9,12,9,.88) 0%,rgba(9,12,9,.62) 38%,rgba(9,12,9,.18) 66%,rgba(9,12,9,.35) 100%),radial-gradient(circle at 72% 25%,rgba(217,255,87,.22),transparent 26%);
}

.hero-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #fff;
    padding: 70px max(38px,7vw);
    max-width: 820px;
}

.hero-content .kicker:before {
    background: var(--lime);
}

.hero-content h1,.hero-content .hero-title {
    font: 800 clamp(4.1rem,8vw,8.4rem)/.84 "Manrope",sans-serif;
    letter-spacing: -.078em;
    margin: 18px 0 24px;
}

.hero-content h1 em,.hero-content .hero-title em {
    font-style: normal;
    color: var(--lime);
}

.hero-content p {
    font-size: 1.12rem;
    max-width: 590px;
    color: rgba(255,255,255,.76);
    margin: 0 0 30px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-float {
    position: absolute;
    right: 4%;
    bottom: 5%;
    z-index: 4;
    width: 280px;
    padding: 18px;
    border-radius: 28px 28px 8px 28px;
    background: rgba(255,255,255,.88);
    backdrop-filter: blur(16px);
    box-shadow: 0 22px 50px rgba(0,0,0,.2);
    animation: float 5s ease-in-out infinite;
}

.hero-float-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
}

.hero-float strong {
    font-family: Manrope;
}

.hero-float small {
    color: var(--muted);
}

.hero-float-bar {
    display: block;
    width: 100%;
    height: 7px;
    border: 0;
    border-radius: 10px;
    background: #e7e8e3;
    overflow: hidden;
    appearance: none;
    -webkit-appearance: none;
}

.hero-float-bar::-webkit-progress-bar {
    background: #e7e8e3;
    border-radius: 10px;
}

.hero-float-bar::-webkit-progress-value {
    background: var(--lime);
    border-radius: 10px;
    animation: pulsebar 2.5s ease-in-out infinite;
}

.hero-float-bar::-moz-progress-bar {
    background: var(--lime);
    border-radius: 10px;
    animation: pulsebar 2.5s ease-in-out infinite;
}

.hero-orbit {
    position: absolute;
    right: 21%;
    top: 9%;
    z-index: 3;
    width: 170px;
    aspect-ratio: 1;
    border: 1px dashed rgba(255,255,255,.55);
    border-radius: 50%;
    animation: spin 16s linear infinite;
}

.hero-orbit:before {
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    width: 14px;
    aspect-ratio: 1;
    background: var(--lime);
    border-radius: 50%;
    box-shadow: 0 0 0 9px rgba(217,255,87,.22);
}

.hero-nav {
    position: absolute;
    left: max(38px,7vw);
    bottom: 34px;
    z-index: 4;
    display: flex;
    gap: 8px;
}

.hero-nav button {
    background: rgba(255,255,255,.16);
    color: #fff;
    border-color: rgba(255,255,255,.32);
    backdrop-filter: blur(10px);
}

@keyframes float {
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulsebar {
    50% {
        filter: brightness(.92);
        opacity: .82;
    }
}

.perks {
    padding: 26px 0 34px;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 16px;
}

.perk {
    position: relative;
    min-height: 210px;
    border-radius: 34px;
    padding: 28px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid rgba(21,23,20,.08);
    transition: .4s;
    isolation: isolate;
}

.perk:nth-child(1) {
    background: var(--lime);
}

.perk:nth-child(2) {
    background: var(--sage);
}

.perk:nth-child(3) {
    background: var(--peach);
}

.perk:nth-child(4) {
    background: var(--blue);
}

.perk:after {
    content: "";
    position: absolute;
    width: 160px;
    aspect-ratio: 1;
    border-radius: 50%;
    right: -70px;
    top: -70px;
    background: rgba(255,255,255,.48);
    z-index: -1;
    transition: .5s;
}

.perk:hover {
    transform: translateY(-10px) rotate(-1deg);
    box-shadow: var(--shadow);
}

.perk:hover:after {
    transform: scale(1.6);
}

.perk-icon {
    width: 58px;
    height: 58px;
    border-radius: 20px 20px 6px 20px;
    background: rgba(255,255,255,.65);
    display: grid;
    place-items: center;
    font-size: 1.25rem;
    transition: .4s;
}

.perk:hover .perk-icon {
    transform: rotate(-8deg) scale(1.08);
}

.perk h3 {
    margin: 20px 0 5px;
    font: 800 1.18rem "Manrope",sans-serif;
}

.perk p {
    margin: 0;
    color: rgba(21,23,20,.68);
    font-size: .9rem;
}

.perk-copy {
    max-width: 100%;
}

.perk-title-link {
    color: inherit;
    text-decoration: none;
    text-underline-offset: .18em;
    text-decoration-thickness: 1px;
}

.perk-title-link:hover,
.perk-title-link:focus-visible {
    text-decoration: underline;
}

.perk-title-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 4px;
    border-radius: 2px;
}

.categories-grid {
    display: grid;
    grid-template-columns: 1.25fr .75fr .75fr;
    grid-template-rows: 300px 300px;
    gap: 18px;
}

.cat-card {
    position: relative;
    border-radius: 34px;
    overflow: hidden;
    isolation: isolate;
}

.cat-card:first-child {
    grid-row: 1/3;
}

.cat-card:nth-child(4) {
    grid-column: 2/4;
}

.cat-card img {
    height: 100%;
    object-fit: cover;
    transition: .7s;
}

.cat-card:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 38%,rgba(10,12,10,.78));
    z-index: 1;
}

.cat-card:hover img {
    transform: scale(1.07);
}

.cat-info {
    position: absolute;
    z-index: 2;
    left: 25px;
    right: 25px;
    bottom: 22px;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: end;
}

.cat-info h3 {
    font: 800 clamp(1.5rem,2.4vw,2.5rem) "Manrope",sans-serif;
    margin: 0;
}

.cat-info span {
    color: rgba(255,255,255,.68);
    font-size: .84rem;
}

.cat-go {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.14);
    border: 1px solid rgba(255,255,255,.24);
    backdrop-filter: blur(10px);
    transition: .35s;
}

.cat-card:hover .cat-go {
    background: var(--lime);
    color: var(--ink);
    transform: rotate(-45deg);
}

.tabs {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.tab-btn {
    padding: 11px 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255,255,255,.55);
    font-weight: 800;
}

.tab-btn.active {
    background: var(--ink);
    color: #fff;
}

.products-swiper {
    overflow: visible;
}

.product-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px 30px 12px 30px;
    overflow: hidden;
    transition: .4s;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow);
}

.product-media {
    position: relative;
    aspect-ratio: 1/1.05;
    overflow: hidden;
    background: #f1f2ed;
}

.product-media img {
    height: 100%;
    object-fit: cover;
    transition: .65s;
}

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

.product-badge {
    position: absolute;
    left: 15px;
    top: 15px;
    z-index: 2;
    background: var(--lime);
    padding: 7px 10px;
    border-radius: 999px;
    font-size: .7rem;
    font-weight: 900;
}

.wish {
    position: absolute;
    right: 14px;
    top: 14px;
    z-index: 2;
}

.quick-add {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    transform: translateY(130%);
    opacity: 0;
    transition: .35s;
}

.product-card:hover .quick-add {
    transform: none;
    opacity: 1;
}

.product-info {
    padding: 18px;
}

.product-info small {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.product-info h3 {
    font: 800 1.02rem/1.3 "Manrope",sans-serif;
    margin: 7px 0 12px;
}

.product-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 900;
}

.stars {
    color: #d89a16;
    font-size: .78rem;
}

.promo-wrap {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 18px;
}

.promo-main {
    position: relative;
    min-height: 600px;
    border-radius: 46px 46px 130px 46px;
    overflow: hidden;
    color: #fff;
    isolation: isolate;
}

.promo-main img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.promo-main:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,rgba(10,12,10,.82),rgba(10,12,10,.2)),linear-gradient(0deg,rgba(10,12,10,.55),transparent 55%);
    z-index: -1;
}

.promo-copy {
    padding: 62px;
    max-width: 600px;
}

.promo-copy h2 {
    font: 800 clamp(3rem,5vw,5.7rem)/.9 "Manrope",sans-serif;
    letter-spacing: -.06em;
    margin: 14px 0 22px;
}

.promo-copy p {
    color: rgba(255,255,255,.72);
    max-width: 480px;
}

.promo-side {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 18px;
}

.promo-card {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2,minmax(0,1fr));
    align-items: stretch;
    min-height: 285px;
    padding: 0;
    overflow: hidden;
    border-radius: 34px;
    isolation: isolate;
    transition: transform .35s ease,box-shadow .35s ease;
}

.promo-card:first-child {
    background: var(--peach);
}

.promo-card:last-child {
    background: var(--blue);
}

.promo-card-copy {
    position: relative;
    z-index: 2;
    display: flex;
    min-width: 0;
    flex-direction: column;
    justify-content: center;
    padding: 32px 34px;
    font-family: "Inter",sans-serif;
}


.promo-card-media {
    position: relative;
    min-width: 0;
    margin: 0;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: rgba(255,255,255,.46);
}

.promo-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .5s cubic-bezier(.2,.75,.25,1);
}

.promo-card:first-child img {
    object-position: center 62%;
}

.promo-card:last-child img {
    object-fit: cover;
    object-position: center;
    background: transparent;
}

.promo-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(17,19,16,.12);
}

.promo-card:hover img {
    transform: scale(1.035);
}

.promo-card h3 {
    max-width: 12ch;
    font-family: "Manrope",sans-serif;
    font-size: 2rem;
    font-weight: 800;
    line-height: .95;
    letter-spacing: -.04em;
    margin: 12px 0;
}

.promo-card p {
    max-width: 30ch;
    margin: 0;
    color: var(--muted);
}

.story {
    position: relative;
    background: var(--ink);
    color: #fff;
    border-radius: 60px 60px 0 0;
    overflow: hidden;
}

.story:before {
    content: "";
    position: absolute;
    inset: auto -10% -45% auto;
    width: 520px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle,var(--lime),transparent 68%);
    opacity: .18;
    filter: blur(4px);
}

.story-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 70px;
    align-items: center;
}

.story-media {
    position: relative;
}

.story-media img {
    height: 620px;
    object-fit: cover;
    border-radius: 40px 40px 120px 40px;
}

.story-chip {
    position: absolute;
    right: -24px;
    bottom: 40px;
    background: var(--lime);
    color: var(--ink);
    padding: 22px;
    border-radius: 28px 28px 8px 28px;
    box-shadow: var(--shadow);
}

.story-copy h2 {
    font: 800 clamp(3rem,5vw,5.5rem)/.92 "Manrope",sans-serif;
    letter-spacing: -.06em;
    margin: 12px 0 24px;
}

.story-copy p {
    color: rgba(255,255,255,.68);
    font-size: 1.04rem;
}

.story-list {
    display: grid;
    gap: 15px;
    margin: 28px 0;
}

.story-list div {
    display: flex;
    gap: 13px;
    align-items: center;
}

.story-list i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.1);
    color: var(--lime);
}

.testimonials {
    overflow: hidden;
}

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

.quote-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 38px 38px 10px 38px;
    padding: 34px;
    min-height: 310px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.quote-card blockquote {
    font: 700 1.32rem/1.45 "Manrope",sans-serif;
    margin: 20px 0;
}

.quote-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quote-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.quote-author span {
    display: block;
    color: var(--muted);
    font-size: .82rem;
}

.newsletter {
    padding: 90px 0;
}

.newsletter-shell {
    position: relative;
    overflow: hidden;
    border-radius: 48px 140px 48px 48px;
    background: var(--lime);
    padding: 72px;
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 50px;
    align-items: center;
}

.newsletter-shell:after {
    content: "";
    position: absolute;
    right: -120px;
    top: -150px;
    width: 360px;
    aspect-ratio: 1;
    border-radius: 50%;
    border: 60px solid rgba(255,255,255,.38);
    animation: spin 20s linear infinite;
}

.newsletter h2 {
    font: 800 clamp(3rem,5vw,5.2rem)/.9 "Manrope",sans-serif;
    letter-spacing: -.06em;
    margin: 10px 0;
}

.newsletter-form {
    display: flex;
    background: #fff;
    border-radius: 999px;
    padding: 8px;
    position: relative;
    z-index: 2;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: 0;
    background: transparent;
    padding: 0 17px;
    outline: 0;
}

.footer {
    background: var(--ink);
    color: #fff;
    padding: 70px 0 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.35fr repeat(3,.65fr);
    gap: 46px;
}

.footer p,.footer a {
    color: rgba(255,255,255,.58);
}

.footer-col h4,
.footer-col h3,
.footer-col h2 {
    margin: 0 0 16px;
    font-family: Manrope;
}

.footer-col a {
    display: block;
    padding: 5px 0;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 20px;
}

.socials .icon-btn {
    background: rgba(255,255,255,.08);
    border-color: rgba(255,255,255,.14);
    color: #fff;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
    display: flex;
    justify-content: space-between;
    color: rgba(255,255,255,.46);
    font-size: .82rem;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(7,9,7,.58);
    backdrop-filter: blur(7px);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}

.drawer {
    position: absolute;
    right: 0;
    top: 0;
    width: min(470px,100%);
    height: 100%;
    background: var(--paper);
    padding: 28px;
    transform: translateX(100%);
    transition: .35s;
    display: flex;
    flex-direction: column;
}

.overlay.open .drawer {
    transform: none;
}

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

.drawer-body {
    flex: 1;
    overflow: auto;
}

.cart-item {
    display: grid;
    grid-template-columns: 84px 1fr auto;
    gap: 13px;
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
}

.cart-item img {
    width: 84px;
    height: 92px;
    object-fit: cover;
    border-radius: 16px;
}

.drawer-footer {
    border-top: 1px solid var(--line);
    padding-top: 18px;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    margin-bottom: 14px;
}

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 110;
    background: var(--paper);
    padding: 26px;
    transform: translateX(-100%);
    transition: .35s;
    overflow: auto;
}

.mobile-menu.open {
    transform: none;
}

.mobile-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 34px;
}

.mobile-search {
    display: flex;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    padding: 6px;
}

.mobile-search input {
    flex: 1;
    border: 0;
    background: transparent;
    padding: 0 14px;
    outline: 0;
}

.mobile-nav {
    margin-top: 24px;
}

.mobile-nav>a,.mobile-acc-btn {
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--line);
    background: transparent;
    font: 800 1.25rem "Manrope",sans-serif;
    text-align: left;
}

.mobile-sub {
    display: none;
    padding: 8px 0 14px 15px;
}

.mobile-acc.open .mobile-sub {
    display: block;
}

.mobile-sub a {
    display: block;
    padding: 8px 0;
    color: var(--muted);
}

.search-modal {
    position: absolute;
    left: 50%;
    top: 9%;
    transform: translate(-50%,-20px);
    width: min(900px,calc(100% - 30px));
    background: #fff;
    border-radius: 30px;
    padding: 25px;
    transition: .3s;
}

.overlay.open .search-modal {
    transform: translate(-50%,0);
}

.search-row {
    display: flex;
    gap: 14px;
    align-items: center;
}

.search-row input {
    flex: 1;
    border: 0;
    outline: 0;
    font: 700 clamp(1.25rem,3vw,2.2rem) "Manrope",sans-serif;
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translate(-50%,20px);
    background: var(--ink);
    color: #fff;
    padding: 13px 18px;
    border-radius: 999px;
    z-index: 200;
    opacity: 0;
    transition: .25s;
}

.toast.show {
    opacity: 1;
    transform: translate(-50%,0);
}

.js [data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: .75s cubic-bezier(.2,.7,.2,1);
}

.js [data-reveal].visible {
    opacity: 1;
    transform: none;
}

.product-detail-page {
    padding: 45px 0 100px;
}

.breadcrumbs {
    display: flex;
    gap: 8px;
    color: var(--muted);
    font-size: .85rem;
    margin-bottom: 28px;
}

.product-layout {
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 54px;
}

.product-gallery {
    border-radius: 36px 36px 100px 36px;
    overflow: hidden;
    background: #fff;
}

.product-gallery img {
    aspect-ratio: 1/1.05;
    object-fit: cover;
}

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

.product-summary h1 {
    font: 800 clamp(2.8rem,5vw,5.3rem)/.92 "Manrope",sans-serif;
    letter-spacing: -.065em;
    margin: 12px 0 18px;
}

.product-summary p {
    color: var(--muted);
}

.product-buy {
    display: flex;
    gap: 10px;
    margin: 26px 0;
}

.product-buy .btn {
    flex: 1;
}

.product-notes {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 10px;
    margin-top: 28px;
}

.product-note {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 16px;
}

.product-note strong {
    display: block;
    margin-bottom: 4px;
}

.product-note span {
    color: var(--muted);
    font-size: .82rem;
}

@media (max-width:1050px) {
    .nav {
        display: none;
    }

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

    .header-actions {
        justify-content: end;
    }

    .menu-btn {
        display: grid;
    }

    .hero-float {
        width: 240px;
    }

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

    .categories-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 360px 280px 280px;
    }

    .cat-card:first-child {
        grid-column: 1/3;
        grid-row: auto;
    }

    .cat-card:nth-child(4) {
        grid-column: 1/3;
    }

    .promo-wrap,.story-grid,.newsletter-shell,.product-layout {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .story-media {
        max-width: 760px;
    }

    .footer-grid {
        grid-template-columns: 1.2fr 1fr 1fr;
    }

    .footer-col:last-child {
        grid-column: 2/4;
    }
}

@media (max-width:720px) {
    .hero-float {
        display: none;
    }

    .hero-actions {
        width: 100%;
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .container {
        width: min(100% - 26px,var(--zovelo-container,1280px));
    }

    .section {
        padding: 76px 0;
    }

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

    .header-main {
        height: 72px;
    }

    .header-actions .desktop-only {
        display: none;
    }

    .hero-shell,.hero-swiper,.hero-swiper .swiper-wrapper,.hero-slide {
        height: 650px;
        min-height: 650px;
    }

    .hero-shell {
        border-radius: 28px 28px 76px 28px;
    }

    .hero-content {
        padding: 48px 24px 90px;
    }

    .hero-content h1,.hero-content .hero-title {
        font-size: clamp(3.7rem,18vw,6rem);
    }

    .hero-orbit {
        width: 110px;
        right: 5%;
        top: 7%;
    }

    .hero-float {
        right: 16px;
        bottom: 18px;
        width: 210px;
    }

    .hero-nav {
        left: 24px;
        bottom: 25px;
    }

    .perks-grid {
        grid-template-columns: 1fr;
    }

    .perk {
        min-height: 180px;
    }

    .categories-grid {
        display: flex;
        overflow: auto;
        scroll-snap-type: x mandatory;
    }

    .cat-card,.cat-card:first-child,.cat-card:nth-child(4) {
        min-width: 86%;
        height: 450px;
        grid-column: auto;
    }

    .promo-wrap {
        grid-template-columns: 1fr;
    }

    .promo-main {
        min-height: 560px;
        border-radius: 34px 34px 90px 34px;
    }

    .promo-copy {
        padding: 34px 26px;
    }

    .promo-side {
        grid-template-rows: auto;
    }

    .promo-card {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .promo-card-copy {
        padding: 28px 26px 24px;
    }

    .promo-card h3 {
        max-width: none;
    }

    .promo-card p {
        max-width: 34ch;
    }

    .promo-card-media {
        min-height: 230px;
        margin: 0 18px 18px;
        border-radius: 22px;
    }

    .story {
        border-radius: 38px 38px 0 0;
    }

    .story-media img {
        height: 460px;
    }

    .story-chip {
        right: 10px;
    }

    .newsletter-shell {
        padding: 44px 24px;
        border-radius: 34px 90px 34px 34px;
    }

    .newsletter-form {
        flex-direction: column;
        border-radius: 22px;
        background: transparent;
        padding: 0;
    }

    .newsletter-form input {
        min-height: 52px;
        background: #fff;
        border-radius: 999px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid>div:first-child,.footer-col:last-child {
        grid-column: 1/3;
    }

    .footer-bottom {
        flex-direction: column;
    }

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

    .product-buy {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion:reduce) {
    *,*:before,*:after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }

    .js [data-reveal] {
        opacity: 1;
        transform: none;
    }
}

/* =========================================================
   Zovelo v4 — shop, product, search and homepage refinements
   ========================================================= */

.nav-link.active {
    background: #fff;
    box-shadow: 0 8px 24px rgba(21,23,20,.06);
}

.hero-nav {
    left: auto;
    right: max(38px,7vw);
    bottom: 34px;
}

.hero-nav .icon-btn {
    width: 52px;
    height: 52px;
}

.department-actions,.grid-head-actions {
    max-width: 540px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
}

.department-actions p,.grid-head-actions p {
    max-width: none;
}

.product-image-link {
    display: block;
    height: 100%;
}

.products-swiper {
    overflow: hidden;
    border-radius: 32px;
}

.products-swiper .swiper-slide {
    height: auto;
}

.products-swiper .product-card {
    height: 100%;
}

.new-products-section {
    padding-top: 56px;
}

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

.new-products-grid .product-card {
    height: 100%;
}

.new-products-grid .quick-add {
    transform: none;
    opacity: 1;
    left: auto;
    right: 14px;
    bottom: 14px;
    width: 48px;
}

.new-products-grid .quick-add .btn {
    width: 48px !important;
    height: 48px;
    min-height: 48px;
    padding: 0;
    border-radius: 50%;
    font-size: 0;
}

.new-products-grid .quick-add .btn:before {
    content: "+";
    font-size: 1.35rem;
    font-weight: 900;
}

.new-products-grid .product-card:nth-child(1),.new-products-grid .product-card:nth-child(6) {
    border-radius: 30px 72px 16px 30px;
}

.new-products-grid .product-card:nth-child(3),.new-products-grid .product-card:nth-child(8) {
    border-radius: 72px 30px 30px 16px;
}

.product-meta del {
    color: #9a9d95;
    font-size: .78rem;
    margin-left: 5px;
    font-weight: 600;
}

/* Premium search */

.search-overlay {
    background: rgba(8,10,8,.72);
}

.premium-search {
    top: 6%;
    width: min(1080px,calc(100% - 30px));
    padding: 34px;
    border-radius: 38px 38px 90px 38px;
    background: linear-gradient(145deg,#fff,#f4f2ea);
    box-shadow: 0 40px 100px rgba(0,0,0,.28);
    max-height: 88vh;
    overflow: auto;
}

.search-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-bottom: 24px;
}

.search-kicker,.drawer-kicker {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .13em;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.search-head h3,.drawer-head h3 {
    font: 800 clamp(1.7rem,3vw,2.7rem)/1 Manrope,sans-serif;
    letter-spacing: -.045em;
    margin: 0;
}

.search-box {
    min-height: 76px;
    padding: 10px 12px 10px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    box-shadow: 0 16px 45px rgba(21,23,20,.07);
}

.search-box>i {
    font-size: 1.2rem;
}

.search-box input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    font: 700 clamp(1.05rem,2vw,1.35rem) Manrope,sans-serif;
}

.search-box>span {
    padding: 9px 11px;
    border: 1px solid var(--line);
    border-radius: 11px;
    color: var(--muted);
    font-size: .75rem;
}

.search-layout {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 24px;
    margin-top: 28px;
}

.search-layout h4 {
    font-family: Manrope;
    margin: 0 0 13px;
}

.search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
}

.search-chips a {
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: rgba(255,255,255,.7);
    border-radius: 999px;
    font-size: .86rem;
    font-weight: 800;
    transition: .25s;
}

.search-chips a:hover {
    background: var(--lime);
    transform: translateY(-2px);
}

.search-categories {
    display: grid;
    gap: 9px;
}

.search-categories>a {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 13px;
    align-items: center;
    padding: 13px;
    border-radius: 17px;
    background: #fff;
    border: 1px solid var(--line);
    transition: .25s;
}

.search-categories>a:hover {
    transform: translateX(5px);
    box-shadow: 0 14px 32px rgba(21,23,20,.07);
}

.search-categories>a>i:first-child {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--sage);
    display: grid;
    place-items: center;
}

.search-categories span {
    font-weight: 800;
}

.search-categories small {
    display: block;
    color: var(--muted);
    font-weight: 500;
    margin-top: 2px;
}

.search-feature {
    min-height: 310px;
    position: relative;
    overflow: hidden;
    border-radius: 30px 30px 74px 30px;
    background: var(--ink);
}

.search-feature img {
    height: 100%;
    object-fit: cover;
    opacity: .72;
}

.search-feature:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 20%,rgba(8,10,8,.88));
}

.search-feature>div {
    position: absolute;
    z-index: 2;
    left: 24px;
    right: 24px;
    bottom: 22px;
    color: #fff;
}

.search-feature span {
    display: block;
    color: var(--lime);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .1em;
}

.search-feature strong {
    display: block;
    font: 800 1.35rem Manrope;
    margin: 5px 0 10px;
}

.search-feature a {
    color: #fff;
    font-weight: 800;
}

.mobile-search-trigger {
    width: 100%;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 12px;
    padding: 15px 17px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 18px;
    text-align: left;
    color: var(--muted);
}

.mobile-search-trigger kbd {
    padding: 5px 7px;
    border: 1px solid var(--line);
    border-radius: 7px;
    background: var(--paper);
    font-size: .68rem;
}

.mobile-menu-footer {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.mobile-menu-footer>span {
    font-weight: 800;
}

/* Cart refinements */

.drawer {
    width: min(500px,100%);
    padding: 30px;
}

.drawer-head h3 {
    font-size: 2rem;
}

.drawer-progress {
    padding: 18px 0 6px;
}

.drawer-progress span {
    display: block;
    color: var(--muted);
    font-size: .83rem;
    margin-bottom: 9px;
}

.drawer-progress>div {
    height: 7px;
    background: #e2e3de;
    border-radius: 999px;
    overflow: hidden;
}

.drawer-progress i {
    display: block;
    width: 72%;
    height: 100%;
    background: var(--lime);
    border-radius: inherit;
}

.cart-item p {
    color: var(--muted);
    margin: 5px 0;
}

.cart-item>button {
    border: 0;
    background: none;
    align-self: start;
    font-size: 1.2rem;
}

.drawer-footer p {
    font-size: .78rem;
    color: var(--muted);
    margin: -4px 0 15px;
}

.drawer-view-cart {
    display: block;
    text-align: center;
    margin-top: 14px;
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* Shop page */

.shop-hero {
    padding: 42px 0 18px;
}

.shop-hero .breadcrumbs,.product-detail-page .breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    color: var(--muted);
    font-size: .83rem;
    margin-bottom: 22px;
}

.breadcrumbs i {
    font-size: .65rem;
}

.shop-hero-grid {
    position: relative;
    min-height: 390px;
    display: grid;
    grid-template-columns: 1fr .75fr;
    align-items: center;
    gap: 40px;
    overflow: hidden;
    padding: 58px 60px;
    border-radius: 42px 42px 110px 42px;
    background: linear-gradient(135deg,#e8eadf,#d9ff57 160%);
}

.shop-hero h1 {
    font: 800 clamp(3.4rem,7vw,7rem)/.88 Manrope,sans-serif;
    letter-spacing: -.075em;
    margin: 12px 0 22px;
}

.shop-hero p {
    max-width: 580px;
    color: var(--muted);
    font-size: 1.06rem;
}

.shop-hero-art {
    height: 300px;
    position: relative;
}

.shop-hero-art img {
    position: absolute;
    right: -18px;
    top: -28px;
    width: 82%;
    height: 340px;
    object-fit: cover;
    border-radius: 120px 28px 80px 28px;
    transform: rotate(4deg);
    box-shadow: var(--shadow);
}

.shop-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    animation: float 6s ease-in-out infinite;
}

.orb-one {
    width: 150px;
    height: 150px;
    left: 0;
    top: 8px;
    background: var(--peach);
}

.orb-two {
    width: 86px;
    height: 86px;
    right: 3%;
    bottom: -8px;
    background: var(--blue);
    animation-delay: -2s;
}

.shop-category-strip {
    padding: 24px 0 0;
}

.shop-categories-swiper {
    overflow: hidden;
}

.shop-category-pill {
    height: auto !important;
    display: grid !important;
    grid-template-columns: 58px 1fr;
    grid-template-rows: auto auto;
    column-gap: 13px;
    align-items: center;
    padding: 16px;
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 24px;
    transition: .3s;
}

.shop-category-pill:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.shop-category-pill>span {
    grid-row: 1/3;
    width: 58px;
    height: 58px;
    border-radius: 19px 19px 6px 19px;
    background: var(--sage);
    display: grid;
    place-items: center;
    font-size: 1.1rem;
}

.shop-category-pill strong {
    align-self: end;
}

.shop-category-pill small {
    align-self: start;
    color: var(--muted);
}

.shop-main {
    padding-top: 64px;
}

.shop-layout {
    display: grid;
    grid-template-columns: 292px minmax(0,1fr);
    gap: 34px;
    align-items: start;
}

.shop-sidebar {
    position: sticky;
    top: 112px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 30px 30px 12px 30px;
    padding: 24px;
    z-index: 10;
}

.filter-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 14px;
}

.filter-head span {
    display: block;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.filter-head h2 {
    font: 800 1.65rem Manrope;
    margin: 3px 0 0;
}

.filter-close {
    display: none;
}

.filter-group {
    border-top: 1px solid var(--line);
}

.filter-title {
    width: 100%;
    padding: 17px 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 900;
    text-align: left;
}

.filter-content {
    display: none;
    padding: 0 0 16px;
}

.filter-content.open {
    display: block;
}

.filter-content label {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 7px 0;
    color: var(--muted);
    font-size: .87rem;
}

.filter-content label>span {
    display: flex;
    gap: 8px;
    align-items: center;
}

.filter-content b {
    font-weight: 600;
    color: #a1a49c;
}

.range-input {
    width: 100%;
    accent-color: var(--ink);
}

.range-values {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: .75rem;
    margin-top: 7px;
}

.range-values strong {
    color: var(--ink);
}

.color-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.color-filters button,.product-swatches button {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: 4px solid #fff;
    background: var(--swatch);
    box-shadow: 0 0 0 1px var(--line);
}

.color-filters button:hover,.product-swatches button.active {
    box-shadow: 0 0 0 3px var(--lime);
}

.sidebar-products {
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.sidebar-title {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}

.sidebar-title span {
    font-weight: 900;
}

.sidebar-title a {
    color: var(--muted);
    font-size: .78rem;
}

.mini-product {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 12px;
    align-items: center;
    padding: 10px 0;
}

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

.mini-product img {
    width: 68px;
    height: 74px;
    object-fit: cover;
    border-radius: 15px;
}

.mini-product span {
    min-width: 0;
}

.mini-product strong {
    display: block;
    font-size: .82rem;
    line-height: 1.25;
}

.mini-product small {
    display: block;
    font-size: .62rem;
    margin: 4px 0;
}

.mini-product b {
    font-size: .82rem;
}

.shop-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}

.toolbar-left,.toolbar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toolbar-left>span {
    color: var(--muted);
    font-size: .87rem;
}

.filter-open {
    display: none;
}

.view-toggle {
    display: flex;
    padding: 4px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
}

.view-toggle button {
    width: 37px;
    height: 37px;
    border: 0;
    border-radius: 9px;
    background: transparent;
    color: var(--muted);
}

.view-toggle button.active {
    background: var(--ink);
    color: #fff;
}

.shop-toolbar select,.review-toolbar select {
    height: 47px;
    padding: 0 40px 0 14px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: #fff;
    color: var(--ink);
}

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

.shop-product-grid.list-view {
    grid-template-columns: 1fr;
}

.shop-product-grid.list-view .product-card {
    display: grid;
    grid-template-columns: 270px 1fr;
    border-radius: 28px;
}

.shop-product-grid.list-view .product-media {
    aspect-ratio: auto;
    height: 285px;
}

.shop-product-grid.list-view .product-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 34px;
}

.shop-product-grid.list-view .product-info h3 {
    font-size: 1.55rem;
}

.shop-product-grid.list-view .product-info:after {
    content: "A considered everyday product selected for design, usefulness and durable quality.";
    color: var(--muted);
    margin-top: 13px;
    max-width: 520px;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 34px;
}

.pagination a {
    width: 45px;
    height: 45px;
    border: 1px solid var(--line);
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    font-weight: 800;
}

.pagination a.active {
    background: var(--ink);
    color: #fff;
}

.filter-backdrop {
    display: none;
}

.shop-bottom-promo {
    padding: 0 0 105px;
}

.shop-bottom-shell {
    min-height: 500px;
    display: grid;
    grid-template-columns: 1fr .9fr;
    align-items: center;
    overflow: hidden;
    border-radius: 42px 130px 42px 42px;
    background: var(--ink);
    color: #fff;
}

.shop-bottom-shell>div {
    padding: 60px;
}

.shop-bottom-shell h2 {
    font: 800 clamp(3rem,5vw,5rem)/.9 Manrope;
    letter-spacing: -.065em;
    margin: 10px 0 20px;
}

.shop-bottom-shell p {
    max-width: 520px;
    color: rgba(255,255,255,.64);
    margin-bottom: 25px;
}

.shop-bottom-shell .kicker:before {
    background: var(--lime);
}

.shop-bottom-shell img {
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

/* Product page */

.product-detail-page {
    padding: 44px 0 90px;
}

.product-layout {
    grid-template-columns: minmax(0,1.08fr) minmax(390px,.92fr);
    align-items: start;
}

.product-gallery-pro {
    display: grid;
    grid-template-columns: 88px 1fr;
    gap: 13px;
    position: sticky;
    top: 112px;
}

.product-thumbs {
    display: grid;
    align-content: start;
    gap: 10px;
}

.product-thumbs button {
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    overflow: hidden;
    transition: .25s;
}

.product-thumbs button.active {
    outline: 3px solid var(--lime);
    outline-offset: 1px;
}

.product-thumbs img {
    aspect-ratio: 1;
    object-fit: cover;
}

.product-main-media {
    position: relative;
    overflow: hidden;
    border-radius: 38px 38px 105px 38px;
    background: #fff;
}

.product-main-media>img {
    aspect-ratio: 1/1.05;
    object-fit: cover;
    transition: .45s;
}

.product-zoom {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 50px;
    height: 50px;
    border: 0;
    border-radius: 50%;
    background: rgba(255,255,255,.82);
    backdrop-filter: blur(10px);
}

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

.product-summary h1 {
    font-size: clamp(3rem,5vw,5.6rem);
}

.product-rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--muted);
    font-size: .83rem;
}

.product-rating-row a {
    text-decoration: underline;
    text-underline-offset: 4px;
}

.product-price-row {
    display: flex;
    align-items: baseline;
    gap: 14px;
    margin: 25px 0 17px;
}

.product-price-row strong {
    font: 900 1.9rem Manrope;
}

.product-price-row span {
    color: var(--muted);
    font-size: .84rem;
}

.product-lead {
    font-size: 1rem;
    line-height: 1.75;
}

.product-option {
    margin-top: 24px;
}

.option-head {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 11px;
}

.option-head strong {
    font-family: Manrope;
}

.option-head span,.option-head a {
    color: var(--muted);
    font-size: .84rem;
}

.product-swatches,.size-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.size-buttons button {
    min-width: 48px;
    height: 43px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    font-weight: 800;
}

.size-buttons button.active {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.product-buy {
    display: grid;
    grid-template-columns: 104px 1fr 50px;
    margin: 28px 0 15px;
}

.qty-control {
    height: 52px;
    display: grid;
    grid-template-columns: 32px 1fr 32px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    overflow: hidden;
}

.qty-control button,.qty-control input {
    border: 0;
    background: transparent;
    text-align: center;
    width: 100%;
}

.stock-line {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: .78rem;
}

.stock-line span:first-child {
    color: #36733a;
}

.product-note {
    position: relative;
    padding: 17px 13px;
}

.product-note>i {
    display: block;
    margin-bottom: 9px;
}

.product-accordions {
    margin-top: 26px;
    border-top: 1px solid var(--line);
}

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

.product-accordion>button {
    width: 100%;
    padding: 17px 0;
    border: 0;
    background: transparent;
    display: flex;
    justify-content: space-between;
    font-weight: 900;
    text-align: left;
}

.product-accordion>div {
    display: none;
    padding: 0 0 15px;
}

.product-accordion.open>div {
    display: block;
}

.product-accordion p {
    margin: 0;
    color: var(--muted);
    font-size: .88rem;
    line-height: 1.65;
}

.product-story-section {
    padding: 20px 0 100px;
}

.product-story-grid {
    display: grid;
    grid-template-columns: .8fr .8fr 1.2fr;
    gap: 18px;
    align-items: stretch;
}

.product-story-grid article {
    min-height: 390px;
    padding: 34px;
    border-radius: 34px;
    background: var(--sage);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.product-story-grid article:nth-child(2) {
    background: var(--peach);
    border-radius: 90px 34px 34px 34px;
}

.product-story-grid article>span {
    margin-bottom: auto;
    font: 800 3rem Manrope;
    color: rgba(21,23,20,.16);
}

.product-story-grid h2 {
    font: 800 2rem/1 Manrope;
    letter-spacing: -.045em;
    margin: 0 0 12px;
}

.product-story-grid p {
    color: var(--muted);
    margin: 0;
}

.product-story-image {
    overflow: hidden;
    border-radius: 34px 34px 110px 34px;
}

.product-story-image img {
    height: 100%;
    object-fit: cover;
}

.reviews-section {
    background: #eeece5;
    border-radius: 70px 70px 0 0;
}

.reviews-head {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 30px;
    margin-bottom: 35px;
}

.reviews-head h2 {
    font: 800 clamp(2.6rem,5vw,5rem)/.95 Manrope;
    letter-spacing: -.06em;
    margin: 8px 0 0;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 330px 1fr;
    gap: 28px;
    align-items: start;
}

.review-summary {
    position: sticky;
    top: 112px;
    padding: 30px;
    border-radius: 30px 30px 10px 30px;
    background: #fff;
    border: 1px solid var(--line);
}

.review-summary>strong {
    display: block;
    font: 900 4.8rem/.9 Manrope;
    letter-spacing: -.07em;
}

.review-summary>p {
    color: var(--muted);
    font-size: .84rem;
}

.rating-bars {
    display: grid;
    gap: 9px;
    margin: 24px 0;
}

.rating-bars>div {
    display: grid;
    grid-template-columns: 12px 1fr 25px;
    gap: 9px;
    align-items: center;
    font-size: .75rem;
}

.rating-bars i {
    height: 7px;
    border-radius: 99px;
    background: #e4e5df;
    overflow: hidden;
}

.rating-bars b {
    display: block;
    height: 100%;
    background: var(--ink);
    border-radius: inherit;
}

.rating-bars em {
    font-style: normal;
    color: var(--muted);
}

.review-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.review-highlights span {
    padding: 7px 10px;
    border-radius: 999px;
    background: var(--sage);
    font-size: .72rem;
    font-weight: 800;
}

.review-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.review-toolbar>span {
    font-weight: 900;
}

.review-card {
    padding: 28px 0;
    border-bottom: 1px solid rgba(21,23,20,.14);
}

.review-top {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.review-top strong {
    display: block;
}

.review-top div span {
    color: var(--muted);
    font-size: .76rem;
}

.review-card h4 {
    font: 800 1.12rem Manrope;
    margin: 20px 0 8px;
}

.review-card p {
    color: var(--muted);
    line-height: 1.7;
}

.review-meta {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: var(--muted);
    font-size: .75rem;
}

.review-meta button {
    border: 0;
    background: transparent;
    color: var(--muted);
}

.load-reviews {
    margin-top: 24px;
}

.review-form {
    display: none;
    margin-top: 40px;
    padding: 34px;
    border-radius: 34px 34px 90px 34px;
    background: #fff;
    border: 1px solid var(--line);
}

.review-form.open {
    display: block;
}

.review-form-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}

.review-form h3 {
    font: 800 2rem Manrope;
    margin: 7px 0;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
}

.form-grid label {
    display: grid;
    gap: 7px;
}

.form-grid label>span {
    font-weight: 800;
    font-size: .83rem;
}

.form-grid input,.form-grid textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 15px;
    background: var(--paper);
    padding: 14px;
    outline: 0;
}

.form-grid .full {
    grid-column: 1/3;
}

.rating-input {
    display: flex;
    gap: 5px;
}

.rating-input button {
    border: 0;
    background: transparent;
    color: #c7c8c3;
    font-size: 1.5rem;
    padding: 0;
}

.rating-input button.active {
    color: #d5a30f;
}

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

@media (max-width:1120px) {
    .new-products-grid {
        grid-template-columns: repeat(3,1fr);
    }

    .shop-layout {
        grid-template-columns: 250px minmax(0,1fr);
    }

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

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

    .product-gallery-pro {
        position: static;
    }

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

    .product-story-image {
        grid-column: 1/3;
        height: 520px;
    }

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

@media (max-width:850px) {
    .search-layout {
        grid-template-columns: 1fr;
    }

    .search-feature {
        min-height: 260px;
    }

    .shop-hero-grid {
        grid-template-columns: 1fr;
        padding: 45px 34px;
    }

    .shop-hero-art {
        display: none;
    }

    .shop-layout {
        display: block;
    }

    .shop-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        bottom: 0;
        width: min(360px,92%);
        height: 100%;
        overflow: auto;
        border-radius: 0;
        z-index: 120;
        transform: translateX(-100%);
        transition: .35s;
    }

    .shop-sidebar.open {
        transform: none;
    }

    .filter-close {
        display: grid;
    }

    .filter-backdrop {
        position: fixed;
        inset: 0;
        z-index: 115;
        background: rgba(7,9,7,.55);
        backdrop-filter: blur(5px);
    }

    .filter-backdrop.open {
        display: block;
    }

    .filter-open {
        display: inline-flex;
    }

    .shop-product-grid.list-view .product-card {
        grid-template-columns: 210px 1fr;
    }

    .reviews-layout {
        grid-template-columns: 1fr;
    }

    .review-summary {
        position: static;
    }

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

    .product-story-image {
        grid-column: auto;
        height: 470px;
    }
}

@media (max-width:720px) {
    .hero-nav {
        left: auto;
        right: 24px;
        bottom: 25px;
    }

    .hero-nav .icon-btn {
        width: 48px;
        height: 48px;
    }

    .department-actions,.grid-head-actions {
        max-width: none;
    }

    .new-products-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
        gap: 13px;
    }

    .new-products-grid .product-info {
        padding: 14px;
    }

    .new-products-grid .product-card {
        border-radius: 24px !important;
    }

    .premium-search {
        top: 2%;
        padding: 22px;
        border-radius: 27px;
        max-height: 96vh;
    }

    .search-head h3 {
        font-size: 1.7rem;
    }

    .search-box {
        min-height: 62px;
        padding-left: 17px;
    }

    .search-box>span {
        display: none;
    }

    .search-categories>a {
        grid-template-columns: 39px 1fr auto;
    }

    .search-feature {
        min-height: 220px;
    }

    .shop-hero {
        padding-top: 22px;
    }

    .shop-hero-grid {
        min-height: 330px;
        border-radius: 28px 28px 76px 28px;
        padding: 38px 24px;
    }

    .shop-hero h1 {
        font-size: clamp(3.1rem,16vw,5rem);
    }

    .shop-category-strip {
        padding-top: 12px;
    }

    .shop-toolbar {
        align-items: flex-start;
        flex-direction: column;
    }

    .toolbar-right {
        width: 100%;
        justify-content: space-between;
    }

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

    .shop-product-grid.list-view .product-card {
        grid-template-columns: 120px 1fr;
    }

    .shop-product-grid.list-view .product-media {
        height: 190px;
    }

    .shop-product-grid.list-view .product-info {
        padding: 18px;
    }

    .shop-product-grid.list-view .product-info h3 {
        font-size: 1.05rem;
    }

    .shop-product-grid.list-view .product-info:after {
        display: none;
    }

    .shop-bottom-shell {
        grid-template-columns: 1fr;
        border-radius: 30px 80px 30px 30px;
    }

    .shop-bottom-shell>div {
        padding: 42px 25px;
    }

    .shop-bottom-shell img {
        min-height: 360px;
    }

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

    .product-thumbs {
        grid-template-columns: repeat(3,1fr);
        order: 2;
    }

    .product-main-media {
        border-radius: 28px 28px 78px 28px;
    }

    .product-summary h1 {
        font-size: clamp(3rem,14vw,4.7rem);
    }

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

    .qty-control {
        width: 120px;
    }

    .stock-line {
        flex-direction: column;
    }

    .product-story-grid article {
        min-height: 320px;
    }

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

    .reviews-section {
        border-radius: 40px 40px 0 0;
    }

    .reviews-layout {
        gap: 18px;
    }

    .review-meta {
        flex-direction: column;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-grid .full {
        grid-column: auto;
    }

    .review-form {
        padding: 24px;
    }

    .related-grid {
        grid-template-columns: 1fr 1fr;
        gap: 13px;
    }
}

@media (max-width:480px) {
    .new-products-grid,.related-grid {
        grid-template-columns: 1fr;
    }

    .shop-toolbar select {
        max-width: 180px;
    }

    .review-top {
        flex-direction: column;
    }

    .product-story-image {
        height: 350px;
    }
}

/* v5: approved homepage product cards use one consistent radius on every corner. */

.home-page .products-swiper .product-card,
.home-page .new-products-grid .product-card,
.home-page .new-products-grid .product-card:nth-child(n) {
    border-radius: 30px;
}

.home-page .product-card .product-media {
    border-radius: 29px 29px 0 0;
}

@media (max-width:720px) {
    .home-page .products-swiper .product-card,
    .home-page .new-products-grid .product-card,
    .home-page .new-products-grid .product-card:nth-child(n) {
        border-radius: 24px !important;
    }

    .home-page .product-card .product-media {
        border-radius: 23px 23px 0 0;
    }
}

/* v6 — homepage product cards: clean at rest, premium add-to-cart reveal. */

.home-page .products-swiper,
.home-page .new-products-grid {
    --home-product-radius: 34px;
}

.home-page .product-card,
.home-page .new-products-grid .product-card,
.home-page .new-products-grid .product-card:nth-child(n) {
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(21,23,20,.09);
    border-radius: var(--home-product-radius) !important;
    background: #fff;
    box-shadow: 0 10px 28px rgba(28,31,25,.045);
    transform: translateZ(0);
    transition: transform .46s cubic-bezier(.2,.75,.2,1),box-shadow .46s ease,border-color .46s ease;
}

.home-page .product-card:hover {
    transform: translateY(-10px);
    border-color: rgba(21,23,20,.05);
    box-shadow: 0 28px 62px rgba(25,29,22,.16);
}

.home-page .product-card .product-media {
    position: relative;
    aspect-ratio: 1/1.06;
    overflow: hidden;
    border-radius: calc(var(--home-product-radius) - 1px) calc(var(--home-product-radius) - 1px) 0 0 !important;
    background: #e9ebe7;
}

.home-page .product-card .product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.home-page .product-card .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .85s cubic-bezier(.2,.7,.15,1),filter .5s ease;
}

.home-page .product-card:hover .product-media img {
    transform: scale(1.075);
    filter: saturate(.94) contrast(1.025);
}

.home-page .product-card .wish {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 4;
    width: 56px;
    height: 56px;
    border: 0;
    background: rgba(255,255,255,.94);
    color: var(--ink);
    box-shadow: 0 12px 24px rgba(20,24,18,.16);
    backdrop-filter: blur(12px);
    transition: transform .35s ease,background .35s ease,color .35s ease,box-shadow .35s ease;
}

.home-page .product-card .wish:hover,
.home-page .product-card .wish.active {
    transform: translateY(-3px) scale(1.045);
    background: var(--ink);
    color: #fff;
    box-shadow: 0 16px 32px rgba(20,24,18,.22);
}

.home-page .product-card .product-badge {
    left: 18px;
    top: 18px;
    z-index: 4;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(119,154,18,.13);
}

.home-page .product-card .quick-add,
.home-page .new-products-grid .quick-add {
    position: absolute;
    left: 20px !important;
    right: 20px !important;
    bottom: 18px !important;
    width: auto !important;
    z-index: 4;
    opacity: 0;
    transform: translateY(24px) !important;
    pointer-events: none;
    transition: opacity .34s ease,transform .42s cubic-bezier(.2,.75,.2,1) !important;
}

.home-page .product-card:hover .quick-add {
    opacity: 1;
    transform: translateY(0) !important;
    pointer-events: auto;
}

.home-page .product-card .quick-add .btn,
.home-page .new-products-grid .quick-add .btn {
    width: 100% !important;
    min-height: 62px !important;
    height: 62px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    font-size: 1rem !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 30px rgba(177,224,34,.25);
}

.home-page .new-products-grid .quick-add .btn:before {
    content: none !important;
}

.home-page .product-card .product-info {
    padding: 24px 24px 23px;
}

.home-page .product-card .product-info small {
    display: block;
    margin-bottom: 8px;
    color: #7b7464;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .085em;
}

.home-page .product-card .product-info h3 {
    margin: 0 0 14px;
    font: 800 1.08rem/1.28 "Manrope",sans-serif;
    letter-spacing: -.025em;
}

.home-page .product-card .product-meta {
    min-height: 26px;
}

.home-page .product-card .price {
    font: 900 1.2rem "Manrope",sans-serif;
    letter-spacing: -.03em;
}

.home-page .product-card .stars {
    font-size: .78rem;
    letter-spacing: .035em;
}

@media (hover:none) {
    .home-page .product-card .quick-add {
        opacity: 1;
        transform: none !important;
        pointer-events: auto;
    }

    .home-page .product-card .product-media {
        padding-bottom: 80px;
    }
}

@media (max-width:720px) {
    .home-page .products-swiper,
  .home-page .new-products-grid {
        --home-product-radius: 27px;
    }

    .home-page .product-card .wish {
        width: 49px;
        height: 49px;
        top: 14px;
        right: 14px;
    }

    .home-page .product-card .product-badge {
        top: 14px;
        left: 14px;
        min-height: 33px;
    }

    .home-page .product-card .quick-add,
  .home-page .new-products-grid .quick-add {
        left: 14px !important;
        right: 14px !important;
        bottom: 14px !important;
    }

    .home-page .product-card .quick-add .btn,
  .home-page .new-products-grid .quick-add .btn {
        height: 54px !important;
        min-height: 54px !important;
    }

    .home-page .product-card .product-info {
        padding: 19px 18px 20px;
    }
}

/* Home dropdown */

.nav-home-item .nav-dropdown {
    position: absolute;
    left: 0;
    top: calc(100% + 17px);
    min-width: 240px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: rgba(255,255,255,.97);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .28s ease;
}

.nav-home-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: none;
}

.nav-dropdown a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 13px 14px;
    border-radius: 13px;
    font-size: .84rem;
    font-weight: 900;
}

.nav-dropdown a:hover {
    background: var(--sage);
}

/* v6 product fullscreen gallery */

.product-main-media {
    cursor: zoom-in;
}

.product-gallery-hint {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 4;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    min-height: 43px;
    padding: 0 15px;
    border-radius: 999px;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    font-size: .76rem;
    font-weight: 900;
    box-shadow: 0 11px 28px rgba(20,24,18,.14);
    backdrop-filter: blur(12px);
    transition: transform .3s ease;
}

.product-main-media:hover .product-gallery-hint {
    transform: translateY(-3px);
}

.product-lightbox-links {
    display: none;
}

.glightbox-container .gslide-image img {
    max-height: 88vh;
    border-radius: 18px;
}

.glightbox-clean .gslide-title {
    font-family: "Manrope",sans-serif;
    font-weight: 800;
}

.glightbox-clean .gprev,
.glightbox-clean .gnext,
.glightbox-clean .gclose {
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.94) !important;
    color: #111 !important;
    border-radius: 50% !important;
    box-shadow: 0 14px 30px rgba(0,0,0,.24) !important;
}

.glightbox-clean .gprev svg,
.glightbox-clean .gnext svg,
.glightbox-clean .gclose svg {
    fill: #111 !important;
}

@media (max-width:720px) {
    .product-gallery-hint {
        left: 14px;
        bottom: 14px;
        font-size: .7rem;
    }
}

/* =========================================================
   Zovelo v6.2 — global component integrity update
   ========================================================= */

/* Hero navigation gets its own vertical rail; it no longer overlaps the floating card. */

.hero-nav {
    left: auto !important;
    right: 26px !important;
    top: 50% !important;
    bottom: auto !important;
    transform: translateY(-50%);
    flex-direction: column;
    padding: 7px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 999px;
    background: rgba(11,14,11,.18);
    backdrop-filter: blur(16px);
}

.hero-nav .icon-btn {
    width: 50px;
    height: 50px;
    flex: 0 0 auto;
    background: rgba(255,255,255,.92);
    color: var(--ink);
    border-color: transparent;
    box-shadow: 0 10px 25px rgba(0,0,0,.16);
}

.hero-nav .icon-btn:hover {
    background: var(--lime);
}

.hero-float {
    right: 4%;
    bottom: 5%;
}

/* All product cards use one shared commercial component. */

.product-card.unified-product-card {
    --product-radius: 32px;
    position: relative;
    height: 100%;
    overflow: hidden;
    border: 1px solid rgba(21,23,20,.09) !important;
    border-radius: var(--product-radius) !important;
    background: #fff;
    box-shadow: 0 10px 28px rgba(28,31,25,.045);
    transform: translateZ(0);
    transition: transform .46s cubic-bezier(.2,.75,.2,1),box-shadow .46s ease,border-color .46s ease;
}

.product-card.unified-product-card:hover {
    transform: translateY(-9px);
    border-color: rgba(21,23,20,.04) !important;
    box-shadow: 0 28px 62px rgba(25,29,22,.15);
}

.product-card.unified-product-card .product-media {
    position: relative;
    aspect-ratio: 1/1.06;
    overflow: hidden;
    border-radius: calc(var(--product-radius) - 1px) calc(var(--product-radius) - 1px) 0 0 !important;
    background: #e9ebe7;
}

.product-card.unified-product-card .product-image-link {
    display: block;
    width: 100%;
    height: 100%;
}

.product-card.unified-product-card .product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.001);
    transition: transform .85s cubic-bezier(.2,.7,.15,1),filter .5s ease;
}

.product-card.unified-product-card:hover .product-media img {
    transform: scale(1.07);
    filter: saturate(.94) contrast(1.025);
}

.product-card.unified-product-card .product-badge {
    left: 18px;
    top: 18px;
    z-index: 4;
    min-height: 36px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(119,154,18,.13);
}

.product-card.unified-product-card .wish {
    position: absolute;
    top: 17px;
    right: 17px;
    z-index: 5;
    width: 55px;
    height: 55px;
    border: 0;
    background: rgba(255,255,255,.94);
    color: var(--ink);
    box-shadow: 0 12px 24px rgba(20,24,18,.16);
    backdrop-filter: blur(12px);
}

.product-card.unified-product-card .wish:hover,
.product-card.unified-product-card .wish.active {
    background: var(--ink);
    color: #fff;
}

.product-card.unified-product-card .quick-add {
    position: absolute;
    left: 19px !important;
    right: 19px !important;
    bottom: 18px !important;
    width: auto !important;
    z-index: 4;
    opacity: 0;
    transform: translateY(24px) !important;
    pointer-events: none;
    transition: opacity .34s ease,transform .42s cubic-bezier(.2,.75,.2,1) !important;
}

.product-card.unified-product-card:hover .quick-add,
.product-card.unified-product-card:focus-within .quick-add {
    opacity: 1;
    transform: translateY(0) !important;
    pointer-events: auto;
}

.product-card.unified-product-card .quick-add .btn {
    width: 100% !important;
    min-height: 60px !important;
    height: 60px !important;
    padding: 0 24px !important;
    border-radius: 999px !important;
    font-size: .98rem !important;
    font-weight: 900 !important;
    box-shadow: 0 14px 30px rgba(177,224,34,.25);
}

.product-card.unified-product-card .product-info {
    padding: 23px 23px 22px !important;
}

.product-card.unified-product-card .product-info small {
    display: block;
    margin-bottom: 8px;
    color: #7b7464;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .085em;
}

.product-card.unified-product-card .product-info h3 {
    margin: 0 0 14px;
    font: 800 1.06rem/1.28 "Manrope",sans-serif;
    letter-spacing: -.025em;
}

.product-card.unified-product-card .product-meta {
    min-height: 26px;
}

.product-card.unified-product-card .price {
    font: 900 1.16rem "Manrope",sans-serif;
    letter-spacing: -.03em;
}

.product-card.unified-product-card .stars {
    font-size: .76rem;
}

/* Keep the same visual language in Shop list mode. */

.shop-product-grid.list-view .product-card.unified-product-card {
    grid-template-columns: 270px 1fr;
}

.shop-product-grid.list-view .product-card.unified-product-card .product-media {
    height: 100%;
    min-height: 285px;
    border-radius: calc(var(--product-radius) - 1px) 0 0 calc(var(--product-radius) - 1px) !important;
}

.shop-product-grid.list-view .product-card.unified-product-card .quick-add {
    left: 18px !important;
    right: 18px !important;
}

/* Editorial header */

.home-alt-page .alt-header {
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 0;
    background: rgba(249,248,243,.95);
    border-bottom: 1px solid rgba(21,23,20,.08);
    box-shadow: 0 10px 34px rgba(21,23,20,.045);
    backdrop-filter: blur(20px);
}

.home-alt-page .alt-header.scrolled {
    background: rgba(249,248,243,.985);
    box-shadow: 0 18px 44px rgba(21,23,20,.085);
}

.home-alt-page .alt-header-note {
    background: var(--ink);
    color: #fff;
    font-size: .72rem;
    font-weight: 800;
}

.home-alt-page .alt-header-note .container {
    min-height: 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
}

.home-alt-page .alt-header-note span,
.home-alt-page .alt-header-note a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.home-alt-page .alt-header-note a {
    color: var(--lime);
}

.home-alt-page .alt-header-main {
    min-height: 88px;
    display: grid;
    grid-template-columns: auto minmax(450px,1fr) auto;
    align-items: center;
    gap: 34px;
}

.home-alt-page .alt-header-left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.home-alt-page .alt-browse-trigger {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-weight: 900;
    transition: .3s;
}

.home-alt-page .alt-browse-trigger:hover {
    transform: translateY(-2px);
    background: var(--lime);
    border-color: var(--lime);
}

.home-alt-page .alt-brand {
    gap: 10px;
    padding: 0;
}

.home-alt-page .alt-brand-copy {
    display: grid;
    gap: 1px;
}

.home-alt-page .alt-brand-copy b {
    font: 900 1.15rem/1 "Manrope",sans-serif;
}

.home-alt-page .alt-brand-copy small {
    position: static;
    display: block;
    margin: 0;
    padding: 0;
    transform: none;
    border-radius: 0;
    background: transparent;
    color: var(--muted);
    font: 800 .55rem/1.1 Inter,sans-serif;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.home-alt-page .alt-main-nav {
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.home-alt-page .alt-main-nav a {
    padding: 12px 14px;
    border-radius: 999px;
    color: var(--muted);
    font-size: .83rem;
    font-weight: 900;
    transition: .25s;
}

.home-alt-page .alt-main-nav a:hover {
    background: #fff;
    color: var(--ink);
}

.home-alt-page .alt-main-nav a.active {
    background: var(--lime);
    color: var(--ink);
}

.home-alt-page .alt-header-main>.header-actions {
    justify-self: end;
    align-items: center;
}

.home-alt-page .alt-mobile-menu {
    display: none;
}

/* Dedicated Browse drawer */

.browse-overlay {
    position: fixed;
    inset: 0;
    z-index: 160;
    background: rgba(8,10,8,.55);
    backdrop-filter: blur(7px);
    opacity: 0;
    visibility: hidden;
    transition: .32s ease;
}

.browse-overlay.open {
    opacity: 1;
    visibility: visible;
}

.browse-drawer {
    width: min(465px,94vw);
    height: 100%;
    overflow: auto;
    padding: 25px 26px 30px;
    background: var(--paper);
    box-shadow: 34px 0 80px rgba(0,0,0,.2);
    transform: translateX(-102%);
    transition: transform .42s cubic-bezier(.2,.72,.15,1);
}

.browse-overlay.open .browse-drawer {
    transform: none;
}

.browse-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 22px;
    border-bottom: 1px solid var(--line);
}

.browse-search {
    min-height: 55px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 10px;
    margin: 22px 0 30px;
    padding: 0 10px 0 17px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.browse-search input {
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

.browse-search button {
    width: 39px;
    height: 39px;
    border: 0;
    border-radius: 50%;
    background: var(--lime);
}

.browse-intro h2 {
    margin: 10px 0 24px;
    font: 800 clamp(2.4rem,6vw,3.6rem)/.9 "Manrope",sans-serif;
    letter-spacing: -.06em;
}

.browse-categories {
    border-top: 1px solid var(--line);
}

.browse-category {
    border-bottom: 1px solid var(--line);
}

.browse-category-toggle {
    width: 100%;
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    font-weight: 900;
    text-align: left;
}

.browse-category-toggle span {
    display: flex;
    align-items: center;
    gap: 13px;
}

.browse-category-toggle span i {
    width: 35px;
    height: 35px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: var(--sage);
}

.browse-category-links {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .3s ease;
}

.browse-category-links>* {
    overflow: hidden;
}

.browse-category.open .browse-category-links {
    grid-template-rows: 1fr;
    padding-bottom: 13px;
}

.browse-category-links a {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    padding: 7px 4px 7px 48px;
    color: var(--muted);
    font-size: .82rem;
}

.browse-category-links a:hover {
    color: var(--ink);
}

.browse-promo {
    position: relative;
    display: block;
    height: 240px;
    overflow: hidden;
    margin-top: 25px;
    border-radius: 27px 27px 76px 27px;
    color: #fff;
}

.browse-promo img {
    height: 100%;
    object-fit: cover;
    transition: .6s;
}

.browse-promo:hover img {
    transform: scale(1.055);
}

.browse-promo-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,transparent 15%,rgba(8,10,8,.78));
}

.browse-promo-copy {
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 20px;
    display: grid;
    gap: 5px;
}

.browse-promo-copy small {
    color: rgba(255,255,255,.64);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.browse-promo-copy strong {
    font: 800 1.45rem "Manrope",sans-serif;
}

.browse-promo-copy b {
    font-size: .8rem;
}

.browse-drawer-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding-top: 25px;
}

.browse-drawer-foot>a {
    font-size: .8rem;
    font-weight: 900;
}

.browse-drawer-foot .socials {
    display: flex;
    gap: 8px;
}

.browse-drawer-foot .socials a {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid var(--line);
}

/* Blog archive */

.blog-archive-layout {
    display: grid;
    grid-template-columns: minmax(0,1fr) 330px;
    gap: 34px;
    align-items: start;
}

.blog-main-column .blog-grid {
    grid-template-columns: repeat(2,minmax(0,1fr));
}

.blog-sidebar-pro {
    position: sticky;
    top: 112px;
    display: grid;
    gap: 16px;
}

.blog-sidebar-card {
    padding: 23px;
    border: 1px solid var(--line);
    border-radius: 25px;
    background: #fff;
}

.sidebar-eyebrow {
    display: block;
    margin-bottom: 12px;
    color: var(--muted);
    font-size: .69rem;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.blog-search-card form {
    display: grid;
    grid-template-columns: 1fr 42px;
    gap: 8px;
}

.blog-search-card input {
    min-width: 0;
    height: 45px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 13px;
    background: var(--paper);
    outline: 0;
}

.blog-search-card button {
    border: 0;
    border-radius: 13px;
    background: var(--lime);
}

.blog-sidebar-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 12px;
}

.blog-sidebar-title h3 {
    margin: 0;
    font: 800 1rem "Manrope",sans-serif;
}

.blog-sidebar-title>a {
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
}

.blog-category-list {
    display: grid;
}

.blog-category-list a {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 0;
    border-bottom: 1px solid var(--line);
    color: var(--muted);
    font-size: .81rem;
}

.blog-category-list a:last-child {
    border-bottom: 0;
}

.blog-category-list a:hover {
    color: var(--ink);
}

.blog-category-list b {
    min-width: 27px;
    height: 27px;
    display: grid;
    place-items: center;
    border-radius: 999px;
    background: var(--sage);
    color: var(--ink);
    font-size: .66rem;
}

.blog-featured-product {
    padding: 0;
    overflow: hidden;
}

.blog-featured-product>a {
    display: block;
}

.blog-featured-product img {
    aspect-ratio: 1.2/1;
    object-fit: cover;
}

.blog-featured-product .sidebar-eyebrow {
    padding: 21px 21px 0;
}

.blog-featured-product-body {
    display: grid;
    gap: 5px;
    padding: 18px 21px 21px;
}

.blog-featured-product-body small {
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.blog-featured-product-body strong {
    font: 800 1.05rem "Manrope",sans-serif;
}

.blog-featured-product-body b {
    display: flex;
    justify-content: space-between;
}

.blog-recent-list {
    display: grid;
    gap: 13px;
}

.blog-recent-list a {
    display: grid;
    grid-template-columns: 68px 1fr;
    gap: 11px;
    align-items: center;
}

.blog-recent-list img {
    width: 68px;
    height: 70px;
    object-fit: cover;
    border-radius: 14px;
}

.blog-recent-list small {
    display: block;
    color: var(--muted);
    font-size: .66rem;
    margin-bottom: 4px;
}

.blog-recent-list strong {
    font: 800 .78rem/1.25 "Manrope",sans-serif;
}

.blog-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.blog-tags a {
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--paper);
    color: var(--muted);
    font-size: .7rem;
    font-weight: 800;
}

.blog-tags a:hover {
    background: var(--lime);
    color: var(--ink);
}

.blog-sidebar-newsletter {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
    border-radius: 25px 25px 70px 25px;
}

.blog-sidebar-newsletter>i,
.blog-sidebar-newsletter>.zovelo-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: var(--lime);
    color: var(--ink);
}

.blog-sidebar-newsletter h3 {
    margin: 20px 0 8px;
    font: 800 1.35rem "Manrope",sans-serif;
}

.blog-sidebar-newsletter p {
    color: rgba(255,255,255,.58);
    font-size: .8rem;
    line-height: 1.6;
}

.blog-sidebar-newsletter form {
    display: grid;
    gap: 8px;
}

.blog-sidebar-newsletter input {
    height: 46px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.15);
    border-radius: 13px;
    background: rgba(255,255,255,.08);
    color: #fff;
}

.blog-sidebar-newsletter .btn {
    min-height: 46px;
}

/* Blog single enhanced sidebar */

.blog-single-sidebar {
    gap: 16px;
}

.article-author {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 14px;
    align-items: start;
}

.article-author-avatar {
    width: 58px;
    height: 58px;
    border-radius: 19px;
    display: grid;
    place-items: center;
    background: var(--lime);
    font: 900 1rem "Manrope",sans-serif;
}

.article-author small {
    color: var(--muted);
    font-size: .68rem;
}

.article-author h3 {
    margin: 3px 0 6px;
}

.article-author p {
    margin: 0;
    color: var(--muted);
    font-size: .75rem;
    line-height: 1.5;
}

.article-toc {
    display: grid;
    gap: 6px;
}

.article-toc a {
    padding: 9px 10px;
    border-radius: 10px;
    color: var(--muted);
    font-size: .78rem;
}

.article-toc a:hover {
    background: var(--sage);
    color: var(--ink);
}

.blog-category-list.compact a {
    padding: 8px 0;
}

.blog-recent-list.compact a {
    grid-template-columns: 58px 1fr;
}

.blog-recent-list.compact img {
    width: 58px;
    height: 60px;
}

.article-product-pick {
    padding: 0;
    overflow: hidden;
}

.article-product-pick .sidebar-eyebrow {
    padding: 20px 20px 0;
}

.article-product-pick>a {
    display: grid;
}

.article-product-pick img {
    aspect-ratio: 1.25/1;
    object-fit: cover;
}

.article-product-pick strong,
.article-product-pick span {
    padding-inline: 20px;
}

.article-product-pick strong {
    padding-top: 17px;
    font: 800 .95rem "Manrope",sans-serif;
}

.article-product-pick span {
    display: flex;
    justify-content: space-between;
    padding-top: 5px;
    padding-bottom: 20px;
    font-weight: 900;
}

.article-share>div {
    display: flex;
    gap: 8px;
}

.article-share a,.article-share button {
    width: 39px;
    height: 39px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
}

@media (hover:none) {
    .product-card.unified-product-card .quick-add {
        opacity: 1;
        transform: none !important;
        pointer-events: auto;
    }

    .product-card.unified-product-card .quick-add:before {
        content: "";
        position: absolute;
        left: -19px;
        right: -19px;
        bottom: -18px;
        height: 92px;
        z-index: -1;
        background: linear-gradient(180deg,transparent,rgba(0,0,0,.16));
    }
}

@media (max-width:1120px) {
    .home-alt-page .alt-header-main {
        grid-template-columns: auto 1fr auto;
        gap: 24px;
    }

    .home-alt-page .alt-main-nav a {
        padding-inline: 10px;
    }

    .home-alt-page .alt-brand-copy small {
        display: none;
    }

    .blog-archive-layout {
        grid-template-columns: minmax(0,1fr) 290px;
    }
}

@media (max-width:940px) {
    .home-alt-page .alt-main-nav {
        display: none;
    }

    .home-alt-page .alt-header-main {
        grid-template-columns: 1fr auto;
    }

    .home-alt-page .alt-header-left {
        min-width: 0;
    }

    .home-alt-page .alt-mobile-menu {
        display: grid;
    }

    .blog-archive-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-pro {
        position: static;
        grid-template-columns: repeat(2,minmax(0,1fr));
    }
}

@media (max-width:720px) {
    .hero-nav {
        top: auto !important;
        right: 18px !important;
        bottom: 18px !important;
        transform: none;
        flex-direction: row;
    }

    .hero-nav .icon-btn {
        width: 46px;
        height: 46px;
    }

    .product-card.unified-product-card {
        --product-radius: 26px;
    }

    .product-card.unified-product-card .wish {
        width: 48px;
        height: 48px;
        top: 13px;
        right: 13px;
    }

    .product-card.unified-product-card .product-badge {
        top: 13px;
        left: 13px;
        min-height: 33px;
    }

    .product-card.unified-product-card .quick-add {
        left: 13px !important;
        right: 13px !important;
        bottom: 13px !important;
    }

    .product-card.unified-product-card .quick-add .btn {
        height: 52px !important;
        min-height: 52px !important;
    }

    .product-card.unified-product-card .product-info {
        padding: 19px 18px 20px !important;
    }

    .home-alt-page .alt-header-note .container {
        justify-content: center;
    }

    .home-alt-page .alt-header-note a {
        display: none;
    }

    .home-alt-page .alt-header-main {
        min-height: 72px;
        gap: 12px;
    }

    .home-alt-page .alt-browse-trigger {
        width: 45px;
        min-height: 45px;
        padding: 0;
        justify-content: center;
    }

    .home-alt-page .alt-browse-trigger span {
        display: none;
    }

    .home-alt-page .alt-brand .brand-mark {
        width: 36px;
        height: 36px;
    }

    .home-alt-page .alt-brand-copy b {
        font-size: 1.02rem;
    }

    .home-alt-page .alt-header-main>.header-actions {
        gap: 6px;
    }

    .blog-main-column .blog-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar-pro {
        grid-template-columns: 1fr;
    }
}

@media (max-width:480px) {
    .home-alt-page .alt-brand-copy {
        display: none;
    }

    .browse-drawer {
        padding-inline: 19px;
    }
}

/* Zovelo v6.3 — verified global repair */

/* Home 2: categories left, exact centered logo, normal menu below. */

.home-alt-page .alt-header-main {
    min-height: 88px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 26px;
}

.home-alt-page .alt-header-left-zone {
    justify-self: start;
}

.home-alt-page .alt-brand {
    justify-self: center;
    padding: 0;
    gap: 10px;
}

.home-alt-page .alt-header-actions {
    justify-self: end;
}

.home-alt-page .alt-header-nav {
    display: block;
    border-top: 1px solid rgba(21,23,20,.07);
    background: rgba(255,255,255,.48);
}

.home-alt-page .alt-header-nav nav {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
}

.home-alt-page .alt-header-nav nav::-webkit-scrollbar {
    display: none;
}

.home-alt-page .alt-header-nav a {
    white-space: nowrap;
    padding: 11px 15px;
    border-radius: 999px;
    color: var(--muted);
    font-size: .8rem;
    font-weight: 900;
}

.home-alt-page .alt-header-nav a:hover {
    background: #fff;
    color: var(--ink);
}

.home-alt-page .alt-header-nav a.active {
    background: var(--lime);
    color: var(--ink);
}

/* One breadcrumb/title system on every internal page. */

.page-heading {
    padding: 34px 0 27px;
}

.page-heading-shell {
    position: relative;
    min-height: 350px;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0,1fr) minmax(260px,.58fr);
    align-items: center;
    gap: 44px;
    padding: 58px 62px;
    border-radius: 40px 40px 112px 40px;
    isolation: isolate;
}

.page-heading--content .page-heading-shell {
    background: var(--ink);
    color: #fff;
}

.page-heading--catalog .page-heading-shell {
    background: linear-gradient(135deg,#e8eadf,#d9ff57 165%);
    color: var(--ink);
}

.page-heading-copy {
    position: relative;
    z-index: 3;
    max-width: 760px;
    text-align: left;
    align-items: flex-start;
}

.page-heading .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin: 0 0 20px;
    font-size: .79rem;
    font-weight: 800;
}

.page-heading--content .breadcrumbs {
    color: rgba(255,255,255,.58);
}

.page-heading--catalog .breadcrumbs {
    color: var(--muted);
}

.page-heading--content .breadcrumbs a:hover {
    color: var(--lime);
}

.page-heading h1 {
    margin: 11px 0 16px;
    font: 800 clamp(3.25rem,6.3vw,6.6rem)/.88 Manrope,sans-serif;
    letter-spacing: -.075em;
}

.page-heading p {
    max-width: 650px;
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.72;
}

.page-heading--content p {
    color: rgba(255,255,255,.66);
}

.page-heading--catalog p {
    color: var(--muted);
}

.page-heading-visual {
    position: relative;
    min-height: 260px;
    align-self: stretch;
}

.page-heading-visual img {
    position: absolute;
    right: -12px;
    top: 50%;
    width: 88%;
    height: 300px;
    object-fit: cover;
    border-radius: 108px 28px 82px 28px;
    transform: translateY(-50%) rotate(3deg);
    box-shadow: var(--shadow);
    z-index: 2;
}

.page-heading--content .page-heading-visual:before {
    content: "";
    position: absolute;
    width: 330px;
    aspect-ratio: 1;
    right: -40px;
    top: -95px;
    border-radius: 50%;
    background: radial-gradient(circle,rgba(217,255,87,.4),transparent 67%);
}

.page-heading-orb {
    position: absolute;
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.page-heading-orb-one {
    width: 145px;
    height: 145px;
    left: 3%;
    top: 12%;
    background: var(--peach);
}

.page-heading-orb-two {
    width: 82px;
    height: 82px;
    right: 0;
    bottom: 2%;
    background: var(--blue);
    animation-delay: -2s;
}

.page-heading--content .page-heading-orb-one {
    background: rgba(217,255,87,.2);
}

.page-heading--content .page-heading-orb-two {
    background: rgba(153,194,255,.18);
}

.page-heading-ring {
    position: absolute;
    width: 195px;
    aspect-ratio: 1;
    right: 8%;
    bottom: -85px;
    border: 1px dashed currentColor;
    border-radius: 50%;
    opacity: .2;
    animation: spin 20s linear infinite;
}

/* Product uses the same breadcrumb alignment without repeating its H1. */

.product-page-top {
    padding: 34px 0 0;
}

.product-page-top-shell {
    padding: 17px 22px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: rgba(255,255,255,.72);
    backdrop-filter: blur(12px);
}

.product-page-top .breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin: 0;
    color: var(--muted);
    font-size: .79rem;
    font-weight: 800;
}

.product-detail-page {
    padding-top: 24px;
}

/* Gallery opens by clicking the image. No zoom/hint badge. */

.product-main-media.product-gallery-open {
    cursor: pointer;
}

.product-main-media.product-gallery-open:after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: inset 0 0 0 1px rgba(255,255,255,0);
    transition: .3s;
    pointer-events: none;
}

.product-main-media.product-gallery-open:hover:after {
    box-shadow: inset 0 0 0 1px rgba(255,255,255,.46);
}

.product-zoom,.product-gallery-hint {
    display: none !important;
}

.glightbox-container .gslide-image img {
    max-height: 90vh;
    border-radius: 20px;
    box-shadow: 0 35px 80px rgba(0,0,0,.35);
}

.glightbox-clean .gprev,.glightbox-clean .gnext,.glightbox-clean .gclose {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 58px !important;
    height: 58px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.96) !important;
    box-shadow: 0 16px 36px rgba(0,0,0,.28) !important;
    opacity: 1 !important;
}

.glightbox-clean .gprev {
    left: 25px !important;
}

.glightbox-clean .gnext {
    right: 25px !important;
}

.glightbox-clean .gclose {
    top: 22px !important;
    right: 22px !important;
    width: 48px !important;
    height: 48px !important;
}

.glightbox-clean .gprev svg,.glightbox-clean .gnext svg,.glightbox-clean .gclose svg {
    fill: #111 !important;
    width: 24px !important;
    height: 24px !important;
}

.glightbox-container .gslide-description {
    display: none !important;
}

/* Cart always stays above headers and drawers. */

#cartOverlay {
    z-index: 240;
}

#cartOverlay .drawer {
    z-index: 2;
    box-shadow: -35px 0 90px rgba(0,0,0,.18);
}

#searchOverlay {
    z-index: 230;
}

#browseOverlay {
    z-index: 235;
}

@media (max-width:980px) {
    .page-heading-shell {
        grid-template-columns: 1fr;
        min-height: 330px;
        padding: 48px 36px;
    }

    .page-heading-visual {
        display: none;
    }
}

@media (max-width:760px) {
    .home-alt-page .alt-header-main {
        min-height: 72px;
        grid-template-columns: 1fr auto 1fr;
        gap: 10px;
    }

    .home-alt-page .alt-browse-trigger {
        width: 46px;
        min-height: 46px;
        padding: 0;
        justify-content: center;
    }

    .home-alt-page .alt-browse-trigger span {
        display: none;
    }

    .home-alt-page .alt-brand-copy small {
        display: none;
    }

    .home-alt-page .alt-brand-copy b {
        font-size: 1.02rem;
    }

    .home-alt-page .alt-header-nav nav {
        justify-content: flex-start;
        padding-block: 4px;
    }

    .home-alt-page .alt-header-nav a {
        padding: 9px 12px;
        font-size: .74rem;
    }

    .page-heading {
        padding-top: 20px;
    }

    .page-heading-shell {
        min-height: 300px;
        padding: 38px 24px;
        border-radius: 28px 28px 78px 28px;
    }

    .page-heading h1 {
        font-size: clamp(3rem,15vw,5rem);
    }

    .product-page-top {
        padding-top: 20px;
    }

    .glightbox-clean .gprev,.glightbox-clean .gnext {
        width: 48px !important;
        height: 48px !important;
        top: auto !important;
        bottom: 22px !important;
    }

    .glightbox-clean .gprev {
        left: calc(50% - 58px) !important;
    }

    .glightbox-clean .gnext {
        right: calc(50% - 58px) !important;
    }
}

/* =========================================================
   Zovelo v6.4 — search, Home 2 drawer and footer refinements
   ========================================================= */

/* Clean global search popup: one field, one button, popular searches. */

.simple-search-modal {
    top: 50%;
    width: min(720px,calc(100% - 30px));
    padding: 30px;
    border: 1px solid rgba(21,23,20,.08);
    border-radius: 32px 32px 78px 32px;
    box-shadow: 0 34px 90px rgba(0,0,0,.24);
    transform: translate(-50%,-48%) scale(.98);
}

.overlay.open .simple-search-modal {
    transform: translate(-50%,-50%) scale(1);
}

.simple-search-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 23px;
}

.simple-search-head h3 {
    margin: 6px 0 0;
    font: 800 clamp(1.8rem,4vw,3rem)/1 "Manrope",sans-serif;
    letter-spacing: -.05em;
}

.simple-search-form {
    min-height: 66px;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 13px;
    padding: 7px 8px 7px 19px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.8);
}

.simple-search-form>i {
    color: var(--muted);
}

.simple-search-form input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font: 700 1rem "Inter",sans-serif;
}

.simple-search-form input::placeholder {
    color: #989b94;
}

.simple-search-form input:focus,
.simple-search-form input:focus-visible {
    border-color: transparent !important;
    outline: 0 !important;
    box-shadow: none !important;
    background: transparent;
}

.simple-search-form .btn {
    min-height: 50px;
    padding-inline: 25px;
}

.simple-popular-searches {
    margin-top: 23px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.simple-popular-searches h4,
.simple-popular-searches h2 {
    margin: 0 0 12px;
    color: var(--muted);
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.simple-popular-searches .search-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.simple-popular-searches .search-chips a {
    padding: 10px 13px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: .76rem;
    font-weight: 850;
    transition: .25s ease;
}

.simple-popular-searches .search-chips a:hover {
    border-color: var(--lime);
    background: var(--lime);
    transform: translateY(-2px);
}

/* A true search form in responsive offcanvas; no nested popup button. */

.mobile-menu-search {
    min-height: 54px;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) 40px;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
    padding: 0 7px 0 16px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.mobile-menu-search>i {
    color: var(--muted);
}

.mobile-menu-search input {
    min-width: 0;
    width: 100%;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
}

.mobile-menu-search button {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 50%;
    background: var(--lime);
    color: var(--ink);
}

/* Slightly taller and more comfortable Home 2 menu row. */

.home-alt-page .alt-header-nav nav {
    min-height: 62px !important;
}

.home-alt-page .alt-header-nav a {
    padding: 14px 17px !important;
}

/* Home 2 browse accordion: every item is closed initially and fully collapses. */

.browse-categories {
    margin-top: 8px;
}

.browse-category-links {
    display: block !important;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    padding-bottom: 0;
    transition: max-height .38s cubic-bezier(.2,.72,.2,1),opacity .24s ease,padding .3s ease;
}

.browse-category-links>* {
    overflow: visible !important;
}

.browse-category.open .browse-category-links {
    max-height: 330px;
    opacity: 1;
    padding-bottom: 14px;
}

.browse-category-toggle {
    min-height: 66px;
}

.browse-category-toggle:focus-visible {
    outline: 3px solid rgba(217,255,87,.7);
    outline-offset: 3px;
}

/* Social icons are exact circular boxes with centered glyphs. */

.home-alt-page .alt-footer .socials {
    display: flex;
    align-items: center;
    gap: 9px;
}

.home-alt-page .alt-footer .socials .icon-btn,
.browse-drawer-foot .socials a,
.mobile-menu-footer .socials .icon-btn {
    width: 44px !important;
    min-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border-radius: 50% !important;
    line-height: 1 !important;
    text-align: center !important;
}

.home-alt-page .alt-footer .socials .icon-btn i,
.browse-drawer-foot .socials a i,
.mobile-menu-footer .socials .icon-btn i {
    display: block;
    width: auto;
    height: auto;
    margin: 0;
    line-height: 1;
    transform: none;
}

/* Drawer starts directly with search and category accordions. */

.browse-search {
    margin-bottom: 18px;
}

.browse-categories {
    border-top: 1px solid var(--line);
}

@media (max-width:720px) {
    .simple-search-modal {
        width: min(94vw,620px);
        padding: 23px 20px;
        border-radius: 25px 25px 58px 25px;
    }

    .simple-search-form {
        grid-template-columns: auto minmax(0,1fr) 48px;
        min-height: 58px;
        padding: 5px 6px 5px 15px;
    }

    .simple-search-form .btn {
        width: 48px;
        min-width: 48px;
        min-height: 48px;
        overflow: hidden;
        padding: 0;
        color: transparent;
        font-size: 0;
    }

    .simple-search-form .btn:after {
        content: "\f061";
        color: var(--ink);
        font: 900 15px/1 "Font Awesome 6 Free";
    }

    .simple-popular-searches .search-chips {
        gap: 7px;
    }

    .home-alt-page .alt-header-nav nav {
        min-height: 58px !important;
    }
}

/* =========================================================
   Zovelo v6.5 — Catalog-inspired homepage header
   ========================================================= */

.home-catalog-page {
    background: var(--paper);
}

.catalog-topline {
    background: var(--ink);
    color: rgba(255,255,255,.88);
    font-size: .76rem;
}

.catalog-topline-inner {
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.catalog-topline-left,
.catalog-topline-right {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.catalog-topline-left span,
.catalog-topline-right a,
.catalog-topline-right button {
    display: inline-flex;
    align-items: center;
    gap: 9px;
}

.catalog-topline-right a,
.catalog-topline-right button {
    color: rgba(255,255,255,.9);
    background: transparent;
    border: 0;
    font: inherit;
}

.catalog-topline-right button {
    min-height: 34px;
    padding: 0 13px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 12px;
}

.catalog-header {
    position: sticky;
    top: 0;
    z-index: 80;
    padding: 0;
    background: color-mix(in srgb,var(--paper) 96%,transparent);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 10px 30px rgba(21,23,20,.05);
    backdrop-filter: blur(14px);
}

.catalog-header-main {
    min-height: 110px;
    display: grid;
    grid-template-columns: auto minmax(420px,1fr) auto auto;
    align-items: center;
    gap: 18px;
}

.catalog-brand .brand-mark {
    width: 64px;
    height: 64px;
    border-radius: 22px;
    background: var(--ink);
    color: var(--lime);
}

.catalog-brand {
    font-size: 2rem;
    letter-spacing: -.05em;
}

.catalog-search-shell {
    min-width: 0;
    min-height: 64px;
    display: grid;
    grid-template-columns: 186px minmax(0,1fr);
    border: 1px solid var(--line);
    border-radius: 28px;
    background: var(--surface);
    overflow: hidden;
}

.catalog-search-type {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 0 22px;
    border: 0;
    border-right: 1px solid var(--line);
    background: var(--surface);
    color: var(--ink);
    font: 800 1rem "Inter",sans-serif;
}

.catalog-search-field {
    display: grid;
    grid-template-columns: minmax(0,1fr) 64px;
    align-items: center;
}

.catalog-search-field input {
    min-width: 0;
    width: 100%;
    height: 100%;
    padding: 0 22px;
    border: 0;
    outline: 0;
    background: transparent;
    font: 500 1rem "Inter",sans-serif;
    color: var(--ink);
}

.catalog-search-field input::placeholder {
    color: var(--muted);
}

.catalog-search-submit {
    width: 56px;
    height: 56px;
    margin-right: 8px;
    border: 0;
    border-radius: 20px;
    background: var(--lime);
    color: var(--ink);
    box-shadow: 0 12px 24px color-mix(in srgb,var(--lime) 28%,transparent);
}

.catalog-support-card {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 0 17px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    color: var(--ink);
}

.catalog-support-icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: var(--sage);
    color: var(--ink);
}

.catalog-support-copy {
    display: grid;
    gap: 1px;
}

.catalog-support-copy small {
    color: var(--muted);
    font-size: .72rem;
}

.catalog-support-copy strong {
    font: 900 1.18rem/1 "Manrope",sans-serif;
}

.catalog-header-actions {
    gap: 10px;
}

.catalog-header-actions .icon-btn {
    position: relative;
    background: var(--surface);
    border-color: var(--line);
}

.catalog-header-actions .icon-btn .count {
    top: -5px;
    right: -5px;
    min-width: 20px;
    height: 20px;
    padding: 0 5px;
    border-radius: 999px;
    background: var(--lime);
    color: var(--ink);
    font: 800 .67rem/20px "Inter",sans-serif;
}

.catalog-cart-btn {
    min-height: 64px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    color: var(--ink);
}

.catalog-cart-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--sage);
    color: var(--ink);
}

.catalog-cart-copy {
    display: grid;
    text-align: left;
}

.catalog-cart-copy small {
    color: var(--muted);
    font-size: .72rem;
}

.catalog-cart-copy strong {
    font: 900 1rem/1 "Manrope",sans-serif;
}

.catalog-nav-wrap {
    border-top: 1px solid var(--line);
    background: var(--surface);
}

.catalog-nav-row {
    min-height: 76px;
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 24px;
}

.catalog-menu-trigger {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 26px;
    border: 0;
    background: var(--ink);
    color: #fff;
    font: 800 1.08rem "Manrope",sans-serif;
}

.catalog-menu-icon {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: rgba(255,255,255,.12);
}

.catalog-main-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.catalog-main-nav a {
    color: var(--ink);
    font: 800 1rem "Manrope",sans-serif;
    padding: 12px 10px;
    border-radius: 999px;
}

.catalog-main-nav a.active,
.catalog-main-nav a:hover {
    color: var(--ink);
    background: color-mix(in srgb,var(--lime) 28%,var(--surface));
}

.catalog-track-btn {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--muted);
    font-weight: 800;
}

.home-catalog-page .hero {
    padding-top: 26px;
}

@media (max-width:1360px) {
    .catalog-header-main {
        grid-template-columns: auto minmax(320px,1fr) auto;
    }

    .catalog-support-card {
        display: none;
    }
}

@media (max-width:1120px) {
    .catalog-topline-right {
        display: none;
    }

    .catalog-header-main {
        grid-template-columns: auto minmax(0,1fr) auto;
    }

    .catalog-nav-row {
        grid-template-columns: auto 1fr;
    }

    .catalog-track-btn {
        display: none;
    }
}

@media (max-width:900px) {
    .catalog-topline {
        display: none;
    }

    .catalog-search-shell {
        grid-template-columns: 150px minmax(0,1fr);
    }

    .catalog-main-nav {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        scrollbar-width: none;
    }

    .catalog-main-nav::-webkit-scrollbar {
        display: none;
    }

    .catalog-main-nav a {
        white-space: nowrap;
    }
}

@media (max-width:720px) {
    .catalog-header-main {
        min-height: 84px;
        grid-template-columns: 1fr auto;
        gap: 12px;
    }

    .catalog-brand {
        font-size: 1.45rem;
    }

    .catalog-brand .brand-mark {
        width: 52px;
        height: 52px;
        border-radius: 18px;
    }

    .catalog-search-shell {
        grid-column: 1 / -1;
        order: 3;
        min-height: 58px;
        grid-template-columns: 132px minmax(0,1fr);
        margin-bottom: 14px;
    }

    .catalog-search-type {
        padding-inline: 16px;
        font-size: .86rem;
    }

    .catalog-search-field input {
        padding-inline: 16px;
    }

    .catalog-search-submit {
        width: 48px;
        height: 48px;
        border-radius: 16px;
        margin-right: 5px;
    }

    .catalog-cart-btn {
        min-height: 52px;
        padding: 0 12px;
    }

    .catalog-cart-copy strong {
        font-size: .92rem;
    }

    .catalog-nav-wrap {
        display: none;
    }
}

/* Zovelo 1.4 shared internal title system. */

.page-heading-copy {
    display: flex;
    flex-direction: column;
    gap: clamp(15px,1.45vw,22px);
}

.page-heading .page-heading-copy>.breadcrumbs,
.page-heading .page-heading-copy>.kicker,
.page-heading .page-heading-copy>h1,
.page-heading .page-heading-copy>p {
    margin: 0;
}

.page-heading .page-heading-copy>.kicker {
    min-height: 20px;
}

.page-heading .page-heading-copy>h1 {
    max-width: 100%;
    text-wrap: balance;
}

.page-heading .page-heading-copy>p {
    max-width: 650px;
}

.page-heading--minimal .page-heading-shell {
    min-height: 230px;
    grid-template-columns: 1fr;
    padding: 46px 54px;
    border: 1px solid var(--line);
    border-radius: 32px;
    background: var(--surface);
    color: var(--ink);
}

.page-heading--minimal .page-heading-visual {
    display: none;
}

.page-heading--minimal .breadcrumbs,.page-heading--minimal p {
    color: var(--muted);
}

.page-heading--minimal h1 {
    font-size: clamp(2.8rem,5.4vw,5.6rem);
}

.product-page-top {
    position: relative;
    z-index: 2;
}

.product-page-top-shell {
    color: var(--ink);
}

.product-page-top .breadcrumbs a,.product-page-top .breadcrumbs span {
    color: inherit;
}

.product-page-top .breadcrumbs svg {
    width: 15px;
    height: 15px;
    opacity: .58;
}

.catalog-search-shell--simple {
    grid-template-columns: minmax(0,1fr);
}

.catalog-search-shell--simple .catalog-search-field {
    grid-column: 1/-1;
    width: 100%;
}

.catalog-search-shell--simple .catalog-search-submit {
    justify-self: end;
    align-self: center;
    display: grid;
    place-items: center;
}

.perk {
    color: inherit;
    text-decoration: none;
}

.zovelo-content-default .zovelo-page-content {
    width: min(860px,calc(100% - 40px));
    margin-inline: auto;
}

.zovelo-content-wide .zovelo-page-content {
    width: min(var(--zovelo-container,1280px),calc(100% - 40px));
    margin-inline: auto;
}

.zovelo-content-full .zovelo-page-content {
    width: 100%;
    max-width: none;
}

@media (max-width:720px) {
    .page-heading-copy {
        gap: 14px;
    }

    .page-heading--minimal .page-heading-shell {
        padding: 34px 24px;
    }

    .catalog-search-shell--simple {
        grid-template-columns: minmax(0,1fr) !important;
    }
}

/* Zovelo 1.6.3 — Centered header dropdowns open without clipping or scrollbars. */

.home-alt-page .alt-header,
.home-alt-page .alt-header-nav,
.home-alt-page .alt-header-nav nav,
.home-alt-page .alt-header-nav .zovelo-primary-menu {
    overflow: visible !important;
}

.home-alt-page .alt-header-nav nav {
    scrollbar-width: none;
}

.home-alt-page .alt-header-nav .zovelo-primary-menu {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.home-alt-page .alt-header-nav .zovelo-primary-menu>li {
    flex: 0 0 auto;
}

.home-alt-page .alt-header-nav .zovelo-primary-menu .sub-menu {
    z-index: 120;
    top: calc(100% + 8px);
    max-height: none;
    overflow: visible;
    white-space: normal;
}

.home-alt-page .alt-header-nav .zovelo-primary-menu>li:last-child>.sub-menu,
.home-alt-page .alt-header-nav .zovelo-primary-menu>li:nth-last-child(2)>.sub-menu {
    left: auto;
    right: 0;
}

.home-alt-page .alt-header-nav .zovelo-primary-menu .sub-menu .sub-menu {
    top: -12px;
    left: calc(100% + 10px);
    right: auto;
}

@media (max-width:940px) {
    .home-alt-page .alt-header-nav {
        display: none !important;
    }
}

/* Zovelo 1.6.7 — Home Editorial premium uppercase navigation. */

.zovelo-home-editorial-content.home-alt-page .alt-header-nav {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: var(--surface);
}

.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu {
    gap: 0;
}

.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu>li {
    position: relative;
}

.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu>li:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 18px;
    background: var(--line);
    transform: translateY(-50%);
    pointer-events: none;
}

.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu>li>a {
    padding: 15px clamp(20px,2.15vw,32px);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .15em;
    line-height: 1.2;
    text-transform: uppercase;
}

.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu>li>a:hover,
.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu>li.current-menu-item>a,
.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu>li.current-menu-ancestor>a {
    background: transparent;
    color: var(--ink);
    opacity: .66;
}

.zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu .sub-menu a {
    text-transform: none;
    letter-spacing: 0;
}

@media (max-width:1150px) {
    .zovelo-home-editorial-content.home-alt-page .alt-main-nav .zovelo-primary-menu>li>a {
        padding-inline: 18px;
        font-size: .78rem;
        letter-spacing: .12em;
    }
}

/* Zovelo 1.7.3 — Home Editorial polish using the existing centered header and primary menu. */

.zovelo-home-editorial-content .zovelo-editorial-topbar {
    overflow: visible;
    background: var(--ink);
    color: #fff;
    font-size: .72rem;
}

.zovelo-home-editorial-content .zovelo-editorial-topbar-row {
    width: min(var(--zovelo-container,1280px),calc(100% - 40px));
    min-height: 38px;
    margin-inline: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.zovelo-home-editorial-content .zovelo-editorial-topbar-links {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: clamp(18px,2.4vw,34px);
}

.zovelo-home-editorial-content .zovelo-editorial-topbar-item,
.zovelo-home-editorial-content .zovelo-editorial-topbar-item>a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: inherit;
    white-space: nowrap;
}

.zovelo-home-editorial-content .zovelo-editorial-topbar-item .zovelo-icon {
    width: 15px;
    height: 15px;
}

.zovelo-home-editorial-content .zovelo-editorial-customer-care {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 22px;
    border-left: 1px solid rgba(255,255,255,.34);
    color: #fff;
    white-space: nowrap;
}

.zovelo-home-editorial-content .zovelo-editorial-customer-care strong {
    font-weight: 600;
}

.zovelo-home-editorial-content .alt-header--editorial {
    position: sticky;
    top: 0;
    z-index: 90;
    padding: 0;
    border-bottom: 1px solid var(--line);
    background: var(--zovelo-header-bg,var(--paper));
    color: var(--zovelo-header-text,var(--ink));
    box-shadow: none;
    backdrop-filter: blur(18px);
}

.zovelo-home-editorial-content .alt-header--editorial.scrolled {
    background: var(--zovelo-header-bg,var(--paper));
    border-color: var(--line);
    box-shadow: 0 14px 34px rgba(21,23,20,.07);
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-main,
.zovelo-home-editorial-content .alt-header--editorial .alt-header-nav nav {
    width: min(var(--zovelo-container,1280px),calc(100% - 40px));
    margin-inline: auto;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-main {
    min-height: 88px;
    display: grid;
    grid-template-columns: minmax(0,1fr) auto minmax(0,1fr);
    align-items: center;
    gap: 24px;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-left-zone {
    justify-self: start;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-browse-trigger {
    min-height: 48px;
    padding: 0 17px;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--surface);
    color: var(--ink);
    font-size: .92rem;
    font-weight: 800;
    box-shadow: none;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-browse-trigger:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb,var(--surface) 86%,var(--lime));
    border-color: color-mix(in srgb,var(--ink) 20%,var(--line));
}

.zovelo-home-editorial-content .alt-header--editorial .alt-browse-trigger .zovelo-icon {
    width: 18px;
    height: 18px;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-brand {
    justify-self: center;
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0;
    color: var(--ink);
}

.zovelo-home-editorial-content .alt-header--editorial .alt-brand.zovelo-brand-logo {
    flex-direction: column;
    gap: 3px;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-brand .custom-logo-link {
    display: flex;
    justify-content: center;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-brand .custom-logo {
    width: auto;
    max-width: 190px;
    max-height: 54px;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-brand:not(.zovelo-brand-logo) {
    font-family: var(--zovelo-heading-font);
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-brand .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 13px;
}

.zovelo-home-editorial-content .alt-header--editorial .zovelo-brand-subtitle,
.zovelo-home-editorial-content .alt-header--editorial .alt-brand-copy small {
    margin: 0;
    color: var(--muted);
    font-size: .56rem;
    font-weight: 700;
    letter-spacing: .1em;
    line-height: 1.2;
    text-transform: uppercase;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-actions {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 8px;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-actions .icon-btn {
    position: relative;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--surface);
    color: var(--ink);
    box-shadow: none;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-actions .icon-btn:hover {
    transform: translateY(-1px);
    background: color-mix(in srgb,var(--surface) 86%,var(--lime));
    border-color: color-mix(in srgb,var(--ink) 20%,var(--line));
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-actions .count {
    right: -2px;
    top: -4px;
    min-width: 18px;
    height: 18px;
    border: 0;
    background: var(--lime);
    color: var(--ink);
}

.zovelo-home-editorial-content .alt-header--editorial .alt-mobile-menu {
    display: none !important;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-nav {
    border-top: 1px solid var(--line);
    border-bottom: 0;
    background: var(--zovelo-header-bg,var(--paper));
}

.zovelo-home-editorial-content .alt-header--editorial .alt-header-nav nav {
    min-height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .zovelo-primary-menu {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    gap: 0;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .zovelo-primary-menu>li {
    position: relative;
    flex: 0 0 auto;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .zovelo-primary-menu>li:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background: var(--line);
    transform: translateY(-50%);
    pointer-events: none;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .zovelo-primary-menu>li>a {
    min-height: 62px;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 clamp(20px,2.15vw,32px);
    border-radius: 0;
    background: transparent;
    color: var(--ink);
    font-family: var(--zovelo-nav-font);
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1;
    text-transform: uppercase;
    white-space: nowrap;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .zovelo-primary-menu>li>a:hover,
.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .current-menu-item>a,
.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .current-menu-ancestor>a {
    background: transparent;
    color: var(--ink);
    opacity: .64;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .sub-menu {
    top: calc(100% + 8px);
    z-index: 140;
    min-width: 230px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface);
    box-shadow: 0 24px 55px rgba(21,23,20,.13);
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .sub-menu a {
    min-height: 0;
    padding: 11px 13px;
    border-radius: 12px;
    color: var(--ink);
    font-size: .82rem;
    font-weight: 650;
    letter-spacing: 0;
    text-transform: none;
}

.zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .sub-menu a:hover {
    background: color-mix(in srgb,var(--surface) 82%,var(--lime));
    opacity: 1;
}

@media (max-width:1120px) {
    .zovelo-home-editorial-content .alt-header--editorial .alt-main-nav .zovelo-primary-menu>li>a {
        padding-inline: 17px;
        font-size: .78rem;
        letter-spacing: .1em;
    }

    .zovelo-home-editorial-content .zovelo-editorial-topbar-links {
        gap: 16px;
    }
}

@media (max-width:940px) {
    .zovelo-home-editorial-content .zovelo-editorial-topbar-row,
    .zovelo-home-editorial-content .alt-header--editorial .alt-header-main {
        width: min(100% - 26px,var(--zovelo-container,1280px));
    }

    .zovelo-home-editorial-content .zovelo-editorial-topbar-row {
        min-height: 36px;
        overflow: hidden;
    }

    .zovelo-home-editorial-content .zovelo-editorial-topbar-links {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .zovelo-home-editorial-content .zovelo-editorial-topbar-links::-webkit-scrollbar {
        display: none;
    }

    .zovelo-home-editorial-content .zovelo-editorial-customer-care {
        display: none;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-header-main {
        min-height: 76px;
        grid-template-columns: 1fr auto 1fr;
        gap: 12px;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-browse-trigger {
        min-height: 44px;
        padding-inline: 14px;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-browse-trigger span {
        display: none;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-header-actions .icon-btn.desktop-only {
        display: none;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-header-actions .icon-btn {
        width: 44px;
        height: 44px;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-mobile-menu {
        display: grid !important;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-header-nav {
        display: none !important;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-brand .custom-logo {
        max-width: 160px;
        max-height: 46px;
    }
}

@media (max-width:600px) {
    .zovelo-home-editorial-content .zovelo-editorial-topbar {
        display: none;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-header-main {
        min-height: 70px;
        gap: 7px;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-browse-trigger {
        width: 42px;
        height: 42px;
        min-height: 42px;
        padding: 0;
        justify-content: center;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-brand .custom-logo {
        max-width: 132px;
        max-height: 40px;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-brand .brand-mark {
        width: 36px;
        height: 36px;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-brand:not(.zovelo-brand-logo) {
        font-size: 1.05rem;
    }

    .zovelo-home-editorial-content .alt-header--editorial .zovelo-brand-subtitle,
    .zovelo-home-editorial-content .alt-header--editorial .alt-brand-copy {
        display: none;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-header-actions {
        gap: 4px;
    }

    .zovelo-home-editorial-content .alt-header--editorial .alt-header-actions .icon-btn {
        width: 40px;
        height: 40px;
    }
}


/* Zovelo 1.8.25 — focused visual consistency updates. */
.home-catalog-page .btn:hover,
.home-catalog-page .button:hover,
.home-catalog-page button.button:hover,
.home-catalog-page input[type="submit"]:hover {
    background-color: var(--lime) !important;
    border-color: var(--lime) !important;
    color: var(--ink) !important;
}

.zovelo-home-editorial-content,
.zovelo-home-editorial-content .alt-header--editorial,
.zovelo-home-editorial-content .alt-main-nav,
.zovelo-home-editorial-content .alt-main-nav .zovelo-primary-menu,
.zovelo-home-editorial-content .alt-main-nav .sub-menu,
.zovelo-home-editorial-content .alt-main-nav .sub-menu a {
    font-family: var(--zovelo-nav-font,Inter,Arial,sans-serif);
}

.zovelo-home-story-curated {
    padding-block: 92px;
}

.zovelo-home-story-curated-shell {
    position: relative;
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    min-height: 540px;
    overflow: hidden;
    border-radius: 40px 40px 120px 40px;
    background: var(--ink);
    color: #fff;
    isolation: isolate;
}

.zovelo-home-story-curated-shell::before {
    content: "";
    position: absolute;
    left: -110px;
    bottom: -170px;
    z-index: -1;
    width: 380px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle,color-mix(in srgb,var(--lime) 45%,transparent),transparent 68%);
}

.zovelo-home-story-curated-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 58px;
}

.zovelo-home-story-curated-copy .kicker {
    color: var(--lime);
}

.zovelo-home-story-curated-copy h2 {
    max-width: 580px;
    margin: 15px 0 20px;
    color: #fff !important;
    font: 800 clamp(3rem,5.4vw,6.2rem)/.88 var(--zovelo-heading-font,Manrope,Inter,sans-serif);
    letter-spacing: -.065em;
}

.zovelo-home-story-curated-copy p {
    max-width: 560px;
    margin: 0 0 27px;
    color: rgba(255,255,255,.72);
    line-height: 1.75;
}

.zovelo-home-story-curated-copy .btn {
    width: max-content;
}

.zovelo-home-story-curated-media {
    min-height: 540px;
}

.zovelo-home-story-curated-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.zovelo-home-story-curated-note {
    position: absolute;
    right: 28px;
    bottom: 28px;
    z-index: 3;
    display: grid;
    gap: 7px;
    width: min(360px,calc(100% - 56px));
    padding: 21px 23px;
    border: 1px solid rgba(255,255,255,.24);
    border-radius: 23px;
    background: rgba(16,18,15,.78);
    backdrop-filter: blur(18px);
}

.zovelo-home-story-curated-note small {
    color: var(--lime);
    font-size: .68rem;
    font-weight: 900;
    letter-spacing: .09em;
    text-transform: uppercase;
}

.zovelo-home-story-curated-note strong {
    color: #fff;
    font: 800 1.06rem/1.3 var(--zovelo-heading-font,Manrope,Inter,sans-serif);
}

.zovelo-home-story-curated-note a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #fff;
    font-size: .75rem;
    font-weight: 900;
}

.js [data-reveal] {
    transition-delay: var(--zovelo-reveal-delay,0ms);
}

.js [data-reveal="left"] {
    transform: translateX(-24px);
}

.js [data-reveal="right"] {
    transform: translateX(24px);
}

.js [data-reveal="scale"] {
    transform: translateY(14px) scale(.985);
}

.js [data-reveal].visible {
    transform: none;
}

@media (max-width: 900px) {
    .zovelo-home-story-curated-shell {
        grid-template-columns: 1fr;
        border-radius: 34px 34px 84px 34px;
    }

    .zovelo-home-story-curated-copy {
        padding: 42px 34px;
    }

    .zovelo-home-story-curated-media {
        min-height: 430px;
    }
}

@media (max-width: 620px) {
    .zovelo-home-story-curated {
        padding-block: 64px;
    }

    .zovelo-home-story-curated-copy {
        padding: 34px 24px 38px;
    }

    .zovelo-home-story-curated-copy h2 {
        font-size: clamp(2.65rem,14vw,4.2rem);
    }

    .zovelo-home-story-curated-media {
        min-height: 340px;
    }

    .zovelo-home-story-curated-note {
        right: 18px;
        bottom: 18px;
        width: calc(100% - 36px);
    }
}


/* Zovelo 1.8.26 — balanced Home Default rhythm without changing section layouts. */
.zovelo-home-default-content {
    --zovelo-home-section-gap: clamp(72px,7vw,106px);
}

.zovelo-home-default-content .perks {
    padding-bottom: 0;
}

.zovelo-home-default-content .section,
.zovelo-home-default-content .newsletter {
    padding-top: var(--zovelo-home-section-gap);
    padding-bottom: 0;
}

.zovelo-home-default-content .newsletter {
    padding-bottom: var(--zovelo-home-section-gap);
}

@media (max-width: 720px) {
    .zovelo-home-default-content {
        --zovelo-home-section-gap: 68px;
    }
}

/* Zovelo 1.8.58 — keep the Editorial hero photograph covering the full shell. */
.zovelo-home-editorial-content .zovelo-editorial-shell > img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    object-position: center;
}


/* Zovelo 1.8.60 — compact the Curated Journal note and keep it inside the rounded edge. */
.zovelo-home-curated-content .zovelo-home-story-curated-note,
.zovelo-curated-home .zovelo-home-story-curated-note {
    right: 40px;
    bottom: 36px;
    gap: 3px;
    width: min(318px,calc(100% - 80px));
    padding: 14px 18px;
    border-radius: 18px;
}

.zovelo-home-curated-content .zovelo-home-story-curated-note small,
.zovelo-curated-home .zovelo-home-story-curated-note small {
    font-size: .62rem;
    line-height: 1.2;
}

.zovelo-home-curated-content .zovelo-home-story-curated-note strong,
.zovelo-curated-home .zovelo-home-story-curated-note strong {
    font-size: .92rem;
    line-height: 1.2;
}

.zovelo-home-curated-content .zovelo-home-story-curated-note a,
.zovelo-curated-home .zovelo-home-story-curated-note a {
    font-size: .68rem;
    line-height: 1.2;
}

@media (max-width:900px) {
    .zovelo-home-curated-content .zovelo-home-story-curated-note,
    .zovelo-curated-home .zovelo-home-story-curated-note {
        right: 24px;
        bottom: 24px;
        width: min(318px,calc(100% - 48px));
    }
}

@media (max-width:620px) {
    .zovelo-home-curated-content .zovelo-home-story-curated-note,
    .zovelo-curated-home .zovelo-home-story-curated-note {
        right: 16px;
        bottom: 16px;
        width: calc(100% - 32px);
        padding: 13px 16px;
    }
}
