/* === assets/css/tokens.css === */
:root {
    /* Colors */
    --color-text: #1a1a1a;
    --color-text-muted: #666;
    --color-bg: #fff;
    --color-border: #e5e5e5;
    --color-brand: #FFCB05;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.25rem;
    --font-weight-normal: 400;
    --font-weight-bold: 700;
    --line-height: 1.6;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;

    /* Layout */
    --container-max: 1200px;
    --container-padding: var(--space-sm);

    /* Header */
    --header-height: 4rem;
    --header-bg: #fff;
    --header-shadow: 0 1px 0 var(--color-border);

    /* Status */
    --color-success: #16a34a;
    --color-error: #dc2626;
    --color-warning: #b45309;
    --color-warning-bg: #fffbeb;
    --color-fire: #c2410c;
    --color-fire-bg: #fff7ed;
    --color-fire-bg-active: #ffedd5;

    /* Transitions */
    --transition-fast: 150ms ease;
}

/* === assets/css/base.css === */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    font-size: var(--font-size-base);
    color: var(--color-text);
    background: var(--color-bg);
    line-height: var(--line-height);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* === assets/css/layout.css === */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.site-main {
    flex: 1;
    padding: var(--space-lg) 0;
}

.home .site-main {
    padding: 0;
}

/* === assets/css/components/topbar.css === */
/* ─── Topbar ─── */
.site-topbar {
    position: relative;
    z-index: 100;
    background: #f5f5f5;
    border-bottom: 1px solid var(--color-border);
    font-size: var(--font-size-sm);
    line-height: 1;
}

.site-topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 2.5rem;
}

/* ─── Left group (socials + separator + contact) ─── */
.topbar-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* ─── Social icons ─── */
.topbar-socials {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* ─── Vertical separator ─── */
.topbar-separator {
    display: block;
    width: 1px;
    height: 1rem;
    background: var(--color-border);
}

/* ─── Contact links ─── */
.topbar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-contact a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.topbar-contact a:hover {
    color: var(--color-text);
}

.topbar-socials__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    border-radius: 100px;
    color: var(--color-text-muted);
    transition: color var(--transition-fast), background var(--transition-fast);
}

.topbar-socials__link:hover {
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.06);
}

.topbar-socials__link svg {
    width: 16px;
    height: 16px;
}

/* ─── Navigation links (right) ─── */
.topbar-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.topbar-nav a {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: var(--font-size-sm);
    transition: color var(--transition-fast);
}

.topbar-nav a:hover {
    color: var(--color-text);
}

/* ─── Hidden on mobile ─── */
@media (max-width: 768px) {
    .site-topbar {
        display: none;
    }
}

/* === assets/css/components/header.css === */
/* ─── Site header ─── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--header-bg);
}

.site-header__bar {
    border-bottom: 1px solid var(--color-border);
}

.site-header__bar .container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

/* ─── Logo ─── */
.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.site-logo .site-logo__img {
    height: 2rem;
    width: auto;
}

/* ─── Navigation — centered ─── */
.site-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.site-nav ul {
    display: flex;
    gap: 0.25rem;
    list-style: none;
}

.site-nav a {
    display: block;
    padding: 0.375rem 0.85rem;
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    font-weight: 500;
    letter-spacing: 0.01em;
    border-radius: 100px;
    white-space: nowrap;
    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.site-nav a:hover {
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.04);
}

/* Active pill badge */
.site-nav .is-active a {
    color: var(--color-text);
    background: var(--color-brand);
}

/* Megamenu trigger */
.has-megamenu > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-chevron {
    flex-shrink: 0;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.has-megamenu.is-open > a .nav-chevron {
    transform: rotate(180deg);
}

/* ─── Actions (cart + hamburger) ─── */
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
}

/* ─── Search button ─── */
.search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-text-muted);
    border-radius: 100px;
    -webkit-tap-highlight-color: transparent;
    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.search-btn:hover {
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.04);
}

/* ─── Hamburger ─── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}

.hamburger__line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--color-text);
    border-radius: 2px;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
}

.hamburger.is-active .hamburger__line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-active .hamburger__line:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active .hamburger__line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .site-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }
}

/* ─── Admin bar offset ─── */
.logged-in.admin-bar .site-header {
    top: 32px;
}

@media (max-width: 782px) {
    .logged-in.admin-bar .site-header {
        top: 46px;
    }
}

/* === assets/css/components/megamenu.css === */
/* ─── Megamenu panel ─── */
.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 99;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-4px);
    pointer-events: none;
    transition:
        opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
        transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
        visibility 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.site-header.megamenu-open .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

/* Inner container — categories + featured sidebar */
.megamenu__wrap {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-lg);
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-lg) var(--container-padding);
}

/* ─── Category grid (2 columns) ─── */
.megamenu__categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-content: start;
    gap: 1rem;
    list-style: none;
}

.megamenu__categories > li {
    min-width: 0;
}

.megamenu__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    border-radius: 8px;
    transition: background 0.15s ease;
    overflow: hidden;
}

.megamenu__item:hover {
    background: #f7f7f7;
}

.megamenu__item.is-active {
    background: rgba(255, 203, 5, 0.12);
}

.megamenu__item.is-active .megamenu__item-name {
    color: var(--color-text);
}

.megamenu__item:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: -2px;
}

/* Thumbnail */
.megamenu__item-thumb {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.megamenu__item-thumb.has-image {
    background: none;
}

.megamenu__item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.megamenu__item-thumb svg {
    width: 18px;
    height: 18px;
    color: #ccc;
}

/* Text */
.megamenu__item-body {
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0;
}

.megamenu__item-name {
    font-size: var(--font-size-sm);
    font-weight: 600;
    line-height: 1.3;
}

.megamenu__item-desc {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.35;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* ─── Featured products sidebar ─── */
.megamenu__featured {
    min-width: 240px;
    max-width: 280px;
    padding-left: var(--space-lg);
    border-left: 1px solid var(--color-border);
}

.megamenu__featured-title {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    margin: 0 0 0.5rem;
    padding: 0.625rem 0.75rem 0;
}

.megamenu__featured-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.megamenu__featured-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.75rem;
    text-decoration: none;
    color: var(--color-text);
    border-radius: 8px;
    transition: background 0.15s ease;
    overflow: hidden;
}

.megamenu__featured-item:hover {
    background: #f7f7f7;
}

.megamenu__featured-item:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: -2px;
}

/* ─── Backdrop ─── */
.megamenu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 98;
    background: rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.2s cubic-bezier(0.25, 0.1, 0.25, 1),
        visibility 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

.megamenu-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ─── Responsive ─── */
@media (max-width: 960px) {
    .megamenu__wrap {
        grid-template-columns: 1fr;
    }

    .megamenu__featured {
        min-width: 0;
        max-width: none;
        padding-left: 0;
        border-left: none;
        padding-top: var(--space-md);
        border-top: 1px solid var(--color-border);
    }

    .megamenu__featured-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 4px;
    }
}

@media (max-width: 768px) {
    .megamenu,
    .megamenu-backdrop {
        display: none;
    }
}

/* === assets/css/components/footer.css === */
/* ─── Footer — scoped tokens ─── */
.site-footer {
    --footer-bg: #1a1a1a;
    --footer-bg-bottom: #141414;
    --footer-text: rgba(255, 255, 255, 0.7);
    --footer-link: rgba(255, 255, 255, 0.8);
    --footer-link-hover: #fff;
    --footer-heading: #fff;
    --footer-border: rgba(255, 255, 255, 0.08);
}

.site-footer {
    color: var(--footer-text);
    font-size: var(--font-size-sm);
    margin-top: auto;
}

/* ─── Main section ─── */
.footer-main {
    border-top: 3px solid var(--color-brand);
    background: var(--footer-bg);
    padding: var(--space-xl) 0;
}

/* ─── Grid ─── */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: var(--space-xl);
}

/* ─── Shared column heading ─── */
.footer-col__title {
    color: var(--footer-heading);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 var(--space-sm);
}

/* ─── Brand column ─── */
.footer-brand__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-bottom: var(--space-sm);
}

.footer-brand .footer-brand__logo-img {
    height: 1.6rem;
    width: auto;
}

.footer-brand__text {
    color: var(--footer-text);
    line-height: 1.55;
    margin: 0 0 var(--space-md);
}

/* ─── Social links ─── */
.footer-socials {
    display: flex;
    gap: 0.5rem;
}

.footer-socials__link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: var(--footer-link);
    text-decoration: none;
    transition: all var(--transition-fast);
}

.footer-socials__link:hover {
    background: var(--color-brand);
    color: #1a1a1a;
}

.footer-socials__link svg {
    width: 1rem;
    height: 1rem;
}

/* ─── Link lists (reusable component) ─── */
.footer-links__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links__list a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-links__list a:hover {
    color: var(--footer-link-hover);
}

/* ─── Contact column ─── */
.footer-contact__info {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: var(--space-md);
}

.footer-contact__info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.footer-contact__info svg {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--footer-link);
}

.footer-contact__info a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-contact__info a:hover {
    color: var(--footer-link-hover);
}

/* ─── Newsletter ─── */
.footer-newsletter__label {
    display: block;
    color: var(--footer-heading);
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-newsletter__field {
    display: flex;
}

.footer-newsletter__field input {
    flex: 1;
    min-width: 0;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--footer-border);
    border-right: none;
    border-radius: 4px 0 0 4px;
    color: #fff;
    font-size: var(--font-size-sm);
    font-family: inherit;
    outline: none;
    transition: border-color var(--transition-fast);
}

.footer-newsletter__field input::placeholder {
    color: rgba(255, 255, 255, 0.25);
}

.footer-newsletter__field input:focus {
    border-color: var(--color-brand);
}

.footer-newsletter__field button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 0.75rem;
    background: var(--color-brand);
    border: none;
    border-radius: 0 4px 4px 0;
    color: #1a1a1a;
    cursor: pointer;
    transition: opacity var(--transition-fast);
}

.footer-newsletter__field button:hover:not(:disabled) {
    opacity: 0.85;
}

.footer-newsletter__field input:disabled,
.footer-newsletter__field button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.footer-newsletter__field button svg {
    width: 1.1rem;
    height: 1.1rem;
}

.footer-newsletter__notice {
    font-size: 0.75rem;
    color: var(--color-brand);
    margin: 0 0 0.4rem;
}

.footer-newsletter__message {
    display: block;
    min-height: 1.2em;
    margin-top: 0.35rem;
    font-size: 0.75rem;
    line-height: 1.3;
}

.footer-newsletter__message--success {
    color: #4ade80;
}

.footer-newsletter__message--error {
    color: #f87171;
}

/* ─── Bottom bar ─── */
.footer-bottom {
    background: var(--footer-bg-bottom);
    padding: var(--space-sm) 0;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.footer-bottom__legal {
    margin-left: auto;
}

.footer-bottom__copy {
    margin: 0;
    color: var(--footer-text);
}

.footer-bottom__copy a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom__copy a:hover {
    color: var(--footer-link-hover);
}

.footer-bottom__legal ul {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    list-style: none;
}

.footer-bottom__legal a {
    color: var(--footer-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.footer-bottom__legal a:hover {
    color: var(--footer-link-hover);
}

/* ─── Payment badges ─── */
.footer-bottom__payments {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.footer-payment-icon {
    width: 36px;
    height: 24px;
    border-radius: 3px;
    opacity: 0.6;
    transition: opacity var(--transition-fast);
}

.footer-payment-icon:hover {
    opacity: 1;
}

.footer-payment-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.02em;
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }

    .footer-bottom__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-xs);
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* === assets/css/components/button.css === */
.btn {
    display: inline-block;
    text-align: center;
    text-decoration: none;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.02em;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: opacity var(--transition-fast), background var(--transition-fast);
}

.btn:hover {
    opacity: 0.8;
}

/* Variants */
.btn--primary {
    background: var(--color-text);
    color: var(--color-bg);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text);
    box-shadow: inset 0 0 0 1px var(--color-border);
}

.btn--secondary:hover {
    box-shadow: inset 0 0 0 1px var(--color-text);
    opacity: 1;
}

/* Sizes */
.btn--base {
    padding: 0.75rem 2rem;
    font-size: var(--font-size-sm);
}

.btn--sm {
    padding: 0.5rem 1rem;
    font-size: var(--font-size-sm);
}

/* Brand (Pikachu yellow) */
.btn--brand {
    background: var(--color-brand);
    color: #1a1a1a;
    font-weight: var(--font-weight-bold);
}

.btn--brand:hover {
    opacity: 0.9;
}

/* Ghost (outlined, transparent bg) */
.btn--ghost {
    background: transparent;
    color: var(--color-text);
    box-shadow: inset 0 0 0 1px var(--color-border);
    padding: 0.5rem 1.25rem;
    font-size: var(--font-size-sm);
}

.btn--ghost:hover {
    box-shadow: inset 0 0 0 1px var(--color-text);
    opacity: 1;
}

/* Modifiers */
.btn--full {
    display: block;
    width: 100%;
}

/* === assets/css/components/hero.css === */
.hero {
    position: relative;
    height: 60dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #111;
}

.hero__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: var(--space-xl) var(--space-sm);
    max-width: 680px;
}

.hero__title {
    font-size: clamp(1.75rem, 5vw, 3.5rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    margin: 0 0 var(--space-xs);
    letter-spacing: -0.02em;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero__description {
    font-size: var(--font-size-lg);
    color: #fff;
    margin: 0 0 var(--space-lg);
    line-height: var(--line-height);
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

/* Perks bar — anchored to bottom of hero */
.hero__perks {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    justify-content: center;
    gap: var(--space-lg);
    list-style: none;
    margin: 0;
    padding: var(--space-sm) var(--space-sm);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__perk {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
    white-space: nowrap;
}

.hero__perk-icon {
    width: 1rem;
    height: 1rem;
    flex-shrink: 0;
    color: var(--color-brand);
}

@media (max-width: 640px) {
    .hero__perks {
        flex-wrap: wrap;
        gap: var(--space-xs) var(--space-sm);
        justify-content: center;
    }
}

/* Large / 2K+ screens */
@media (min-width: 1800px) {
    .hero__title {
        font-size: 4rem;
    }

    .hero__description {
        font-size: 1.25rem;
    }

    .hero__content {
        max-width: 760px;
    }

    .hero .btn--base {
        padding: 1rem 2.5rem;
        font-size: var(--font-size-base);
    }
}

/* === assets/css/components/pokeball.css === */
/* Pokéball icon — reusable component */
.pokeball {
    width: 1.4em;
    height: 1.4em;
    flex-shrink: 0;
    display: block;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Rotate on parent hover (e.g. .site-logo:hover) */
.site-logo:hover .pokeball {
    transform: rotate(360deg);
}

/* === assets/css/components/banner.css === */
/* ─── CTA Banner Card ─── */
.banner-section {
    padding: var(--space-xl) 0;
}

.banner {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
}

.banner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.banner__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner__inner {
    position: relative;
    z-index: 1;
    padding: var(--space-xl) var(--space-lg);
    display: flex;
    justify-content: center;
    width: 100%;
}

.banner__content {
    max-width: 520px;
    text-align: center;
}

.banner__title {
    font-size: clamp(1.5rem, 4vw, 2.25rem);
    font-weight: var(--font-weight-bold);
    color: #fff;
    margin: 0 0 var(--space-sm);
    letter-spacing: -0.02em;
    line-height: 1.15;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.banner__text {
    font-size: var(--font-size-base);
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 var(--space-lg);
    line-height: var(--line-height);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.banner__cta .pokeball {
    width: 1.2em;
    height: 1.2em;
}

.banner__cta:hover .pokeball {
    transform: rotate(360deg);
}

@media (max-width: 640px) {
    .banner {
        min-height: 260px;
        border-radius: 12px;
    }

    .banner__inner {
        padding: var(--space-lg) var(--space-md);
    }

    .banner__content {
        max-width: 100%;
    }

    .banner__text {
        margin-bottom: var(--space-md);
    }
}

/* === assets/css/components/about.css === */
/* ─── Perks section ─── */
.perks-section {
    padding: var(--space-xl) 0;
}

.perks-section__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0 0 var(--space-lg);
    letter-spacing: -0.02em;
    text-align: center;
}

.perks-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-md);
    list-style: none;
}

/* ─── Perk item ─── */
.perk-item {
    text-align: center;
    padding: var(--space-md) var(--space-sm);
}

.perk-item__icon {
    width: 2rem;
    height: 2rem;
    margin: 0 auto var(--space-sm);
    color: var(--color-brand);
}

.perk-item__icon svg {
    width: 100%;
    height: 100%;
}

.perk-item__title {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0 0 0.3rem;
}

.perk-item__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.45;
}

/* ─── Novinky ─── */
.novinky {
    padding: var(--space-xl) 0;
    background: #fafafa;
}

.novinky__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin: 0 0 var(--space-lg);
}

.novinky__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.novinky__desc {
    margin: 0.35rem 0 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.novinky__all {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
    align-self: flex-start;
}

.novinky__all:hover {
    color: var(--color-text);
}

.novinky__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    list-style: none;
}

/* ─── Novinky card ─── */
.novinky-card {
    background: var(--color-bg);
    border-radius: 10px;
    border: 1px solid var(--color-border);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

.novinky-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: var(--color-text);
}

.novinky-card:hover {
    border-color: var(--color-brand);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.novinky-card__body {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    padding: var(--space-md);
    flex: 1;
}

.novinky-card__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xs);
}

.novinky-card__tag {
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #1a1a1a;
    background: var(--color-brand);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
}

.novinky-card__date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.novinky-card__title {
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.novinky-card__text {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.novinky-card__more {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.75rem var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    border-top: 1px solid var(--color-border);
    transition: color var(--transition-fast);
}

.novinky-card:hover .novinky-card__more {
    color: var(--color-text);
}

/* ─── Novinky archive page ─── */
.novinky-archive {
    padding: var(--space-xl) 0 calc(var(--space-xl) * 2);
}

.novinky-archive__header {
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

.novinky-archive__title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    margin: 0;
    letter-spacing: -0.02em;
}

.novinky-archive__desc {
    margin: var(--space-xs) 0 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* Pills filter */
.novinky-pills {
    margin-bottom: var(--space-lg);
}

.novinky-pills ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
}

.novinky-pills__item {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    text-decoration: none;
    border: 1px solid var(--color-border);
    border-radius: 100px;
    transition: all var(--transition-fast);
}

.novinky-pills__item:hover {
    color: var(--color-text);
    border-color: var(--color-text);
}

.novinky-pills__item.is-active {
    background: var(--color-text);
    color: var(--color-bg);
    border-color: var(--color-text);
}

/* Content area — loading state */
.novinky-archive__content.is-loading {
    pointer-events: none;
}

.novinky-archive__content.is-loading .novinky-card {
    opacity: 0;
    transform: scale(0.97) translateY(6px);
    transition: opacity 0.12s cubic-bezier(0.4, 0, 1, 1),
                transform 0.12s cubic-bezier(0.4, 0, 1, 1);
}

/* Card entrance animation */
.novinky-archive .novinky-card {
    animation: novinkyCardIn 0.3s cubic-bezier(0, 0, 0.2, 1) both;
}

.novinky-archive .novinky-card:nth-child(1) { animation-delay: 0s; }
.novinky-archive .novinky-card:nth-child(2) { animation-delay: 0.04s; }
.novinky-archive .novinky-card:nth-child(3) { animation-delay: 0.08s; }
.novinky-archive .novinky-card:nth-child(4) { animation-delay: 0.12s; }
.novinky-archive .novinky-card:nth-child(5) { animation-delay: 0.16s; }
.novinky-archive .novinky-card:nth-child(6) { animation-delay: 0.2s; }

@keyframes novinkyCardIn {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(8px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Empty state */
.novinky-archive__empty {
    text-align: center;
    color: var(--color-text-muted);
    padding: var(--space-xl) 0;
}

.novinky-archive__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    list-style: none;
}

.novinky-archive__pagination {
    display: flex;
    justify-content: center;
    gap: 0.25rem;
    margin-top: var(--space-xl);
}

.novinky-archive__pagination a,
.novinky-archive__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.25rem;
    height: 2.25rem;
    padding: 0 0.5rem;
    font-size: var(--font-size-sm);
    text-decoration: none;
    color: var(--color-text);
    border-radius: 6px;
    transition: background var(--transition-fast);
}

.novinky-archive__pagination a:hover {
    background: #f0f0f0;
}

.novinky-archive__pagination .current {
    background: var(--color-text);
    color: var(--color-bg);
    font-weight: var(--font-weight-bold);
}

/* Large / 2K+ screens */
@media (min-width: 1800px) {
    .perks-section__title {
        font-size: 2rem;
    }

    .perk-item__icon {
        width: 2.5rem;
        height: 2.5rem;
    }

    .perk-item__title {
        font-size: var(--font-size-base);
    }

    .perk-item__text {
        font-size: var(--font-size-base);
    }
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .perks-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .novinky__grid,
    .novinky-archive__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .perks-grid {
        grid-template-columns: 1fr;
    }
}

/* Large / 2K+ screens — novinky */
@media (min-width: 1800px) {
    .novinky__title {
        font-size: 2rem;
    }

    .novinky__desc {
        font-size: var(--font-size-base);
    }

    .novinky__all {
        font-size: var(--font-size-base);
    }

    .novinky-card__title {
        font-size: 1.1rem;
    }

    .novinky-card__text {
        font-size: var(--font-size-base);
    }

    .novinky-card__tag {
        font-size: 0.75rem;
    }

    .novinky-card__date {
        font-size: var(--font-size-sm);
    }

    .novinky-card__more {
        font-size: var(--font-size-base);
    }
}

/* === assets/css/components/faq.css === */
/* ─── FAQ section ─── */
.faq {
    padding: var(--space-xl) 0;
    background: var(--color-bg);
}

/* ─── Centered layout ─── */
.faq__header {
    text-align: center;
    max-width: 480px;
    margin: 0 auto var(--space-lg);
}

.faq__title {
    font-size: clamp(1.25rem, 3vw, 1.75rem);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 0 0 var(--space-xs);
}

.faq__subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.55;
    margin: 0;
}

.faq__subtitle a {
    color: var(--color-text);
    font-weight: var(--font-weight-bold);
    text-decoration: none;
    border-bottom: 1px solid var(--color-brand);
    transition: border-color var(--transition-fast);
}

.faq__subtitle a:hover {
    border-bottom-color: var(--color-text);
}

/* ─── Accordion list ─── */
.faq__list {
    max-width: 720px;
    margin: 0 auto;
}

/* ─── Single accordion item ─── */
.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-item:first-child {
    border-top: 1px solid var(--color-border);
}

/* ─── Question (button) ─── */
.faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    width: 100%;
    padding: var(--space-md) var(--space-xs);
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    line-height: 1.4;
    transition: color var(--transition-fast);
    user-select: none;
    background: none;
    border: none;
    text-align: left;
    font-family: inherit;
}

.faq-item__question:hover {
    color: #000;
}

.faq-item__question:focus-visible {
    outline: 2px solid var(--color-brand);
    outline-offset: -2px;
    border-radius: 2px;
}

/* ─── Icon — animated plus/minus morph ─── */
.faq-item__icon {
    position: relative;
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f5f5f5;
    transition: background 0.35s ease;
}

.faq-item__icon::before,
.faq-item__icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0.6rem;
    height: 1.5px;
    background: var(--color-text-muted);
    border-radius: 1px;
    transition: transform 0.35s cubic-bezier(0.33, 1, 0.68, 1),
                background 0.35s ease;
}

.faq-item__icon::before {
    transform: translate(-50%, -50%);
}

.faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

/* Open state */
.faq-item.is-active .faq-item__icon {
    background: var(--color-brand);
}

.faq-item.is-active .faq-item__icon::before,
.faq-item.is-active .faq-item__icon::after {
    background: var(--color-text);
}

.faq-item.is-active .faq-item__icon::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

/* ─── Answer body — grid animation ─── */
.faq-item__body {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.faq-item.is-active .faq-item__body {
    grid-template-rows: 1fr;
}

.faq-item__inner {
    overflow: hidden;
}

.faq-item__inner p {
    padding: 0 var(--space-xs) var(--space-md);
    margin: 0;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    max-width: 600px;
}

/* Large / 2K+ screens */
@media (min-width: 1800px) {
    .faq__title {
        font-size: 2rem;
    }

    .faq__subtitle {
        font-size: var(--font-size-base);
    }

    .faq__list {
        max-width: 800px;
    }

    .faq-item__question {
        font-size: 1.1rem;
    }

    .faq-item__inner p {
        font-size: var(--font-size-base);
    }

    .faq-item__icon {
        width: 1.75rem;
        height: 1.75rem;
    }
}

/* ─── Responsive ─── */
@media (max-width: 480px) {
    .faq-item__question {
        font-size: var(--font-size-sm);
        padding: var(--space-sm) var(--space-xs);
    }

    .faq-item__inner p {
        font-size: 0.8125rem;
    }
}

/* === assets/css/components/breadcrumb.css === */
/* ─── Breadcrumb ─── */
.breadcrumb {
    padding: var(--space-md) 0 0;
}

.breadcrumb__list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
    font-size: var(--font-size-sm);
}

.breadcrumb__item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb__item:not(:last-child)::after {
    content: '/';
    color: var(--color-text-muted);
    opacity: 0.4;
}

.breadcrumb__link {
    color: var(--color-text-muted);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumb__link:hover {
    color: var(--color-text);
}

.breadcrumb__current {
    color: var(--color-text);
    font-weight: 500;
}

/* === assets/css/components/back-to-top.css === */
/* ─── Back to top — desktop only ─── */
.back-to-top {
    display: none;
}

@media (min-width: 769px) {
    .back-to-top {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
        bottom: var(--space-sm);
        right: var(--space-sm);
        width: 2.75rem;
        height: 2.75rem;
        border: 1px solid var(--color-border);
        border-radius: 50%;
        background: var(--color-bg);
        color: var(--color-text);
        cursor: pointer;
        z-index: 90;
        opacity: 0;
        visibility: hidden;
        transform: translateY(0.5rem);
        transition:
            opacity 0.3s ease,
            visibility 0.3s ease,
            transform 0.3s ease,
            background 0.15s ease,
            border-color 0.15s ease,
            box-shadow 0.15s ease;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .back-to-top.is-visible {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .back-to-top:hover {
        background: var(--color-brand);
        border-color: var(--color-brand);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .back-to-top__icon {
        width: 1.1rem;
        height: 1.1rem;
        transition: transform 0.15s ease;
    }

    .back-to-top:hover .back-to-top__icon {
        transform: translateY(-1px);
    }
}

/* === assets/css/components/legal.css === */
/* ─── Legal page template ─── */

/* ─── Layout — mobile first (single column) ─── */
.legal-page__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-md);
    align-items: start;
}

/* ─── Mobile toggle button ─── */
.legal-nav-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: var(--space-md);
    font-size: var(--font-size-sm);
    font-weight: 500;
    font-family: inherit;
    color: var(--color-text);
    background: transparent;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    cursor: pointer;
    transition:
        border-color var(--transition-fast),
        background var(--transition-fast);
}

.legal-nav-toggle:hover {
    border-color: var(--color-text-muted);
    background: #f5f5f5;
}

.legal-nav-toggle__icon {
    width: 16px;
    height: 16px;
}

/* ─── Mobile overlay ─── */
.legal-nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0);
    transition: background 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-nav-overlay.is-visible {
    display: block;
}

.legal-nav-overlay.is-active {
    background: rgba(0, 0, 0, 0.4);
}

/* ─── Mobile drawer sidebar ─── */
.legal-page__sidebar {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    width: min(320px, 85vw);
    height: 100dvh;
    background: #fff;
    padding: var(--space-lg);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.legal-page__sidebar.is-drawer-open {
    transform: translateX(0);
}

/* ─── Drawer close button ─── */
.legal-sidebar__close {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 0 var(--space-md);
    margin: 0 0 var(--space-md);
    border: none;
    border-bottom: 1px solid var(--color-border);
    background: none;
    cursor: pointer;
    font-size: var(--font-size-base);
    font-weight: 600;
    font-family: inherit;
    color: var(--color-text);
}

.legal-sidebar__close-icon {
    width: 20px;
    height: 20px;
    color: var(--color-text-muted);
}

/* ─── Navigation ─── */
.legal-nav__title {
    font-size: 0.75rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin: 0 0 var(--space-sm);
    padding-bottom: var(--space-xs);
    border-bottom: 1px solid var(--color-border);
}

.legal-nav__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.legal-nav__link {
    display: block;
    padding: 0.35rem 0.75rem;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-decoration: none;
    border-left: 2px solid transparent;
    border-radius: 0 4px 4px 0;
    transition: all var(--transition-fast);
    line-height: 1.4;
}

.legal-nav__link:hover {
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.03);
}

.legal-nav__link.is-active {
    color: var(--color-text);
    border-left-color: var(--color-brand);
    background: rgba(0, 0, 0, 0.02);
}

.legal-nav__link--sub {
    padding-left: 1.25rem;
    font-size: 0.8rem;
}

/* ─── Content area ─── */
.legal-page__title {
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    margin: 0 0 var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 2px solid var(--color-brand);
}

.legal-page__body h2,
.legal-page__body h3 {
    scroll-margin-top: calc(var(--header-height) + var(--space-lg));
}

.legal-page__body h2 {
    font-size: 1.3rem;
    font-weight: var(--font-weight-bold);
    margin: var(--space-xl) 0 var(--space-sm);
    padding-top: var(--space-sm);
}

.legal-page__body h2:first-child {
    margin-top: 0;
}

.legal-page__body h3 {
    font-size: 1.05rem;
    font-weight: var(--font-weight-bold);
    margin: var(--space-lg) 0 var(--space-xs);
}

.legal-page__body p {
    margin: 0 0 var(--space-sm);
    line-height: 1.7;
    color: var(--color-text);
}

.legal-page__body ul,
.legal-page__body ol {
    margin: 0 0 var(--space-sm);
    padding-left: 1.5rem;
    line-height: 1.7;
}

.legal-page__body li {
    margin-bottom: 0.25rem;
}

.legal-page__body strong {
    font-weight: var(--font-weight-bold);
}

/* ─── Desktop ─── */
@media (min-width: 769px) {
    .legal-nav-toggle {
        display: none;
    }

    .legal-nav-overlay {
        display: none !important;
    }

    .legal-sidebar__close {
        display: none;
    }

    .legal-page__layout {
        grid-template-columns: 240px 1fr;
        gap: var(--space-xl);
    }

    .legal-page__sidebar {
        position: sticky;
        top: calc(var(--header-height) + var(--space-lg));
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        overflow-y: visible;
        transform: none;
        transition: none;
        z-index: auto;
    }
}

/* === assets/css/components/mobile-menu.css === */
/* ─── Mobile menu panel ─── */
.mobile-menu {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    z-index: 999;
    width: 100%;
    height: calc(100dvh - var(--header-height));
    background: var(--color-bg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 1px solid var(--color-border);
}

.mobile-menu.is-open {
    transform: translateX(0);
}

/* Admin bar offset */
.logged-in.admin-bar .mobile-menu {
    top: calc(var(--header-height) + 32px);
    height: calc(100dvh - var(--header-height) - 32px);
}

@media (max-width: 782px) {
    .logged-in.admin-bar .mobile-menu {
        top: calc(var(--header-height) + 46px);
        height: calc(100dvh - var(--header-height) - 46px);
    }
}

/* ─── Header bar (visible only on sub-steps) ─── */
.mobile-menu__header {
    display: none;
    align-items: center;
    height: 3rem;
    padding: 0 var(--space-sm);
    border-bottom: 1px solid var(--color-border);
    flex-shrink: 0;
}

.mobile-menu__header.is-visible {
    display: flex;
}

.mobile-menu__title {
    flex: 1;
    font-weight: var(--font-weight-bold);
    font-size: var(--font-size-sm);
    text-align: center;
}

.mobile-menu__back,
.mobile-menu__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-text);
    border-radius: 100px;
    -webkit-tap-highlight-color: transparent;
    transition: background var(--transition-fast);
    flex-shrink: 0;
}

.mobile-menu__back:hover,
.mobile-menu__close:hover {
    background: rgba(0, 0, 0, 0.04);
}

.mobile-menu__close {
    margin-left: auto;
}

/* ─── Viewport — clips step panels ─── */
.mobile-menu__viewport {
    position: relative;
    flex: 1;
    overflow: hidden;
}

/* ─── Step panels ─── */
.mobile-menu__step {
    position: absolute;
    inset: 0;
    list-style: none;
    padding: var(--space-xs) 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
}

.mobile-menu__step.is-active {
    position: relative;
    transform: translateX(0);
    visibility: visible;
}

/* When navigating forward: previous step slides left */
.mobile-menu__step.is-prev {
    position: absolute;
    transform: translateX(-30%);
    visibility: hidden;
}

/* ─── Menu links ─── */
.mobile-menu__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem var(--space-sm);
    text-decoration: none;
    color: var(--color-text-muted);
    font-size: var(--font-size-base);
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    -webkit-tap-highlight-color: transparent;
    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.mobile-menu__link:hover {
    background: rgba(0, 0, 0, 0.03);
}

.mobile-menu__link.is-active {
    color: var(--color-text);
    font-weight: var(--font-weight-bold);
    background: color-mix(in srgb, var(--color-brand) 15%, transparent);
    position: relative;
}

.mobile-menu__link.is-active::before {
    content: "";
    position: absolute;
    left: 0;
    width: 3px;
    height: 1.5rem;
    background: var(--color-brand);
    border-radius: 0 3px 3px 0;
}

.mobile-menu__link--parent {
    color: var(--color-text);
    font-weight: var(--font-weight-bold);
}

.mobile-menu__chevron {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

/* ─── Only show on mobile ─── */
@media (min-width: 769px) {
    .mobile-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
}

/* === assets/css/components/search-modal.css === */
/* ─── Search modal — full-screen overlay ─── */
.search-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;
}

.search-modal.is-open {
    opacity: 1;
    visibility: visible;
}

/* ─── Backdrop ─── */
.search-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

/* ─── Content ─── */
.search-modal__content {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 680px;
    max-height: 80dvh;
    margin: 12vh auto 0;
    background: var(--color-bg);
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.24);
    overflow: hidden;
    transform: scale(0.98) translateY(-8px);
    transition: transform 0.2s ease;
}

.search-modal.is-open .search-modal__content {
    transform: scale(1) translateY(0);
}

/* ─── Header (input + close) ─── */
.search-modal__header {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-sm) var(--space-md);
    border-bottom: 1px solid var(--color-border);
}

.search-modal__input-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.search-modal__input-icon {
    flex-shrink: 0;
    color: var(--color-text-muted);
}

.search-modal__input {
    flex: 1;
    border: none;
    outline: none;
    background: none;
    font-size: 1.25rem;
    font-family: var(--font-family);
    color: var(--color-text);
    padding: 0;
}

.search-modal__input::placeholder {
    color: var(--color-text-muted);
    opacity: 0.6;
}

/* Hide native search clear button */
.search-modal__input::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}

.search-modal__clear[hidden],
.search-modal__close[hidden] {
    display: none;
}

.search-modal__clear,
.search-modal__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-text-muted);
    border-radius: 100px;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
    transition:
        color var(--transition-fast),
        background var(--transition-fast);
}

.search-modal__clear:hover,
.search-modal__close:hover {
    color: var(--color-text);
    background: rgba(0, 0, 0, 0.06);
}

/* ─── Body ─── */
.search-modal__body {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
    -webkit-overflow-scrolling: touch;
}

/* ─── Empty state ─── */
.search-modal__empty {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    padding: var(--space-lg) 0;
}

/* ─── Loading state ─── */
.search-modal__loading:not([hidden]) {
    display: flex;
    justify-content: center;
    padding: var(--space-xl) 0;
}

.search-modal__loading .pokeball {
    width: 2rem;
    height: 2rem;
    animation: search-spin 0.8s linear infinite;
}

@keyframes search-spin {
    to { transform: rotate(360deg); }
}

/* ─── No results ─── */
.search-modal__no-results {
    text-align: center;
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    padding: var(--space-lg) 0;
}

/* ─── Result groups ─── */
.search-modal__group {
    margin-bottom: var(--space-md);
}

.search-modal__group:last-child {
    margin-bottom: 0;
}

.search-modal__group-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-muted);
    padding: 0 0.5rem var(--space-xs);
}

/* ─── Result items ─── */
.search-modal__item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.5rem;
    text-decoration: none;
    color: var(--color-text);
    border-radius: 8px;
    transition: background var(--transition-fast);
    cursor: pointer;
}

.search-modal__item:hover,
.search-modal__item.is-focused {
    background: rgba(0, 0, 0, 0.04);
}

.search-modal__item-thumb {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
    background: var(--color-border);
    flex-shrink: 0;
}

.search-modal__item-body {
    flex: 1;
    min-width: 0;
}

.search-modal__item-title {
    font-size: var(--font-size-sm);
    font-weight: 500;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-modal__item-meta {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 0.125rem;
}

.search-modal__item-price {
    font-size: var(--font-size-sm);
    font-weight: 600;
    flex-shrink: 0;
    white-space: nowrap;
}

/* ─── Show all link ─── */
.search-modal__show-all {
    display: block;
    text-align: center;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-primary, #2563eb);
    text-decoration: none;
    padding: var(--space-xs) 0.5rem;
    margin-top: var(--space-xs);
    border-radius: 8px;
    transition: background var(--transition-fast);
}

.search-modal__show-all:hover {
    background: rgba(0, 0, 0, 0.04);
}

/* ─── Responsive ─── */
@media (max-width: 768px) {
    .search-modal__content {
        margin: 0;
        max-height: 100dvh;
        border-radius: 0;
        height: 100%;
    }
}

/* === assets/css/components/single-post.css === */
/* ── Single Post ── */

.site-main--post {
    padding: 0;
}

.container--narrow {
    max-width: 720px;
}

/* Featured image */
.single-post__thumbnail {
    margin-bottom: var(--space-lg);
}

.single-post__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}

/* Header */
.single-post__header {
    padding: var(--space-xl) 0 var(--space-lg);
}

.single-post__meta {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
}

.single-post__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: var(--font-weight-bold);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: var(--color-brand);
    color: var(--color-text);
    padding: 0.25em 0.75em;
}

.single-post__date {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

.single-post__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.2;
}

.single-post__excerpt {
    margin-top: var(--space-sm);
    font-size: var(--font-size-lg);
    line-height: 1.6;
    color: var(--color-text-muted);
}

/* ── Prose — wp-content typography ── */

.prose {
    font-size: var(--font-size-base);
    line-height: 1.75;
    color: var(--color-text);
}

/* Vertical rhythm */
.prose > * + * {
    margin-top: 1.5em;
}

/* Headings */
.prose h2 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-top: 2.5em;
}

.prose h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.3;
    margin-top: 2em;
}

.prose h4 {
    font-size: 1.1rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.4;
    margin-top: 1.75em;
}

/* Paragraphs */
.prose p {
    margin-top: 1.25em;
}

.prose p:first-child {
    margin-top: 0;
}

/* Links */
.prose a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.prose a:hover {
    color: var(--color-text-muted);
}

/* Bold & italic */
.prose strong {
    font-weight: var(--font-weight-bold);
}

/* Lists */
.prose ul,
.prose ol {
    padding-left: 1.5em;
}

.prose li {
    margin-top: 0.5em;
}

.prose li::marker {
    color: var(--color-text-muted);
}

/* Blockquote */
.prose blockquote {
    border-left: 3px solid var(--color-brand);
    padding: var(--space-sm) var(--space-md);
    margin-left: 0;
    margin-right: 0;
    background: #fafafa;
    font-style: italic;
    color: var(--color-text-muted);
}

.prose blockquote p {
    margin-top: 0;
}

.prose blockquote cite {
    display: block;
    margin-top: 0.75em;
    font-size: var(--font-size-sm);
    font-style: normal;
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
}

/* Images inside content */
.prose img {
    display: block;
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.prose figure {
    margin-left: 0;
    margin-right: 0;
}

.prose figcaption {
    margin-top: 0.5em;
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
    text-align: center;
}

/* WP image alignment */
.prose .aligncenter {
    margin-left: auto;
    margin-right: auto;
}

.prose .alignleft {
    float: left;
    margin-right: var(--space-md);
    margin-bottom: var(--space-sm);
}

.prose .alignright {
    float: right;
    margin-left: var(--space-md);
    margin-bottom: var(--space-sm);
}

/* Horizontal rule */
.prose hr {
    border: none;
    border-top: 1px solid var(--color-border);
    margin: 2.5em 0;
}

/* Code */
.prose code {
    font-size: 0.875em;
    background: #f5f5f5;
    padding: 0.15em 0.4em;
    border-radius: 4px;
}

.prose pre {
    background: #1a1a1a;
    color: #e5e5e5;
    padding: var(--space-md);
    border-radius: 8px;
    overflow-x: auto;
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

.prose pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    color: inherit;
}

/* Tables */
.prose table {
    width: 100%;
    border-collapse: collapse;
    font-size: var(--font-size-sm);
}

.prose th,
.prose td {
    text-align: left;
    padding: 0.75em 1em;
    border-bottom: 1px solid var(--color-border);
}

.prose th {
    font-weight: var(--font-weight-bold);
    background: #fafafa;
}

/* WP gallery */
.prose .wp-block-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-sm);
    padding: 0;
    list-style: none;
}

/* Footer / Back link */
.single-post__footer {
    padding: var(--space-xl) 0;
    border-top: 1px solid var(--color-border);
    margin-top: var(--space-xl);
}

.single-post__back {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.single-post__back:hover {
    color: var(--color-text-muted);
}

/* ── Responsive ── */
@media (max-width: 768px) {
    .single-post__image {
        max-height: 260px;
    }

    .single-post__header {
        padding: var(--space-lg) 0 var(--space-md);
    }

    .prose .alignleft,
    .prose .alignright {
        float: none;
        margin-left: 0;
        margin-right: 0;
    }
}

/* === assets/css/components/contact-page.css === */
/* ============================================
   Contact Page — Clean minimal layout
   ============================================ */

.contact-page {
    padding-bottom: var(--space-xl);
}

/* ---- Hero ---- */

.contact-hero {
    text-align: center;
    max-width: 480px;
    margin: 0 auto var(--space-xl);
}

.contact-hero__title {
    font-size: clamp(1.5rem, 3.5vw, 2rem);
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.contact-hero__text {
    color: var(--color-text-muted);
    font-size: var(--font-size-sm);
    line-height: 1.6;
}

/* ---- Contact info strip ---- */

.contact-info {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
}

.contact-info__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.5rem;
    padding: var(--space-sm);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    text-decoration: none;
    color: inherit;
    transition: border-color var(--transition-fast);
}

a.contact-info__item:hover {
    border-color: var(--color-brand);
}

.contact-info__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    padding: 7px;
    border-radius: 8px;
    background: #f5f5f5;
    color: var(--color-text-muted);
}

.contact-info__label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--color-text-muted);
    font-weight: 600;
    line-height: 1;
}

.contact-info__value {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.35;
}

/* ---- Form section ---- */

.contact-form {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form__header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.contact-form__title {
    font-size: 1.125rem;
    font-weight: var(--font-weight-bold);
    letter-spacing: -0.01em;
    margin-bottom: 0.25rem;
}

.contact-form__subtitle {
    font-size: var(--font-size-sm);
    color: var(--color-text-muted);
}

/* Form fields grid */
.contact-form__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md) var(--space-sm);
}

/* Submit */
.contact-form__submit {
    margin-top: var(--space-lg);
    text-align: center;
}

.contact-form__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-width: 200px;
    justify-content: center;
}

.btn__icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}


/* ============================================
   Form field — reusable
   ============================================ */

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field--full {
    grid-column: 1 / -1;
}

.form-field__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.375rem;
    letter-spacing: 0.01em;
}

.form-field__required {
    color: var(--color-error);
    font-weight: var(--font-weight-normal);
}

/* Inputs */
.form-input {
    width: 100%;
    padding: 0.65rem 0.875rem;
    font-size: var(--font-size-sm);
    font-family: var(--font-family);
    color: var(--color-text);
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    outline: none;
    transition:
        border-color 200ms ease,
        box-shadow 200ms ease;
    box-sizing: border-box;
}

.form-input::placeholder {
    color: #b0b0b0;
}

.form-input:hover {
    border-color: #ccc;
}

.form-input:focus {
    border-color: var(--color-brand);
    box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.15);
}

.form-input:focus-visible {
    outline: none;
}

/* Textarea */
.form-input--textarea {
    min-height: 7rem;
    resize: vertical;
    line-height: 1.6;
}

/* Validation error state */
.form-field--invalid .form-input {
    border-color: var(--color-error);
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.08);
}

.form-field__error {
    display: block;
    min-height: 0;
    margin-top: 0.375rem;
    font-size: 0.75rem;
    color: var(--color-error);
    line-height: 1.3;
}

.form-field__error:empty {
    display: none;
}

/* ============================================
   Checkbox
   ============================================ */

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    grid-column: 1 / -1;
    margin-top: var(--space-xs);
    flex-wrap: wrap;
}

.form-checkbox__input {
    -webkit-appearance: none;
    appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    border: 1.5px solid #ccc;
    border-radius: 5px;
    background: #fff;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    margin-top: 0.0625rem;
    transition:
        background 150ms ease,
        border-color 150ms ease,
        box-shadow 150ms ease;
}

.form-checkbox__input:hover {
    border-color: #aaa;
}

.form-checkbox__input:checked {
    background: var(--color-brand);
    border-color: var(--color-brand);
}

.form-checkbox__input:checked::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 5px;
    height: 9px;
    border: solid var(--color-text);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-checkbox__input:focus-visible {
    box-shadow: 0 0 0 3px rgba(255, 203, 5, 0.25);
    border-color: var(--color-brand);
    outline: none;
}

.form-checkbox__input:focus:not(:focus-visible) {
    outline: none;
}

.form-checkbox__label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    line-height: 1.55;
    cursor: pointer;
}

.form-checkbox__label a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 2px;
    transition: color var(--transition-fast);
}

.form-checkbox__label a:hover {
    color: #b8910a;
}

.form-checkbox .form-field__error {
    width: 100%;
}

/* ============================================
   Flash messages
   ============================================ */

.form-message {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    max-width: 640px;
    margin: 0 auto var(--space-lg);
    padding: var(--space-sm) var(--space-md);
    border-radius: 10px;
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.form-message__icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 1px;
}

.form-message--success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #15803d;
}

.form-message--success .form-message__icon {
    color: var(--color-success);
}

.form-message--error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #b91c1c;
}

.form-message--error .form-message__icon {
    color: var(--color-error);
}

/* ============================================
   Honeypot
   ============================================ */

.form-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-form__fields {
        grid-template-columns: 1fr;
    }
}

/* === assets/css/components/notice-bar.css === */
/* ─── Floating notice banner ─── */
.notice-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem var(--container-padding);
    background: var(--color-text);
    color: #fff;
    font-size: var(--font-size-base);
    line-height: 1.4;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.notice-banner.is-hiding {
    opacity: 0;
    transform: translateY(100%);
}

.notice-banner__content {
    display: flex;
    align-items: center;
    gap: 0.625rem;
}

.notice-banner__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-brand);
}

.notice-banner__text {
    margin: 0;
}

.notice-banner__text strong {
    color: var(--color-brand);
}

.notice-banner__close {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    transition: background 0.15s ease;
}

.notice-banner__close:hover {
    background: rgba(255, 255, 255, 0.2);
}

.notice-banner__close svg {
    width: 16px;
    height: 16px;
}

/* Desktop — floating pill in center */
@media (min-width: 768px) {
    .notice-banner {
        bottom: 2.5rem;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
        width: max-content;
        max-width: calc(100% - 3rem);
        padding: 0.875rem 1.5rem;
        border-radius: 12px;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    }

    .notice-banner.is-hiding {
        opacity: 0;
        transform: translateX(-50%) translateY(1rem);
    }
}

