/* ==========================================================================
   Cute Calculator — kawaii claymorphism calculator (web)
   Web port of the "Cute Calculator - Mochi Cat" Android app.
   Palette, key geometry and the 120x110 mascot grid mirror the app
   (ui/Palette.kt, ui/ClayKey.kt, ui/MochiMascot.kt) so both look identical.
   ========================================================================== */

/* ---------- Themes (from ui/Palette.kt) ---------- */

.cute-stage {
    /* Mochi — light */
    --bg-top: #FDEFE6;
    --bg-bottom: #F7E4EE;
    --cream: #FFF6EA;
    --panel: #FFFDF8;
    --ink: #5A4844;
    --ink-soft: #8B7770;
    --pink: #FF9FB8;
    --pink-deep: #F76C93;
    --pink-edge: #E98AA4;
    --pink-text: #7D2F47;
    --peach: #FFCFAB;
    --peach-edge: #EDBD90;
    --peach-text: #8A5A2F;
    --lav: #D9CCF7;
    --lav-edge: #C3B3E6;
    --lav-text: #5A4A8A;
    --key-face: #FFFDF8;
    --key-edge: #E5D0C2;
    --clay-shadow: rgba(160, 120, 110, 0.28);

    /* Mascot — Mochi cat */
    --m-body: #FBEADD;
    --m-belly: #FFF3EA;
    --m-ear: #FBE9DC;
    --m-ear-inner: #FFC0D3;
    --m-blush: rgba(255, 180, 198, 0.8);
    --m-whisker: #E8CDBE;
    --m-ink: #5A4844;
    --m-nose: #CC9988;
    --m-mouth: #B07A6E;
    --m-heart: #FF6E97;
    --m-sleep: #B9A6E8;
    --m-ground: rgba(160, 120, 110, 0.14);
}

.cute-stage[data-mascot="bunny"] {
    --m-body: #FFF8F4;
    --m-belly: #FFFDFB;
    --m-ear: #FFF8F4;
    --m-ear-inner: #FFC9D9;
}

.cute-stage[data-mascot="bear"] {
    --m-body: #E8C9A6;
    --m-belly: #F7E3C9;
    --m-ear: #E8C9A6;
    --m-ear-inner: #D3A97F;
    --m-blush: rgba(255, 159, 168, 0.8);
}

/* Mochi — dark */
.cute-stage[data-dark="on"] {
    --bg-top: #241F38;
    --bg-bottom: #191428;
    --cream: #2A2440;
    --panel: #332C4E;
    --ink: #F3E9F5;
    --ink-soft: #B6A6C9;
    --pink: #E07A9A;
    --pink-deep: #D9587F;
    --pink-edge: #A84463;
    --pink-text: #FFFFFF;
    --peach: #5C4C72;
    --peach-edge: #37304D;
    --peach-text: #F3E9F5;
    --lav: #514A74;
    --lav-edge: #322C4D;
    --lav-text: #F3E9F5;
    --key-face: #3B3459;
    --key-edge: #272141;
    --clay-shadow: rgba(0, 0, 0, 0.45);
}

/* Butterfly — light */
.cute-stage[data-theme="butterfly"] {
    --bg-top: #FFF4E4;
    --bg-bottom: #FCE7CE;
    --cream: #FFFBF2;
    --panel: #FFFDF8;
    --ink: #3E2A18;
    --ink-soft: #8C6A48;
    --pink: #FF9A4D;
    --pink-deep: #E8641C;
    --pink-edge: #DA772E;
    --pink-text: #5C2A08;
    --peach: #FFDCAE;
    --peach-edge: #EEC48C;
    --peach-text: #875321;
    --lav: #F2CE7C;
    --lav-edge: #DDB35E;
    --lav-text: #6B4A16;
    --key-face: #FFFDF8;
    --key-edge: #E9D7BF;
    --clay-shadow: rgba(165, 121, 74, 0.25);

    --m-body: #FFF1DE;
    --m-belly: #FFFAF0;
    --m-ear: #FFF1DE;
    --m-ear-inner: #FFB068;
    --m-blush: rgba(255, 180, 122, 0.8);
    --m-whisker: #E3C49C;
    --m-ink: #4A3018;
    --m-nose: #CC8A4E;
    --m-mouth: #B0723C;
    --m-heart: #F2761F;
    --m-sleep: #D9A15C;
    --m-ground: rgba(165, 121, 74, 0.15);
}

.cute-stage[data-theme="butterfly"][data-mascot="bunny"] {
    --m-body: #FFFAF2;
    --m-belly: #FFFEFA;
    --m-ear: #FFFAF2;
    --m-ear-inner: #FFC79A;
}

.cute-stage[data-theme="butterfly"][data-mascot="bear"] {
    --m-body: #E6BE8E;
    --m-belly: #F6DDBB;
    --m-ear: #E6BE8E;
    --m-ear-inner: #CB8F51;
    --m-blush: rgba(255, 158, 99, 0.8);
}

/* Butterfly — dark */
.cute-stage[data-theme="butterfly"][data-dark="on"] {
    --bg-top: #2B211B;
    --bg-bottom: #1E1713;
    --cream: #332822;
    --panel: #3C2F27;
    --ink: #F7EDE1;
    --ink-soft: #C8AE98;
    --pink: #F5883C;
    --pink-deep: #E86E22;
    --pink-edge: #B5551A;
    --pink-text: #FFFFFF;
    --peach: #5E4636;
    --peach-edge: #3C2C22;
    --peach-text: #F7EDE1;
    --lav: #5B4A2E;
    --lav-edge: #3A2F1E;
    --lav-text: #F7EDE1;
    --key-face: #443528;
    --key-edge: #2A211A;
    --clay-shadow: rgba(0, 0, 0, 0.45);
}

/* ---------- Stage & shell ---------- */

.cute-stage {
    position: relative;
    padding: 2.5rem 1rem 3rem;
    background: linear-gradient(180deg, var(--bg-top) 0%, var(--bg-bottom) 100%);
    transition: background .3s ease;
}

.cute-intro {
    max-width: 720px;
    margin: 0 auto 1.75rem;
    text-align: center;
    color: var(--ink);
}

.cute-intro h1 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: clamp(1.9rem, 4.5vw, 2.6rem);
    line-height: 1.15;
    margin-bottom: .6rem;
    color: var(--ink);
}

.cute-intro p {
    color: var(--ink-soft);
    font-size: 1.05rem;
    line-height: 1.6;
}

.cute-shell {
    width: 100%;
    max-width: 430px;
    margin: 0 auto;
    background: var(--cream);
    border-radius: 34px;
    padding: 16px 16px 20px;
    box-shadow: 0 22px 45px -18px var(--clay-shadow), 0 2px 0 rgba(255, 255, 255, .55) inset;
}

/* ---------- App mode: the calculator takes over the screen ----------
   Used on phones (and by the ⛶ button anywhere). The Fullscreen API is tried
   first, but iOS Safari refuses it for non-video elements, so the layout falls
   back to a fixed full-viewport overlay that looks the same. */

.cute-stage.is-app {
    position: fixed;
    inset: 0;
    z-index: 999;
    padding: 0;
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.cute-stage.is-app .cute-intro,
.cute-stage.is-app .cute-hint {
    display: none;
}

.cute-stage.is-app .cute-shell {
    max-width: 520px;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    padding: calc(10px + env(safe-area-inset-top)) 12px calc(12px + env(safe-area-inset-bottom));
}

.cute-stage.is-app #cuteBody {
    flex: 1;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.cute-stage.is-app .cute-keys--main {
    flex: 1 0 auto;
    grid-auto-rows: 1fr;
}

.cute-stage.is-app .clay {
    min-height: 48px;
}

.cute-stage.is-app .cute-mascot {
    width: 112px;
    height: 103px;
}

@media (max-height: 720px) {
    .cute-stage.is-app .cute-mascot {
        width: 86px;
        height: 79px;
    }

    .cute-stage.is-app .cute-display {
        min-height: 76px;
    }
}

@media (max-height: 600px) {
    .cute-stage.is-app .cute-mascot-wrap {
        display: none;
    }
}

/* ---------- Top bar ---------- */

.cute-topbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 10px;
}

.cute-title {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-weight: 800;
    font-size: 1rem;
    color: var(--ink);
}

.cute-actions {
    display: flex;
    gap: 6px;
}

.cute-icon-btn {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 12px;
    background: var(--panel);
    color: var(--ink);
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    display: grid;
    place-items: center;
    box-shadow: 0 3px 0 var(--key-edge);
    transition: transform .07s ease, box-shadow .07s ease;
}

.cute-icon-btn:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 var(--key-edge);
}

.cute-icon-btn[aria-pressed="true"] {
    background: var(--pink);
    color: var(--pink-text);
    box-shadow: 0 3px 0 var(--pink-edge);
}

/* ---------- Mode chips ---------- */

.cute-modes {
    display: flex;
    gap: 6px;
    overflow-x: auto;
    padding-bottom: 6px;
    margin-bottom: 8px;
    scrollbar-width: thin;
}

.cute-chip {
    flex: 0 0 auto;
    border: 0;
    cursor: pointer;
    border-radius: 999px;
    padding: 7px 14px;
    font-size: .82rem;
    font-weight: 700;
    font-family: inherit;
    background: var(--panel);
    color: var(--ink-soft);
    box-shadow: 0 2px 0 var(--key-edge);
    white-space: nowrap;
    transition: transform .07s ease;
}

.cute-chip:active {
    transform: translateY(2px);
}

.cute-chip[aria-pressed="true"] {
    background: var(--pink);
    color: var(--pink-text);
    box-shadow: 0 2px 0 var(--pink-edge);
}

/* ---------- Mascot ---------- */

.cute-mascot-wrap {
    display: flex;
    justify-content: center;
    margin: 2px 0 8px;
}

.cute-mascot {
    width: 150px;
    height: 138px;
    cursor: pointer;
    overflow: visible;
}

.cute-stage[data-compact="on"] .cute-mascot {
    width: 100px;
    height: 92px;
}

.mochi-float {
    animation: mochi-float 4.5s ease-in-out infinite;
}

@keyframes mochi-float {

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

    50% {
        transform: translateY(-7px);
    }
}

.mochi-zzz {
    font-size: 13px;
    font-weight: 800;
    fill: var(--m-sleep);
    animation: mochi-zzz 2.2s ease-in-out infinite;
}

@keyframes mochi-zzz {

    0%,
    100% {
        opacity: .35;
        transform: translateY(2px);
    }

    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

/* The wing flap runs on <animateTransform> (see cute-calculator.js): a CSS
   transform animation here would override the group's placement attribute. */
.mochi-butterfly {
    animation: mochi-drift 3.4s ease-in-out infinite alternate;
}

@keyframes mochi-drift {
    from {
        transform: translate(0, 0);
    }

    to {
        transform: translate(4px, -6px);
    }
}

@media (prefers-reduced-motion: reduce) {

    .mochi-float,
    .mochi-zzz,
    .mochi-butterfly {
        animation: none;
    }
}

/* ---------- Display ---------- */

.cute-display {
    background: var(--panel);
    border-radius: 26px;
    padding: 10px 20px 14px;
    min-height: 92px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-align: right;
    margin-bottom: 10px;
}

.cute-memory {
    font-size: .68rem;
    font-weight: 800;
    color: var(--pink-deep);
    text-align: left;
    min-height: 14px;
    letter-spacing: .08em;
}

.cute-expr {
    color: var(--ink-soft);
    font-size: 1rem;
    font-weight: 600;
    min-height: 22px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.cute-expr::-webkit-scrollbar,
.cute-result::-webkit-scrollbar,
.cute-card__value::-webkit-scrollbar {
    display: none;
}

.cute-result {
    color: var(--ink);
    font-size: clamp(2rem, 8vw, 2.7rem);
    font-weight: 800;
    line-height: 1.15;
    cursor: pointer;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.cute-toast {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 28px;
    background: #1e293b;
    color: #fff;
    padding: 9px 18px;
    border-radius: 999px;
    font-size: .85rem;
    font-weight: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    z-index: 50;
}

.cute-toast.is-on {
    opacity: .95;
}

/* ---------- Clay keys (ui/ClayKey.kt) ---------- */

.cute-keys {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 9px;
}

.cute-keys--sci {
    gap: 6px;
    margin-bottom: 6px;
}

.cute-keys--mem {
    grid-template-columns: repeat(5, 1fr);
}

.clay {
    border: 0;
    cursor: pointer;
    font-family: inherit;
    font-weight: 800;
    font-size: 1.3rem;
    min-height: 56px;
    border-radius: 20px;
    background: var(--key-face);
    color: var(--ink);
    box-shadow: 0 6px 0 var(--key-edge), 0 8px 12px -6px var(--clay-shadow);
    transition: transform .07s ease, box-shadow .07s ease, filter .12s ease;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.clay:hover {
    filter: brightness(1.03);
}

.clay:active,
.clay.is-down {
    transform: translateY(5px);
    box-shadow: 0 1px 0 var(--key-edge), 0 2px 4px -2px var(--clay-shadow);
}

.clay:focus-visible {
    outline: 3px solid var(--pink-deep);
    outline-offset: 2px;
}

.clay--op {
    background: var(--pink);
    color: var(--pink-text);
    box-shadow: 0 6px 0 var(--pink-edge), 0 8px 12px -6px var(--clay-shadow);
}

.clay--op:active,
.clay--op.is-down {
    box-shadow: 0 1px 0 var(--pink-edge), 0 2px 4px -2px var(--clay-shadow);
}

.clay--util {
    background: var(--peach);
    color: var(--peach-text);
    box-shadow: 0 6px 0 var(--peach-edge), 0 8px 12px -6px var(--clay-shadow);
}

.clay--util:active,
.clay--util.is-down {
    box-shadow: 0 1px 0 var(--peach-edge), 0 2px 4px -2px var(--clay-shadow);
}

.clay--sci {
    background: var(--lav);
    color: var(--lav-text);
    box-shadow: 0 6px 0 var(--lav-edge), 0 8px 12px -6px var(--clay-shadow);
    font-size: .95rem;
    min-height: 46px;
    border-radius: 16px;
}

.clay--sci:active,
.clay--sci.is-down {
    box-shadow: 0 1px 0 var(--lav-edge), 0 2px 4px -2px var(--clay-shadow);
}

.clay--eq {
    background: linear-gradient(160deg, var(--pink), var(--pink-deep));
    color: #fff;
    box-shadow: 0 6px 0 var(--pink-edge), 0 8px 12px -6px var(--clay-shadow);
}

.clay--eq:active,
.clay--eq.is-down {
    box-shadow: 0 1px 0 var(--pink-edge), 0 2px 4px -2px var(--clay-shadow);
}

.clay--wide {
    grid-column: span 3;
}

/* ---------- Panels (converter / percent / deal / table) ---------- */

.cute-card {
    background: var(--panel);
    border-radius: 22px;
    padding: 12px 18px;
    margin-bottom: 8px;
}

.cute-card__label {
    font-size: .74rem;
    font-weight: 800;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .04em;
}

.cute-card__value {
    font-size: 1.9rem;
    font-weight: 800;
    color: var(--ink);
    line-height: 1.25;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.cute-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin-bottom: 8px;
}

.cute-field {
    background: var(--panel);
    border: 2px solid transparent;
    border-radius: 18px;
    padding: 10px 14px;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    transition: border-color .15s ease;
    overflow: hidden;
}

.cute-field[aria-pressed="true"],
.cute-field.is-active {
    border-color: var(--pink-deep);
}

.cute-field > span {
    display: block;
    font-size: .7rem;
    font-weight: 800;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.cute-field > strong {
    display: block;
    font-size: 1.4rem;
    color: var(--ink);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cute-swap {
    display: flex;
    justify-content: center;
    margin: -2px 0 8px;
}

.cute-select {
    width: 100%;
    margin-top: 6px;
    border: 0;
    border-radius: 12px;
    padding: 6px 8px;
    font-family: inherit;
    font-weight: 700;
    font-size: .88rem;
    background: var(--cream);
    color: var(--ink);
    cursor: pointer;
}

.cute-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 3px 0;
}

.cute-row > span {
    font-size: .78rem;
    font-weight: 800;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .03em;
}

.cute-row > strong {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--ink);
}

.cute-row--big > strong {
    font-size: 1.7rem;
}

.cute-row--save > strong {
    color: var(--pink-deep);
}

.cute-row--split > strong {
    color: var(--lav-text);
}

.cute-note {
    font-size: .7rem;
    color: var(--ink-soft);
    text-align: right;
}

.cute-chiprow {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 6px;
    flex-wrap: wrap;
}

.cute-chiprow > span {
    font-size: .72rem;
    font-weight: 800;
    color: var(--ink-soft);
    min-width: 64px;
    text-transform: uppercase;
    letter-spacing: .03em;
}

.cute-table {
    background: var(--panel);
    border-radius: 22px;
    padding: 10px 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 18px;
    margin-bottom: 8px;
}

.cute-table div {
    display: flex;
    justify-content: space-between;
    font-size: .95rem;
    font-weight: 700;
    color: var(--ink);
    padding: 4px 0;
    border-bottom: 1px dashed var(--key-edge);
}

.cute-table div b {
    color: var(--pink-deep);
}

/* ---------- History & mascot picker ---------- */

.cute-history {
    background: var(--panel);
    border-radius: 22px;
    padding: 10px 14px;
    margin-bottom: 10px;
    max-height: 200px;
    overflow-y: auto;
}

.cute-history h2 {
    font-size: .74rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: 8px;
}

.cute-history button {
    display: block;
    width: 100%;
    text-align: right;
    border: 0;
    background: var(--cream);
    border-radius: 14px;
    padding: 7px 12px;
    margin-bottom: 6px;
    cursor: pointer;
    font-family: inherit;
}

.cute-history button small {
    display: block;
    color: var(--ink-soft);
    font-size: .78rem;
}

.cute-history button strong {
    display: block;
    color: var(--ink);
    font-size: 1.05rem;
    font-weight: 800;
}

.cute-history p {
    color: var(--ink-soft);
    font-size: .85rem;
}

.cute-picker {
    display: flex;
    gap: 8px;
    margin-bottom: 10px;
}

.cute-picker button {
    flex: 1;
    border: 2px solid transparent;
    background: var(--panel);
    border-radius: 18px;
    padding: 8px 4px;
    cursor: pointer;
    font-family: inherit;
    font-size: .76rem;
    font-weight: 800;
    color: var(--ink-soft);
}

.cute-picker button[aria-pressed="true"] {
    border-color: var(--pink-deep);
    color: var(--ink);
}

.cute-picker button i {
    display: block;
    font-size: 1.5rem;
    font-style: normal;
}

.cute-hint {
    text-align: center;
    color: var(--ink-soft);
    font-size: .78rem;
    margin-top: 12px;
}

/* ---------- Article / SEO content ---------- */

.cute-breadcrumb {
    max-width: 780px;
    margin: 1.25rem auto -1.5rem;
    padding: 0 1.25rem;
    font-size: .85rem;
    color: #64748b;
}

.cute-breadcrumb a {
    color: #64748b;
}

.cute-breadcrumb a:hover {
    text-decoration: underline;
}

.cute-article {
    max-width: 780px;
    margin: 3rem auto 1rem;
    padding: 0 1.25rem;
    font-size: 1.05rem;
    line-height: 1.75;
    color: #334155;
}

.cute-article h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.75rem;
    color: #0f172a;
    margin: 2.5rem 0 .85rem;
}

.cute-article h3 {
    font-size: 1.2rem;
    color: #1e293b;
    margin: 1.6rem 0 .5rem;
}

.cute-article p {
    margin-bottom: 1.1rem;
}

.cute-article ul,
.cute-article ol {
    margin: 0 0 1.25rem 1.3rem;
}

.cute-article li {
    margin-bottom: .45rem;
}

.cute-article a {
    color: #db2777;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.cute-article figure {
    margin: 2rem 0;
}

.cute-article img {
    display: block;
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 14px;
    box-shadow: 0 10px 20px -14px rgba(0, 0, 0, .5);
}

.cute-article figcaption {
    font-size: .85rem;
    color: #64748b;
    text-align: center;
    margin-top: .6rem;
}

.cute-keytable {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
    font-size: .95rem;
}

.cute-keytable th,
.cute-keytable td {
    text-align: left;
    padding: .55rem .75rem;
    border-bottom: 1px solid #e2e8f0;
}

.cute-keytable th {
    background: #fdf2f8;
    color: #831843;
    font-weight: 700;
}

/* ---------- App download CTA ---------- */

.cute-appcta {
    max-width: 780px;
    margin: 2rem auto 0;
    padding: 0 1.25rem;
}

.cute-appcta__inner {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    flex-wrap: wrap;
    background: linear-gradient(135deg, #FDEFE6, #F7E4EE);
    border: 1px solid #f5d0e0;
    border-radius: 18px;
    padding: 1.25rem 1.5rem;
}

.cute-appcta__text {
    flex: 1 1 260px;
}

.cute-appcta strong {
    display: block;
    color: #7D2F47;
    font-size: 1.1rem;
    margin-bottom: .25rem;
}

.cute-appcta span {
    color: #5A4844;
    font-size: .98rem;
    line-height: 1.5;
}

.cute-play {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: .7rem;
    background: #1e293b;
    color: #fff;
    padding: .7rem 1.35rem;
    border-radius: 12px;
    text-decoration: none;
    transition: transform .15s ease, box-shadow .15s ease;
}

.cute-play:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -12px rgba(0, 0, 0, .6);
}

.cute-play b {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.15;
}

.cute-play small {
    display: block;
    font-size: .68rem;
    letter-spacing: .08em;
    text-transform: uppercase;
    opacity: .8;
}

/* ---------- Shopping section ---------- */

.cute-shop {
    max-width: 780px;
    margin: 2.5rem auto 0;
    padding: 0 1.25rem;
}

.cute-shop h2 {
    font-family: var(--font-heading, 'Outfit', sans-serif);
    font-size: 1.75rem;
    color: #0f172a;
    margin-bottom: .6rem;
}

.cute-shop > p {
    color: #334155;
    line-height: 1.75;
    margin-bottom: 1rem;
}

.cute-disclosure {
    font-size: .82rem;
    color: #64748b;
    background: #f8fafc;
    border-left: 3px solid #cbd5e1;
    padding: .6rem .9rem;
    border-radius: 0 8px 8px 0;
    margin-bottom: 1.25rem;
}

.cute-shop__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: .85rem;
    margin-bottom: 1.25rem;
}

.cute-shop__grid a {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: .9rem 1rem;
    transition: box-shadow .2s ease, transform .2s ease;
}

.cute-shop__grid a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, .35);
}

.cute-shop__grid strong {
    display: block;
    color: #0f172a;
    font-size: .98rem;
    margin-bottom: .15rem;
}

.cute-shop__grid span {
    color: #64748b;
    font-size: .85rem;
}

.cute-shop__cta {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: #FF9900;
    color: #0f172a;
    font-weight: 700;
    padding: .75rem 1.5rem;
    border-radius: 999px;
    box-shadow: 0 4px 0 #e08800;
    transition: transform .12s ease;
}

.cute-shop__cta:hover {
    transform: translateY(-2px);
}

.cute-related {
    max-width: 780px;
    margin: 0 auto 3.5rem;
    padding: 0 1.25rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(215px, 1fr));
    gap: .85rem;
}

.cute-related a {
    display: block;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 14px;
    padding: .9rem 1rem;
    transition: box-shadow .2s ease, transform .2s ease;
}

.cute-related a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px -10px rgba(0, 0, 0, .35);
}

.cute-related strong {
    display: block;
    color: #0f172a;
    font-size: .98rem;
}

.cute-related span {
    color: #64748b;
    font-size: .85rem;
}

@media (max-width: 480px) {
    .cute-stage {
        padding: 1.5rem .6rem 2rem;
    }

    .cute-shell {
        padding: 12px 12px 16px;
        border-radius: 28px;
    }

    .clay {
        min-height: 50px;
        font-size: 1.15rem;
        border-radius: 17px;
    }

    .cute-keys {
        gap: 7px;
    }
}
