@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Inter:wght@400;500;600;700;800&display=swap');

.shop-demo{
    --bg-1: #0b1018;
    --bg-2: #121827;
    --bg-3: #1a1320;

    --paper-1: #f6efe8;
    --paper-2: #fff9f3;
    --paper-3: #ebddd0;

    --ink: #18120f;
    --ink-soft: #6f635b;

    --light-text: #f7f2ec;
    --light-soft: rgba(247, 242, 236, 0.82);

    --line: rgba(53, 38, 28, 0.10);
    --line-strong: rgba(53, 38, 28, 0.16);
    --line-light: rgba(255,255,255,.10);

    --coral: #ff7a57;
    --copper: #d97146;
    --fuchsia: #ff59a7;
    --violet: #6e63ff;

    --product-gradient: linear-gradient(135deg, #ff7a57 0%, #ff59a7 50%, #6e63ff 100%);

    --shadow-xl: 0 40px 90px rgba(6, 8, 12, 0.34);
    --shadow-lg: 0 28px 60px rgba(24, 16, 12, 0.14);
    --shadow-md: 0 18px 36px rgba(24, 16, 12, 0.10);

    --radius-2xl: 40px;
    --radius-xl: 30px;
    --radius-lg: 24px;
    --radius-md: 18px;

    background:
        radial-gradient(1000px 460px at 0% 0%, rgba(255,122,87,.18), transparent 60%),
        radial-gradient(720px 420px at 100% 4%, rgba(110,99,255,.16), transparent 56%),
        radial-gradient(820px 440px at 50% 100%, rgba(255,89,167,.14), transparent 58%),
        linear-gradient(180deg, var(--bg-1) 0%, var(--bg-2) 52%, var(--bg-3) 100%);
    color: var(--ink);
    font-family: "Inter", sans-serif;
    padding: 0 0 96px;
    overflow-x: clip;
}

.shop-demo *{
    box-sizing: border-box;
}

.shop-demo .container{
    width: min(1540px, calc(100vw - 88px));
    margin-inline: auto;
}

.shop-demo a{
    text-decoration: none;
}

.shop-demo h1,
.shop-demo h2,
.shop-demo h3,
.shop-demo strong{
    font-family: "Cormorant Garamond", serif;
    letter-spacing: -.03em;
}

.shop-demo .btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 52px;
    padding: 0 20px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease, background .25s ease, color .25s ease;
    cursor: pointer;
}

.shop-demo .btn:hover{
    transform: translateY(-2px);
}

.shop-demo .btn--primary{
    border: 1px solid transparent;
    background: linear-gradient(135deg, var(--coral), var(--copper));
    color: #fff;
    box-shadow: 0 16px 30px rgba(255,122,87,.24);
}

.shop-demo .btn--primary:hover{
    box-shadow: 0 20px 38px rgba(255,122,87,.30);
}

.shop-demo .btn--ghost{
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: var(--light-text);
    backdrop-filter: blur(10px);
}

.shop-demo .btn--ghost:hover{
    border-color: rgba(255,255,255,.24);
    background: rgba(255,255,255,.10);
}

.shop-demo .btn--outline{
    border: 1px solid rgba(53,38,28,.12);
    background: rgba(255,255,255,.78);
    color: var(--ink);
}

@keyframes floatOne{
    0%,100%{ transform: translateY(0px); }
    50%{ transform: translateY(-10px); }
}

@keyframes floatTwo{
    0%,100%{ transform: translateY(0px); }
    50%{ transform: translateY(8px); }
}

@keyframes gradientFlow{
    0%{ background-position: 0% 50%; }
    50%{ background-position: 100% 50%; }
    100%{ background-position: 0% 50%; }
}

@keyframes shimmerPass{
    0%{ transform: translateX(-130%); }
    100%{ transform: translateX(130%); }
}

.shop-topbar{
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(10px);
    background: rgba(9, 12, 18, .62);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.shop-topbar__inner{
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.shop-topbar p,
.shop-topbar__links span{
    color: rgba(255,255,255,.72);
    font-size: 12px;
    line-height: 1;
}

.shop-topbar__links{
    display: flex;
    gap: 18px;
}

.shop-shell{
    position: relative;
    overflow: hidden;
    padding: clamp(34px, 4vw, 50px);
    border-radius: var(--radius-2xl);
}

.shop-shell--dark{
    border: 1px solid var(--line-light);
    background:
        radial-gradient(900px 340px at 0% 0%, rgba(255,122,87,.18), transparent 58%),
        radial-gradient(760px 340px at 100% 0%, rgba(110,99,255,.17), transparent 58%),
        radial-gradient(700px 360px at 50% 100%, rgba(255,89,167,.11), transparent 60%),
        linear-gradient(135deg, #10141e, #141b29 48%, #1b1522 100%);
    box-shadow: var(--shadow-xl);
}

.shop-shell--dark::before{
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(255,255,255,.08), transparent 34%, transparent 74%, rgba(255,255,255,.04));
    pointer-events: none;
}

.shop-shell--light{
    border: 1px solid var(--line);
    background:
        radial-gradient(720px 280px at 8% 0%, rgba(255,122,87,.08), transparent 58%),
        radial-gradient(720px 280px at 100% 0%, rgba(110,99,255,.06), transparent 58%),
        linear-gradient(160deg, rgba(246,239,232,.98), rgba(235,221,208,.96));
    box-shadow: var(--shadow-lg);
}

.shop-product,
.shop-catalogue,
.shop-editorial,
.shop-reviews,
.shop-cta{
    margin-top: 24px;
}

/* nav */

.shop-nav{
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
}

.shop-nav__brand{
    color: #fff;
    font-size: 28px;
    line-height: 1;
    font-weight: 600;
    font-family: "Cormorant Garamond", serif;
}

.shop-nav__menu{
    display: flex;
    justify-content: center;
    gap: 24px;
}

.shop-nav__menu a{
    color: rgba(255,255,255,.76);
    font-size: 14px;
}

.shop-nav__actions{
    display: flex;
    align-items: center;
    gap: 16px;
}

.shop-nav__actions > span{
    color: rgba(255,255,255,.76);
    font-size: 13px;
}

.shop-cart-button{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: #fff;
    font: inherit;
}

.shop-cart-button strong{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--coral), var(--copper));
    color: #fff;
    font-size: 12px;
    line-height: 1;
}

/* hero */

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

.hero-layout{
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, .84fr) minmax(660px, 1.16fr);
    gap: 50px;
    align-items: center;
}

.hero-copy__eyebrow{
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 0 16px;
    color: rgba(255,255,255,.82);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.hero-copy__eyebrow::before{
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 6px rgba(255,122,87,.14);
}

.hero-copy__pills{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-pill{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.06);
    color: rgba(255,255,255,.88);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-pill--accent{
    border-color: rgba(255,122,87,.24);
    background: rgba(255,122,87,.12);
    color: #fff;
}

.hero-copy h1{
    margin: 0;
    color: var(--light-text);
    font-size: clamp(2.8rem, 4vw, 4.5rem);
    line-height: .92;
    font-weight: 600;
}

.hero-copy__lead{
    margin-top: 22px;
    max-width: 58ch;
    color: rgba(255,255,255,.84);
    font-size: 16px;
    line-height: 1.96;
}

.hero-copy__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.hero-proof{
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.hero-proof__card{
    position: relative;
    padding: 18px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(8px);
}

.hero-proof__card::before{
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--coral), rgba(255,122,87,.18));
}

.hero-proof__card span{
    display: block;
    margin-bottom: 6px;
    color: rgba(255,255,255,.66);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-proof__card strong{
    display: block;
    margin-bottom: 8px;
    color: #fff;
    font-size: 18px;
    line-height: 1.05;
    font-weight: 600;
}

.hero-proof__card p{
    color: rgba(255,255,255,.76);
    font-size: 13px;
    line-height: 1.68;
}

/* hero stage */

.hero-stage{
    position: relative;
    min-height: 690px;
}

.shop-ambient{
    position: absolute;
    border-radius: 50%;
    filter: blur(18px);
    pointer-events: none;
}

.shop-ambient--one{
    top: 8%;
    left: 48%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,122,87,.24), transparent 70%);
    animation: floatOne 8s ease-in-out infinite;
}

.shop-ambient--two{
    top: 28%;
    right: 0;
    width: 260px;
    height: 260px;
    background: radial-gradient(circle, rgba(110,99,255,.22), transparent 70%);
    animation: floatTwo 9s ease-in-out infinite;
}

.shop-ambient--three{
    bottom: 0;
    left: 34%;
    width: 220px;
    height: 220px;
    background: radial-gradient(circle, rgba(255,89,167,.22), transparent 70%);
    animation: floatOne 10s ease-in-out infinite;
}

.hero-stage__badge{
    position: absolute;
    top: 8px;
    right: 10px;
    z-index: 6;
    display: inline-flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 16px;
    border-radius: 22px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.08);
    box-shadow: 0 16px 30px rgba(0,0,0,.18);
    backdrop-filter: blur(10px);
}

.hero-stage__badge span{
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.hero-stage__badge strong{
    color: #fff;
    font-size: 16px;
    line-height: 1;
}

.hero-window{
    position: absolute;
    overflow: hidden;
    border-radius: 34px;
    box-shadow: 0 34px 74px rgba(0,0,0,.28);
}

.hero-window--product{
    top: 58px;
    left: 0;
    z-index: 2;
    width: min(100%, 880px);
    padding: 22px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(135deg, rgba(16,20,29,.96), rgba(25,29,42,.96));
    animation: floatOne 9s ease-in-out infinite;
}

.hero-window--collection{
    right: 0;
    bottom: 16px;
    z-index: 3;
    width: min(82%, 700px);
    padding: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background: linear-gradient(180deg, rgba(16,20,28,.96), rgba(21,25,36,.98));
    animation: floatTwo 10s ease-in-out infinite;
}

.hero-window__bar{
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.hero-window__bar span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,.16);
}

.hero-feature{
    display: grid;
    grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
    gap: 24px;
    align-items: stretch;
}

.hero-feature__visual{
    position: relative;
    display: flex;
    flex-direction: column;
}

.hero-feature__label{
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17,20,29,.92);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-product-art{
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.22), transparent 30%),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite;
}

.hero-product-art::before{
    content: "";
    position: absolute;
    inset: 10% 18% 8%;
    border-radius: 48px 48px 82px 82px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.04)),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite reverse;
    box-shadow: 0 32px 40px rgba(14, 12, 20, .18);
}

.hero-product-art::after{
    content: "";
    position: absolute;
    left: 50%;
    top: 16%;
    width: 22%;
    height: 24%;
    transform: translateX(-50%);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.08);
}

.hero-feature__thumbs{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.hero-feature__thumbs span{
    display: block;
    min-height: 94px;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 30%),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite;
}

.hero-feature__content{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 2px 8px 0;
}

.hero-feature__eyebrow{
    margin: 0 0 10px;
    color: #f4a07a;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-feature__content h2{
    margin: 0 0 10px;
    color: var(--light-text);
    font-size: clamp(2.6rem, 3vw, 3.5rem);
    line-height: .92;
    font-weight: 600;
}

.hero-feature__text{
    color: rgba(247,242,236,.82);
    font-size: 15px;
    line-height: 1.84;
}

.hero-feature__price{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    padding: 16px 0;
    border-top: 1px solid rgba(255,255,255,.10);
    border-bottom: 1px solid rgba(255,255,255,.10);
}

.hero-feature__price strong{
    color: var(--light-text);
    font-size: 40px;
    line-height: 1;
    font-weight: 700;
}

.hero-feature__price span{
    color: #f4a07a;
    font-size: 13px;
    font-weight: 700;
}

.hero-feature__swatches,
.hero-feature__sizes{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.hero-feature__swatches span{
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.35);
}

.hero-feature__swatches span:nth-child(1){ background: var(--coral); }
.hero-feature__swatches span:nth-child(2){ background: var(--fuchsia); }
.hero-feature__swatches span:nth-child(3){ background: var(--violet); }
.hero-feature__swatches span:nth-child(4){ background: var(--copper); }

.hero-feature__swatches .is-active{
    outline: 2px solid rgba(255,255,255,.74);
    outline-offset: 3px;
}

.hero-feature__sizes span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: var(--light-text);
    font-size: 13px;
    font-weight: 700;
}

.hero-feature__sizes .is-active{
    background: linear-gradient(135deg, var(--coral), var(--copper));
    color: #fff;
    border-color: transparent;
}

.hero-feature__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-feature__actions .btn--ghost{
    color: var(--light-text);
    background: rgba(255,255,255,.06);
}

.hero-collection__head{
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 14px;
}

.hero-collection__eyebrow{
    color: rgba(255,255,255,.72);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.hero-collection__head span{
    color: rgba(255,255,255,.60);
    font-size: 12px;
}

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

.hero-collection__card{
    padding: 14px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
}

.hero-collection__media{
    min-height: 126px;
    margin-bottom: 12px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,.08);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 30%),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite;
}

.hero-collection__card strong{
    display: block;
    margin-bottom: 4px;
    color: #fff;
    font-size: 22px;
    line-height: .98;
    font-weight: 600;
}

.hero-collection__card span{
    display: block;
    color: rgba(255,255,255,.70);
    font-size: 12px;
    line-height: 1.5;
}

/* section heads */

.section-head{
    margin-bottom: 34px;
}

.section-head__kicker{
    margin: 0 0 10px;
    color: var(--copper);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.section-head h2{
    margin: 0;
    color: var(--ink);
    font-size: clamp(2.7rem, 4vw, 4.7rem);
    line-height: .92;
    font-weight: 600;
}

.section-head__lead{
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.9;
}

.shop-shell--dark .section-head__kicker{
    color: rgba(255,255,255,.70);
}

.shop-shell--dark .section-head h2{
    color: var(--light-text);
}

.shop-shell--dark .section-head__lead{
    color: rgba(255,255,255,.84);
}

/* product */

.product-browser{
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 34px;
    border: 1px solid rgba(53,38,28,.10);
    background: linear-gradient(180deg, rgba(255,249,242,.96), rgba(255,243,235,.98));
    box-shadow: 0 28px 60px rgba(24,16,12,.12);
}

.browser-bar{
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.browser-bar span{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(53,38,28,.16);
}

.product-browser__layout{
    display: grid;
    grid-template-columns: minmax(340px, .96fr) minmax(0, 1.04fr);
    gap: 28px;
    align-items: stretch;
}

.product-gallery__main{
    position: relative;
    min-height: 500px;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(53,38,28,.08);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.36), transparent 30%),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite;
}

.product-gallery__badge{
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(17,20,29,.88);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-main-art{
    position: absolute;
    inset: 10% 18% 8%;
    border-radius: 48px 48px 82px 82px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.04)),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite reverse;
    box-shadow: 0 34px 40px rgba(16,14,22,.18);
}

.product-main-art::before{
    content: "";
    position: absolute;
    left: 50%;
    top: 16%;
    width: 22%;
    height: 25%;
    transform: translateX(-50%);
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.24);
    background: rgba(255,255,255,.08);
}

.product-gallery__thumbs{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 14px;
}

.product-gallery__thumbs span{
    display: block;
    min-height: 94px;
    border-radius: 18px;
    border: 1px solid rgba(53,38,28,.08);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 30%),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite;
}

.product-sheet{
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 4px;
}

.product-sheet__eyebrow{
    margin: 0 0 10px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.product-sheet h3{
    margin: 0 0 10px;
    color: var(--ink);
    font-size: clamp(3rem, 4vw, 4.2rem);
    line-height: .92;
    font-weight: 600;
}

.product-sheet__subtitle{
    color: var(--ink-soft);
    font-size: 15px;
    line-height: 1.92;
}

.product-sheet__price{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-top: 22px;
    padding: 18px 0;
    border-top: 1px solid rgba(53,38,28,.10);
    border-bottom: 1px solid rgba(53,38,28,.10);
}

.product-sheet__price strong{
    color: var(--ink);
    font-size: 42px;
    line-height: 1;
    font-weight: 700;
}

.product-sheet__price span{
    color: var(--copper);
    font-size: 13px;
    font-weight: 700;
}

.product-sheet__selectors{
    display: grid;
    gap: 18px;
    margin-top: 20px;
}

.product-sheet__group label{
    display: block;
    margin-bottom: 10px;
    color: var(--ink);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.product-sheet__swatches,
.product-sheet__sizes{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-sheet__swatches span{
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 1px solid rgba(53,38,28,.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.45);
}

.product-sheet__swatches span:nth-child(1){ background: var(--coral); }
.product-sheet__swatches span:nth-child(2){ background: var(--fuchsia); }
.product-sheet__swatches span:nth-child(3){ background: var(--violet); }
.product-sheet__swatches span:nth-child(4){ background: var(--copper); }

.product-sheet__swatches .is-active{
    outline: 2px solid rgba(53,38,28,.60);
    outline-offset: 3px;
}

.product-sheet__sizes span{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(53,38,28,.10);
    background: rgba(255,255,255,.78);
    color: var(--ink);
    font-size: 13px;
    font-weight: 700;
}

.product-sheet__sizes .is-active{
    background: linear-gradient(135deg, var(--coral), var(--copper));
    color: #fff;
    border-color: transparent;
}

.product-sheet__actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.product-sheet__benefits{
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 22px;
}

.product-sheet__benefits div{
    padding: 16px;
    border-radius: 20px;
    border: 1px solid rgba(53,38,28,.08);
    background: rgba(255,255,255,.72);
}

.product-sheet__benefits strong{
    display: block;
    margin-bottom: 4px;
    color: var(--ink);
    font-size: 14px;
    font-weight: 600;
}

.product-sheet__benefits span{
    display: block;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.5;
}

.product-sheet__trustline{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.product-sheet__trustline span{
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    border: 1px solid rgba(53,38,28,.08);
    background: rgba(255,255,255,.62);
    color: var(--ink-soft);
    font-size: 12px;
    font-weight: 600;
}

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

.info-card{
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(53,38,28,.08);
    background: rgba(255,255,255,.62);
    box-shadow: var(--shadow-md);
}

.info-card__n{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--copper));
    color: #fff;
    font-size: 13px;
    font-weight: 800;
}

.info-card h3{
    margin: 0 0 8px;
    color: var(--ink);
    font-size: 30px;
    line-height: .98;
    font-weight: 600;
}

.info-card p{
    color: var(--ink-soft);
    line-height: 1.8;
}

/* catalogue */

.catalog-browser{
    position: relative;
    overflow: hidden;
    padding: 26px;
    border-radius: 34px;
    border: 1px solid rgba(53,38,28,.10);
    background: linear-gradient(180deg, rgba(255,249,242,.96), rgba(255,243,235,.98));
    box-shadow: 0 28px 60px rgba(24,16,12,.12);
}

.catalog-browser__filters{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.catalog-filter{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: 999px;
    border: 1px solid rgba(53,38,28,.10);
    background: rgba(255,255,255,.72);
    color: var(--copper);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-filter.is-active{
    color: #fff;
    background: linear-gradient(135deg, var(--coral), var(--copper));
    border-color: transparent;
}

.catalog-browser__grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
    gap: 16px;
}

.catalog-card{
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 24px;
    border: 1px solid rgba(53,38,28,.08);
    background: rgba(255,255,255,.72);
}

.catalog-card--wide{
    grid-column: span 2;
}

.catalog-card--tall{
    grid-row: span 2;
}

.catalog-card__media{
    position: relative;
    min-height: 140px;
    overflow: hidden;
    border-bottom: 1px solid rgba(53,38,28,.08);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.30), transparent 30%),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite;
}

.catalog-card--wide .catalog-card__media{
    min-height: 180px;
}

.catalog-card--tall .catalog-card__media{
    flex: 1 1 auto;
    min-height: 100%;
}

.catalog-card__object{
    position: absolute;
    inset: 14px 20%;
    border-radius: 28px 28px 44px 44px;
    background:
        linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.04)),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite reverse;
}

.catalog-card__body{
    padding: 7px;
}

.catalog-card__tag{
    display: inline-flex;
    margin-bottom: 10px;
    min-height: 28px;
    padding: 0 10px;
    align-items: center;
    border-radius: 999px;
    background: rgba(53,38,28,.06);
    color: var(--copper);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.catalog-card strong{
    display: block;
    margin-bottom: 6px;
    color: var(--ink);
    font-size: 24px;
    line-height: .98;
    font-weight: 600;
}

.catalog-card__meta{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.catalog-card__meta span{
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.5;
}

.catalog-card__meta em{
    color: var(--ink);
    font-style: normal;
    font-size: 14px;
    font-weight: 700;
}

.catalog-notes{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin-top: 18px;
}

.catalog-note{
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(53,38,28,.08);
    background: rgba(255,255,255,.62);
    box-shadow: var(--shadow-md);
}

.catalog-note h3{
    margin: 0 0 10px;
    color: var(--ink);
    font-size: 30px;
    line-height: .98;
    font-weight: 600;
}

.catalog-note p{
    color: var(--ink-soft);
    line-height: 1.8;
}

.catalog-note--quote{
    background: linear-gradient(145deg, rgba(255,122,87,.10), rgba(110,99,255,.08) 40%, rgba(255,250,244,.80) 100%);
}

.catalog-note--quote span{
    display: block;
    margin-bottom: 8px;
    color: var(--copper);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.catalog-note--quote strong{
    display: block;
    color: var(--ink);
    font-size: 34px;
    line-height: .96;
    font-weight: 600;
}

/* editorial */

.shop-editorial .section-head{
    margin-bottom: 28px;
}

.shop-editorial .section-head h2{
    font-size: clamp(3rem, 4.6vw, 5.1rem);
    line-height: .92;
}

.shop-editorial .section-head__lead{
    max-width: 56ch;
    font-size: 16px;
    line-height: 1.92;
}

.editorial-stage{
    display: grid;
    grid-template-columns: minmax(0, .96fr) minmax(420px, 1.04fr);
    gap: 22px;
    align-items: stretch;
    margin-bottom: 20px;
}

.editorial-stage__copy{
    position: relative;
    overflow: hidden;
    padding: 30px 28px 32px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.10);
    background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
}

.editorial-stage__eyebrow{
    margin: 0 0 12px;
    color: rgba(255,255,255,.70);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.editorial-stage__copy h3{
    margin: 0 0 16px;
    color: var(--light-text);
    font-size: clamp(2.8rem, 4vw, 4.6rem);
    line-height: .94;
    font-weight: 600;
}

.editorial-stage__copy p{
    color: rgba(255,255,255,.84);
    line-height: 1.94;
    font-size: 16px;
    max-width: 58ch;
}

.editorial-stage__copy p + p{
    margin-top: 14px;
}

.editorial-stage__visual{
    position: relative;
    overflow: hidden;
    min-height: 440px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.10);
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.18), transparent 30%),
        var(--product-gradient);
    background-size: 180% 180%;
    animation: gradientFlow 12s ease infinite;
}

.editorial-stage__quote{
    position: absolute;
    left: 30px;
    bottom: 30px;
    max-width: 320px;
    padding: 20px 22px;
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(17,20,29,.34);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 36px rgba(0,0,0,.18);
}

.editorial-stage__quote span{
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.editorial-stage__quote strong{
    display: block;
    color: var(--light-text);
    font-size: 30px;
    line-height: 1.02;
    font-weight: 600;
}

.editorial-steps{
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.editorial-steps::before{
    content: "";
    position: absolute;
    top: 28px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,.06), rgba(255,255,255,.22), rgba(255,255,255,.06));
}

.editorial-step{
    position: relative;
    padding: 24px 22px 22px;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
    backdrop-filter: blur(10px);
}

.editorial-step__n{
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--coral), var(--copper));
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 0 0 10px rgba(17,20,29,.92);
}

.editorial-step h3{
    margin: 0 0 10px;
    color: var(--light-text);
    font-size: 28px;
    line-height: 1.02;
    font-weight: 600;
}

.editorial-step p{
    color: rgba(255,255,255,.80);
    line-height: 1.82;
    font-size: 15px;
}

/* reviews */

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

.review-card{
    padding: 24px;
    border-radius: 26px;
    border: 1px solid rgba(53,38,28,.08);
    background: rgba(255,255,255,.62);
    box-shadow: var(--shadow-md);
}

.review-card__stars{
    margin-bottom: 12px;
    color: var(--coral);
    font-size: 15px;
    letter-spacing: .14em;
}

.review-card p{
    margin-bottom: 14px;
    color: var(--ink-soft);
    line-height: 1.82;
}

.review-card strong{
    color: var(--ink);
    font-size: 22px;
    line-height: 1;
    font-weight: 600;
}

/* CTA */

.cta-layout{
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(440px, .88fr);
    gap: 42px;
    align-items: center;
}

.cta-layout__content{
    padding: 10px 0 10px 2px;
}

.cta-layout__content h2{
    margin: 0 0 18px;
    color: var(--light-text);
    font-size: clamp(3rem, 4.4vw, 5.4rem);
    line-height: .92;
    font-weight: 600;
}

.cta-layout__content .section-head__lead{
    max-width: 62ch;
    line-height: 1.98;
    font-size: 16px;
    color: rgba(255,255,255,.84);
}

.cta-layout__content .demo-actions{
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 26px;
}

.cta-layout__panel{
    padding: 24px;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(10px);
}

.cta-layout__eyebrow{
    margin: 0 0 18px;
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: 0 0 20px 0;
}

.cta-layout__list{
    display: grid;
    gap: 14px;
}

.cta-layout__item{
    padding: 18px 18px 16px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(255,255,255,.05);
}

.cta-layout__item strong{
    display: block;
    margin-bottom: 8px;
    color: var(--light-text);
    font-size: 19px;
    line-height: 1.05;
    font-weight: 600;
}

.cta-layout__item span{
    display: block;
    color: rgba(255,255,255,.78);
    font-size: 13px;
    line-height: 1.62;
}

/* toast */

.shop-toast{
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 50;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-height: 52px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.10);
    background: rgba(13,16,23,.92);
    color: #fff;
    box-shadow: 0 22px 50px rgba(0,0,0,.28);
    backdrop-filter: blur(12px);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

.shop-toast.is-visible{
    opacity: 1;
    transform: translateY(0);
}

.shop-toast__dot{
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--coral);
    box-shadow: 0 0 0 6px rgba(255,122,87,.12);
}

/* responsive */

@media (max-width: 1320px){
    .shop-demo .container{
        width: min(1540px, calc(100vw - 56px));
    }

    .hero-layout,
    .section-head--split,
    .editorial-stage,
    .cta-layout{
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-layout{
        align-items: start;
    }

    .hero-copy{
        max-width: 920px;
    }

    .hero-stage{
        min-height: 920px;
        margin-top: 8px;
    }

    .hero-window--product{
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        max-width: none;
    }

    .hero-window--collection{
        position: relative;
        right: auto;
        bottom: auto;
        width: min(100%, 860px);
        margin: 18px 0 0 auto;
    }

    .shop-editorial .section-head h2,
    .cta-layout__content h2{
        max-width: none;
    }

    .editorial-steps,
    .reviews-grid{
        grid-template-columns: 1fr;
    }

    .editorial-steps::before{
        display: none;
    }
}

@media (max-width: 1140px){
    .shop-demo .container{
        width: min(1540px, calc(100vw - 40px));
    }

    .shop-shell{
        padding: 30px;
    }

    .shop-nav{
        grid-template-columns: 1fr;
        justify-items: center;
        gap: 18px;
        margin-bottom: 26px;
    }

    .shop-nav__menu{
        flex-wrap: wrap;
        gap: 18px;
    }

    .shop-nav__actions{
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stage{
        min-height: 860px;
    }

    .hero-feature,
    .product-browser__layout{
        grid-template-columns: 1fr;
    }

    .hero-feature__content{
        padding: 4px 0 0;
    }

    .hero-product-art{
        min-height: 380px;
    }

    .hero-feature__thumbs span{
        min-height: 84px;
    }

    .hero-proof,
    .product-sheet__benefits,
    .info-grid,
    .catalog-notes{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .catalog-browser__grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 220px;
    }

    .catalog-card--wide,
    .catalog-card--tall{
        grid-column: span 1;
        grid-row: span 1;
    }

    .catalog-card__media,
    .catalog-card--wide .catalog-card__media,
    .catalog-card--tall .catalog-card__media{
        min-height: 150px;
        flex: 0 0 auto;
    }

    .editorial-stage{
        gap: 18px;
    }

    .editorial-stage__visual{
        min-height: 380px;
    }

    .cta-layout{
        gap: 26px;
    }
}

@media (max-width: 920px){
    .shop-demo{
        padding: 0 0 80px;
    }

    .shop-shell,
    .product-browser,
    .catalog-browser,
    .editorial-stage__copy,
    .editorial-stage__visual,
    .editorial-step,
    .review-card,
    .cta-layout__panel{
        padding: 24px;
    }

    .hero-copy h1{
        font-size: clamp(2.9rem, 8vw, 4.4rem);
    }

    .section-head h2,
    .shop-editorial .section-head h2,
    .cta-layout__content h2{
        font-size: clamp(2.8rem, 7vw, 4.4rem);
    }

    .hero-copy__lead,
    .section-head__lead,
    .product-sheet__subtitle,
    .editorial-stage__copy p{
        font-size: 15px;
        line-height: 1.85;
    }

    .hero-stage{
        min-height: 780px;
    }

    .hero-stage__badge{
        top: 0;
        right: 0;
    }

    .hero-window{
        border-radius: 28px;
    }

    .hero-window--product,
    .hero-window--collection{
        padding: 18px;
    }

    .hero-window--collection{
        width: 100%;
        margin-top: 16px;
    }

    .hero-feature__content h2,
    .product-sheet h3{
        font-size: clamp(2.5rem, 6vw, 3.4rem);
    }

    .hero-feature__price strong,
    .product-sheet__price strong{
        font-size: 34px;
    }

    .product-gallery__main{
        min-height: 400px;
    }

    .product-gallery__thumbs span{
        min-height: 84px;
    }

    .catalog-browser__grid{
        grid-auto-rows: 200px;
    }

    .catalog-card strong{
        font-size: 22px;
    }

    .catalog-note h3,
    .info-card h3,
    .editorial-step h3{
        font-size: 28px;
    }

    .editorial-stage__copy h3{
        font-size: clamp(2.6rem, 7vw, 4rem);
    }

    .editorial-stage__quote{
        left: 20px;
        right: 20px;
        bottom: 20px;
        max-width: none;
    }

    .cta-layout__item strong{
        font-size: 18px;
    }
}

@media (max-width: 768px){
    .shop-demo .container{
        width: min(1540px, calc(100vw - 24px));
    }

    .shop-topbar__inner{
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 8px 0;
        min-height: unset;
    }

    .shop-topbar__links{
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .shop-shell{
        padding: 22px;
        border-radius: 28px;
    }

    .shop-nav__brand{
        font-size: 24px;
    }

    .shop-nav__menu{
        gap: 14px;
    }

    .shop-nav__menu a,
    .shop-nav__actions > span{
        font-size: 13px;
    }

    .hero-copy__pills{
        gap: 8px;
    }

    .hero-pill{
        font-size: 10px;
        padding: 0 12px;
    }

    .hero-copy__actions,
    .cta-layout__content .demo-actions{
        flex-direction: column;
        align-items: stretch;
    }

    .hero-copy__actions .btn,
    .cta-layout__content .demo-actions .btn{
        width: 100%;
    }

    .hero-proof,
    .product-sheet__benefits,
    .info-grid,
    .catalog-notes{
        grid-template-columns: 1fr;
    }

    .hero-stage{
        min-height: 700px;
    }

    .hero-stage__badge{
        position: relative;
        display: inline-flex;
        margin-bottom: 14px;
    }

    .hero-window--product,
    .hero-window--collection{
        position: relative;
        inset: auto;
        width: 100%;
        margin: 0;
    }

    .hero-window--collection{
        margin-top: 14px;
    }

    .hero-feature{
        gap: 18px;
    }

    .hero-product-art{
        min-height: 320px;
    }

    .hero-feature__thumbs{
        gap: 10px;
    }

    .hero-feature__thumbs span{
        min-height: 72px;
    }

    .hero-feature__price,
    .product-sheet__price{
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .hero-feature__actions,
    .product-sheet__actions,
    .hero-feature__swatches,
    .hero-feature__sizes,
    .product-sheet__swatches,
    .product-sheet__sizes,
    .catalog-browser__filters{
        gap: 8px;
    }

    .product-browser__layout{
        gap: 20px;
    }

    .product-gallery__main{
        min-height: 340px;
    }

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

    .product-gallery__thumbs span{
        min-height: 70px;
    }

    .catalog-browser{
        padding: 20px;
    }

    .catalog-browser__grid{
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .catalog-card,
    .catalog-card--wide,
    .catalog-card--tall{
        grid-column: auto;
        grid-row: auto;
    }

    .catalog-card__media,
    .catalog-card--wide .catalog-card__media,
    .catalog-card--tall .catalog-card__media{
        min-height: 180px;
    }

    .editorial-stage{
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .editorial-stage__visual{
        min-height: 320px;
    }

    .editorial-steps{
        grid-template-columns: 1fr;
    }

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

    .cta-layout{
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 560px){
    .shop-demo{
        padding: 0 0 68px;
    }

    .shop-shell,
    .product-browser,
    .catalog-browser,
    .editorial-stage__copy,
    .editorial-stage__visual,
    .editorial-step,
    .review-card,
    .cta-layout__panel{
        padding: 18px;
    }

    .hero-copy h1{
        font-size: clamp(2.45rem, 12vw, 3.6rem);
        line-height: .94;
    }

    .section-head h2,
    .shop-editorial .section-head h2,
    .cta-layout__content h2,
    .editorial-stage__copy h3,
    .hero-feature__content h2,
    .product-sheet h3{
        font-size: clamp(2.2rem, 10vw, 3rem);
        line-height: .96;
    }

    .hero-copy__lead,
    .section-head__lead,
    .product-sheet__subtitle,
    .editorial-stage__copy p,
    .editorial-step p,
    .catalog-note p,
    .review-card p{
        font-size: 14px;
        line-height: 1.78;
    }

    .hero-proof__card,
    .info-card,
    .catalog-note,
    .cta-layout__item{
        padding: 18px;
    }

    .hero-stage{
        min-height: auto;
    }

    .hero-window{
        border-radius: 24px;
        padding: 16px;
    }

    .hero-feature__label,
    .product-gallery__badge{
        top: 12px;
        left: 12px;
        min-height: 30px;
        padding: 0 10px;
        font-size: 10px;
    }

    .hero-product-art,
    .product-gallery__main{
        min-height: 260px;
        border-radius: 22px;
    }

    .hero-feature__thumbs span,
    .product-gallery__thumbs span{
        min-height: 60px;
        border-radius: 14px;
    }

    .hero-collection__grid{
        grid-template-columns: 1fr;
    }

    .hero-collection__media{
        min-height: 150px;
    }

    .hero-collection__card strong,
    .catalog-card strong,
    .review-card strong{
        font-size: 20px;
    }

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

    .product-sheet__trustline{
        gap: 8px;
    }

    .product-sheet__trustline span{
        min-height: 32px;
        padding: 0 10px;
        font-size: 11px;
    }

    .info-card{
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .info-card__n,
    .editorial-step__n{
        width: 44px;
        height: 44px;
        box-shadow: none;
    }

    .catalog-note h3,
    .info-card h3,
    .editorial-step h3{
        font-size: 24px;
    }

    .editorial-stage__quote{
        left: 16px;
        right: 16px;
        bottom: 16px;
        padding: 16px 18px;
    }

    .editorial-stage__quote strong{
        font-size: 24px;
    }

    .cta-layout__item strong{
        font-size: 17px;
    }
}
