/* ============================================================
   MINI ANA KIDS — tema da loja
   Paleta: creme, rosê, pêssego, sálvia, manteiga, céu
   Fontes: Baloo 2 (títulos) + Nunito (texto)
   ============================================================ */

:root {
    --cream: #FFF9F4;
    --white: #FFFFFF;
    --pink: #E8A0AC;
    --pink-soft: #F7C8D0;
    --pink-pale: #FBECEF;
    --peach: #FFE3D3;
    --coral: #F2836B;
    --coral-dark: #DD6A50;
    --sage: #A8C3A0;
    --mint: #BFE3D0;
    --butter: #F9E0A9;
    --sky: #9EC5D8;
    --lavender: #B8B8D8;
    --cocoa: #5C4742;
    --cocoa-soft: #937D77;
    --line: #F1E4DB;
    --shadow-sm: 0 4px 14px rgba(92, 71, 66, .08);
    --shadow-md: 0 12px 32px rgba(92, 71, 66, .12);
    --radius: 24px;
    --radius-sm: 14px;
    --font-display: 'Baloo 2', cursive;
    --font-body: 'Nunito', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--cocoa);
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul { list-style: none; }

.container {
    width: min(1200px, 92%);
    margin-inline: auto;
}

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ---------- Topbar marquee ---------- */
.topbar {
    background: var(--cocoa);
    color: var(--cream);
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    overflow: hidden;
    padding: 9px 0;
}
.topbar__track {
    display: flex;
    gap: 48px;
    width: max-content;
    animation: marquee 22s linear infinite;
}
.topbar__track span { display: flex; align-items: center; gap: 10px; white-space: nowrap; }
.topbar__track .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--pink-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Header ---------- */
.header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 249, 244, .92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}
.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 16px 0;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo svg { width: 44px; height: 44px; }
.logo__text { font-family: var(--font-display); font-size: 1.5rem; font-weight: 800; line-height: 1; }
.logo__text em { font-style: normal; color: var(--coral); }
.logo__tag { display: block; font-family: var(--font-body); font-size: .62rem; font-weight: 800; letter-spacing: .34em; text-transform: uppercase; color: var(--cocoa-soft); }

.nav { display: flex; gap: 6px; }
.nav a {
    font-weight: 800;
    font-size: .95rem;
    padding: 9px 16px;
    border-radius: 999px;
    transition: background .25s, color .25s;
}
.nav a:hover, .nav a.is-active { background: var(--pink-pale); color: var(--coral-dark); }

.header__actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
    position: relative;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: var(--cocoa);
    transition: background .25s;
}
.icon-btn:hover { background: var(--pink-pale); }
.icon-btn .count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    background: var(--coral);
    color: #fff;
    font-size: .68rem;
    font-weight: 800;
    border-radius: 999px;
}
.menu-toggle { display: none; }

/* ---------- Botões ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    border: none;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 1.02rem;
    font-weight: 700;
    transition: transform .25s, box-shadow .25s, background .25s;
}
.btn--primary { background: var(--coral); color: #fff; box-shadow: 0 8px 20px rgba(242, 131, 107, .35); }
.btn--primary:hover { background: var(--coral-dark); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(242, 131, 107, .42); }
.btn--ghost { background: transparent; color: var(--cocoa); box-shadow: inset 0 0 0 2px var(--cocoa); }
.btn--ghost:hover { background: var(--cocoa); color: var(--cream); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--coral-dark); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; padding: 64px 0 96px; }
.hero__inner {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--butter);
    color: var(--cocoa);
    font-weight: 800;
    font-size: .82rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
}
.hero h1 { font-size: clamp(2.4rem, 5vw, 3.9rem); margin-bottom: 20px; }
.hero h1 .swash { color: var(--coral); position: relative; white-space: nowrap; }
.hero h1 .swash::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 4px;
    height: 12px;
    background: var(--pink-soft);
    z-index: -1;
    border-radius: 8px;
}
.hero p { font-size: 1.12rem; color: var(--cocoa-soft); max-width: 46ch; margin-bottom: 32px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__proof { display: flex; align-items: center; gap: 14px; margin-top: 36px; }
.hero__avatars { display: flex; }
.hero__avatars span {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 3px solid var(--cream);
    display: grid; place-items: center;
    font-weight: 800; font-size: .82rem;
    margin-left: -10px;
}
.hero__avatars span:first-child { margin-left: 0; }
.hero__proof small { color: var(--cocoa-soft); font-size: .9rem; line-height: 1.4; }
.hero__proof strong { color: var(--cocoa); }

.hero__art { position: relative; }
.hero__art img { width: 100%; filter: drop-shadow(0 24px 40px rgba(92, 71, 66, .16)); animation: float 6s ease-in-out infinite; }
.hero__art--photo img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 300px 300px 36px 36px;
    border: 8px solid #fff;
    box-shadow: var(--shadow-md);
    filter: none;
    animation: none;
}
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(2px);
    z-index: -1;
}
.blob--1 { width: 420px; height: 420px; background: var(--peach); top: -80px; right: -120px; opacity: .8; }
.blob--2 { width: 260px; height: 260px; background: var(--pink-pale); bottom: -60px; left: -80px; }
.blob--3 { width: 120px; height: 120px; background: var(--mint); top: 30%; left: 42%; opacity: .7; }

.sticker {
    position: absolute;
    background: #fff;
    border-radius: 18px;
    box-shadow: var(--shadow-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: .88rem;
    animation: float 5s ease-in-out infinite;
}
.sticker--1 { top: 8%; left: -4%; animation-delay: .8s; }
.sticker--2 { bottom: 6%; right: -2%; animation-delay: 1.6s; }
.sticker .emoji { font-size: 1.3rem; }

/* ---------- Divisor de onda ---------- */
.wave { display: block; width: 100%; height: 60px; margin-bottom: -1px; }

/* ---------- Seções ---------- */
.section { padding: 80px 0; }
.section--tint { background: var(--pink-pale); }
.section--peach { background: var(--peach); }
.section__head { text-align: center; max-width: 620px; margin: 0 auto 48px; }
.section__eyebrow {
    display: inline-block;
    font-weight: 800;
    font-size: .8rem;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}
.section__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); margin-bottom: 12px; }
.section__head p { color: var(--cocoa-soft); font-size: 1.05rem; }

/* ---------- Benefícios ---------- */
.perks { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.perk {
    background: #fff;
    border-radius: var(--radius);
    padding: 26px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
    transition: transform .3s;
}
.perk:hover { transform: translateY(-4px); }
.perk__icon {
    flex: none;
    width: 52px; height: 52px;
    border-radius: 16px;
    display: grid; place-items: center;
    font-size: 1.5rem;
}
.perk h3 { font-size: 1.02rem; margin-bottom: 2px; }
.perk p { font-size: .85rem; color: var(--cocoa-soft); line-height: 1.4; }

/* ---------- Categorias ---------- */
.cats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.cat {
    text-align: center;
    padding: 34px 18px 28px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
}
.cat:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.cat__circle {
    width: 108px; height: 108px;
    margin: 0 auto 18px;
    border-radius: 50%;
    display: grid; place-items: center;
    transition: transform .35s;
}
.cat:hover .cat__circle { transform: scale(1.08) rotate(-4deg); }
.cat__circle svg { width: 56px; height: 56px; }
.cat h3 { font-size: 1.15rem; }
.cat span { font-size: .85rem; color: var(--cocoa-soft); font-weight: 700; }

/* ---------- Cards de produto ---------- */
.grid-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 26px;
}
.card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform .3s, box-shadow .3s;
    display: flex;
    flex-direction: column;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card__media { position: relative; background: var(--pink-pale); }
.card__media img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform .45s; }
.card:hover .card__media img { transform: scale(1.05); }
.card__badge {
    position: absolute;
    top: 14px; left: 14px;
    background: var(--coral);
    color: #fff;
    font-weight: 800;
    font-size: .75rem;
    padding: 5px 12px;
    border-radius: 999px;
}
.card__badge--new { background: var(--sage); }
.card__fav {
    position: absolute;
    top: 12px; right: 12px;
    width: 38px; height: 38px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: var(--coral);
    display: grid; place-items: center;
    box-shadow: var(--shadow-sm);
    transition: transform .25s, background .25s, color .25s;
}
.card__fav:hover, .card__fav.is-on { background: var(--coral); color: #fff; transform: scale(1.1); }
.card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card__cat { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--cocoa-soft); }
.card__name { font-family: var(--font-display); font-size: 1.08rem; font-weight: 700; }
.card__stars { color: #F5B942; font-size: .82rem; letter-spacing: 2px; }
.card__stars small { color: var(--cocoa-soft); font-family: var(--font-body); letter-spacing: 0; margin-left: 6px; }
.card__price-row { display: flex; align-items: baseline; gap: 10px; margin-top: auto; padding-top: 8px; }
.card__price { font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; color: var(--coral-dark); }
.card__old { font-size: .88rem; color: var(--cocoa-soft); text-decoration: line-through; }
.card__cta {
    margin-top: 12px;
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 999px;
    background: var(--pink-pale);
    color: var(--coral-dark);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    transition: background .25s, color .25s;
}
.card:hover .card__cta { background: var(--coral); color: #fff; }

.section__more { text-align: center; margin-top: 44px; }

/* ---------- Banner coleção ---------- */
.collection {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    background: linear-gradient(115deg, var(--sage) 0%, var(--mint) 100%);
    padding: 64px;
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    align-items: center;
    gap: 40px;
    color: #3E4A3A;
}
.collection h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 14px; }
.collection p { font-size: 1.06rem; margin-bottom: 28px; opacity: .85; max-width: 44ch; }
.collection__art { display: grid; place-items: center; }
.collection__art img { width: min(340px, 100%); filter: drop-shadow(0 20px 34px rgba(62, 74, 58, .25)); animation: float 7s ease-in-out infinite; }
.collection--hk { background: linear-gradient(115deg, #F9C9D4 0%, #FBE3E0 100%); color: #7A3644; }
.collection--hk .section__eyebrow { color: #C93A56; }
.collection--hk .btn--light { color: #C93A56; }
.collection--hk .collection__art img {
    width: min(320px, 100%);
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 160px 160px 28px 28px;
    border: 8px solid #fff;
    box-shadow: 0 20px 34px rgba(122, 54, 68, .22);
    filter: none;
    animation: float 7s ease-in-out infinite;
}
.collection .confetti { position: absolute; font-size: 1.6rem; opacity: .55; animation: float 5s ease-in-out infinite; }

/* ---------- Depoimentos ---------- */
.quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.quote {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 16px;
    position: relative;
}
.quote::before {
    content: '“';
    position: absolute;
    top: 6px; right: 22px;
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--pink-pale);
}
.quote__stars { color: #F5B942; letter-spacing: 3px; }
.quote p { font-size: .98rem; color: var(--cocoa-soft); position: relative; z-index: 1; }
.quote__who { display: flex; align-items: center; gap: 12px; }
.quote__avatar {
    width: 46px; height: 46px;
    border-radius: 50%;
    display: grid; place-items: center;
    font-weight: 800;
}
.quote__who strong { display: block; font-size: .95rem; }
.quote__who small { color: var(--cocoa-soft); font-size: .8rem; }

/* ---------- Instagram ---------- */
.insta { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.insta a {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}
.insta img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.insta a:hover img { transform: scale(1.08); }
.insta a::after {
    content: '♥';
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    font-size: 1.6rem;
    color: #fff;
    background: rgba(232, 160, 172, .55);
    opacity: 0;
    transition: opacity .3s;
}
.insta a:hover::after { opacity: 1; }

/* ---------- Newsletter ---------- */
.newsletter {
    border-radius: 32px;
    background: linear-gradient(115deg, var(--pink-soft), var(--peach));
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.newsletter h2 { font-size: clamp(1.7rem, 3vw, 2.4rem); margin-bottom: 10px; }
.newsletter p { color: var(--cocoa-soft); margin-bottom: 28px; }
.newsletter form {
    display: flex;
    gap: 10px;
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    padding: 8px;
    border-radius: 999px;
    box-shadow: var(--shadow-md);
}
.newsletter input {
    flex: 1;
    border: none;
    outline: none;
    padding: 10px 18px;
    font-family: var(--font-body);
    font-size: .98rem;
    background: transparent;
    color: var(--cocoa);
    min-width: 0;
}
.newsletter .btn { padding: 12px 26px; }

/* ---------- Footer ---------- */
.footer { background: var(--cocoa); color: #EADCD4; margin-top: 90px; }
.footer__grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding: 64px 0 44px;
}
.footer .logo__text { color: #fff; }
.footer p { font-size: .92rem; opacity: .75; margin-top: 14px; max-width: 34ch; }
.footer h4 { color: #fff; font-size: 1.02rem; margin-bottom: 16px; }
.footer li { margin-bottom: 10px; }
.footer li a { font-size: .92rem; opacity: .75; transition: opacity .2s, color .2s; }
.footer li a:hover { opacity: 1; color: var(--pink-soft); }
.footer__social { display: flex; gap: 10px; margin-top: 20px; }
.footer__social a {
    width: 40px; height: 40px;
    border-radius: 50%;
    display: grid; place-items: center;
    background: rgba(255, 255, 255, .1);
    transition: background .25s, transform .25s;
}
.footer__social a:hover { background: var(--coral); transform: translateY(-3px); }
.footer__pay { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 6px; }
.footer__pay span {
    background: rgba(255, 255, 255, .1);
    font-size: .72rem;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 8px;
    letter-spacing: .04em;
}
.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, .12);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    font-size: .82rem;
    opacity: .65;
}

/* ---------- Página Loja ---------- */
.page-head { padding: 56px 0 40px; text-align: center; }
.page-head h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 8px; }
.page-head p { color: var(--cocoa-soft); }
.breadcrumb { font-size: .85rem; font-weight: 700; color: var(--cocoa-soft); margin-bottom: 14px; }
.breadcrumb a:hover { color: var(--coral); }

.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; padding-bottom: 90px; }
.filters {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 96px;
}
.filters h3 { font-size: 1.05rem; margin-bottom: 14px; }
.filters .group { padding: 18px 0; border-top: 1px solid var(--line); }
.filters .group:first-of-type { border-top: none; padding-top: 0; }
.filters label { display: flex; align-items: center; gap: 10px; font-size: .95rem; font-weight: 700; color: var(--cocoa-soft); padding: 5px 0; cursor: pointer; }
.filters input[type="checkbox"] { accent-color: var(--coral); width: 17px; height: 17px; }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
    padding: 7px 14px;
    border-radius: 999px;
    border: 2px solid var(--line);
    background: #fff;
    font-weight: 800;
    font-size: .85rem;
    color: var(--cocoa-soft);
    transition: all .2s;
}
.chip:hover, .chip.is-on { border-color: var(--coral); background: var(--coral); color: #fff; }
.swatch-row { display: flex; gap: 10px; flex-wrap: wrap; }
.swatch {
    width: 30px; height: 30px;
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--line);
    cursor: pointer;
    transition: transform .2s, box-shadow .2s;
}
.swatch:hover, .swatch.is-on { transform: scale(1.15); box-shadow: 0 0 0 2px var(--coral); }

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}
.shop-toolbar .count { font-weight: 700; color: var(--cocoa-soft); font-size: .95rem; }
.shop-toolbar select {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--cocoa);
    padding: 10px 16px;
    border-radius: 999px;
    border: 2px solid var(--line);
    background: #fff;
    outline: none;
}
.cat-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-top: 22px; }
.cat-pills a {
    padding: 9px 20px;
    border-radius: 999px;
    background: #fff;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    font-size: .92rem;
    transition: all .25s;
}
.cat-pills a:hover, .cat-pills a.is-active { background: var(--coral); color: #fff; }

/* ---------- Página Produto ---------- */
.product-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 56px;
    padding: 48px 0 80px;
    align-items: start;
}
.gallery__main {
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}
.gallery__main img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gallery__thumbs button {
    border: 3px solid transparent;
    border-radius: 18px;
    overflow: hidden;
    padding: 0;
    background: #fff;
    box-shadow: var(--shadow-sm);
    transition: border-color .2s, transform .2s;
}
.gallery__thumbs button.is-on, .gallery__thumbs button:hover { border-color: var(--coral); transform: translateY(-2px); }
.gallery__thumbs img { aspect-ratio: 1; object-fit: cover; }

.pinfo .card__cat { margin-bottom: 6px; display: block; }
.pinfo h1 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 10px; }
.pinfo .card__stars { font-size: .95rem; margin-bottom: 18px; display: block; }
.pinfo__price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 4px; }
.pinfo__price .now { font-family: var(--font-display); font-size: 2.1rem; font-weight: 800; color: var(--coral-dark); }
.pinfo__price .old { font-size: 1.1rem; color: var(--cocoa-soft); text-decoration: line-through; }
.pinfo__installments { font-size: .92rem; color: var(--cocoa-soft); font-weight: 700; margin-bottom: 24px; }
.pinfo__desc { color: var(--cocoa-soft); margin-bottom: 28px; max-width: 52ch; }
.pinfo h4 { font-size: .95rem; margin-bottom: 10px; }
.pinfo .picker { margin-bottom: 24px; }
.size-row { display: flex; gap: 10px; flex-wrap: wrap; }
.size {
    min-width: 46px;
    height: 46px;
    padding: 0 12px;
    border-radius: 14px;
    border: 2px solid var(--line);
    background: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .98rem;
    color: var(--cocoa);
    transition: all .2s;
}
.size:hover, .size.is-on { border-color: var(--coral); background: var(--coral); color: #fff; transform: translateY(-2px); }
.pinfo__buy { display: flex; gap: 14px; align-items: stretch; margin: 30px 0 20px; flex-wrap: wrap; }
.qty {
    display: flex;
    align-items: center;
    background: #fff;
    border: 2px solid var(--line);
    border-radius: 999px;
    overflow: hidden;
}
.qty button { width: 44px; height: 100%; border: none; background: transparent; font-size: 1.2rem; font-weight: 800; color: var(--coral); }
.qty span { min-width: 34px; text-align: center; font-weight: 800; }
.pinfo__buy .btn { flex: 1; min-width: 220px; }
.pinfo__note { display: flex; gap: 20px; flex-wrap: wrap; font-size: .85rem; font-weight: 700; color: var(--cocoa-soft); }
.pinfo__note span { display: flex; align-items: center; gap: 7px; }

.accordion { margin-top: 34px; border-top: 1px solid var(--line); }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.02rem;
    padding: 18px 4px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: '+'; font-size: 1.3rem; color: var(--coral); transition: transform .25s; }
.accordion details[open] summary::after { transform: rotate(45deg); }
.accordion .acc-body { padding: 0 4px 18px; color: var(--cocoa-soft); font-size: .95rem; }

/* ---------- Responsivo ---------- */
@media (max-width: 1024px) {
    .perks { grid-template-columns: repeat(2, 1fr); }
    .quotes { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
    .insta { grid-template-columns: repeat(3, 1fr); }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .collection { grid-template-columns: 1fr; padding: 44px 32px; text-align: center; }
    .collection p { margin-inline: auto; }
}

@media (max-width: 900px) {
    .nav {
        position: fixed;
        inset: 0;
        top: 0;
        z-index: 60;
        background: var(--cream);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        font-size: 1.3rem;
        transform: translateX(100%);
        transition: transform .35s ease;
    }
    .nav.is-open { transform: none; }
    .nav a { font-size: 1.25rem; }
    .menu-toggle { display: grid; z-index: 70; }
    .hero__inner, .product-layout { grid-template-columns: 1fr; }
    .hero { padding: 40px 0 70px; }
    .hero__art { order: -1; max-width: 420px; margin-inline: auto; }
    .shop-layout { grid-template-columns: 1fr; }
    .filters { position: static; }
    .cats { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 560px) {
    .perks { grid-template-columns: 1fr; }
    .insta { grid-template-columns: repeat(2, 1fr); }
    .footer__grid { grid-template-columns: 1fr; gap: 28px; }
    .newsletter { padding: 40px 22px; }
    .newsletter form { flex-direction: column; border-radius: 24px; }
    .newsletter .btn { width: 100%; }
    .sticker { display: none; }
    .section { padding: 56px 0; }
}
