:root {
    --creme: #faf5ec;
    --paper: #fffdf8;
    --ink: #241d17;
    --ink-soft: #6d5f52;
    --terra: #c2401c;
    --terra-dark: #9a3315;
    --lilac: #b787f5;
    --teal: #17a398;
    --amber: #f0a72c;
    --amber-text: #a86b07;
    --teal-text: #0e7c72;
    --rose: #e78ca5;
    --line: #e9dfcd;
    --shadow: 0 18px 40px -18px rgba(60, 40, 20, .28);
    --r-card: 18px;
    --font-display: 'Young Serif', serif;
    --font-body: 'Figtree', sans-serif;
    --font-hand: 'Caveat', cursive;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink);
    background: var(--creme);
    -webkit-font-smoothing: antialiased;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: .05;
    mix-blend-mode: multiply;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)' opacity='.6'/%3E%3C/svg%3E");
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.wrap {
    width: min(1200px, 92%);
    margin-inline: auto;
}

h1, h2, h3 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.12;
    letter-spacing: -.01em;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--terra);
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--terra);
    border-radius: 2px;
}

.hand {
    font-family: var(--font-hand);
    font-weight: 600;
    color: var(--terra);
}

.ticker {
    background: var(--ink);
    color: var(--creme);
    overflow: hidden;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    padding: .5rem 0;
}

.ticker-track {
    display: flex;
    gap: 3rem;
    width: max-content;
    animation: ticker 28s linear infinite;
}

.ticker-track span {
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 3rem;
}

.ticker-track span::after {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--amber);
}

@keyframes ticker {
    to { transform: translateX(-50%); }
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 245, 236, .92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--line);
}

.header-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: .9rem 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    line-height: 1;
    display: flex;
    align-items: baseline;
    gap: .3rem;
}

.logo .no {
    color: var(--terra);
}

.logo small {
    font-family: var(--font-hand);
    font-size: .95rem;
    color: var(--ink-soft);
}

.main-nav {
    display: flex;
    gap: 1.8rem;
    font-weight: 600;
    font-size: .95rem;
}

.main-nav a {
    position: relative;
    padding: .3rem 0;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--terra);
    transition: width .25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: .4rem;
}

.icon-btn {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: background .2s ease;
}

.icon-btn:hover {
    background: #f0e7d6;
}

.icon-btn svg {
    width: 20px;
    height: 20px;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 0;
    min-width: 17px;
    height: 17px;
    border-radius: 9px;
    background: var(--terra);
    color: #fff;
    font-size: .65rem;
    font-weight: 700;
    display: grid;
    place-items: center;
    padding-inline: 4px;
}

.burger {
    display: none;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .95rem 1.9rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.btn-primary {
    background: var(--terra);
    color: #fff;
    box-shadow: 0 12px 24px -12px rgba(194, 64, 28, .7);
}

.btn-primary:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
}

.btn-ghost {
    border: 2px solid var(--ink);
    color: var(--ink);
}

.btn-ghost:hover {
    background: var(--ink);
    color: var(--creme);
    transform: translateY(-2px);
}

.btn-dark {
    background: var(--ink);
    color: var(--creme);
}

.btn-dark:hover {
    background: #3a2f26;
    transform: translateY(-2px);
}

.hero {
    position: relative;
    overflow: hidden;
    padding: 4.5rem 0 5.5rem;
}

.hero-in {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3rem;
    align-items: center;
}

.hero h1 {
    font-size: clamp(2.5rem, 5.2vw, 4.1rem);
    margin: 1.1rem 0 1.4rem;
}

.hero h1 em {
    font-style: normal;
    color: var(--terra);
    position: relative;
    white-space: nowrap;
}

.hero h1 em svg {
    position: absolute;
    left: 0;
    bottom: -.18em;
    width: 100%;
    height: .35em;
}

.hero p.lead {
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 34rem;
    margin-bottom: 2.2rem;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.6rem;
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: .9rem;
    color: var(--ink-soft);
}

.proof-dots {
    display: flex;
}

.proof-dots i {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 3px solid var(--creme);
    margin-left: -8px;
}

.proof-dots i:first-child {
    margin-left: 0;
}

.hero-visual {
    position: relative;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
    align-items: start;
}

.hero-visual figure {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--paper);
}

.hero-visual figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.hero-visual figure:hover img {
    transform: scale(1.05);
}

.hv-1 {
    border-radius: 130px 130px 22px 22px;
    aspect-ratio: 3 / 4;
    margin-top: 2.5rem;
}

.hv-2 {
    border-radius: 22px 22px 22px 110px;
    aspect-ratio: 3 / 4;
}

.hv-3 {
    grid-column: 1 / -1;
    border-radius: 22px;
    aspect-ratio: 16 / 7;
    display: none;
}

.hero-badge {
    position: absolute;
    z-index: 3;
    left: -1.4rem;
    bottom: 2.2rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: .8rem 1.1rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .85rem;
    font-weight: 700;
    animation: floaty 5s ease-in-out infinite;
}

.hero-badge .dot {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #ffe9c9, var(--amber) 55%, #c77c0e);
}

@keyframes floaty {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-9px); }
}

.hero-blob {
    position: absolute;
    z-index: -1;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    filter: blur(2px);
    opacity: .55;
}

.hb-1 {
    width: 420px;
    height: 420px;
    right: -140px;
    top: -120px;
    background: radial-gradient(circle at 35% 30%, #e9d9ff, var(--lilac));
    animation: blob 14s ease-in-out infinite alternate;
}

.hb-2 {
    width: 260px;
    height: 260px;
    left: -90px;
    bottom: -70px;
    background: radial-gradient(circle at 35% 30%, #c9f2ec, var(--teal));
    animation: blob 11s ease-in-out infinite alternate-reverse;
}

@keyframes blob {
    from { border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%; transform: rotate(0deg); }
    to { border-radius: 45% 55% 42% 58% / 42% 45% 58% 55%; transform: rotate(10deg); }
}

.reassure {
    background: var(--ink);
    color: var(--creme);
    padding: 2.2rem 0;
}

.reassure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.reassure-item {
    display: flex;
    gap: .9rem;
    align-items: flex-start;
}

.reassure-item svg {
    width: 26px;
    height: 26px;
    flex: none;
    color: var(--amber);
}

.reassure-item strong {
    display: block;
    font-size: .98rem;
}

.reassure-item span {
    font-size: .84rem;
    opacity: .75;
}

section.block {
    padding: 5rem 0;
}

.block-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

.block-head h2 {
    font-size: clamp(1.8rem, 3.4vw, 2.6rem);
    margin-top: .8rem;
}

.block-head .more {
    font-weight: 700;
    font-size: .95rem;
    color: var(--terra);
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    white-space: nowrap;
    padding-bottom: .4rem;
}

.block-head .more:hover {
    text-decoration: underline;
}

.rail {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(240px, 1fr);
    gap: 1.4rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 1rem;
    scrollbar-width: thin;
    scrollbar-color: var(--terra) transparent;
}

.rail > * {
    scroll-snap-align: start;
}

.card {
    position: relative;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    overflow: hidden;
    transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.card-media {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: #f3ecdf;
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity .35s ease, transform .5s ease;
}

.card-media img.alt {
    position: absolute;
    inset: 0;
    opacity: 0;
}

.card:hover .card-media img.alt {
    opacity: 1;
}

.card:hover .card-media img {
    transform: scale(1.04);
}

.badge {
    position: absolute;
    top: .9rem;
    left: .9rem;
    z-index: 2;
    padding: .3rem .8rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.badge-new {
    background: var(--amber);
    color: var(--ink);
}

.badge-top {
    background: var(--ink);
    color: var(--creme);
}

.card-add {
    position: absolute;
    right: .9rem;
    bottom: .9rem;
    z-index: 2;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--paper);
    color: var(--ink);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 20px -8px rgba(60, 40, 20, .4);
    transition: background .2s ease, color .2s ease, transform .2s ease;
}

.card-add:hover {
    background: var(--terra);
    color: #fff;
    transform: scale(1.08);
}

.card-add svg {
    width: 18px;
    height: 18px;
}

.card-body {
    padding: 1rem 1.1rem 1.2rem;
}

.card-cat {
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.02rem;
    margin: .3rem 0 .45rem;
    line-height: 1.3;
}

.card-title a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price {
    font-weight: 800;
    font-size: 1.05rem;
}

.price small {
    font-size: .78rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.swatches {
    display: flex;
    gap: .3rem;
}

.swatches i {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, .12);
}

.cats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 220px;
    gap: 1.3rem;
}

.cat-tile {
    position: relative;
    border-radius: var(--r-card);
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    color: #fff;
    box-shadow: var(--shadow);
}

.cat-tile img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.cat-tile:hover img {
    transform: scale(1.07);
}

.cat-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20, 12, 6, .75), rgba(20, 12, 6, 0) 55%);
}

.cat-tile .cat-label {
    position: relative;
    z-index: 2;
    padding: 1.1rem 1.2rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
}

.cat-label strong {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    display: block;
}

.cat-label span {
    font-size: .78rem;
    opacity: .85;
}

.cat-label .arr {
    width: 34px;
    height: 34px;
    flex: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, .18);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    transition: background .2s ease;
}

.cat-tile:hover .arr {
    background: var(--terra);
}

.cat-label .arr svg {
    width: 15px;
    height: 15px;
}

.cat-wide {
    grid-column: span 2;
}

.cat-tall {
    grid-row: span 2;
}

.letters-strip {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 26px;
    padding: 2.6rem 2.4rem;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 2.5rem;
    align-items: center;
}

.letters-strip h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin: .8rem 0 1rem;
}

.letters-strip p {
    color: var(--ink-soft);
    margin-bottom: 1.6rem;
}

.alphabet {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: .55rem;
}

.alphabet a {
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    font-family: var(--font-display);
    font-size: 1.15rem;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: var(--creme);
    transition: all .18s ease;
}

.alphabet a:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
    transform: translateY(-3px) rotate(-3deg);
}

.colors-block {
    background: var(--ink);
    color: var(--creme);
    border-radius: 32px;
    padding: 3.5rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.colors-block .eyebrow {
    color: var(--amber);
}

.colors-block .eyebrow::before {
    background: var(--amber);
}

.colors-block h2 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    margin: .8rem 0 1rem;
}

.colors-block p {
    opacity: .8;
    margin-bottom: 1.8rem;
}

.palette {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: .8rem;
}

.palette button {
    aspect-ratio: 1;
    border-radius: 50%;
    border: 2px solid transparent;
    position: relative;
    transition: transform .18s ease;
    box-shadow: inset -4px -6px 10px rgba(0, 0, 0, .25), inset 4px 5px 8px rgba(255, 255, 255, .35);
}

.palette button:hover,
.palette button.on {
    transform: scale(1.16);
    border-color: var(--creme);
}

.palette button span {
    position: absolute;
    bottom: -1.7rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    font-size: .68rem;
    opacity: 0;
    transition: opacity .18s ease;
    pointer-events: none;
}

.palette button:hover span,
.palette button.on span {
    opacity: .9;
}

.colors-side {
    display: grid;
    gap: 2.4rem;
}

.color-preview {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}

.resin-drop {
    width: 230px;
    height: 230px;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .75), rgba(255, 255, 255, 0) 38%), var(--drop, #2fc4b2);
    box-shadow: inset -14px -18px 30px rgba(0, 0, 0, .28), 0 24px 44px -18px rgba(0, 0, 0, .55);
    animation: blob 9s ease-in-out infinite alternate;
    transition: background .4s ease;
}

.color-preview strong {
    font-family: var(--font-hand);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--amber);
}

.split {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
}

.split-media {
    position: relative;
}

.split-media figure {
    border-radius: 140px 140px 24px 24px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    box-shadow: var(--shadow);
}

.split-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-media .stamp {
    position: absolute;
    right: -1.2rem;
    bottom: -1.2rem;
    width: 118px;
    height: 118px;
    border-radius: 50%;
    background: var(--terra);
    color: var(--creme);
    display: grid;
    place-items: center;
    text-align: center;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    line-height: 1.35;
    box-shadow: var(--shadow);
    animation: spin 22s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.split h2 {
    font-size: clamp(1.9rem, 3.2vw, 2.6rem);
    margin: .9rem 0 1.2rem;
}

.split p {
    color: var(--ink-soft);
    margin-bottom: 1.1rem;
}

.split .sig {
    font-family: var(--font-hand);
    font-size: 1.6rem;
    color: var(--ink);
    margin: 1.4rem 0 1.8rem;
}

.reviews {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.review {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: var(--r-card);
    padding: 1.7rem 1.6rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.review .stars {
    color: var(--amber-text);
    letter-spacing: .15em;
    font-size: .95rem;
}

.review p {
    font-size: .97rem;
    color: var(--ink-soft);
    flex: 1;
}

.review footer {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .88rem;
    font-weight: 700;
}

.review footer i {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    flex: none;
    display: grid;
    place-items: center;
    color: #fff;
    font-style: normal;
    font-family: var(--font-display);
}

.review footer span {
    display: block;
    font-weight: 500;
    font-size: .78rem;
    color: var(--ink-soft);
}

.custom-cta {
    border-radius: 32px;
    padding: 4rem 3rem;
    text-align: center;
    background:
        radial-gradient(600px 300px at 12% 110%, rgba(183, 135, 245, .35), transparent 65%),
        radial-gradient(500px 280px at 88% -10%, rgba(23, 163, 152, .3), transparent 60%),
        var(--paper);
    border: 1px solid var(--line);
}

.custom-cta h2 {
    font-size: clamp(1.9rem, 3.4vw, 2.7rem);
    margin: .9rem 0 1rem;
}

.custom-cta p {
    max-width: 40rem;
    margin: 0 auto 2rem;
    color: var(--ink-soft);
}

.newsletter {
    background: var(--terra);
    color: #fff;
    padding: 3.6rem 0;
}

.newsletter-in {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    align-items: center;
}

.newsletter h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: .5rem;
}

.newsletter p {
    opacity: .88;
    font-size: .98rem;
}

.newsletter form {
    display: flex;
    background: #fff;
    border-radius: 999px;
    padding: .4rem;
    box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .4);
}

.newsletter input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    padding: .7rem 1.2rem;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    min-width: 0;
}

.newsletter .btn {
    padding: .8rem 1.6rem;
}

.site-footer {
    background: var(--ink);
    color: #cdc3b6;
    padding: 4rem 0 2rem;
    font-size: .92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.site-footer .logo {
    color: var(--creme);
    margin-bottom: 1rem;
}

.footer-grid h3 {
    font-size: 1rem;
    color: var(--creme);
    margin-bottom: 1.1rem;
}

.footer-grid li {
    margin-bottom: .55rem;
}

.footer-grid a:hover {
    color: var(--amber);
}

.socials {
    display: flex;
    gap: .7rem;
    margin-top: 1.2rem;
}

.socials a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .25);
    display: grid;
    place-items: center;
    transition: all .2s ease;
}

.socials a:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

.socials svg {
    width: 17px;
    height: 17px;
}

.footer-bottom {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.6rem;
    font-size: .8rem;
    opacity: .65;
}

.page-head {
    padding: 3.2rem 0 2.2rem;
}

.crumbs {
    font-size: .82rem;
    color: var(--ink-soft);
    margin-bottom: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    align-items: center;
}

.crumbs a:hover {
    color: var(--terra);
    text-decoration: underline;
}

.crumbs .sep {
    opacity: .5;
}

.page-head h1 {
    font-size: clamp(2.1rem, 4.4vw, 3.2rem);
    margin-bottom: .8rem;
}

.page-head .intro {
    max-width: 46rem;
    color: var(--ink-soft);
    font-size: 1.05rem;
}

.shop-toolbar {
    position: sticky;
    top: 66px;
    z-index: 50;
    background: rgba(250, 245, 236, .94);
    backdrop-filter: blur(8px);
    padding: .9rem 0;
    border-block: 1px solid var(--line);
    margin-bottom: 2.4rem;
}

.toolbar-in {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.filters {
    display: flex;
    gap: .5rem;
    overflow-x: auto;
    scrollbar-width: none;
    flex: 1;
}

.filters::-webkit-scrollbar {
    display: none;
}

.chip {
    flex: none;
    padding: .48rem 1.05rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink);
    transition: all .18s ease;
    white-space: nowrap;
}

.chip:hover {
    border-color: var(--ink);
}

.chip.on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--creme);
}

.sort {
    flex: none;
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    color: var(--ink-soft);
}

.sort select {
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    padding: .45rem .9rem;
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
}

.shop-grid .card.hide {
    display: none;
}

.count-note {
    font-size: .88rem;
    color: var(--ink-soft);
    margin-bottom: 1.2rem;
}

.pagination {
    display: flex;
    justify-content: center;
    gap: .5rem;
    margin-top: 3rem;
}

.pagination a,
.pagination span {
    min-width: 42px;
    height: 42px;
    padding-inline: .6rem;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-weight: 700;
    font-size: .9rem;
    border: 1px solid var(--line);
    background: var(--paper);
    transition: all .18s ease;
}

.pagination a:hover {
    border-color: var(--ink);
}

.pagination .current {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

.seo-foot {
    margin-top: 4rem;
    padding-top: 2.6rem;
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 2.5rem;
}

.seo-foot h2 {
    font-size: 1.45rem;
    margin-bottom: .9rem;
}

.seo-foot p {
    color: var(--ink-soft);
    font-size: .95rem;
    margin-bottom: .9rem;
}

.seo-foot h3 {
    font-size: 1rem;
    margin-bottom: .8rem;
}

.taglinks {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.taglinks a {
    padding: .4rem .9rem;
    border-radius: 999px;
    background: var(--paper);
    border: 1px solid var(--line);
    font-size: .82rem;
    font-weight: 600;
    transition: all .18s ease;
}

.taglinks a:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

.product-layout {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 3.5rem;
    padding: 2.5rem 0 4rem;
}

.gallery-main {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: #f3ecdf;
    position: relative;
    box-shadow: var(--shadow);
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-thumbs {
    display: flex;
    gap: .8rem;
    margin-top: .9rem;
}

.gallery-thumbs button {
    width: 84px;
    aspect-ratio: 3 / 4;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid transparent;
    padding: 0;
    transition: border-color .18s ease;
}

.gallery-thumbs button.on,
.gallery-thumbs button:hover {
    border-color: var(--terra);
}

.gallery-thumbs img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.p-cat {
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--terra);
}

.product-info h1 {
    font-size: clamp(1.9rem, 3.4vw, 2.6rem);
    margin: .6rem 0 .9rem;
}

.p-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    font-size: .9rem;
    color: var(--ink-soft);
}

.p-meta .stars {
    color: var(--amber-text);
    letter-spacing: .12em;
}

.p-price {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.3rem;
}

.p-price small {
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink-soft);
}

.p-desc {
    color: var(--ink-soft);
    margin-bottom: 1.8rem;
    max-width: 34rem;
}

.opt-label {
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: .7rem;
    display: flex;
    gap: .5rem;
}

.opt-label span {
    color: var(--ink-soft);
    font-weight: 500;
}

.p-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem;
    margin-bottom: 1.6rem;
}

.p-swatches a,
.p-swatches button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    box-shadow: inset -3px -4px 7px rgba(0, 0, 0, .22), inset 3px 4px 6px rgba(255, 255, 255, .35);
    transition: transform .16s ease;
}

.p-swatches a:hover,
.p-swatches button:hover {
    transform: scale(1.14);
}

.p-swatches a.on,
.p-swatches button.on {
    border-color: var(--creme);
    outline-color: var(--ink);
}

.buy-row {
    display: flex;
    gap: .9rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.qty {
    display: flex;
    align-items: center;
    border: 1px solid var(--line);
    background: var(--paper);
    border-radius: 999px;
    overflow: hidden;
}

.qty button {
    width: 44px;
    height: 100%;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink);
}

.qty button:hover {
    background: #f0e7d6;
}

.qty output {
    min-width: 34px;
    text-align: center;
    font-weight: 700;
}

.buy-row .btn-primary {
    flex: 1;
}

.wish-btn {
    width: 54px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--paper);
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: all .2s ease;
}

.wish-btn:hover {
    color: var(--terra);
    border-color: var(--terra);
}

.wish-btn svg {
    width: 20px;
    height: 20px;
}

.stock-note {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--teal-text);
    margin-bottom: 1.6rem;
}

.stock-note i {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--teal);
    animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
    50% { opacity: .35; }
}

.p-perks {
    border-top: 1px solid var(--line);
    padding-top: 1.4rem;
    display: grid;
    gap: .8rem;
    font-size: .9rem;
}

.p-perks li {
    display: flex;
    gap: .7rem;
    align-items: center;
    color: var(--ink-soft);
}

.p-perks svg {
    width: 19px;
    height: 19px;
    color: var(--terra);
    flex: none;
}

.tabs {
    border-top: 1px solid var(--line);
    padding: 3rem 0 1rem;
}

.tab-btns {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.tab-btns button {
    padding: .6rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .92rem;
    border: 1px solid var(--line);
    background: var(--paper);
    color: var(--ink);
    transition: all .18s ease;
}

.tab-btns button.on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--creme);
}

.tab-pane {
    display: none;
    max-width: 46rem;
    color: var(--ink-soft);
}

.tab-pane.on {
    display: block;
}

.tab-pane h2 {
    font-size: 1.35rem;
    color: var(--ink);
    margin-bottom: 1rem;
}

.tab-pane p {
    margin-bottom: 1rem;
}

.tab-pane ul {
    list-style: disc;
    padding-left: 1.3rem;
    margin-bottom: 1rem;
}

.tab-pane li {
    margin-bottom: .4rem;
}

.faq {
    max-width: 52rem;
}

.faq details {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    margin-bottom: .8rem;
    overflow: hidden;
}

.faq summary {
    padding: 1.1rem 1.4rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--terra);
    transition: transform .2s ease;
}

.faq details[open] summary::after {
    transform: rotate(45deg);
}

.faq details p {
    padding: 0 1.4rem 1.2rem;
    color: var(--ink-soft);
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .6s ease, transform .6s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

@media (max-width: 1024px) {
    .cats {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.main-nav li {
    list-style: none;
}

.main-nav .current-menu-item > a::after,
.main-nav .current_page_item > a::after {
    width: 100%;
}

.burger .ico-close {
    display: none;
}

body.nav-open {
    overflow: hidden;
}

body.nav-open .burger .ico-menu {
    display: none;
}

body.nav-open .burger .ico-close {
    display: block;
}

@media (max-width: 860px) {
    .site-header {
        backdrop-filter: none;
        background: var(--creme);
    }

    .logo,
    .header-actions {
        position: relative;
        z-index: 200;
    }

    .main-nav {
        position: fixed;
        inset: 0;
        height: 100vh;
        height: 100dvh;
        z-index: 150;
        display: flex;
        flex-direction: column;
        align-items: stretch;
        justify-content: center;
        gap: 0;
        padding: 5.8rem 2.1rem 3rem;
        overflow-y: auto;
        background:
            radial-gradient(430px 340px at 92% -5%, rgba(23, 163, 152, .18), transparent 70%),
            radial-gradient(420px 360px at -12% 108%, rgba(240, 167, 44, .22), transparent 70%),
            radial-gradient(300px 300px at 105% 70%, rgba(194, 64, 28, .12), transparent 70%),
            var(--creme);
        visibility: hidden;
        opacity: 0;
        transform: translateY(-2%);
        transition: opacity .28s ease, transform .32s ease, visibility 0s linear .32s;
    }

    .main-nav.open {
        visibility: visible;
        opacity: 1;
        transform: none;
        transition: opacity .28s ease, transform .32s ease;
    }

    .main-nav li {
        width: 100%;
    }

    .main-nav a {
        display: block;
        width: 100%;
        font-family: var(--font-display);
        font-weight: 400;
        font-size: clamp(1.8rem, 7.5vw, 2.4rem);
        line-height: 1.2;
        padding: .8rem 0;
        border-bottom: 1px solid var(--line);
    }

    .main-nav a::after {
        display: none;
    }

    .main-nav a.active,
    .main-nav .current-menu-item > a,
    .main-nav .current_page_item > a {
        color: var(--terra);
    }

    .main-nav > * {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity .4s ease, transform .4s ease;
    }

    .main-nav.open > * {
        opacity: 1;
        transform: none;
    }

    .main-nav.open > *:nth-child(1) { transition-delay: .06s; }
    .main-nav.open > *:nth-child(2) { transition-delay: .11s; }
    .main-nav.open > *:nth-child(3) { transition-delay: .16s; }
    .main-nav.open > *:nth-child(4) { transition-delay: .21s; }
    .main-nav.open > *:nth-child(5) { transition-delay: .26s; }
    .main-nav.open > *:nth-child(6) { transition-delay: .31s; }
    .main-nav.open > *:nth-child(7) { transition-delay: .36s; }

    .burger {
        display: grid;
        place-items: center;
        width: 42px;
        height: 42px;
    }

    .burger svg {
        width: 24px;
        height: 24px;
    }

    .hero {
        padding: 2.8rem 0 3.5rem;
    }

    .hero-in,
    .split,
    .colors-block,
    .letters-strip,
    .newsletter-in,
    .product-layout,
    .seo-foot {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        margin-top: 1rem;
    }

    .hv-1 {
        margin-top: 1.6rem;
    }

    .reassure-grid {
        grid-template-columns: 1fr 1fr;
    }

    .colors-block {
        padding: 2.6rem 1.6rem;
    }

    .palette {
        grid-template-columns: repeat(6, 1fr);
    }

    .split-media .stamp {
        right: .5rem;
    }

    .shop-toolbar {
        top: 62px;
    }

    .shop-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .9rem;
    }

    section.block {
        padding: 3.4rem 0;
    }

    .letters-strip {
        padding: 2rem 1.4rem;
    }

    .alphabet {
        grid-template-columns: repeat(7, 1fr);
        gap: .4rem;
    }

    .custom-cta {
        padding: 2.8rem 1.6rem;
    }
}

@media (max-width: 520px) {
    .cats {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 170px;
    }

    .cat-wide {
        grid-column: span 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .reassure-grid {
        grid-template-columns: 1fr;
    }

    .buy-row {
        flex-wrap: wrap;
    }

    .buy-row .btn-primary {
        order: 3;
        width: 100%;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: .65rem;
}

.logo-mark {
    width: 46px;
    height: 46px;
    flex: none;
    filter: drop-shadow(0 6px 10px rgba(194, 64, 28, .35));
}

.logo-mark text {
    font-family: var(--font-display);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.28rem;
    line-height: 1;
}

.logo-text em {
    font-style: normal;
    color: var(--terra);
}

.logo-text small {
    display: block;
    font-family: var(--font-hand);
    font-size: .92rem;
    color: var(--ink-soft);
    margin-top: .22rem;
}

.site-footer .logo-text small {
    color: #a99e90;
}

.cart-count.bump {
    animation: bump .35s ease;
}

@keyframes bump {
    40% { transform: scale(1.35); }
}

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24, 16, 10, .45);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 200;
}

.drawer-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 94vw);
    background: var(--creme);
    z-index: 210;
    display: flex;
    flex-direction: column;
    transform: translateX(105%);
    transition: transform .35s cubic-bezier(.22, .9, .3, 1);
    box-shadow: -24px 0 60px rgba(30, 18, 8, .25);
}

.cart-drawer.open {
    transform: none;
}

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
}

.drawer-count {
    font-weight: 500;
    color: var(--ink-soft);
    font-size: .9rem;
}

.drawer-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink);
}

.drawer-close:hover {
    background: #f0e7d6;
}

.drawer-close svg {
    width: 18px;
    height: 18px;
}

.drawer-items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.4rem;
}

.drawer-empty {
    text-align: center;
    color: var(--ink-soft);
    padding: 3rem 1rem;
}

.drawer-line {
    display: grid;
    grid-template-columns: 62px 1fr auto;
    gap: .9rem;
    align-items: center;
    padding: .8rem 0;
    border-bottom: 1px solid var(--line);
}

.drawer-line img {
    width: 62px;
    height: 82px;
    object-fit: cover;
    border-radius: 10px;
}

.drawer-line p {
    font-weight: 600;
    font-size: .88rem;
    line-height: 1.35;
    margin-bottom: .4rem;
}

.line-qty {
    display: inline-flex;
    align-items: center;
    gap: .1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
}

.line-qty button {
    width: 28px;
    height: 28px;
    font-weight: 700;
    color: var(--ink);
    border-radius: 50%;
}

.line-qty button:hover {
    background: #f0e7d6;
}

.line-qty span {
    min-width: 22px;
    text-align: center;
    font-weight: 700;
    font-size: .85rem;
}

.drawer-foot {
    border-top: 1px solid var(--line);
    padding: 1.1rem 1.4rem 1.4rem;
    display: grid;
    gap: .7rem;
    background: var(--paper);
}

.drawer-ship {
    font-size: .85rem;
    color: var(--teal-text);
    font-weight: 600;
    min-height: 1.1em;
}

.drawer-total {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 1rem;
}

.drawer-total strong {
    font-size: 1.35rem;
}

.hero-full {
    position: relative;
    min-height: calc(100vh - 104px);
    overflow: hidden;
}

.hf-slide {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .7s ease;
}

.hf-slide.on {
    opacity: 1;
    pointer-events: auto;
    position: relative;
}

.hf-copy {
    padding: 4rem 4vw 5rem max(4vw, calc((100vw - 1200px) / 2));
    z-index: 2;
}

.hf-copy h1,
.hf-copy .hf-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: clamp(2.6rem, 5.6vw, 4.6rem);
    line-height: 1.06;
    margin: 1.1rem 0 1.3rem;
}

.hf-copy .hf-title em,
.hf-copy h1 em {
    font-style: normal;
    color: var(--terra);
}

.hf-copy p {
    font-size: 1.12rem;
    color: var(--ink-soft);
    max-width: 30rem;
    margin-bottom: 2.1rem;
}

.hf-media {
    position: relative;
    height: 100%;
    min-height: 480px;
}

.hf-media figure {
    position: absolute;
    inset: 3rem 4vw 3rem 0;
    border-radius: 200px 200px 26px 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hf-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hf-blob {
    position: absolute;
    z-index: -1;
    width: 560px;
    height: 560px;
    right: -160px;
    top: -120px;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    filter: blur(2px);
    opacity: .5;
    animation: blob 14s ease-in-out infinite alternate;
}

.hf-tag {
    display: inline-block;
    background: var(--amber);
    color: var(--ink);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 999px;
    margin-bottom: .4rem;
}

.hf-nav {
    position: absolute;
    left: max(4vw, calc((100vw - 1200px) / 2));
    bottom: 2.2rem;
    z-index: 5;
    display: flex;
    align-items: center;
    gap: 1.1rem;
}

.hf-dots {
    display: flex;
    gap: .5rem;
}

.hf-dots button {
    width: 38px;
    height: 24px;
    background: none;
    display: grid;
    align-items: center;
}

.hf-dots button::after {
    content: "";
    display: block;
    height: 6px;
    border-radius: 3px;
    background: #ddd2bd;
    transition: background .25s ease;
}

.hf-dots button.on::after {
    background: var(--terra);
}

.hf-prev,
.hf-next {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1.5px solid var(--ink);
    display: grid;
    place-items: center;
    color: var(--ink);
    transition: all .2s ease;
}

.hf-prev:hover,
.hf-next:hover {
    background: var(--ink);
    color: var(--creme);
}

.hf-prev svg,
.hf-next svg {
    width: 17px;
    height: 17px;
}

.page-hero {
    padding: 3.4rem 0 2.6rem;
    position: relative;
    overflow: hidden;
}

.config-layout {
    display: grid;
    grid-template-columns: .95fr 1.05fr;
    gap: 3rem;
    align-items: start;
    padding-bottom: 4rem;
}

.config-preview-wrap {
    position: sticky;
    top: 110px;
}

.config-preview {
    border-radius: 26px;
    overflow: hidden;
    aspect-ratio: 3 / 4;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
}

.config-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.config-drop {
    width: 72%;
    aspect-ratio: 1;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .7), rgba(255, 255, 255, 0) 40%), var(--drop, #2fc4b2);
    box-shadow: inset -16px -20px 34px rgba(0, 0, 0, .28), 0 28px 48px -20px rgba(0, 0, 0, .4);
    display: grid;
    place-items: center;
    animation: blob 9s ease-in-out infinite alternate;
}

.config-drop span {
    font-family: var(--font-display);
    font-size: clamp(4rem, 10vw, 7rem);
    color: rgba(255, 255, 255, .92);
    text-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.config-note {
    display: flex;
    align-items: center;
    gap: .6rem;
    font-size: .88rem;
    font-weight: 600;
    color: var(--ink-soft);
    margin-top: .9rem;
}

.dot-ok,
.dot-make {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: none;
}

.dot-ok { background: var(--teal); }
.dot-make { background: var(--amber); }

.config-step {
    margin-bottom: 1.8rem;
}

.config-step .opt-label {
    margin-bottom: .8rem;
}

.type-btns {
    display: flex;
    gap: .6rem;
}

.type-btns button {
    padding: .6rem 1.5rem;
    border-radius: 999px;
    border: 1.5px solid var(--line);
    background: var(--paper);
    font-weight: 700;
    color: var(--ink);
    transition: all .18s ease;
}

.type-btns button.on {
    background: var(--ink);
    border-color: var(--ink);
    color: var(--creme);
}

.char-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
    gap: .5rem;
}

.char-grid button {
    aspect-ratio: 1;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--paper);
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--ink);
    transition: all .16s ease;
}

.char-grid button:hover {
    transform: translateY(-3px) rotate(-3deg);
    border-color: var(--ink);
}

.char-grid button.on {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

.config-colors {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
}

.config-colors button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    box-shadow: inset -3px -4px 7px rgba(0, 0, 0, .22), inset 3px 4px 6px rgba(255, 255, 255, .35);
    transition: transform .16s ease;
}

.config-colors button:hover {
    transform: scale(1.15);
}

.config-colors button.on {
    border-color: var(--creme);
    outline-color: var(--ink);
}

.config-name {
    font-family: var(--font-display);
    font-size: 1.25rem;
    margin-bottom: .3rem;
}

.cart-wrap {
    display: grid;
    grid-template-columns: 1.5fr .9fr;
    gap: 2.5rem;
    align-items: start;
    padding-bottom: 4.5rem;
}

.cart-line {
    display: grid;
    grid-template-columns: 84px 1fr auto auto auto;
    gap: 1.1rem;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .9rem 1.1rem;
    margin-bottom: .8rem;
}

.cart-line img {
    width: 84px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-line-info p {
    font-weight: 700;
    line-height: 1.35;
}

.cart-line-info span {
    font-size: .84rem;
    color: var(--ink-soft);
}

.cart-line > strong {
    font-size: 1.05rem;
    min-width: 70px;
    text-align: right;
}

.line-del {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--ink-soft);
}

.line-del:hover {
    background: #f7e5dc;
    color: var(--terra);
}

.line-del svg {
    width: 17px;
    height: 17px;
}

.cart-empty {
    text-align: center;
    padding: 4rem 1rem;
    background: var(--paper);
    border: 1px dashed var(--line);
    border-radius: 20px;
    display: grid;
    gap: 1.3rem;
    justify-items: center;
    color: var(--ink-soft);
}

.cart-totals {
    background: var(--ink);
    color: var(--creme);
    border-radius: 22px;
    padding: 1.8rem 1.7rem;
    position: sticky;
    top: 110px;
}

.cart-totals h2 {
    font-size: 1.3rem;
    margin-bottom: 1.2rem;
}

.tot-row {
    display: flex;
    justify-content: space-between;
    padding: .55rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    font-size: .95rem;
}

.tot-row.grand {
    border: none;
    font-size: 1.15rem;
    font-weight: 800;
    padding-top: .9rem;
}

.cart-totals .btn {
    width: 100%;
    margin-top: 1.1rem;
}

.cart-totals .ship-note {
    font-size: .82rem;
    color: var(--amber);
    margin-top: .7rem;
    text-align: center;
}

.form-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 2rem 1.9rem;
}

.form-card h2 {
    font-size: 1.45rem;
    margin-bottom: .4rem;
}

.form-card > p {
    color: var(--ink-soft);
    font-size: .92rem;
    margin-bottom: 1.4rem;
}

.field {
    margin-bottom: 1.1rem;
}

.field label {
    display: block;
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: .4rem;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    background: var(--creme);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .8rem 1rem;
    transition: border-color .2s ease, box-shadow .2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(194, 64, 28, .14);
}

.field textarea {
    min-height: 130px;
    resize: vertical;
}

.field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: .4rem;
}

.form-foot .hint {
    font-size: .82rem;
    color: var(--ink-soft);
}

.account-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.6rem;
    margin-bottom: 3.5rem;
}

.dash {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.6rem;
    align-items: start;
    padding-bottom: 4.5rem;
}

.dash-nav {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    position: sticky;
    top: 110px;
}

.dash-nav a {
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .95rem 1.2rem;
    font-weight: 600;
    font-size: .93rem;
    border-bottom: 1px solid var(--line);
    transition: background .18s ease;
}

.dash-nav a:last-child {
    border-bottom: none;
}

.dash-nav a:hover {
    background: #f4ecdd;
}

.dash-nav a.on {
    background: var(--ink);
    color: var(--creme);
}

.dash-nav svg {
    width: 18px;
    height: 18px;
    flex: none;
}

.dash-main {
    display: grid;
    gap: 1.4rem;
}

.dash-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.1rem;
}

.dash-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.2rem 1.3rem;
}

.dash-card .v {
    font-family: var(--font-display);
    font-size: 1.7rem;
}

.dash-card .l {
    font-size: .8rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.dash-card.fid {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

.dash-card.fid .l {
    color: rgba(255, 255, 255, .8);
}

.orders {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem 1.5rem;
}

.orders h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.orders table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.orders th {
    text-align: left;
    font-size: .72rem;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--ink-soft);
    padding: .5rem .4rem;
    border-bottom: 2px solid var(--line);
}

.orders td {
    padding: .7rem .4rem;
    border-bottom: 1px solid var(--line);
}

.status {
    display: inline-block;
    padding: .18rem .7rem;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
}

.status.ok { background: rgba(23, 163, 152, .15); color: var(--teal); }
.status.ship { background: rgba(240, 167, 44, .18); color: #a06e12; }

.process {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.2rem;
    counter-reset: step;
}

.process-step {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.5rem 1.3rem;
    counter-increment: step;
    position: relative;
}

.process-step::before {
    content: counter(step, decimal-leading-zero);
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--terra);
    display: block;
    margin-bottom: .6rem;
}

.process-step strong {
    display: block;
    margin-bottom: .35rem;
}

.process-step p {
    font-size: .87rem;
    color: var(--ink-soft);
}

.color-cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1.1rem;
}

.color-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.3rem 1rem 1.1rem;
    text-align: center;
    transition: transform .2s ease, box-shadow .2s ease;
}

.color-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.color-card .cc-drop {
    width: 74px;
    height: 74px;
    margin: 0 auto .8rem;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    box-shadow: inset -7px -9px 16px rgba(0, 0, 0, .25), inset 5px 6px 10px rgba(255, 255, 255, .35);
}

.color-card strong {
    display: block;
    font-size: .92rem;
}

.color-card span {
    font-size: .76rem;
    color: var(--ink-soft);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 2.2rem;
    align-items: start;
    padding-bottom: 4rem;
}

.contact-aside {
    display: grid;
    gap: 1.2rem;
}

.contact-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 1.4rem 1.5rem;
}

.contact-card h3 {
    font-size: 1.05rem;
    margin-bottom: .5rem;
}

.contact-card p {
    font-size: .92rem;
    color: var(--ink-soft);
}

.checkout-grid {
    display: grid;
    grid-template-columns: 1.25fr .85fr;
    gap: 2.2rem;
    align-items: start;
    padding-bottom: 4.5rem;
}

.checkout-summary {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.5rem 1.5rem;
    position: sticky;
    top: 110px;
}

.checkout-summary h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.sum-line {
    display: grid;
    grid-template-columns: 44px 1fr auto;
    gap: .8rem;
    align-items: center;
    padding: .5rem 0;
    border-bottom: 1px solid var(--line);
    font-size: .88rem;
}

.sum-line img {
    width: 44px;
    height: 58px;
    object-fit: cover;
    border-radius: 8px;
}

.sum-row {
    display: flex;
    justify-content: space-between;
    padding: .5rem 0;
    font-size: .92rem;
    color: var(--ink-soft);
}

.sum-row.sum-grand {
    color: var(--ink);
    font-weight: 800;
    font-size: 1.1rem;
    border-top: 2px solid var(--ink);
    margin-top: .4rem;
    padding-top: .8rem;
}

.demo-note {
    font-size: .8rem;
    color: var(--ink-soft);
    text-align: center;
    margin-top: .8rem;
}

.wishlist-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    padding-bottom: 4rem;
}

@media (max-width: 1024px) {
    .process {
        grid-template-columns: repeat(2, 1fr);
    }

    .dash {
        grid-template-columns: 1fr;
    }

    .dash-nav {
        position: static;
        display: flex;
        overflow-x: auto;
    }

    .dash-nav a {
        border-bottom: none;
        border-right: 1px solid var(--line);
        white-space: nowrap;
    }

    .wishlist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .hero-full {
        min-height: 0;
    }

    .hf-slide {
        grid-template-columns: 1fr;
    }

    .hf-media {
        order: -1;
        min-height: 320px;
    }

    .hf-media figure {
        inset: 1.4rem 4vw 0;
        border-radius: 120px 120px 20px 20px;
    }

    .hf-copy {
        padding: 2rem 4vw 5.5rem;
    }

    .hf-nav {
        left: 4vw;
        bottom: 1.6rem;
    }

    .config-layout,
    .cart-wrap,
    .contact-grid,
    .checkout-grid,
    .account-grid {
        grid-template-columns: 1fr;
    }

    .config-preview-wrap,
    .cart-totals,
    .checkout-summary {
        position: static;
    }

    .cart-line {
        grid-template-columns: 64px 1fr auto;
        row-gap: .5rem;
    }

    .cart-line img {
        width: 64px;
        height: 84px;
        grid-row: span 2;
    }

    .cart-line > strong {
        text-align: left;
    }

    .dash-cards {
        grid-template-columns: 1fr;
    }

    .wishlist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .9rem;
    }
}


.toast {
    position: fixed;
    left: 50%;
    bottom: 1.6rem;
    transform: translate(-50%, 140%);
    z-index: 300;
    background: var(--ink);
    color: var(--creme);
    padding: 1rem 1.4rem;
    border-radius: 16px;
    box-shadow: 0 22px 44px -16px rgba(20, 12, 6, .5);
    font-size: .92rem;
    line-height: 1.5;
    max-width: min(420px, 92vw);
    transition: transform .4s cubic-bezier(.22, .9, .3, 1);
    cursor: pointer;
}

.toast.show {
    transform: translate(-50%, 0);
}

.toast strong {
    color: var(--amber);
}

.toast button {
    color: var(--amber);
    font-weight: 700;
    text-decoration: underline;
    font-size: .92rem;
}

.reminder-overlay {
    position: fixed;
    inset: 0;
    background: rgba(24, 16, 10, .55);
    backdrop-filter: blur(3px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .3s ease;
    z-index: 220;
}

.reminder-overlay.show {
    opacity: 1;
    pointer-events: auto;
}

.reminder-pop {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -46%) scale(.94);
    opacity: 0;
    pointer-events: none;
    z-index: 230;
    width: min(460px, 92vw);
    background: var(--creme);
    border-radius: 24px;
    padding: 2.1rem 2rem 1.9rem;
    box-shadow: 0 40px 90px -30px rgba(20, 12, 6, .6);
    transition: transform .35s cubic-bezier(.22, .9, .3, 1), opacity .3s ease;
}

.reminder-pop.show {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.reminder-pop h2 {
    font-size: 1.6rem;
    margin: .6rem 0 1.1rem;
}

.rem-close {
    position: absolute;
    top: .9rem;
    right: .9rem;
}

.rem-items {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: .9rem 1rem;
    margin-bottom: 1.1rem;
}

.rem-items p {
    font-size: .95rem;
    line-height: 1.45;
}

.rem-items p span {
    font-size: .82rem;
    color: var(--teal);
    font-weight: 600;
}

.rem-thumbs {
    display: flex;
    flex: none;
}

.rem-thumbs img {
    width: 46px;
    height: 60px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid var(--creme);
    margin-left: -12px;
}

.rem-thumbs img:first-child {
    margin-left: 0;
}

.reminder-pop > .btn {
    width: 100%;
}

.rem-or {
    text-align: center;
    color: var(--ink-soft);
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .14em;
    margin: .9rem 0;
    display: flex;
    align-items: center;
    gap: .8rem;
}

.rem-or::before,
.rem-or::after {
    content: "";
    flex: 1;
    height: 1px;
    background: var(--line);
}

.rem-form p {
    font-size: .9rem;
    color: var(--ink-soft);
    margin-bottom: .8rem;
}

.rem-form p strong {
    color: var(--ink);
}

.rem-row {
    display: flex;
    gap: .6rem;
}

.rem-row input {
    flex: 1;
    min-width: 0;
    font-family: inherit;
    font-size: .92rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .75rem 1.1rem;
}

.rem-row input:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(194, 64, 28, .14);
}

.rem-row .btn {
    padding: .75rem 1.3rem;
}

.rem-hint {
    display: block;
    font-size: .76rem;
    color: var(--ink-soft);
    margin-top: .6rem;
}

.rem-saved {
    display: flex;
    gap: .7rem;
    align-items: flex-start;
    background: rgba(23, 163, 152, .1);
    border: 1px solid rgba(23, 163, 152, .3);
    border-radius: 14px;
    padding: .9rem 1rem;
    margin-top: 1rem;
    font-size: .88rem;
}

.rem-saved .dot-ok {
    margin-top: .4rem;
}

.demo-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .7rem;
    background: var(--ink);
    border-radius: 20px;
    padding: 1.3rem 1.4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.demo-bar span {
    color: var(--creme);
    font-weight: 700;
    font-size: .95rem;
    margin-right: .5rem;
}

.demo-bar .btn {
    padding: .65rem 1.2rem;
    font-size: .86rem;
}

.demo-bar .btn-ghost {
    border-color: var(--creme);
    color: var(--creme);
}

.demo-bar .btn-ghost:hover {
    background: var(--creme);
    color: var(--ink);
}

.flow {
    position: relative;
    max-width: 56rem;
    padding-left: 2.6rem;
}

.flow::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: var(--line);
}

.flow-step {
    position: relative;
    padding-bottom: 2.4rem;
}

.flow-step::before {
    content: "";
    position: absolute;
    left: -2.6rem;
    top: 4px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--creme);
    border: 5px solid var(--terra);
    box-sizing: border-box;
}

.flow-step.done::before {
    background: var(--terra);
}

.flow-step.future::before {
    border-color: var(--amber);
}

.flow-when {
    font-family: 'JetBrains Mono', monospace, monospace;
    font-size: .74rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--terra);
}

.flow-step h3 {
    font-size: 1.25rem;
    margin: .3rem 0 .5rem;
}

.flow-step > p {
    color: var(--ink-soft);
    max-width: 42rem;
    margin-bottom: .8rem;
}

.flow-badge {
    display: inline-block;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .28rem .8rem;
    border-radius: 999px;
    margin-bottom: .6rem;
}

.flow-badge.live {
    background: rgba(23, 163, 152, .14);
    color: var(--teal-text);
}

.flow-badge.prod {
    background: rgba(240, 167, 44, .18);
    color: #8a6210;
}

.email-mock {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
    max-width: 30rem;
    box-shadow: var(--shadow);
    margin-top: .6rem;
}

.email-head {
    padding: .85rem 1.2rem;
    border-bottom: 1px solid var(--line);
    font-size: .8rem;
    color: var(--ink-soft);
    background: #f4eee1;
}

.email-head strong {
    display: block;
    color: var(--ink);
    font-size: .92rem;
}

.email-body {
    padding: 1.4rem 1.4rem 1.5rem;
}

.email-body h4 {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.25rem;
    margin-bottom: .6rem;
}

.email-body p {
    font-size: .9rem;
    color: var(--ink-soft);
    margin-bottom: .9rem;
}

.email-prod {
    display: flex;
    gap: .9rem;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .7rem .9rem;
    margin-bottom: .9rem;
}

.email-prod img {
    width: 46px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.email-prod p {
    margin: 0;
    font-size: .86rem;
}

.email-prod strong {
    color: var(--ink);
}

.email-body .btn {
    padding: .7rem 1.4rem;
    font-size: .88rem;
}

.email-foot {
    padding: .7rem 1.4rem;
    border-top: 1px solid var(--line);
    font-size: .72rem;
    color: var(--ink-soft);
}

@media (max-width: 640px) {
    .rem-row {
        flex-direction: column;
    }

    .flow {
        padding-left: 2.2rem;
    }

    .flow-step::before {
        left: -2.2rem;
    }
}

.logo-img {
    height: 46px;
    width: auto;
    display: block;
}

.site-footer .logo-img {
    filter: invert(1) brightness(1.4);
    opacity: .95;
}

@media (max-width: 860px) {
    .logo-img {
        height: 38px;
    }
}

.letters-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}

.lg-tile {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    text-align: left;
    color: var(--ink);
    transition: transform .2s ease, box-shadow .2s ease;
}

.lg-tile:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.lg-tile img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.lg-drop {
    aspect-ratio: 3 / 4;
    display: grid;
    place-items: center;
    background: radial-gradient(circle at 32% 26%, rgba(255, 255, 255, .55), rgba(255, 255, 255, 0) 42%), var(--drop, #2fc4b2);
    box-shadow: inset -10px -14px 24px rgba(0, 0, 0, .22);
}

.lg-drop span {
    font-family: var(--font-display);
    font-size: 2.6rem;
    color: rgba(255, 255, 255, .93);
    text-shadow: 0 3px 12px rgba(0, 0, 0, .28);
}

.lg-cap {
    display: block;
    padding: .55rem .75rem .7rem;
    font-weight: 800;
    font-size: 1rem;
    line-height: 1.2;
}

.lg-cap small {
    display: block;
    font-weight: 600;
    font-size: .68rem;
    color: var(--ink-soft);
    margin-top: .15rem;
}

.cc-photo {
    width: 74px;
    height: 74px;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    object-fit: cover;
    margin: 0 auto .8rem;
    box-shadow: 0 10px 20px -10px rgba(60, 40, 20, .45);
}

@media (max-width: 640px) {
    .letters-gallery {
        grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
    }
}

.zoom-medaille img {
    object-position: 46% 55%;
    transform: scale(1.55);
    animation: zoomMedaille 12s ease-in-out infinite alternate;
}

@keyframes zoomMedaille {
    from { transform: scale(1.45); }
    to { transform: scale(1.75); }
}

.hf-badge {
    position: absolute;
    z-index: 3;
    right: calc(4vw + 1.2rem);
    bottom: 4.4rem;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: .75rem 1.05rem;
    display: flex;
    align-items: center;
    gap: .7rem;
    font-size: .84rem;
    font-weight: 700;
    line-height: 1.3;
    animation: floaty 5s ease-in-out infinite;
}

.hf-badge .dot {
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 25%, #d9fff8, var(--teal) 55%, #0e7a70);
}

.hf-badge small {
    display: block;
    font-weight: 500;
    color: var(--ink-soft);
    font-size: .74rem;
}

.letters-photos {
    display: flex;
    margin-top: 1.6rem;
}

.letters-photos img {
    width: 74px;
    height: 98px;
    object-fit: cover;
    border-radius: 14px;
    border: 3px solid var(--paper);
    box-shadow: 0 10px 22px -10px rgba(60, 40, 20, .4);
    margin-left: -18px;
    transition: transform .22s ease;
}

.letters-photos img:first-child {
    margin-left: 0;
    transform: rotate(-5deg);
}

.letters-photos img:nth-child(2) {
    transform: rotate(3deg);
}

.letters-photos img:nth-child(3) {
    transform: rotate(-2deg);
}

.letters-photos img:hover {
    transform: rotate(0) translateY(-8px) scale(1.06);
    z-index: 2;
    position: relative;
}

.perso-tag {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--amber);
    color: var(--ink);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .35rem .95rem;
    border-radius: 999px;
    margin-bottom: 1rem;
    animation: floaty 4.5s ease-in-out infinite;
}

.portrait-wrap {
    position: relative;
    display: grid;
    place-items: center;
}

.portrait {
    width: min(380px, 88%);
    aspect-ratio: 3 / 4;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    overflow: hidden;
    box-shadow: var(--shadow);
    animation: blob 12s ease-in-out infinite alternate;
    position: relative;
    z-index: 2;
}

.portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.portrait-blob {
    position: absolute;
    z-index: 1;
    width: 115%;
    aspect-ratio: 1;
    border-radius: 45% 55% 42% 58% / 42% 45% 58% 55%;
    background: radial-gradient(circle at 35% 30%, #ffe4c9, rgba(240, 167, 44, .55));
    filter: blur(3px);
    animation: blob 10s ease-in-out infinite alternate-reverse;
}

.portrait-name {
    position: absolute;
    z-index: 3;
    bottom: 1.6rem;
    right: 6%;
    background: var(--ink);
    color: var(--creme);
    border-radius: 999px;
    padding: .6rem 1.3rem;
    font-family: var(--font-hand);
    font-size: 1.35rem;
    box-shadow: var(--shadow);
    transform: rotate(-3deg);
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.3rem;
}

.story-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 1.7rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.story-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.story-card::before {
    content: "";
    position: absolute;
    top: -34px;
    right: -34px;
    width: 92px;
    height: 92px;
    border-radius: 58% 42% 55% 45% / 55% 58% 42% 45%;
    background: var(--story, rgba(23, 163, 152, .16));
}

.story-card .eyebrow {
    margin-bottom: .7rem;
}

.story-card h3 {
    font-size: 1.2rem;
    margin-bottom: .6rem;
}

.story-card p {
    color: var(--ink-soft);
    font-size: .94rem;
}

.num-58 {
    font-family: var(--font-display);
    font-size: clamp(4rem, 9vw, 7rem);
    line-height: 1;
    color: var(--terra);
    display: flex;
    align-items: baseline;
    gap: .3rem;
}

.num-58 small {
    font-family: var(--font-hand);
    font-size: 1.3rem;
    color: var(--ink-soft);
}

.nl-band {
    background: var(--terra);
    color: #fff;
    padding: 3.4rem 0;
}

.nl-in {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    gap: 2.5rem;
    align-items: center;
}

.nl-band h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    margin-bottom: .5rem;
}

.nl-band p {
    opacity: .9;
    font-size: .96rem;
}

.nl-band form {
    display: flex;
    background: #fff;
    border-radius: 999px;
    padding: .4rem;
    box-shadow: 0 16px 34px -16px rgba(0, 0, 0, .4);
}

.nl-band input[type="email"] {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    padding: .7rem 1.2rem;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    min-width: 0;
}

.nl-band .btn {
    padding: .8rem 1.6rem;
}

.nl-note {
    font-size: .78rem;
    opacity: .75;
    margin-top: .7rem;
}

@media (max-width: 860px) {
    .story-cards {
        grid-template-columns: 1fr;
    }

    .nl-in {
        grid-template-columns: 1fr;
    }

    .hf-badge {
        right: 4vw;
        bottom: 5.4rem;
    }
}

.news-featured {
    display: grid;
    grid-template-columns: 1.1fr .9fr;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-bottom: 2.2rem;
}

.news-featured figure {
    position: relative;
    min-height: 340px;
}

.news-featured figure img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.news-featured:hover figure img {
    transform: scale(1.05);
}

.news-featured-body {
    padding: 2.4rem 2.4rem 2.2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.news-featured-body h2 {
    font-size: clamp(1.5rem, 2.8vw, 2.1rem);
}

.news-featured-body p {
    color: var(--ink-soft);
}

.news-chip {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--amber);
    color: var(--ink);
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .3rem .85rem;
    border-radius: 999px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: .8rem;
    font-size: .82rem;
    color: var(--ink-soft);
    font-weight: 600;
}

.news-meta i {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--terra);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    padding-bottom: 3rem;
}

.news-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform .22s ease, box-shadow .22s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.news-card figure {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.news-card figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.news-card:hover figure img {
    transform: scale(1.06);
}

.news-card-body {
    padding: 1.3rem 1.4rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .6rem;
    flex: 1;
}

.news-card-body h2,
.news-card-body h3 {
    font-size: 1.15rem;
    line-height: 1.35;
}

.news-card-body h2 a::after,
.news-card-body h3 a::after {
    content: "";
    position: absolute;
    inset: 0;
}

.news-card-body p {
    color: var(--ink-soft);
    font-size: .92rem;
    flex: 1;
}

.article-head {
    max-width: 46rem;
}

.article-head h1 {
    font-size: clamp(1.9rem, 4.2vw, 3rem);
    margin: .8rem 0 1rem;
}

.article-hero {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 21 / 9;
    margin: 2rem 0 2.6rem;
    box-shadow: var(--shadow);
}

.article-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    max-width: 44rem;
    font-size: 1.05rem;
    padding-bottom: 2rem;
}

.article-body h2 {
    font-size: 1.55rem;
    margin: 2.2rem 0 .8rem;
}

.article-body h3 {
    font-size: 1.2rem;
    margin: 1.6rem 0 .6rem;
}

.article-body p {
    margin-bottom: 1.05rem;
    color: #3d342c;
}

.article-body ul,
.article-body ol {
    list-style: disc;
    padding-left: 1.4rem;
    margin-bottom: 1.05rem;
    color: #3d342c;
}

.article-body ol {
    list-style: decimal;
}

.article-body li {
    margin-bottom: .4rem;
}

.article-body a {
    color: var(--terra);
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 2px;
}

.article-produit {
    display: flex;
    gap: 1.2rem;
    align-items: center;
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--terra);
    border-radius: 0 16px 16px 0;
    padding: 1.1rem 1.3rem;
    margin: 1.6rem 0;
}

.article-produit img {
    width: 76px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    flex: none;
}

.article-produit p {
    margin: 0;
    font-size: .95rem;
}

.article-produit strong {
    display: block;
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 1.05rem;
    margin-bottom: .2rem;
}

.article-produit .btn {
    margin-left: auto;
    flex: none;
    padding: .7rem 1.3rem;
    font-size: .88rem;
}

.pilot-note {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    font-family: monospace;
    font-size: .75rem;
    background: #f0e7d6;
    padding: .35rem .9rem;
    border-radius: 999px;
    color: var(--ink-soft);
}

@media (max-width: 860px) {
    .news-featured {
        grid-template-columns: 1fr;
    }

    .news-featured figure {
        min-height: 220px;
    }

    .news-featured-body {
        padding: 1.6rem 1.5rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .article-produit {
        flex-wrap: wrap;
    }

    .article-produit .btn {
        margin-left: 0;
    }
}

@media (max-width: 860px) {
    section.block {
        padding: 2.8rem 0;
    }

    .block-head {
        margin-bottom: 1.7rem;
    }

    .hero-ctas {
        width: 100%;
    }

    .hero-ctas .btn {
        flex: 1 1 auto;
        justify-content: center;
        padding: .9rem 1.2rem;
    }

    .letters-strip {
        padding: 1.9rem 1.3rem 1.5rem;
        border-radius: 22px;
        gap: 1.7rem;
    }

    .letters-strip .btn {
        width: 100%;
    }

    .letters-photos {
        justify-content: center;
        margin-top: 1.3rem;
    }

    .letters-photos img {
        width: 62px;
        height: 82px;
    }

    .alphabet {
        display: grid;
        grid-template-columns: none;
        grid-auto-flow: column;
        grid-auto-columns: 52px;
        gap: .5rem;
        overflow-x: auto;
        padding: .3rem .15rem .7rem;
        scroll-snap-type: x proximity;
        scrollbar-width: thin;
        scrollbar-color: var(--terra) transparent;
    }

    .alphabet a {
        scroll-snap-align: start;
        font-size: 1.35rem;
        border-radius: 14px;
        background: var(--paper);
    }

    .alphabet a:hover {
        transform: none;
    }

    .colors-block {
        padding: 2.3rem 1.4rem 2rem;
        border-radius: 22px;
        gap: 1.8rem;
    }

    .colors-side {
        gap: 1.6rem;
    }

    .colors-block .btn {
        width: 100%;
    }

    .color-preview {
        gap: .7rem;
    }

    .resin-drop {
        width: 156px;
        height: 156px;
    }

    .color-preview strong {
        font-size: 1.35rem;
        min-height: 1.6rem;
    }

    .palette {
        grid-template-columns: repeat(auto-fill, minmax(46px, 1fr));
        gap: .55rem;
        justify-items: center;
    }

    .palette button {
        width: 46px;
        height: 46px;
        aspect-ratio: auto;
    }

    .palette button span {
        display: none;
    }

    .palette button:hover,
    .palette button.on {
        transform: scale(1.12);
    }

    .palette button.on {
        outline: 2px solid var(--amber);
        outline-offset: 3px;
        border-color: transparent;
    }

    .split {
        gap: 2.2rem;
    }

    .custom-cta h2 {
        font-size: 1.7rem;
    }

    .newsletter form {
        flex-direction: column;
        gap: .5rem;
        border-radius: 22px;
        padding: .6rem;
    }

    .newsletter input {
        text-align: center;
        padding: .8rem 1rem;
    }

    .newsletter .btn {
        width: 100%;
    }
}

@media (max-width: 860px) {
    .shop-toolbar {
        top: 58px;
        padding: .65rem 0 .7rem;
    }

    .toolbar-in {
        flex-direction: column;
        align-items: stretch;
        gap: .55rem;
    }

    .filters {
        margin-inline: calc(50% - 50vw);
        padding-inline: 4vw;
        gap: .45rem;
        scroll-snap-type: x proximity;
        mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 30px), transparent);
        -webkit-mask-image: linear-gradient(90deg, #000 0, #000 calc(100% - 30px), transparent);
    }

    .chip {
        scroll-snap-align: start;
        padding: .55rem 1.15rem;
        font-size: .88rem;
    }

    .sort {
        width: 100%;
        justify-content: space-between;
        gap: .6rem;
    }

    .sort select,
    .sort .orderby {
        flex: 1;
        min-width: 0;
        padding: .55rem 1rem;
    }

    .sort form {
        flex: 1;
        display: flex;
    }

    .count-note {
        font-size: .82rem;
        margin-bottom: .9rem;
    }

    .shop-grid {
        gap: .8rem;
    }

    .card-body {
        padding: .8rem .85rem 1rem;
    }

    .card-title {
        font-size: .92rem;
    }

    .price {
        font-size: .95rem;
    }

    .card-add {
        width: 40px;
        height: 40px;
        right: .7rem;
        bottom: .7rem;
    }
}

.woocommerce-cart main .wrap,
.woocommerce-checkout main .wrap,
.woocommerce-account main .wrap {
    padding-bottom: 4rem;
}

.woocommerce table.shop_table {
    width: 100%;
    border-collapse: collapse;
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    overflow: hidden;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
    padding: .8rem 1rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
}

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #place_order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    padding: .9rem 1.8rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: .95rem;
    background: var(--terra);
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background .2s ease, transform .2s ease;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce #place_order:hover {
    background: var(--terra-dark);
    transform: translateY(-2px);
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    width: 100%;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .8rem 1rem;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    outline: none;
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(194, 64, 28, .14);
}

.woocommerce form .form-row label {
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: .4rem;
    display: block;
}

.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
    background: var(--paper);
    border: 1px solid var(--line);
    border-left: 4px solid var(--teal);
    border-radius: 0 12px 12px 0;
    padding: 1rem 1.3rem;
    margin-bottom: 1.2rem;
    list-style: none;
}

.woocommerce .woocommerce-error {
    border-left-color: var(--terra);
}

.woocommerce nav.woocommerce-MyAccount-navigation ul {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    overflow: hidden;
}

.woocommerce nav.woocommerce-MyAccount-navigation li {
    border-bottom: 1px solid var(--line);
}

.woocommerce nav.woocommerce-MyAccount-navigation li a {
    display: block;
    padding: .95rem 1.2rem;
    font-weight: 600;
}

.woocommerce nav.woocommerce-MyAccount-navigation li.is-active a {
    background: var(--ink);
    color: var(--creme);
}

.woocommerce-account .woocommerce {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 1.6rem;
    align-items: start;
}

@media (max-width: 860px) {
    .woocommerce-account .woocommerce {
        grid-template-columns: 1fr;
    }
}

.pagination .page-numbers {
    min-width: 42px;
    height: 42px;
    padding-inline: .6rem;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    font-weight: 700;
    font-size: .9rem;
    border: 1px solid var(--line);
    background: var(--paper);
}

.pagination .page-numbers.current {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}

.commentlist {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.commentlist .comment_container {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1.2rem 1.4rem;
    display: flex;
    gap: 1rem;
}

.commentlist img.avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
}

.sort .orderby {
    font-family: inherit;
    font-size: .85rem;
    font-weight: 600;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    padding: .45rem .9rem;
}

.buy-form form.cart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .9rem;
    margin-bottom: 1rem;
}

.buy-form .quantity {
    display: flex;
    align-items: center;
}

.buy-form .quantity input.qty {
    width: 74px;
    text-align: center;
    font-family: inherit;
    font-weight: 700;
    font-size: .95rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .8rem .6rem;
}

.buy-form form.cart .button,
.buy-form .single_add_to_cart_button {
    flex: 1;
    min-width: 200px;
}

.buy-form .wapf-wrapper,
.buy-form .wapf-field-container {
    width: 100%;
}

.buy-form .wapf-field-container {
    margin-bottom: .9rem;
}

.buy-form .wapf-field-label label,
.buy-form .wapf-field-container label {
    font-weight: 700;
    font-size: .9rem;
}

.buy-form .wapf-field-container input[type="text"],
.buy-form .wapf-field-container select,
.buy-form .wapf-field-container textarea {
    width: 100%;
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: .7rem 1rem;
}

.p-extras .yith-wcwl-add-to-wishlist {
    margin: .6rem 0 0;
}

.p-extras a.add_to_wishlist,
.card-extras a.add_to_wishlist,
.card-extras .compare {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    font-weight: 700;
    font-size: .85rem;
    color: var(--ink-soft);
}

.p-extras a.add_to_wishlist:hover,
.card-extras a.add_to_wishlist:hover,
.card-extras .compare:hover {
    color: var(--terra);
}

.card-extras {
    padding: 0 1.1rem .9rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
}

.card-extras:empty {
    display: none;
}
