@font-face {
    font-family: "Fraunces";
    src: url("/fonts/Fraunces-Italic-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype-variations"), url("/fonts/Fraunces-Italic-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: italic;
    font-display: swap;
}

@font-face {
    font-family: "Fraunces";
    src: url("/fonts/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype-variations"), url("/fonts/Fraunces-VariableFont_SOFT,WONK,opsz,wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Quicksand";
    src: url("/fonts/Quicksand-VariableFont_wght.ttf") format("truetype-variations"), url("/fonts/Quicksand-VariableFont_wght.ttf") format("truetype");
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

/* Application Tokens & Configuration */
:root {
    --radius: 1.25rem;
    --background: oklch(0.985 0.012 80);
    --foreground: oklch(0.32 0.06 350);
    --card: oklch(1 0 0);
    --card-foreground: oklch(0.32 0.06 350);
    --primary: oklch(0.78 0.16 350);
    --primary-foreground: oklch(0.99 0.01 350);
    --muted-foreground: oklch(0.5 0.04 340);
    --border: oklch(0.9 0.04 340);
    /* Dynamic Theme Colors */
    --pink: oklch(0.85 0.13 0);
    --bubblegum: oklch(0.78 0.18 355);
    --mint: oklch(0.9 0.1 165);
    --lavender: oklch(0.86 0.1 310);
    --butter: oklch(0.93 0.12 95);
    --peach: oklch(0.88 0.11 50);
    --sky: oklch(0.9 0.08 220);
    --lavender-mist: oklch(0.88 0.07 270);
    --rose-water: oklch(0.87 0.11 15);
    --seafoam: oklch(0.91 0.08 190);
    --apricot: oklch(0.89 0.12 70);
    /* Complex Gradients */
    --gradient-candy: linear-gradient(135deg, var(--pink) 0%, var(--lavender) 50%, var(--sky) 100%);
    --gradient-sunshine: linear-gradient(135deg, var(--butter) 0%, var(--peach) 100%);
    --gradient-mystery: radial-gradient(circle at 30% 20%, var(--bubblegum), var(--lavender) 60%, var(--sky));
    --gradient-journal: linear-gradient(135deg, var(--lavender-mist) 0%, var(--sky) 100%);
    --gradient-spa: linear-gradient(135deg, var(--rose-water) 0%, var(--pink) 100%);
    --gradient-calming: linear-gradient(135deg, var(--seafoam) 0%, var(--mint) 100%);
    --gradient-reading: linear-gradient(135deg, var(--apricot) 0%, var(--butter) 100%);
    /* Layout Variables */
    --font-display: "Fraunces", "DM Serif Display", Georgia, serif;
    --font-body: "Quicksand", "Nunito", system-ui, sans-serif;
    --shadow-sticker: 6px 6px 0 0 oklch(0.32 0.06 350);

    --page-max:          1920px;
    --page-pad:          36px;

}

/* Global Reset Definitions */
*,
::after,
::before {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid var(--border);
}

html,
body {
    margin: 0.5rem 0 0 0;
    line-height: 1.5;
    background-color: var(--background);
    color: var(--foreground);
    font-family: var(--font-body);
    font-feature-settings: "ss01", "cv11";
}

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

ul {
    list-style: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

button,
input {
    font: inherit;
    color: inherit;
    background-color: transparent;
}

/* The Sticker Shape Helper Component */
.sticker {
    border: 2px solid var(--foreground) !important;
    box-shadow: var(--shadow-sticker) !important;
}

/* Header Area Classes */

header > div {
    max-width: var(--page-max);
    margin: 0 auto;
    /*height: 114px;*/
    padding: 0 var(--page-pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-link {
    display: grid;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: -0.025em;
    /*border: 1px solid red;*/
}

.logo-img {
    height: 14rem;
    /*border: 1px solid red;*/
}

.main-nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

@media (min-width: 64rem) {
    .main-nav {
        display: flex;
    }
}

.nav-link {
    transition: color 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

/* ===== MOBILE TOGGLE ===== */
#mobile-menu-toggle {
    display: none;
    background: none;
    border: 0;
    color: var(--foreground);
    cursor: pointer;
    padding: 0.5rem;
}

#mobile-menu-toggle svg { overflow: visible; }

#mobile-menu-toggle .line {
    transition: transform 0.25s ease, opacity 0.2s ease;
    transform-origin: center;
}

#mobile-menu-toggle[aria-expanded="true"] .top    { transform: translateY(2.5px) rotate(45deg); }
#mobile-menu-toggle[aria-expanded="true"] .middle { opacity: 0; }
#mobile-menu-toggle[aria-expanded="true"] .bottom { transform: translateY(-6px) rotate(-45deg); }


.cta-button {
    border-radius: 9999px;
    background-color: var(--foreground);
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--background);
    transition: translate 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button:hover {
    --tw-translate-y: -0.125rem;
    translate: 0 var(--tw-translate-y);
}

/* Hero Elements & Ambient Orbs */
.hero-section {
    position: relative;
    border-left: 1px solid black;
}

.hero-ambience {
    pointer-events: none;
    position: absolute;
    inset: 0;
    /*z-index: -1;*/
}

.glow-orb {
    position: absolute;
    border-radius: 9999px;
    filter: blur(10px);
}

.bubblegum-glow {
    left: 5%;
    top: 5em;
    height: 16rem;
    width: 16rem;
    background-color: var(--bubblegum);
    opacity: 0.4;
}

.sky-glow {
    right: 2%;
    top: 0;
    height: 16rem;
    width: 16rem;
    background-color: var(--sky);
    opacity: 0.7;
}

.butter-glow {
    bottom: 4.5rem;
    left: 40%;
    height: 16rem;
    width: 16rem;
    background-color: var(--butter);
    opacity: 0.4;
}

.hero-container {
    margin-inline: auto;
    max-width: 80rem;
    display: grid;
    align-items: center;
    gap: 2.5rem;
    padding: 5rem 1.5rem;
    position: relative;
}

@media (min-width: 48rem) {
    .hero-container {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-block: 5rem;
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border-radius: 9999px;
    padding: 0.375rem 1rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mint-badge {
    background-color: var(--mint);
}

.badge-dot {
    height: 0.5rem;
    width: 0.5rem;
    border-radius: 9999px;
    background-color: var(--foreground);
}

.hero-title {
    margin-top: 1.25rem;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.02;
    letter-spacing: -0.025em;
}

@media (min-width: 48rem) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.highlight-container {
    position: relative;
    display: inline-block;
}

.highlight-text {
    position: relative;
    z-index: 10;
}

.highlight-underline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0.25rem;
    z-index: 1;
    height: 1rem;
    border-radius: 9999px;
    background-color: color-mix(in oklab, var(--bubblegum) 70%, transparent);
}

.hero-description {
    margin-top: 1.25rem;
    max-width: 28rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--muted-foreground);
}

.hero-actions {
    margin-top: 1.75rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.btn {
    border-radius: 9999px;
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
    font-weight: 700;
    transition: translate 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.btn:hover {
    --tw-translate-y: -0.25rem;
    translate: 0 var(--tw-translate-y);
}

.btn-primary {
    background-color: var(--primary);
    color: var(--primary-foreground);
}

.btn-secondary {
    background-color: var(--card);
}

.hero-social-proof {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.avatar-group {
    display: flex;
}

.avatar-group .avatar {
    height: 2rem;
    width: 2rem;
    border-radius: 9999px;
    border: 2px solid var(--background);
    margin-right: -0.5rem;
}

.avatar.bg-pink {
    background-color: var(--pink);
}

.avatar.bg-lavender {
    background-color: var(--lavender);
}

.avatar.bg-butter {
    background-color: var(--butter);
}

.avatar.bg-mint {
    background-color: var(--mint);
}

.hero-graphics {
    position: relative;
    margin-inline: auto;
    width: 100%;
    max-width: 28rem;
}

.graphics-glow {
    position: absolute;
    inset: 0;
    z-index: -10;
    border-radius: 9999px;
    filter: blur(40px);
    background-image: linear-gradient(135deg, var(--pink) 0%, var(--sky) 100%);
    opacity: 0.8;
}

.hero-img {
    position: relative;
}

@keyframes float-y {
    0%, 100% {
        transform: translateY(0) rotate(var(--r, 0deg));
    }
    
    50% {
        transform: translateY(-12px) rotate(var(--r, 0deg));
    }
}

.image-float {
    animation: float-y 6s ease-in-out infinite;
}

.tag-badge {
    position: absolute;
    display: none;
    border-radius: 1.25rem;
    background-color: var(--card);
    padding: 0.5rem 0.75rem;
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
}

@media (min-width: 40rem) {
    .tag-badge {
        display: block;
    }
}

.tag-left {
    left: -2.5rem;
    top: 2.5rem;
}

.tag-right {
    right: -2.5rem;
    bottom: 4rem;
    background-color: var(--butter);
}

/* Infinite Text Ribbon Showcase */
.ticker-ribbon {
    border-block-width: 2px;
    border-block-style: solid;
    border-color: var(--foreground);
    background-color: var(--foreground);
    padding-block: 0.75rem;
    color: var(--background);
}

.ticker-wrapper {
    display: flex;
    gap: 3rem;
    overflow: hidden;
    white-space: nowrap;
    font-size: 1.125rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

/* Ticker Track Layout & Animation Trigger */
.ticker-track {
    display: flex;
    flex-shrink: 0;
    gap: 3rem;
    padding-inline: 1.5rem;
    /* Smooth linear loop over 25 seconds */
    animation: ticker-scroll 25s linear infinite;
}

/* Pause the scrolling animation when a user hovers over the ribbon */
.ticker-ribbon:hover .ticker-track {
    animation-play-state: paused;
}

/* Exact 50% translation loop for seamless patching */
@keyframes ticker-scroll {
    0% {
        transform: translate3d(0, 0, 0);
    }
    
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.ticker-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

/* Grid Layout Sections */
.catalog-section {
    margin-inline: auto;
    max-width: 80rem;
    padding: 5rem 1.5rem;
}

.catalog-header {
    margin-bottom: 3rem;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.catalog-subtitle {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--primary);
}

.catalog-title {
    margin-top: 0.5rem;
    font-family: var(--font-display);
    font-size: 2.25rem;
    line-height: 3.5rem;
    font-weight: 900;
}

@media (min-width: 48rem) {
    .catalog-title {
        font-size: 3.75rem;
    }
}

.catalog-lead {
    max-width: 24rem;
    color: var(--muted-foreground);
}

.catalog-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 40rem) {
    .catalog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .catalog-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

/* Preserved Dynamic Product Cards */
.box-card {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: 1.25rem;
    padding: 1.5rem;
    transition: translate 150ms cubic-bezier(0.4, 0, 0.2, 1), rotate 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.box-card:hover {
    --tw-translate-y: -0.5rem;
    translate: 0 var(--tw-translate-y);
    rotate: 0deg !important;
}

.card-meta {
    display: flex;
    align-items: start;
    justify-content: space-between;
}

.card-id {
    border-radius: 9999px;
    background-color: color-mix(in oklab, var(--background) 70%, transparent);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.card-price {
    border-radius: 9999px;
    background-color: var(--foreground);
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--background);
}

.card-media {
    margin-block: 0.5rem;
    display: grid;
    height: 12rem;
    place-items: center;
}

.card-img {
    height: 11rem;
    width: 11rem;
    object-fit: contain;
    filter: drop-shadow(0 4px 4px rgb(0 0 0/0.5));
    transition: scale 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.box-card:hover .card-img {
    scale: 1.1;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.875rem;
    font-weight: 900;
}

.card-tagline {
    margin-top: 0.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    opacity: 0.8;
}

.card-btn {
    margin-top: 1.25rem;
    display: block;
    width: 100%;
    border-radius: var(--radius);
    border: 2px solid var(--foreground);
    background-color: var(--background);
    padding-block: 0.75rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 700;
    transition: background-color 150ms, color 150ms;
}

.box-card:hover .card-btn {
    /*background-color: var(--foreground);*/
    background-color: #831100;
    color: var(--background);
}

/* Background Gradients & Color Variations */
.item-pink {
    background-color:var(--pink);
}

.item-lavender {
    background-color: var(--lavender);
}

.item-butter {
    /*background-image: var(--gradient-sunshine);*/
    background-color:var(--butter);
}

.item-sky {
    background-color: var(--sky);
}

.item-peach {
    background-color: var(--peach);
}

.item-mint {
    /*background-image: var(--gradient-mystery);*/
    background-color:var(--mint);
}

/* Category Background Assignment */
.item-journaling {
    background-image: var(--gradient-journal);
}

.item-spa-box {
    background-image: var(--gradient-spa);
}

.item-calming {
    background-image: var(--gradient-calming);
}

.item-reading {
    background-image: var(--gradient-reading);
}


.category-split {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 4rem var(--page-pad);

    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "visual content";
    gap: 4rem;
    align-items: center;
}

.category-visual { grid-area: visual; }
.category-content { grid-area: content; }

.category-split.reverse {
    grid-template-areas: "content visual";
}

.category-visual {
    border-radius: 2rem;
    padding: 2rem;
    position: relative;
    min-height: 520px;

    display: flex;
    align-items: center;
    justify-content: center;

    box-shadow: var(--shadow-sticker);
}

.category-split:nth-child(odd) .category-visual {
    transform: rotate(2deg);
}

.category-split:nth-child(even) .category-visual {
    transform: rotate(-2deg);
}


/* badge like your screenshot */
.category-badge {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;

    background: rgba(255,255,255,0.7);
    padding: 0.5rem 1rem;
    border-radius: 999px;

    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.category-hero-image {
    width: 100%;
    max-width: 360px;
    object-fit: contain;
    filter: drop-shadow(0 10px 10px rgba(0,0,0,0.2));
}

/* TEXT SIDE */
.category-content {
    padding: 1rem 0;
}

.category-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.1;
}

.category-subtitle {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--muted-foreground);
}

.category-description {
    margin-top: 1.25rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* WHAT'S INSIDE */
.category-inside {
    margin-top: 2rem;
}

.category-inside h3 {
    font-size: 0.9rem;
    letter-spacing: 0.12em;
    color: var(--primary);
    font-weight: 900;
}

.inside-list {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.inside-list li {
    font-weight: 600;
    color: var(--foreground);
}

/* FOOTER ACTIONS */
.category-footer {
    margin-top: 2.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.price {
    font-size: 2rem;
    font-weight: 900;
    font-family: var(--font-display);
}

.gift-link {
    font-weight: 700;
    text-decoration: underline;
}

/* Footer Configurations */
.main-footer {
    border-top: 1px solid var(--border);
    padding-block: 5rem;
}

.footer-container {
    margin-inline: auto;
    max-width: 80rem;
    padding-inline: 1.5rem;
}

.footer-branding-grid {
    display: grid;
    gap: 2.5rem;
}

@media (min-width: 48rem) {
    .footer-branding-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (min-width: 64rem) {
    .footer-branding-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-tagline {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    max-width: 16rem;
}

.footer-links-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 0.875rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 2rem;
}

.footer-links-list {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.footer-links-list a {
    color: var(--muted-foreground);
    transition: color 150ms;
}

.footer-links-list a:hover {
    color: var(--primary);
}

.footer-newsletter-column {
    display: flex;
    flex-direction: column;
}

.newsletter-text {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.newsletter-form {
    margin-top: 0.75rem;
    display: flex;
    gap: 0.5rem;
}

.newsletter-input {
    width: 100%;
    border-radius: 9999px;
    background-color: var(--background);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    outline: none;
    border: 1px solid var(--border);
}

.newsletter-input:focus {
    box-shadow: 0 0 0 2px var(--primary);
}

.newsletter-submit {
    border-radius: 9999px;
    background-color: var(--primary);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-foreground);
}

/* Story / Happiness Business Section */
.story-section {
    background-color: var(--card);
    border-block: 1px solid var(--border);
    padding: 5rem 1.5rem;
}

.story-container {
    margin-inline: auto;
    max-width: 80rem;
    display: grid;
    gap: 3.5rem;
    align-items: center;
}

@media (min-width: 64rem) {
    .story-container {
        grid-template-columns: 1fr 1.25fr;
    }
}

.story-title {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1.1;
}

@media (min-width: 48rem) {
    .story-title {
        font-size: 3.5rem;
    }
}

.story-description {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.625;
    color: var(--muted-foreground);
    max-width: 32rem;
}

.inline-btn {
    display: inline-block;
    margin-top: 2rem;
}

/* Features Grid Block */
.features-grid {
    display: grid;
    gap: 1.5rem;
}

@media (min-width: 40rem) {
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.feature-card {
    background-color: var(--background);
    border-radius: 1.25rem;
    padding: 2rem;
    transition: transform 150ms cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-0.25rem);
}

.feature-icon {
    max-width: 80px;
    max-height: 80px;
    display: block;
    margin-bottom: 1rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 900;
}

.feature-text {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--muted-foreground);
}

/* Testimonial Section */
.testimonial-section {
    margin-inline: auto;
    max-width: 80rem;
    padding: 6rem 1.5rem;
}

.testimonial-container {
    background-color: var(--mint);
    border-radius: 2rem;
    padding: 3rem 1.5rem;
    text-align: center;
    max-width: 48rem;
    margin-inline: auto;
}

@media (min-width: 48rem) {
    .testimonial-container {
        padding: 4rem 3rem;
    }
}

.testimonial-stars {
    color: var(--foreground);
    font-size: 1.25rem;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.testimonial-quote {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
    line-height: 1.3;
    color: var(--foreground);
}

@media (min-width: 48rem) {
    .testimonial-quote {
        font-size: 2.25rem;
    }
}

.testimonial-author {
    margin-top: 2rem;
    font-size: 1rem;
    font-weight: 700;
}

.author-meta {
    font-weight: 500;
    color: color-mix(in oklab, var(--foreground) 75%, transparent);
}

/* Final Call to Action Section */
.final-cta-section {
    margin-inline: auto;
    max-width: 80rem;
    padding-bottom: 6rem;
    padding-inline: 1.5rem;
}

.final-cta-container {
    background-image: var(--gradient-candy);
    border-radius: 2rem;
    padding: 4rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (min-width: 48rem) {
    .final-cta-container {
        padding: 5rem 3rem;
    }
}

.cta-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 900;
    line-height: 1.1;
    max-width: 36rem;
}

@media (min-width: 48rem) {
    .cta-title {
        font-size: 3.5rem;
    }
}

.cta-subtitle {
    margin-top: 1.5rem;
    font-size: 1.125rem;
    line-height: 1.5;
    font-weight: 600;
    max-width: 28rem;
    color: color-mix(in oklab, var(--foreground) 85%, transparent);
}

.cta-actions {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
}

.cta-actions .btn {
    width: 100%;
    align-items: center;
    line-height: 36px;
}

@media (min-width: 40rem) {
    .cta-actions .btn {
        width: auto;
    }
}

.footer-bottom {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    padding-top: 1.5rem;
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-socials {
    display: flex;
    gap: 1.25rem;
    font-weight: 600;
}

.footer-socials a:hover {
    color: var(--primary);
}

/* === Custom Legacy Style Blocks === */
.infobar,
.infobar .infobar-icon,
.infobar .infobar-link-icon {
    min-inline-size: 28px;
    min-block-size: 28px;
    box-sizing: border-box;
}

.infobar,
.infobar .infobar-close-icon,
.infobar .infobar-link-icon {
    opacity: 0.7;
    transition: opacity 250ms;
}

.infobar:hover,
.infobar .infobar-close-icon:hover,
.infobar .infobar-link-icon:hover {
    opacity: 1;
}

.infobar,
.infobar-content {
    display: flex;
}

.infobar {
    position: fixed;
    max-height: calc(100% - 32px);
    top: 16px;
    right: 16px;
    margin-inline-start: 16px;
    margin-block-end: 16px;
    color: #2D2D2D;
    background-color: #737373;
    border: 2px solid;
    border-color: #EEE;
    border-radius: 16px;
    z-index: 2147483647;
    animation-name: flash;
    animation-duration: 0.5s;
    animation-timing-function: cubic-bezier(0.39, 0.58, 0.57, 1);
    animation-delay: 1s;
    animation-iteration-count: 2;
}

.infobar:valid,
.infobar:not(:focus-within):not(.infobar-focus) .infobar-content {
    display: none;
}

.infobar:focus-within,
.infobar.infobar-focus {
    background-color: #F9F9F9;
    border-color: #878787;
    border-radius: 8px;
    opacity: 1;
    transition-property: opacity, background-color, border-color, border-radius, color;
}

.infobar-content {
    border: 2px solid;
    border-color: #F9F9F9;
    border-radius: 6px;
    background-color: #F9F9F9;
    overflow: auto;
}

.infobar-content span {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    line-height: 18px;
    word-break: break-word;
    white-space: pre-wrap;
    margin-inline: 4px;
    margin-block: 4px;
}

.infobar .infobar-icon,
.infobar .infobar-close-icon,
.infobar .infobar-link-icon {
    cursor: pointer;
    background-position: center;
    background-repeat: no-repeat;
}

.infobar .infobar-close-icon,
.infobar .infobar-link-icon {
    align-self: flex-start;
}

.infobar .infobar-icon {
    position: absolute;
    min-inline-size: 24px;
    min-block-size: 24px;
}

@keyframes flash {
    0%, 100% {
        background-color: #737373;
    }
    
    50% {
        background-color: #DD6A00;
    }
}

.infobar:focus-within .infobar-icon,
.infobar.infobar-focus .infobar-icon {
    z-index: -1;
    background-image: none;
    margin: 4px;
}

.infobar .infobar-close-icon {
    min-inline-size: 22px;
    min-block-size: 22px;
}

.infobar .infobar-icon {
    background-color: transparent;
    background-size: 70%;
    background-image: url("../images/bg-icon-0.png");
}

.infobar .infobar-link-icon {
    right: 4px;
    background-size: 60%;
    background-image: url("../images/bg-icon-1.png");
}

.infobar .infobar-close-icon {
    appearance: none;
    background-size: 80%;
    background-image: url("../images/bg-icon-2.png");
}

.infobar {
    top: 16px;
    bottom: auto;
    right: 16px;
    left: auto;
}


.extras-section {
    max-width: var(--page-max);
    margin: 0 auto;
    padding: 6rem var(--page-pad);
}

.extras-header {
    margin-bottom: 3rem;
    text-align: left;
}

.extras-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 900;
}

.extras-header p {
    margin-top: 0.5rem;
    font-weight: 700;
    color: var(--primary);
}

.extras-header span {
    display: block;
    margin-top: 1rem;
    max-width: 50rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

.extras-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

.extras-card {
    background: var(--card);
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-sticker);
    border: 2px solid var(--foreground);
    display: flex;
    flex-direction: column;
}

.extras-image {
    padding: 2rem;
    display: grid;
    place-items: center;
    background: color-mix(in oklab, var(--mint) 20%, white);
}

.extras-image img {
    max-width: 220px;
    height: auto;
    object-fit: contain;
}

.extras-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.extras-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 900;
}

.extras-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 900;
}

.extras-tagline {
    font-weight: 700;
    color: var(--primary);
}

.extras-description {
    color: var(--muted-foreground);
    line-height: 1.5;
}

.extras-inside {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.extras-inside ul {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.extras-btn {
    margin-top: 1rem;
    text-align: center;
}

.menu-header {
    max-width: var(--page-max);
    margin: 2rem auto 0;
    padding: 3rem var(--page-pad) 3rem;
    text-align: left;
}

.menu-title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
}

.menu-subtitle {
    margin-top: 0.75rem;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    line-height: 1.05;
}

.menu-description {
    margin-top: 1.5rem;
    max-width: 42rem;
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--muted-foreground);
}