:root {
    --bg: #efefef;
    --surface: #ffffff;
    --text: #252525;
    --muted: #6f6f6f;
    --line: #cfcfcf;
    --accent: #f19a4b;
    --accent-strong: #ea8332;
    --peach: #efc49c;
    --footer: #020202;
    --footer-line: rgba(255, 255, 255, 0.18);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
}

body.catalog-loading main {
    opacity: 0;
    transform: translateY(8px);
}

body.catalog-ready main {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.28s ease, transform 0.28s ease;
}

img {
    display: block;
    max-width: 100%;
}

button,
input {
    font: inherit;
}

button {
    background: none;
    border: 0;
}

.container {
    width: min(100%, 1040px);
    margin: 0 auto;
}

.announcement-bar {
    background: #ded7d2;
    color: #4a4642;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.01em;
    text-align: center;
    padding: 6px 16px;
}

.site-header {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.brand-wordmark {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    line-height: 0;
}

.brand-wordmark img {
    display: block;
    width: auto;
    height: 50px;
    object-fit: contain;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 18px;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 30px 0 25px;
    border-bottom: 2px solid transparent;
}

.nav-link.active,
.nav-item:hover > .nav-link,
.nav-item:focus-within > .nav-link {
    border-color: var(--text);
}

.nav-link-static,
.dropdown-heading-static {
    cursor: default;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% - 8px);
    left: 0;
    min-width: 220px;
    display: grid;
    gap: 8px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.12);
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
    z-index: 30;
}

.dropdown-menu-wide {
    min-width: 270px;
}

.dropdown-menu a {
    color: var(--text);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 0;
}

.dropdown-menu a:hover {
    color: var(--accent);
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.gifting-menu {
    min-width: 620px;
    grid-template-columns: 1.25fr 1fr 0.85fr;
    gap: 18px;
}

.dropdown-group {
    display: grid;
    align-content: start;
    gap: 8px;
}

.dropdown-heading {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.dropdown-submenu {
    display: grid;
    gap: 8px;
    padding-top: 2px;
    padding-left: 14px;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.dropdown-submenu a {
    font-size: 12px;
    color: rgba(37, 37, 37, 0.72);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.auth-entry-links {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.auth-entry-link {
    text-decoration: none;
    color: var(--text);
    border: 1px solid rgba(37, 37, 37, 0.12);
    border-radius: 999px;
    padding: 9px 14px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
}

.auth-entry-link--primary {
    background: linear-gradient(135deg, #2a3d49, #1b2b35);
    border-color: #2a3d49;
    color: #fff;
}

.auth-entry-link--status {
    text-transform: none;
    letter-spacing: 0;
}

.auth-user-menu {
    position: relative;
}

.auth-user-trigger {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 238, 0.98));
    border: 1px solid rgba(63, 45, 33, 0.08);
    box-shadow: 0 12px 30px rgba(33, 24, 18, 0.08);
    font-size: 14px;
    font-weight: 700;
    color: #2f2925;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.auth-user-trigger:hover {
    transform: translateY(-1px);
    border-color: rgba(241, 154, 75, 0.26);
    box-shadow: 0 16px 34px rgba(241, 154, 75, 0.14);
}

.auth-user-trigger svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.auth-user-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    right: 0;
    min-width: 240px;
    display: grid;
    gap: 10px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.995);
    border: 1px solid rgba(63, 45, 33, 0.08);
    box-shadow: 0 26px 54px rgba(18, 22, 26, 0.14);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 60;
    backdrop-filter: blur(18px);
}

.auth-user-menu:hover .auth-user-dropdown,
.auth-user-menu:focus-within .auth-user-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.auth-entry-link--menu {
    display: block;
    width: 100%;
    text-align: left;
    text-transform: none;
    letter-spacing: 0;
    cursor: pointer;
    background: linear-gradient(135deg, rgba(255, 251, 247, 0.98), rgba(255, 255, 255, 0.98));
    border-radius: 16px;
    border: 1px solid rgba(73, 55, 43, 0.06);
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 700;
    color: #332b26;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.auth-entry-link--menu:hover {
    transform: translateX(3px);
    color: #c46f29;
    border-color: rgba(241, 154, 75, 0.22);
    background: linear-gradient(135deg, rgba(255, 246, 238, 1), rgba(255, 252, 249, 1));
}

.bulk-orders-button {
    color: var(--text);
    text-decoration: none;
    border: 1px solid rgba(37, 37, 37, 0.14);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

.bulk-orders-button:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.bulk-orders-icon-button {
    width: 42px;
    height: 42px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bulk-orders-icon-button svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.icon-button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    cursor: pointer;
}

.icon-button svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #f26b63;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    display: grid;
    place-items: center;
}

.catalog-hero {
    background: var(--peach);
    min-height: 325px;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}

.catalog-loading-state {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: center;
    background: rgba(239, 239, 239, 0.92);
    backdrop-filter: blur(8px);
    transition: opacity 0.28s ease, visibility 0.28s ease;
}

body.catalog-ready .catalog-loading-state {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.catalog-loading-card {
    min-width: min(92vw, 320px);
    display: grid;
    justify-items: center;
    gap: 16px;
    padding: 28px 30px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
}

.catalog-loading-card p {
    color: #4b4b4b;
    font-size: 15px;
    font-weight: 600;
}

.catalog-loading-spinner {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 3px solid rgba(241, 154, 75, 0.2);
    border-top-color: var(--accent-strong);
    animation: catalog-spin 0.8s linear infinite;
}

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

.hero-copy {
    position: relative;
    z-index: 1;
    text-align: center;
}

.hero-copy h1 {
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3.4rem, 5vw, 5.2rem);
    font-weight: 700;
    font-style: italic;
    letter-spacing: -0.03em;
    line-height: 0.94;
    text-shadow: 0 10px 24px rgba(110, 78, 49, 0.08);
}

.hero-copy p {
    max-width: 520px;
    margin: 14px auto 0;
    color: rgba(37, 37, 37, 0.72);
    font-size: 15px;
}

.hero-ornament {
    position: absolute;
    top: 0;
    width: min(255px, 23vw);
}

.hero-ornament img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-ornament-left {
    left: 0;
}

.hero-ornament-right {
    right: 0;
    transform: scaleX(-1);
    transform-origin: center;
}

.catalog-shell {
    padding: 28px 12px 88px;
}

.catalog-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-bottom: 20px;
    margin-bottom: 24px;
    border-bottom: 2px solid #bfbfbf;
}

.catalog-toolbar h2 {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.catalog-eyebrow {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.catalog-summary {
    font-size: 16px;
    font-weight: 500;
    max-width: 340px;
    color: #555;
}

.stationary-subheaders {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 28px;
}

.stationary-chip {
    text-decoration: none;
    color: #534238;
    background: #f3e2d5;
    border: 1px solid rgba(83, 66, 56, 0.12);
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 700;
}

.stationary-chip.active {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.catalog-layout {
    display: block;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 30px 24px;
}

.product-grid .empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 28px 20px;
    border: 1px dashed rgba(83, 66, 56, 0.2);
    border-radius: 16px;
    color: #6f5448;
    background: rgba(255, 255, 255, 0.72);
}

.product-card {
    min-width: 0;
}

.product-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #ddd;
    aspect-ratio: 1 / 0.93;
    box-shadow: var(--shadow);
}

.product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-chip,
.wishlist-button {
    position: absolute;
    top: 10px;
}

.product-chip {
    left: 10px;
    background: rgba(107, 107, 107, 0.84);
    color: #fff;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    font-weight: 500;
}

.wishlist-button {
    right: 10px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(6px);
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.22s ease, background-color 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.wishlist-button:hover {
    transform: translateY(-1px);
}

.wishlist-button svg {
    width: 15px;
    height: 15px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 1.8;
}

.wishlist-button.is-active {
    background: rgba(31, 31, 31, 0.86);
    border-color: rgba(255, 255, 255, 0.4);
}

.wishlist-button.is-active svg {
    fill: currentColor;
}

.product-info {
    padding-top: 12px;
}

.product-price {
    display: flex;
    gap: 8px;
    align-items: baseline;
    font-size: 15px;
    font-weight: 800;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 5px;
}

.product-price .old {
    color: #292929;
}

.product-title {
    color: #4b4b4b;
    font-size: 15px;
    line-height: 1.35;
    min-height: 42px;
    margin-bottom: 10px;
}

.product-action {
    width: 100%;
    border: 1.5px solid #9f8b82;
    color: #6f5448;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(247, 240, 233, 0.96));
    border-radius: 12px;
    min-height: 42px;
    font-weight: 700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, color 0.24s ease, background-color 0.24s ease;
}

.product-action::after {
    content: "";
    position: absolute;
    inset: 0 auto 0 -130%;
    width: 120%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.48), transparent);
    transform: skewX(-20deg);
    transition: left 0.42s ease;
}

.product-action:hover {
    transform: translateY(-2px);
    border-color: rgba(111, 84, 72, 0.52);
    color: #4f392f;
    box-shadow: 0 14px 26px rgba(99, 76, 63, 0.14);
}

.product-action:hover::after {
    left: 115%;
}

.quick-cart-button {
    position: relative;
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid rgba(70, 54, 44, 0.12);
    border-radius: 15px;
    background: linear-gradient(135deg, rgba(255, 248, 241, 0.96), rgba(255, 255, 255, 0.98));
    color: #5f4b40;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(72, 56, 47, 0.08);
    transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.quick-cart-button:hover {
    transform: translateY(-2px);
    border-color: rgba(234, 143, 71, 0.28);
    box-shadow: 0 14px 24px rgba(234, 143, 71, 0.16);
}

.quick-cart-button__icon {
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
}

.quick-cart-button__icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.9;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.quick-cart-button__label {
    position: absolute;
    right: calc(100% + 10px);
    top: 50%;
    transform: translateY(-50%) translateX(6px);
    padding: 7px 10px;
    border-radius: 999px;
    background: rgba(44, 35, 29, 0.94);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
}

.quick-cart-button:hover .quick-cart-button__label,
.quick-cart-button:focus-visible .quick-cart-button__label {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) translateX(0);
}

.site-cart-toast {
    position: fixed;
    top: 26px;
    left: 50%;
    z-index: 260;
    display: flex;
    align-items: center;
    gap: 14px;
    min-width: min(92vw, 360px);
    max-width: min(92vw, 440px);
    padding: 16px 18px;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(31, 47, 59, 0.96), rgba(21, 34, 43, 0.98));
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 22px 50px rgba(16, 24, 30, 0.22);
    transform: translate(-50%, -22px) scale(0.96);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, transform 0.34s ease, visibility 0.28s ease;
    backdrop-filter: blur(16px);
}

.site-cart-toast.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0) scale(1);
}

.site-cart-toast__icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(234, 143, 71, 0.24), rgba(255, 210, 173, 0.3));
}

.site-cart-toast__icon svg {
    width: 20px;
    height: 20px;
    stroke: #ffd4ad;
    fill: none;
    stroke-width: 2.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.site-cart-toast__copy {
    display: grid;
    gap: 2px;
}

.site-cart-toast__copy strong {
    font-size: 0.96rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.site-cart-toast__copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.88rem;
    line-height: 1.45;
}

.site-footer {
    background: var(--footer);
    color: #ffffff;
    padding: 34px 12px 28px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 48px;
    padding: 28px 0 36px;
}

.footer-branding {
    padding-right: 34px;
    border-right: 1px solid var(--footer-line);
}

.footer-brand {
    display: inline-flex;
    margin-bottom: 28px;
}

.footer-brand img {
    height: 62px;
}

.footer-contact h2,
.footer-links-block h2 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 18px;
}

.contact-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-row svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact p,
.footer-links-block a,
.footer-credit {
    color: #d0d0d0;
    font-size: 14px;
    line-height: 1.5;
}

.footer-links-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-block a {
    text-decoration: none;
}

.footer-bottom {
    border-top: 1px solid var(--footer-line);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.social-links {
    display: flex;
    gap: 14px;
}

.social-links a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.85);
    color: #ffffff;
    display: grid;
    place-items: center;
}

.social-links svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 1024px) {
    .container {
        width: min(100%, 92vw);
    }

    .main-nav {
        gap: 12px;
    }

    .nav-link {
        font-size: 11px;
    }

    .hero-ornament {
        width: min(190px, 22vw);
    }

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

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

    .footer-branding {
        grid-column: 1 / -1;
        border-right: 0;
        border-bottom: 1px solid var(--footer-line);
        padding-right: 0;
        padding-bottom: 26px;
    }
}

@media (max-width: 760px) {
    .container {
        width: min(100%, calc(100vw - 32px));
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: center;
        padding: 14px 0 10px;
    }

    .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: auto;
        padding-bottom: 4px;
        scrollbar-width: none;
    }

    .main-nav::-webkit-scrollbar {
        display: none;
    }

    .nav-item {
        width: auto;
        flex: 0 0 auto;
    }

    .nav-link {
        width: auto;
        justify-content: center;
        padding: 6px 0 8px;
        font-size: 12px;
        white-space: nowrap;
    }

    .dropdown-menu,
    .dropdown-menu-wide,
    .gifting-menu {
        position: absolute;
        min-width: 0;
        max-width: min(84vw, 320px);
        margin-top: 0;
        padding: 12px;
        gap: 4px;
    }

    .gifting-menu {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .dropdown-menu a {
        text-align: center;
    }

    .dropdown-group,
    .dropdown-submenu {
        justify-items: center;
    }

    .dropdown-submenu {
        padding-left: 0;
        border-left: 0;
    }

    .header-actions {
        position: static;
        width: 100%;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .auth-entry-links {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .bulk-orders-button {
        padding: 8px 12px;
        font-size: 10px;
    }

    .auth-user-dropdown {
        right: 50%;
        transform: translate(50%, -8px) scale(0.98);
        min-width: min(92vw, 260px);
    }

    .auth-user-menu:hover .auth-user-dropdown,
    .auth-user-menu:focus-within .auth-user-dropdown {
        transform: translate(50%, 0) scale(1);
    }

    .catalog-hero {
        min-height: 210px;
        padding: 30px 0;
    }

    .hero-ornament {
        display: none;
    }

    .hero-copy h1 {
        font-size: clamp(2.6rem, 12vw, 3.6rem);
        line-height: 1;
    }

    .hero-copy p {
        font-size: 14px;
        max-width: 300px;
    }

    .catalog-toolbar {
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: 28px;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .catalog-shell {
        padding-top: 22px;
    }

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

    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .site-cart-toast {
        top: 18px;
        border-radius: 18px;
        padding: 14px 16px;
    }
}
