:root {
    --butter: #fff0b8;
    --pink: #ee6685;
    --hot-pink: #c92856;
    --blue: #d7f2ff;
    --green: #0e746a;
    --mint: #dff7ec;
    --paper: #fff7fb;
    --white: #ffffff;
    --ink: #121212;
    --muted: #5a5560;
    --line: rgba(18, 18, 18, 0.09);
    --shadow: 0 18px 45px rgba(201, 40, 86, 0.12);
    --small-shadow: 0 10px 24px rgba(14, 116, 106, 0.08);
    --surface-soft: rgba(255, 255, 255, 0.8);
    --nav-bg: #fffefe;
    --header-bg: rgba(255, 255, 255, 0.94);
    --pill-bg: #f1f7ff;
    --input-border: rgba(18, 18, 18, 0.13);
    --input-locked: #f2f4f8;
    --calendar-day-bg: #fffafd;
    --calendar-disabled-bg: #eceef2;
    --calendar-disabled-text: rgba(18, 18, 18, 0.32);
    --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.18));
    --hero-text: #ffffff;
    --hero-subtitle: rgba(255, 255, 255, 0.92);
    --ambient-pink: rgba(238, 102, 133, 0.18);
    --ambient-blue: rgba(125, 203, 255, 0.24);
    --ambient-mint: rgba(131, 223, 188, 0.24);
    --surface-panel: rgba(255, 255, 255, 0.84);
    --surface-strong: rgba(255, 255, 255, 0.95);
    --section-border: rgba(18, 18, 18, 0.07);
    --band-butter: linear-gradient(135deg, #fff0b8 0%, #ffd4c2 100%);
    --band-mint: linear-gradient(135deg, #effbf3 0%, #d7f4ff 100%);
    --band-blue: linear-gradient(135deg, #e2f6ff 0%, #def8ed 100%);
    --footer-bg: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(244, 250, 255, 0.96) 100%);
    color-scheme: light;
}

:root[data-theme="dark"] {
    --butter: #4a3b1f;
    --pink: #f06b8a;
    --hot-pink: #ff6f9a;
    --blue: #203a4b;
    --green: #74d6c5;
    --mint: #1f3f38;
    --paper: #111113;
    --white: #1b1b1f;
    --ink: #f7f0e9;
    --muted: #c8bdb4;
    --line: rgba(255, 255, 255, 0.1);
    --shadow: 0 18px 48px rgba(0, 0, 0, 0.45);
    --small-shadow: 0 10px 28px rgba(0, 0, 0, 0.32);
    --surface-soft: rgba(27, 27, 31, 0.86);
    --nav-bg: #17171a;
    --header-bg: rgba(23, 23, 26, 0.92);
    --pill-bg: #28262a;
    --input-border: rgba(255, 255, 255, 0.14);
    --input-locked: #252329;
    --calendar-day-bg: #232328;
    --calendar-disabled-bg: #1a1a1e;
    --calendar-disabled-text: rgba(247, 240, 233, 0.32);
    --hero-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.36));
    --hero-text: #ffffff;
    --hero-subtitle: rgba(255, 255, 255, 0.92);
    --ambient-pink: rgba(240, 107, 138, 0.16);
    --ambient-blue: rgba(84, 132, 163, 0.16);
    --ambient-mint: rgba(69, 150, 133, 0.18);
    --surface-panel: rgba(27, 27, 31, 0.88);
    --surface-strong: rgba(32, 32, 37, 0.94);
    --section-border: rgba(255, 255, 255, 0.08);
    --band-butter: linear-gradient(135deg, #3d311c 0%, #4b3520 100%);
    --band-mint: linear-gradient(135deg, #1d3934 0%, #1d3430 100%);
    --band-blue: linear-gradient(135deg, #1f3444 0%, #1a3137 100%);
    --footer-bg: linear-gradient(180deg, rgba(27, 27, 31, 0.96) 0%, rgba(18, 18, 22, 0.98) 100%);
    color-scheme: dark;
}

:root[data-adaptive-background="true"] {
    --ambient-pink: var(--adaptive-light-pink);
    --ambient-blue: var(--adaptive-light-blue);
    --ambient-mint: var(--adaptive-light-mint);
}

:root[data-theme="dark"][data-adaptive-background="true"] {
    --ambient-pink: var(--adaptive-dark-pink);
    --ambient-blue: var(--adaptive-dark-blue);
    --ambient-mint: var(--adaptive-dark-mint);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    text-size-adjust: 100%;
}

body {
    margin: 0;
    font-family: "Nunito", Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, var(--ambient-pink), transparent 34%),
        radial-gradient(circle at top right, var(--ambient-blue), transparent 36%),
        radial-gradient(circle at 18% 82%, var(--ambient-mint), transparent 28%),
        linear-gradient(
            180deg,
            color-mix(in srgb, var(--paper) 96%, var(--white) 4%) 0%,
            var(--paper) 48%,
            color-mix(in srgb, var(--paper) 90%, var(--mint) 10%) 100%
        );
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
}

#app,
.app-shell {
    min-height: 100vh;
}

.promo-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 40px;
    padding: 0.55rem 1rem;
    color: var(--ink);
    background: var(--butter);
    font-size: 0.86rem;
    font-weight: 800;
    text-align: center;
    text-transform: uppercase;
}

.promo-bar a {
    text-decoration-thickness: 2px;
    text-underline-offset: 3px;
}

.top-nav {
    position: sticky;
    top: 0;
    z-index: 30;
    display: grid;
    grid-template-columns: minmax(160px, 1fr) auto minmax(160px, 1fr);
    align-items: center;
    gap: 1rem;
    min-height: 72px;
    padding: 0.4rem 1.4rem;
    background: var(--header-bg);
    box-shadow: 0 8px 28px rgba(18, 18, 18, 0.08);
    backdrop-filter: blur(14px);
    transition: transform 220ms ease, min-height 180ms ease, padding 180ms ease, box-shadow 180ms ease;
}

.brand-link {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    min-width: 0;
    color: var(--ink);
    text-decoration: none;
    font-family: "Baloo 2", cursive;
    font-size: 2rem;
    font-weight: 700;
    line-height: 0.95;
    text-align: center;
}

.brand-link img {
    display: block;
    width: 56px;
    height: 56px;
    object-fit: cover;
    background: #ffffff;
    border-radius: 50%;
    transition: width 180ms ease, height 180ms ease;
}

.top-nav.is-compact {
    min-height: 72px;
    padding-top: 0.4rem;
    padding-bottom: 0.4rem;
    box-shadow: 0 7px 20px rgba(18, 18, 18, 0.12);
}

.top-nav.is-compact .brand-link img {
    width: 56px;
    height: 56px;
}

.nav-links {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    gap: 1.4rem;
    min-width: 0;
}

.nav-links a {
    color: var(--ink);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--hot-pink);
}

.mobile-navigation {
    display: none;
    position: relative;
}

.mobile-navigation summary {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    color: var(--ink);
    background: var(--pill-bg);
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    list-style: none;
    cursor: pointer;
}

.mobile-navigation summary::-webkit-details-marker {
    display: none;
}

.mobile-navigation[open] summary,
.mobile-navigation summary:hover {
    color: var(--hot-pink);
}

.mobile-navigation-panel {
    position: absolute;
    top: calc(100% + 0.55rem);
    left: 50%;
    z-index: 50;
    display: grid;
    min-width: 220px;
    padding: 0.45rem;
    background: var(--surface-strong);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.mobile-navigation-panel a {
    padding: 0.7rem 0.8rem;
    border-radius: 6px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
}

.mobile-navigation-panel a:hover,
.mobile-navigation-panel a.active {
    color: var(--hot-pink);
    background: var(--pill-bg);
}

.utility-actions {
    grid-column: 3;
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
}

.theme-toggle,
.language-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    min-width: 42px;
    min-height: 42px;
    padding: 0.55rem;
    color: var(--ink);
    background: var(--pill-bg);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.theme-toggle-icon {
    display: inline-grid;
    place-items: center;
    width: 20px;
    height: 20px;
    font-size: 1rem;
    line-height: 1;
}

:root[data-theme="dark"] .theme-toggle-icon {
    color: var(--hot-pink);
}

.language-toggle-code {
    font-size: 0.78rem;
    line-height: 1;
}

.shop-nav {
    display: flex;
    justify-content: center;
    gap: 0.65rem;
    overflow-x: auto;
    padding: 0 1rem 0.85rem;
    background: transparent;
}

.shop-nav a {
    flex: 0 0 auto;
    padding: 0.62rem 1rem;
    color: var(--ink);
    background: var(--pill-bg);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
}

.shop-nav a:hover {
    background: var(--pink);
    color: var(--white);
}

.hero {
    position: relative;
    min-height: 66svh;
    display: grid;
    align-items: end;
    overflow: hidden;
    padding: 4rem 1.3rem;
    color: var(--hero-text);
    background:
        var(--hero-overlay),
        var(--hero-image, url("/static/images/img3.jpeg")) center / cover;
    box-shadow: inset 0 -60px 100px rgba(0, 0, 0, 0.16);
}

.hero-has-media {
    background: var(--paper);
}

.hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    height: 120px;
    background: linear-gradient(180deg, transparent 0%, var(--paper) 100%);
    pointer-events: none;
}

.hero-has-media::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: var(--hero-overlay);
    pointer-events: none;
}

.hero-picture,
.hero-image {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.hero-image {
    object-fit: cover;
}

.hero-media {
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.hero-inner {
    position: relative;
    z-index: 2;
    width: min(760px, 100%);
    margin-left: max(0px, calc((100vw - 1180px) / 2));
    animation: rise 0.65s ease;
}

.badge {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    margin: 0;
    padding: 0.38rem 0.75rem;
    color: var(--ink);
    background: var(--butter);
    border-radius: 999px;
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0.8rem 0 0.8rem;
    font-family: "Baloo 2", cursive;
    font-size: 4.7rem;
    line-height: 0.92;
}

.subtitle {
    max-width: 610px;
    margin: 0 0 1.5rem;
    color: var(--hero-subtitle);
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1.45;
}

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

.btn-primary,
.btn-secondary,
.text-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
}

.btn-primary {
    padding: 0.85rem 1.2rem;
    color: var(--white);
    background: var(--hot-pink);
    box-shadow: var(--small-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.btn-secondary {
    padding: 0.85rem 1.2rem;
    color: var(--ink);
    background: color-mix(in srgb, var(--white) 92%, transparent);
    box-shadow: var(--small-shadow);
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 32px rgba(18, 18, 18, 0.14);
}

.category-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.category-tile {
    position: relative;
    min-height: 300px;
    overflow: hidden;
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    text-decoration: none;
    background: var(--ink);
    box-shadow: var(--small-shadow);
}

.category-tile img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.28s ease, opacity 0.28s ease;
}

.category-tile:hover img {
    transform: scale(1.04);
    opacity: 0.9;
}

.category-copy {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    display: grid;
    gap: 0.25rem;
}

.category-copy strong {
    font-family: "Baloo 2", cursive;
    font-size: 2rem;
    line-height: 1;
}

.category-copy small {
    max-width: 320px;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.35;
}

.content {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0;
}

.gallery-page .content {
    padding-top: 3rem;
}

.home-showcase {
    --home-showcase-column-gap: 4rem;

    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0;
}

.home-showcase-media {
    position: relative;
    width: min(92%, 980px);
    overflow: hidden;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.home-showcase-media-has-text::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 48%;
    background: linear-gradient(180deg, transparent 0%, rgba(15, 12, 18, 0.58) 100%);
    content: "";
    pointer-events: none;
}

.home-showcase-video {
    width: 100%;
    aspect-ratio: 16 / 9;
    display: block;
    margin: 0;
    object-fit: cover;
    background: var(--pill-bg);
    border: 1px solid var(--section-border);
    border-radius: 8px;
}

.home-showcase-media-text {
    position: absolute;
    right: auto;
    bottom: 2rem;
    left: 2.5rem;
    z-index: 1;
    width: min(78%, 760px);
    margin: 0;
    color: #ffffff;
    font-family: "Nunito", Arial, sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    text-align: left;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.7);
    white-space: pre-line;
}

.home-showcase-grid {
    width: 92%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: var(--home-showcase-column-gap);
    row-gap: 1.6rem;
    margin: 6rem auto 0;
}

.home-showcase-card {
    min-width: 0;
    margin: 0;
}

.home-showcase-image-link {
    display: block;
    overflow: hidden;
    border-radius: 8px;
    text-decoration: none;
}

.home-showcase-image-link:focus-visible {
    outline: 3px solid var(--hot-pink);
    outline-offset: 4px;
}

.home-showcase-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    object-fit: cover;
    background: var(--pill-bg);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.home-showcase-image-link:hover .home-showcase-image {
    filter: brightness(1.03);
    transform: scale(1.015);
}

.home-showcase-card figcaption {
    margin-top: 0.75rem;
    color: var(--muted);
    font-weight: 600;
    line-height: 1.45;
    text-align: center;
    white-space: pre-line;
}

.home-showcase-about {
    max-width: 860px;
    margin: 7rem auto 0;
    text-align: center;
}

.home-showcase-about-title {
    margin: 0 0 0.35rem;
    font-family: "Baloo 2", cursive;
    font-size: 2.4rem;
    line-height: 1;
}

.home-showcase-text {
    max-width: 820px;
    margin: 0 auto;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.45;
    text-align: center;
    white-space: pre-line;
}

.home-showcase-actions {
    display: flex;
    justify-content: center;
    margin-top: 2.6rem;
}

.home-showcase-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 1.05rem 2.25rem;
    color: var(--white);
    background: var(--hot-pink);
    border-radius: 999px;
    box-shadow: var(--small-shadow);
    font-size: 1.08rem;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-transform: uppercase;
}

.home-showcase-cta:hover,
.home-showcase-cta:focus-visible {
    outline: none;
    transform: translateY(-1px);
}

.inquiry-page {
    padding: 2.2rem 0 4rem;
}

.inquiry-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2rem;
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface-panel) 100%);
    border: 1px solid var(--section-border);
    backdrop-filter: blur(16px);
    border-radius: 8px;
    box-shadow: var(--shadow);
    scroll-margin-top: 120px;
}

.inquiry-head {
    max-width: 760px;
    margin-bottom: 1.6rem;
}

.inquiry-head h2 {
    margin: 0;
    font-family: "Baloo 2", cursive;
    font-size: 3rem;
    line-height: 0.98;
}

.inquiry-intro {
    display: grid;
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.inquiry-intro p {
    margin: 0;
    color: var(--muted);
    line-height: 1.55;
}

.inquiry-intro h3 {
    margin: 0.7rem 0 0;
    font-family: "Baloo 2", cursive;
    font-size: 1.45rem;
    line-height: 1.1;
}

.inquiry-intro h3:first-child {
    margin-top: 0;
}

.inquiry-form {
    display: grid;
    gap: 1.2rem;
}

.inquiry-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.inquiry-form fieldset {
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
}

.inquiry-form legend {
    margin-bottom: 0.7rem;
    font-weight: 900;
    text-transform: uppercase;
}

.inquiry-type-options {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow: hidden;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background: var(--white);
}

.inquiry-type-option {
    position: relative;
    cursor: pointer;
}

.inquiry-type-option + .inquiry-type-option {
    border-left: 1px solid var(--input-border);
}

.inquiry-type-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.inquiry-type-option span {
    display: grid;
    min-height: 46px;
    padding: 0.7rem 1rem;
    place-items: center;
    font-weight: 900;
    text-align: center;
}

.inquiry-type-option input:checked + span {
    color: var(--white);
    background: var(--hot-pink);
}

.inquiry-type-option input:focus-visible + span {
    box-shadow: inset 0 0 0 3px var(--ink);
}

.product-picker {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.product-picker legend {
    grid-column: 1 / -1;
}

.product-groups {
    display: grid;
    gap: 0.75rem;
}

.product-group {
    overflow: hidden;
    border: 1px solid var(--section-border);
    border-radius: 8px;
    background: var(--white);
}

.product-group-summary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 1.6rem;
    gap: 0.75rem;
    align-items: center;
    min-height: 58px;
    padding: 0.75rem 0.9rem;
    cursor: pointer;
    list-style: none;
}

.product-group-summary::-webkit-details-marker {
    display: none;
}

.product-group-summary::after {
    content: "+";
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    place-items: center;
    color: var(--white);
    background: var(--hot-pink);
    border-radius: 50%;
    font-weight: 900;
}

.product-group[open] .product-group-summary::after {
    content: "-";
}

.product-group-meta {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.product-group-items {
    display: grid;
    gap: 0.75rem;
    padding: 0 0.75rem 0.75rem;
    border-top: 1px solid var(--section-border);
}

.product-group-items .product-option:first-child,
.product-group-empty {
    margin-top: 0.75rem;
}

.product-group-empty {
    color: var(--muted);
    font-weight: 600;
}

[data-inquiry-request-section][hidden] {
    display: none;
}

.product-option {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) minmax(5rem, auto);
    gap: 0.85rem;
    align-items: center;
    min-height: 132px;
    padding: 1rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
}

.product-option-without-quantity {
    grid-template-columns: auto minmax(0, 1fr);
}

.product-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 0.15rem;
    accent-color: var(--hot-pink);
}

.product-option strong,
.product-option small {
    display: block;
}

.product-option strong {
    font-size: 1.1rem;
}

.product-option small {
    margin-top: 0.3rem;
    color: var(--muted);
    line-height: 1.4;
}

.product-option-details {
    min-width: 0;
    cursor: pointer;
}

.product-quantity {
    display: grid;
    gap: 0.35rem;
}

.product-quantity span {
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--muted);
}

.product-quantity input {
    width: 5rem;
    min-height: 2.5rem;
    padding: 0.55rem 0.65rem;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    background: var(--white);
    font: inherit;
    font-weight: 800;
}

.product-quantity input:disabled {
    opacity: 0.45;
}

.product-suboption {
    grid-column: 2 / -1;
    display: grid;
    gap: 0.35rem;
    min-width: 0;
}

.product-suboption span {
    color: var(--muted);
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-suboption select {
    width: min(100%, 420px);
    min-height: 2.6rem;
    padding: 0.55rem 2.2rem 0.55rem 0.7rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font: inherit;
    font-weight: 700;
}

.product-suboption select:disabled {
    opacity: 0.45;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    align-items: end;
}

.contact-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.field {
    display: grid;
    gap: 0.45rem;
    font-weight: 700;
}

.field input,
.field select,
.field textarea {
    width: 100%;
    min-height: 46px;
    padding: 0.75rem 0.85rem;
    color: var(--ink);
    background: var(--white);
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font: inherit;
    outline: none;
    transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

.field input,
.field select {
    height: 58px;
}

.field textarea {
    min-height: 116px;
    resize: vertical;
}

.field textarea.admin-auto-textarea {
    min-height: 46px;
    height: 46px;
    overflow-y: hidden;
    resize: none;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: rgba(217, 54, 98, 0.7);
    box-shadow: 0 0 0 4px rgba(217, 54, 98, 0.12);
}

.field input[readonly] {
    color: var(--muted);
    background: var(--input-locked);
    cursor: not-allowed;
}

.calendar-field {
    grid-column: 1 / -1;
}

.message-field {
    max-width: 760px;
}

.inquiry-image-field {
    max-width: 760px;
}

.inquiry-image-control {
    display: grid;
    gap: 0.35rem;
}

.inquiry-image-control input[type="file"] {
    height: auto;
    min-height: 58px;
}

.date-field-stack {
    display: grid;
    gap: 0.75rem;
}

.delivery-date-value {
    max-width: 320px;
}

.booking-calendar {
    width: min(100%, 560px);
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
}

.calendar-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 0.55rem;
    margin-bottom: 0.7rem;
}

.calendar-header strong {
    text-align: center;
    font-size: 1.05rem;
}

.calendar-header button {
    min-height: 36px;
    padding: 0.45rem 0.7rem;
    color: var(--ink);
    background: var(--pill-bg);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
}

.calendar-weekdays,
.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, minmax(0, 1fr));
    gap: 0.3rem;
}

.calendar-weekdays {
    margin-bottom: 0.3rem;
}

.calendar-weekdays span {
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
}

.calendar-day {
    min-height: 44px;
    color: var(--ink);
    background: var(--calendar-day-bg);
    border: 1px solid var(--line);
    border-radius: 8px;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.16s ease, color 0.16s ease, transform 0.16s ease, box-shadow 0.16s ease;
}

.calendar-day:hover:not(:disabled) {
    background: var(--butter);
    box-shadow: var(--small-shadow);
    transform: translateY(-1px);
}

.calendar-day.is-selected {
    color: var(--white);
    background: var(--hot-pink);
}

.calendar-day:disabled {
    color: var(--calendar-disabled-text);
    background: var(--calendar-disabled-bg);
    cursor: not-allowed;
    text-decoration: line-through;
}

.calendar-day-empty {
    min-height: 44px;
}

.field-hint {
    min-height: 1rem;
    color: var(--muted);
    font-weight: 700;
    line-height: 1.35;
}

.field-hint[data-state="error"] {
    color: var(--hot-pink);
}

.topping-picker {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.topping-picker legend {
    flex: 0 0 100%;
}

.checkbox-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.62rem 0.85rem;
    background: var(--pill-bg);
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

.checkbox-pill input {
    width: 16px;
    height: 16px;
    accent-color: var(--hot-pink);
}

.form-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
}

.inquiry-nonbinding-notice {
    max-width: 760px;
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.form-actions button {
    min-height: 46px;
    padding: 0.85rem 1.2rem;
    color: var(--white);
    background: var(--hot-pink);
    border: 0;
    border-radius: 999px;
    box-shadow: var(--small-shadow);
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.form-actions button:disabled {
    cursor: wait;
    opacity: 0.68;
}

.form-status {
    margin: 0;
    color: var(--muted);
    font-weight: 800;
}

.form-status[data-state="success"] {
    color: var(--green);
}

.form-status[data-state="error"] {
    color: var(--hot-pink);
}

.product-section {
    scroll-margin-top: 160px;
}

.section-head {
    margin-bottom: 1.5rem;
}

.section-head-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
}

.section-kicker {
    margin: 0 0 0.35rem;
    color: var(--green);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.section-head h1,
.section-head h2,
.feature-copy h2,
.occasion-section h2,
.values-section h2,
.community-copy h2 {
    margin: 0;
    font-family: "Baloo 2", cursive;
    font-size: 3rem;
    line-height: 0.98;
}

.section-head p,
.feature-copy p,
.occasion-section p,
.value-item p,
.community-copy p {
    color: var(--muted);
    font-size: 1rem;
    line-height: 1.5;
}

.section-head p {
    margin: 0.25rem 0 0;
}

.empty-state {
    margin: 1rem 0 0;
    color: var(--muted);
    font-weight: 600;
}

.text-link {
    flex: 0 0 auto;
    min-height: auto;
    padding: 0.7rem 0;
    color: var(--ink);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

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

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    overflow: hidden;
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--white) 100%);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.product-tag {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 1;
    margin: 0;
    padding: 0.28rem 0.55rem;
    background: var(--blue);
    border-radius: 8px;
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.card-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    background: var(--pill-bg);
}

.card-text {
    display: grid;
    gap: 0.45rem;
    padding: 1rem;
}

.card-text h3 {
    margin: 0;
    font-size: 1.15rem;
    line-height: 1.15;
}

.card-text p {
    margin: 0;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.35;
}

.product-price {
    margin-top: 0.2rem;
    color: var(--hot-pink);
    font-size: 0.95rem;
    text-transform: uppercase;
}

.feature-band {
    width: min(1180px, calc(100% - 2rem));
    margin: 1rem auto 0;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    background: var(--band-mint);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
    overflow: hidden;
}

.feature-band img {
    width: 100%;
    height: 100%;
    min-height: 460px;
    display: block;
    object-fit: cover;
}

.feature-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 3rem;
}

.feature-copy .btn-primary {
    justify-self: start;
}

.occasion-section {
    padding: 4rem 1rem;
    text-align: center;
    background: var(--band-butter);
    border-top: 1px solid var(--section-border);
    border-bottom: 1px solid var(--section-border);
}

.occasion-section h2 {
    max-width: 760px;
    margin: 0 auto;
}

.occasion-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.occasion-pills a {
    padding: 0.7rem 1rem;
    color: var(--ink);
    background: var(--white);
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    box-shadow: var(--small-shadow);
}

.values-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 4rem 0;
}

.values-section h2 {
    margin-bottom: 1.5rem;
    text-align: center;
}

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

.value-item {
    min-height: 230px;
    padding: 1.2rem;
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--white) 100%);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
}

.value-icon {
    display: inline-grid;
    place-items: center;
    width: 48px;
    height: 48px;
    margin-bottom: 1rem;
    color: var(--white);
    background: var(--green);
    border-radius: 999px;
    font-weight: 900;
}

.value-item h3 {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.value-item p {
    margin: 0;
}

.community-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto 2rem;
    display: grid;
    grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
    gap: 0;
    background: var(--band-blue);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
    overflow: hidden;
}

.community-copy {
    display: grid;
    align-content: center;
    gap: 1rem;
    padding: 3rem;
}

.community-copy .btn-primary {
    justify-self: start;
}

.community-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    padding: 0.75rem;
}

.community-grid img {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.site-footer {
    padding: 3rem 1rem 2rem;
    color: var(--ink);
    background: var(--footer-bg);
    border-top: 1px solid var(--line);
}

.footer-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0.75rem 1rem;
    color: #ffffff;
    background: var(--ink);
    border-radius: 999px;
    font-weight: 900;
    text-decoration: none;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) repeat(2, minmax(0, 1fr));
    gap: 2rem;
    padding: 0 0 2.4rem;
}

.footer-brand h2,
.footer-column h3 {
    margin: 0;
}

.footer-brand h2 {
    font-family: "Baloo 2", cursive;
    font-size: 2rem;
    line-height: 1;
}

.footer-logo {
    display: block;
    width: auto;
    max-width: 280px;
    max-height: 96px;
    object-fit: contain;
}

.footer-brand p {
    max-width: 340px;
    margin: 0.8rem 0 1rem;
    color: var(--muted);
    line-height: 1.55;
}

.footer-social-link {
    color: var(--ink);
    background: var(--mint);
}

.footer-column h3 {
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--muted);
}

.footer-column ul {
    display: grid;
    gap: 0.62rem;
    margin: 0.9rem 0 0;
    padding: 0;
    list-style: none;
}

.footer-column a {
    font-weight: 700;
    text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible {
    color: var(--hot-pink);
    text-decoration: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: 5px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.1rem;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.92rem;
}

.footer-bottom p {
    margin: 0;
}

.legal-content {
    width: min(920px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 3rem 0 4rem;
}

.legal-content h1 {
    margin: 0;
    font-family: "Baloo 2", cursive;
    font-size: 3rem;
    line-height: 1;
}

.legal-intro {
    margin: 0.7rem 0 1.4rem;
    color: var(--muted);
}

.legal-card {
    margin-bottom: 0.9rem;
    padding: 1.1rem;
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface-panel) 100%);
    border: 1px solid var(--section-border);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
}

.legal-card h2 {
    margin: 0 0 0.55rem;
    font-size: 1.05rem;
    text-transform: uppercase;
}

.legal-card p {
    margin: 0.2rem 0;
    line-height: 1.45;
}

.legal-list {
    display: grid;
    gap: 0.45rem;
    margin: 0.6rem 0 0;
    padding-left: 1.2rem;
    color: var(--muted);
    line-height: 1.55;
}

.admin-page {
    padding: 2.2rem 0 4rem;
}

.admin-app-shell .top-nav {
    grid-template-columns: minmax(120px, 1fr) auto;
    min-height: 64px;
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.admin-app-shell .nav-links,
.admin-app-shell .mobile-navigation {
    display: none;
}

.admin-app-shell .utility-actions {
    grid-column: 2;
}

.admin-app-shell .brand-link img,
.admin-app-shell .top-nav.is-compact .brand-link img {
    width: 52px;
    height: 52px;
}

.admin-section {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
}

.admin-head {
    max-width: 780px;
    margin-bottom: 1.5rem;
}

.admin-page.is-authenticated {
    padding-top: 1rem;
    padding-bottom: 7.5rem;
}

.admin-page.is-authenticated .admin-head {
    margin-bottom: 0.8rem;
}

.admin-page.is-authenticated .admin-head .section-kicker,
.admin-page.is-authenticated .admin-head p:last-child {
    display: none;
}

.admin-page.is-authenticated .admin-head h1 {
    font-size: 2rem;
    line-height: 1.1;
}

.admin-head h1 {
    margin: 0;
    font-family: "Baloo 2", cursive;
    font-size: 3rem;
    line-height: 0.98;
}

.admin-head p:last-child {
    margin: 0.6rem 0 0;
    color: var(--muted);
    line-height: 1.55;
}

.admin-login,
.admin-panel {
    display: grid;
    gap: 0.8rem;
}

.admin-login {
    max-width: 520px;
    padding: 1.2rem;
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface-panel) 100%);
    border: 1px solid var(--section-border);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: var(--small-shadow);
}

.admin-panel[hidden],
.admin-login[hidden] {
    display: none;
}

.admin-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0.85rem;
    background: var(--surface-panel);
    border: 1px solid var(--section-border);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(201, 40, 86, 0.07);
}

.admin-toolbar-copy,
.admin-toolbar-copy strong,
.admin-toolbar-copy small {
    display: block;
}

.admin-toolbar-copy small {
    margin-top: 0.1rem;
    color: var(--muted);
    font-size: 0.78rem;
}

.admin-toolbar-actions {
    display: flex;
    gap: 0.55rem;
    align-items: center;
}

.admin-toolbar-actions a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.admin-navigation {
    min-width: 0;
}

.admin-tab-select {
    display: none;
}

.admin-tabs {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.35rem;
    background: var(--pill-bg);
    border: 1px solid var(--section-border);
    border-radius: 8px;
}

.admin-tabs button {
    flex: 0 0 auto;
    min-height: 38px;
    padding: 0.5rem 0.8rem;
    color: var(--ink);
    background: transparent;
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-tabs button.active,
.admin-tabs button:focus-visible {
    color: var(--white);
    background: var(--hot-pink);
    outline: none;
}

.admin-card {
    display: grid;
    gap: 1rem;
    padding: 1rem;
    background: var(--surface-panel);
    border: 1px solid var(--section-border);
    backdrop-filter: blur(12px);
    border-radius: 8px;
    box-shadow: 0 5px 16px rgba(201, 40, 86, 0.06);
}

.admin-save-bar {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 28;
    width: min(560px, calc(100% - 2rem));
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    align-items: center;
    padding: 0.75rem;
    background: color-mix(in srgb, var(--surface-strong) 94%, transparent);
    border: 1px solid color-mix(in srgb, var(--hot-pink) 24%, var(--section-border));
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(201, 40, 86, 0.18);
    backdrop-filter: blur(14px);
}

.admin-save-bar[hidden] {
    display: none;
}

.admin-save-bar-copy,
.admin-save-bar-copy strong,
.admin-save-bar-copy span {
    min-width: 0;
    display: block;
}

.admin-save-bar-copy span {
    margin-top: 0.1rem;
    overflow: hidden;
    font-size: 0.82rem;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-save-bar button {
    min-height: 42px;
    padding: 0.65rem 1rem;
    color: var(--white);
    background: var(--hot-pink);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-save-bar button:disabled {
    color: var(--muted);
    background: var(--pill-bg);
    cursor: default;
    opacity: 0.78;
}

.admin-tab-panel[hidden] {
    display: none;
}

.admin-card h2 {
    margin: 0;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.admin-fields {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.admin-category-group {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--section-border);
}

.admin-category-group:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.admin-category-group-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto 1.6rem;
    align-items: center;
    gap: 0.75rem;
    min-height: 2.5rem;
    cursor: pointer;
    list-style: none;
}

.admin-category-group-header::-webkit-details-marker {
    display: none;
}

.admin-category-group-header::after {
    content: "+";
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    place-items: center;
    color: var(--white);
    background: var(--hot-pink);
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
}

.admin-category-group[open] .admin-category-group-header::after {
    content: "-";
}

.admin-category-group-header h3 {
    margin: 0;
    color: var(--hot-pink);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.admin-category-count {
    display: inline-grid;
    min-width: 1.8rem;
    min-height: 1.8rem;
    padding: 0.2rem 0.45rem;
    place-items: center;
    color: var(--ink);
    background: var(--pill-bg);
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 900;
}

.admin-category-items {
    display: grid;
    gap: 0.6rem;
    padding-top: 0.6rem;
}

.admin-help-text,
#admin-mail-template-fields .field {
    grid-column: 1 / -1;
}

.admin-help-text {
    margin: 0;
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-site-field-group {
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
    overflow: hidden;
    background: color-mix(in srgb, var(--surface-strong) 88%, var(--white) 12%);
    border: 1px solid var(--section-border);
    border-radius: 8px;
}

.admin-site-field-group summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin: 0;
    padding: 0.75rem 0.85rem;
    color: var(--hot-pink);
    cursor: pointer;
    font-size: 0.86rem;
    font-weight: 900;
    list-style: none;
    text-transform: uppercase;
}

.admin-site-field-group summary::-webkit-details-marker {
    display: none;
}

.admin-site-field-group summary::after {
    content: "+";
    display: inline-grid;
    width: 1.6rem;
    height: 1.6rem;
    place-items: center;
    color: var(--white);
    background: var(--hot-pink);
    border-radius: 999px;
    font-size: 1rem;
    line-height: 1;
}

.admin-site-field-group[open] summary::after {
    content: "-";
}

.admin-site-field-group[open] summary {
    border-bottom: 1px solid var(--section-border);
}

.admin-site-language-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-site-language-panel {
    min-width: 0;
    padding: 0.85rem;
}

.admin-site-language-panel + .admin-site-language-panel {
    border-left: 1px solid var(--section-border);
}

.admin-site-language-panel h3 {
    margin: 0 0 0.7rem;
    color: var(--muted);
    font-size: 0.78rem;
    text-transform: uppercase;
}

.admin-site-field-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
}

.admin-seo-image-field {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, 280px);
    gap: 0.85rem;
    align-items: end;
    padding: 0.85rem;
    border-top: 1px solid var(--section-border);
}

.admin-seo-image-preview {
    min-height: 92px;
    display: grid;
    overflow: hidden;
    place-items: center;
    color: var(--muted);
    background: var(--pill-bg);
    border-radius: 8px;
    font-size: 0.84rem;
}

.admin-seo-image-preview img {
    width: 100%;
    height: 100%;
    max-height: 160px;
    display: block;
    object-fit: cover;
}

.admin-about-group {
    grid-column: 1 / -1;
    display: grid;
    gap: 0.75rem;
    margin-top: 0.1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--section-border);
}

.admin-about-group h4 {
    margin: 0;
    color: var(--hot-pink);
    font-size: 0.86rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-logo-row {
    grid-column: 1 / -1;
    display: grid;
    gap: 0;
}

.admin-image-quality-field {
    width: min(100%, 240px);
}

.admin-media-row {
    overflow: hidden;
    background: color-mix(in srgb, var(--surface-strong) 88%, var(--white) 12%);
    border: 1px solid var(--section-border);
    border-radius: 8px;
}

.admin-media-summary {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) auto 1.6rem;
    gap: 0.7rem;
    align-items: center;
    min-height: 64px;
    padding: 0.5rem 0.7rem;
    cursor: pointer;
    list-style: none;
}

.admin-media-summary::-webkit-details-marker {
    display: none;
}

.admin-media-summary::after {
    content: "+";
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    place-items: center;
    color: var(--white);
    background: var(--hot-pink);
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
}

.admin-media-row[open] .admin-media-summary::after {
    content: "-";
}

.admin-media-row[open] .admin-media-summary {
    background: color-mix(in srgb, var(--pill-bg) 55%, transparent);
}

.admin-media-summary-preview {
    width: 64px;
    height: 48px;
    display: grid;
    overflow: hidden;
    place-items: center;
    background: var(--pill-bg);
    border-radius: 6px;
}

.admin-media-summary-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.admin-media-summary-type {
    color: var(--muted);
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-media-summary-quality {
    padding: 0.35rem 0.5rem;
    color: var(--ink);
    background: var(--pill-bg);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 900;
    white-space: nowrap;
}

.admin-media-editor {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(180px, 240px);
    gap: 0.75rem;
    align-items: end;
    padding: 0.8rem;
    border-top: 1px solid var(--section-border);
}

.admin-media-editor .admin-gallery-upload {
    grid-column: 1 / -1;
    width: min(100%, 620px);
}

.admin-gallery-row,
.admin-product-row {
    grid-column: 1 / -1;
    overflow: hidden;
    background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 96%, transparent) 0%, var(--white) 100%);
    border: 1px solid var(--section-border);
    border-radius: 8px;
}

.admin-item-summary {
    display: grid;
    gap: 0.7rem;
    align-items: center;
    min-height: 64px;
    padding: 0.55rem 0.7rem;
    cursor: pointer;
    list-style: none;
}

.admin-gallery-summary {
    grid-template-columns: 72px 2.25rem minmax(0, 1fr) 1.6rem;
}

.admin-product-summary {
    grid-template-columns: 2.25rem minmax(0, 1fr) 1.6rem;
}

.admin-item-summary::-webkit-details-marker {
    display: none;
}

.admin-item-summary::after {
    content: "+";
    display: grid;
    width: 1.6rem;
    height: 1.6rem;
    place-items: center;
    color: var(--white);
    background: var(--hot-pink);
    border-radius: 999px;
    font-weight: 900;
    line-height: 1;
}

.admin-gallery-row[open] .admin-item-summary::after,
.admin-product-row[open] .admin-item-summary::after {
    content: "-";
}

.admin-gallery-row[open] .admin-item-summary,
.admin-product-row[open] .admin-item-summary {
    background: color-mix(in srgb, var(--pill-bg) 55%, transparent);
}

.admin-gallery-summary-preview {
    width: 72px;
    height: 54px;
    overflow: hidden;
    background: var(--pill-bg);
    border-radius: 6px;
}

.admin-gallery-summary-preview video {
    pointer-events: none;
}

.admin-item-summary-order {
    display: grid;
    width: 2.25rem;
    height: 2.25rem;
    place-items: center;
    color: var(--hot-pink);
    background: var(--white);
    border: 1px solid var(--section-border);
    border-radius: 6px;
    font-size: 0.9rem;
}

.admin-item-summary-copy {
    min-width: 0;
    display: grid;
    gap: 0.1rem;
}

.admin-item-summary-copy strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.admin-item-summary-copy small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.admin-item-editor {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
    align-items: end;
    padding: 0.75rem;
    border-top: 1px solid var(--section-border);
}

.admin-product-suboptions {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
}

.admin-product-suboptions[hidden] {
    display: none;
}

.admin-gallery-editor .admin-gallery-upload {
    gap: 0.4rem;
}

.admin-gallery-editor .admin-gallery-upload input[type="file"] {
    font-size: 0.82rem;
}

.admin-gallery-editor .admin-gallery-upload .admin-secondary-button {
    justify-self: start;
}

.admin-item-remove {
    grid-column: 1 / -1;
    justify-self: end;
}

.admin-gallery-upload {
    display: grid;
    gap: 0.55rem;
    align-content: start;
}

.admin-gallery-upload > span {
    color: var(--muted);
    font-size: 0.84rem;
    font-weight: 900;
    text-transform: uppercase;
}

.admin-gallery-preview {
    width: 100%;
    aspect-ratio: 4 / 3;
    display: block;
    overflow: hidden;
    background: var(--pill-bg);
    border-radius: 8px;
}

.admin-gallery-preview img,
.admin-gallery-preview video,
.admin-media-preview-image,
.admin-media-preview-video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.admin-logo-preview {
    aspect-ratio: 3 / 1;
    object-fit: contain;
    padding: 0.75rem;
}

.admin-hero-preview {
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.admin-gallery-preview[hidden] {
    display: none;
}

.admin-gallery-upload input[type="file"] {
    width: 100%;
    font: inherit;
}

.admin-wide-field {
    grid-column: 1 / -1;
}

.admin-checkbox-field input[type="checkbox"] {
    width: 22px;
    height: 22px;
    accent-color: var(--hot-pink);
}

.admin-setting-toggle {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 0.85rem;
    align-items: start;
    padding: 0.9rem;
    background: var(--pill-bg);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    cursor: pointer;
}

.admin-setting-toggle input {
    width: 22px;
    height: 22px;
    margin: 0.1rem 0 0;
    accent-color: var(--hot-pink);
}

.admin-setting-toggle span,
.admin-setting-toggle strong,
.admin-setting-toggle small {
    display: block;
}

.admin-setting-toggle small {
    margin-top: 0.3rem;
    color: var(--muted);
    line-height: 1.45;
}

.admin-secondary-button {
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    color: var(--ink);
    background: var(--pill-bg);
    border: 0;
    border-radius: 999px;
    font: inherit;
    font-weight: 900;
    text-transform: uppercase;
    cursor: pointer;
}

.admin-table-wrap {
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    min-width: 1220px;
    border-collapse: collapse;
    background: linear-gradient(180deg, color-mix(in srgb, var(--surface-strong) 96%, transparent) 0%, var(--white) 100%);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    overflow: hidden;
}

@media (max-width: 1100px) {
    .top-nav {
        grid-template-columns: minmax(130px, 0.8fr) minmax(0, auto) minmax(110px, 0.8fr);
        gap: 0.8rem;
        padding-inline: 1rem;
    }

    .brand-link {
        font-size: 1.7rem;
    }

    .brand-link img {
        width: 56px;
        height: 56px;
    }

    .nav-links {
        gap: 1rem;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .content,
    .home-showcase,
    .inquiry-section,
    .admin-section,
    .values-section,
    .feature-band,
    .community-section {
        width: min(100% - 1.5rem, 1040px);
    }
}

@media (prefers-reduced-motion: reduce) {
    .top-nav,
    .brand-link img {
        transition: none;
    }
}

.admin-table th,
.admin-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    font-size: 0.78rem;
    text-transform: uppercase;
}

.admin-table td {
    color: var(--muted);
    font-size: 0.9rem;
}

.admin-inquiries-status {
    margin: 0 0 0.75rem;
}

.admin-table-actions {
    display: flex;
    gap: 0.4rem;
    white-space: nowrap;
}

.admin-table-action {
    min-height: 34px;
    padding: 0.4rem 0.6rem;
    color: var(--ink);
    background: var(--pill-bg);
    border: 0;
    border-radius: 6px;
    font: inherit;
    font-size: 0.78rem;
    font-weight: 900;
    cursor: pointer;
}

.admin-table-action-danger {
    color: var(--white);
    background: var(--hot-pink);
}

.admin-table-action:disabled {
    cursor: wait;
    opacity: 0.6;
}

.admin-inquiry-dialog {
    width: min(92vw, 820px);
    max-height: 90vh;
    padding: 0;
    overflow: auto;
    color: var(--ink);
    background: var(--surface-panel);
    border: 1px solid var(--section-border);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.admin-inquiry-dialog::backdrop {
    background: rgba(20, 18, 28, 0.58);
}

.admin-inquiry-editor {
    display: grid;
    gap: 1rem;
    padding: 1.1rem;
}

.admin-inquiry-dialog-head {
    display: flex;
    gap: 1rem;
    align-items: start;
    justify-content: space-between;
}

.admin-inquiry-dialog-head h3,
.admin-inquiry-dialog-head p {
    margin: 0;
}

.admin-inquiry-dialog-head h3 {
    font-family: "Baloo 2", cursive;
    font-size: 1.6rem;
}

.admin-inquiry-dialog-head p {
    color: var(--muted);
    font-size: 0.85rem;
}

.admin-inquiry-close {
    padding: 0.45rem 0.6rem;
    color: var(--muted);
    background: transparent;
    border: 0;
    font: inherit;
    font-weight: 900;
    cursor: pointer;
}

.admin-inquiry-dialog-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.8rem;
}

.admin-inquiry-field-wide {
    grid-column: 1 / -1;
}

.admin-inquiry-dialog-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    align-items: center;
}

.admin-inquiry-dialog-actions .form-status {
    flex: 1 1 100%;
}

.admin-empty {
    margin: 0;
    color: var(--muted);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    z-index: 40;
    width: min(94%, 720px);
    padding: 1rem;
    color: var(--ink);
    background: linear-gradient(180deg, var(--surface-strong) 0%, var(--surface-panel) 100%);
    border: 1px solid var(--section-border);
    backdrop-filter: blur(14px);
    border-radius: 8px;
    box-shadow: var(--shadow);
    transform: translateX(-50%);
}

.cookie-banner p {
    margin: 0;
    line-height: 1.4;
}

.cookie-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 0.8rem;
}

.cookie-actions button {
    min-height: 42px;
    padding: 0.6rem 0.95rem;
    border: 0;
    border-radius: 999px;
    font-weight: 900;
    cursor: pointer;
}

#cookie-accept {
    color: var(--white);
    background: var(--hot-pink);
}

#cookie-decline {
    color: var(--ink);
    background: var(--butter);
}

.loading-state,
.error-state {
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: 2rem;
    text-align: center;
}

.loading-state h1,
.error-state h1 {
    margin: 0;
    font-family: "Baloo 2", cursive;
}

.error-state {
    align-content: center;
    gap: 0.6rem;
}

.error-state p {
    margin: 0;
    color: var(--muted);
}

@media (max-width: 920px) {
    .home-showcase {
        --home-showcase-column-gap: 6rem;
    }

    .home-showcase-media-text {
        bottom: 1.5rem;
        left: 1.5rem;
        width: min(82%, 680px);
        font-size: 2.1rem;
    }

    .top-nav {
        grid-template-columns: minmax(120px, 1fr) auto minmax(120px, 1fr);
        gap: 0.75rem;
        min-height: 68px;
        padding: 0.4rem 1rem;
    }

    .top-nav.is-hidden {
        transform: translateY(calc(-100% - 12px));
    }

    .brand-link {
        grid-column: 1;
        justify-self: start;
    }

    .brand-link img {
        width: 52px;
        height: 52px;
    }

    .top-nav.is-compact {
        min-height: 68px;
    }

    .top-nav.is-compact .brand-link img {
        width: 52px;
        height: 52px;
    }

    .nav-links {
        display: none;
    }

    .mobile-navigation {
        grid-column: 2;
        justify-self: center;
        display: block;
    }

    .utility-actions {
        grid-column: 3;
        justify-self: end;
    }

    .hero {
        min-height: 60svh;
        padding: 3rem 1rem;
    }

    .hero h1 {
        font-size: 3.3rem;
    }

    .inquiry-section,
    .admin-card,
    .admin-login {
        padding: 1.4rem;
    }

    .category-section,
    .gallery,
    .home-showcase-grid,
    .values-grid,
    .form-grid,
    .contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .feature-band,
    .community-section {
        grid-template-columns: 1fr;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .feature-band img,
    .community-grid {
        border-right: 0;
        border-left: 0;
    }

    .feature-copy,
    .community-copy {
        padding: 2rem 1rem;
    }

    .admin-fields,
    .admin-site-field-grid,
    .admin-item-editor,
    .admin-product-suboptions {
        grid-template-columns: 1fr;
    }

    .booking-calendar {
        width: min(100%, 560px);
    }
}

@media (max-width: 760px) {
    .admin-tabs {
        display: none;
    }

    .admin-tab-select {
        display: grid;
    }

    .admin-tab-select select {
        height: 48px;
    }

    .admin-site-language-grid,
    .admin-media-editor,
    .admin-seo-image-field {
        grid-template-columns: 1fr;
    }

    .admin-site-language-panel + .admin-site-language-panel {
        border-top: 1px solid var(--section-border);
        border-left: 0;
    }

    .admin-image-quality-field {
        width: 100%;
    }
}

@media (max-width: 620px) {
    body {
        min-width: 320px;
    }

    .home-showcase {
        width: 100%;
    }

    .home-showcase-media {
        width: 100%;
        border-radius: 0;
    }

    .home-showcase-video {
        width: 100%;
        aspect-ratio: 4 / 3;
        border-radius: 0;
    }

    .home-showcase-media-text {
        right: auto;
        bottom: 0.8rem;
        left: 0.85rem;
        width: calc(100% - 1.7rem);
        font-size: 1.65rem;
    }

    .home-showcase-grid,
    .home-showcase-about {
        width: calc(100% - 1.5rem);
    }

    .promo-bar {
        flex-direction: column;
        gap: 0.2rem;
    }

    .top-nav {
        grid-template-columns: minmax(88px, 1fr) auto minmax(88px, 1fr);
        gap: 0.45rem;
        min-height: 64px;
        padding: 0.35rem 0.75rem;
    }

    .admin-item-summary {
        gap: 0.55rem;
        padding: 0.5rem;
    }

    .admin-gallery-summary {
        grid-template-columns: 56px 2rem minmax(0, 1fr) 1.6rem;
    }

    .admin-product-summary {
        grid-template-columns: 2rem minmax(0, 1fr) 1.6rem;
    }

    .admin-gallery-summary-preview {
        width: 56px;
        height: 44px;
    }

    .admin-item-summary-order {
        width: 2rem;
        height: 2rem;
    }

    .brand-link {
        font-size: 1.7rem;
    }

    .brand-link img {
        width: 48px;
        height: 48px;
    }

    .top-nav.is-compact {
        min-height: 64px;
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .top-nav.is-compact .brand-link img {
        width: 48px;
        height: 48px;
    }

    .language-toggle {
        padding-right: 0.7rem;
        padding-left: 0.7rem;
    }

    .hero {
        min-height: 56svh;
        padding: 2.6rem 1rem;
        background-position: center;
    }

    .hero h1 {
        font-size: 2.7rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .category-section,
    .gallery,
    .home-showcase-grid,
    .values-grid,
    .community-grid,
    .product-picker,
    .form-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .inquiry-section {
        padding: 1.2rem;
    }

    .inquiry-head h2 {
        font-size: 2.25rem;
    }

    .product-option {
        grid-template-columns: auto minmax(0, 1fr) minmax(4.25rem, auto);
        gap: 0.6rem;
        min-height: auto;
        padding: 0.85rem;
    }

    .inquiry-type-options {
        width: 100%;
    }

    .product-group-summary {
        grid-template-columns: minmax(0, 1fr) auto 1.6rem;
        gap: 0.45rem;
        padding-inline: 0.7rem;
    }

    .product-group-meta {
        font-size: 0.72rem;
    }

    .product-option-without-quantity {
        grid-template-columns: auto minmax(0, 1fr);
    }

    .product-quantity {
        grid-column: auto;
        justify-self: end;
    }

    .product-quantity input {
        width: 4.25rem;
    }

    .site-footer {
        padding: 2rem 1rem 1.5rem;
    }

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

    .footer-grid {
        gap: 1.5rem;
        padding: 0 0 2rem;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .category-tile {
        min-height: 240px;
        border-right: 0;
    }

    .section-head-row {
        align-items: start;
        flex-direction: column;
    }

    .section-head h1,
    .section-head h2,
    .feature-copy h2,
    .occasion-section h2,
    .values-section h2,
    .community-copy h2,
    .admin-head h1,
    .legal-content h1 {
        font-size: 2.25rem;
    }

    .feature-band img {
        min-height: 310px;
    }

    .community-grid img {
        border-right: 0;
    }

    .booking-calendar {
        padding: 0.6rem;
    }

    .calendar-header {
        grid-template-columns: auto minmax(0, 1fr) auto;
        gap: 0.35rem;
    }

    .calendar-header button,
    .calendar-header strong {
        width: auto;
    }

    .calendar-days,
    .calendar-weekdays {
        gap: 0.28rem;
    }

    .calendar-day,
    .calendar-day-empty {
        min-height: 40px;
        font-size: 0.82rem;
    }

    .delivery-date-value {
        max-width: none;
    }

    .form-actions {
        align-items: stretch;
    }

    .form-actions button {
        width: 100%;
    }

    .admin-toolbar {
        align-items: stretch;
        flex-direction: column;
    }

    .admin-toolbar-actions {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-page.is-authenticated {
        padding-top: 0.6rem;
        padding-bottom: 7rem;
    }

    .admin-page.is-authenticated .admin-head {
        margin-bottom: 0.55rem;
    }

    .admin-page.is-authenticated .admin-head h1 {
        font-size: 1.55rem;
    }

    .admin-card {
        gap: 0.8rem;
        padding: 0.75rem;
    }

    .admin-save-bar {
        right: 0.5rem;
        bottom: 0.5rem;
        width: calc(100% - 1rem);
        gap: 0.6rem;
        padding: 0.6rem;
    }

    .admin-save-bar-copy strong {
        display: none;
    }

    .admin-save-bar-copy span {
        margin-top: 0;
        white-space: normal;
    }

    .admin-save-bar button {
        max-width: 56vw;
        padding-inline: 0.75rem;
        font-size: 0.74rem;
    }

    .admin-media-summary {
        grid-template-columns: 52px minmax(0, 1fr) auto 1.6rem;
        gap: 0.5rem;
        min-height: 58px;
        padding: 0.4rem 0.5rem;
    }

    .admin-media-summary-preview {
        width: 52px;
        height: 42px;
    }

    .admin-media-summary-quality {
        padding-inline: 0.4rem;
        font-size: 0.68rem;
    }

    .admin-tabs {
        margin-inline: -0.1rem;
    }

    .admin-secondary-button {
        width: 100%;
    }

    .admin-table th,
    .admin-table td {
        padding: 0.6rem;
        font-size: 0.82rem;
    }

    .admin-inquiry-dialog-grid {
        grid-template-columns: 1fr;
    }

    .admin-inquiry-field-wide {
        grid-column: auto;
    }

    .admin-inquiry-dialog-actions > button {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .hero h1 {
        font-size: 2.25rem;
    }

    .section-head h1,
    .section-head h2,
    .feature-copy h2,
    .occasion-section h2,
    .values-section h2,
    .community-copy h2,
    .inquiry-head h2,
    .admin-head h1,
    .legal-content h1 {
        font-size: 2rem;
    }

    .calendar-day,
    .calendar-day-empty {
        min-height: 40px;
        font-size: 0.82rem;
    }

    .field input,
    .field select,
    .field textarea {
        min-height: 44px;
        padding: 0.68rem 0.72rem;
    }

    .field textarea.admin-auto-textarea {
        min-height: 44px;
    }
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
