/* ── RESET ───────────────────────────────────────────────── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #f5f0e0;
    --parchment: #ece5d3;
    --warm-mid: #dfd0b8;
    --teal: #5bbfb5;
    --teal-dk: #4aa89f;
    --teal-lt: #7fd4cb;
    --pink: #f28ba0;
    --pink-dk: #e06e87;
    --pink-lt: #f7b0c0;
    --mocha: #b89f8a;
    --brown: #3d3028;
    --muted: #9b8b7a;
    --border: #e0d6c4;
    --surface: #faf7f0;

    --font-brand: "Yomogi", cursive;
    --font-display: "Cormorant Garamond", Georgia, serif;
    --font-body: "Jost", sans-serif;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --r: 12px;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--brown);
    font-family: var(--font-brand);
    font-size: 14px;
    line-height: 1.6;
    overflow-x: hidden;
}

button {
    font-family: var(--font-brand);
    cursor: pointer;
    border: none;
    background: none;
}
img {
    display: block;
    max-width: 100%;
}
a {
    color: inherit;
    text-decoration: none;
}

::-webkit-scrollbar {
    width: 5px;
}
::-webkit-scrollbar-track {
    background: var(--parchment);
}
::-webkit-scrollbar-thumb {
    background: var(--teal-lt);
    border-radius: 99px;
}

/* ── ANIMATIONS ──────────────────────────────────────────── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.97) translateY(14px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}
@keyframes slideInR {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}
@keyframes slideOutR {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(100%);
    }
}
@keyframes toastUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}
@keyframes ticker {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes pulseDot {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.35;
    }
}

/* ── HEADER ──────────────────────────────────────────────── */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 2.5rem;
    height: 80px;
    background: rgba(245, 240, 224, 0.96);
    backdrop-filter: blur(14px);
}

.logo-image {
    width: clamp(40px, 10vw, 70px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-brand);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--brown);
}
.logo a {
    display: flex;
    align-items: center;
}

nav {
    display: flex;
    gap: 2.2rem;
}
nav a {
    font-family: var(--font-brand);
    font-size: 13px;
    color: var(--muted);
    transition: color 0.2s;
}
nav a:hover {
    color: var(--teal);
}

.bag-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-brand);
    font-size: 13px;
    color: var(--brown);
    padding: 8px 18px;
    border-radius: 20px;
    transition: color 0.2s, background 0.2s;
}
.bag-btn:hover {
    color: var(--teal);
    background: rgba(91, 191, 181, 0.08);
}

/* ── HAMBURGER MENU ─────────────────────────────────────── */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    background: none;
    border: none;
    transition: background 0.2s;
}
.hamburger:hover {
    background: rgba(91, 191, 181, 0.08);
}
.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.hamburger.active span:nth-child(2) {
    opacity: 0;
}
.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
    display: none;
}

.bag-count {
    background: var(--pink);
    color: #fff;
    font-size: 10px;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    display: none;
    align-items: center;
    justify-content: center;
}
.bag-count.visible {
    display: flex;
}

/* ── TICKER ──────────────────────────────────────────────── */
.ticker-section {
    position: relative;
    z-index: 10;
}
.ticker-wrap {
    overflow: hidden;
    background: var(--teal);
    height: 36px;
    display: flex;
    align-items: center;
}
.ticker-track {
    display: flex;
    white-space: nowrap;
    animation: ticker 32s linear infinite;
}
.ticker-track span {
    font-family: var(--font-brand);
    font-size: 13px;
    color: #fff;
    padding: 0 1.2rem;
}
.ticker-track span.dot {
    color: rgba(255, 255, 255, 0.6);
    padding: 0 0.4rem;
}

/* Scalloped bottom edge */
.scallop-edge {
    display: block;
    width: 100%;
    height: 16px;
    background:
        radial-gradient(circle at 50% 0%, var(--teal) 70%, transparent 71%)
        repeat-x;
    background-size: 32px 16px;
}

/* ── HERO SLIDESHOW ──────────────────────────────────────── */
.hero {
    padding: 3rem 2rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
}

.hero-slideshow {
    position: relative;
    width: 100%;
    max-width: 900px;
    border-radius: 16px;
    overflow: hidden;
    animation: fadeUp 0.9s var(--ease) both;
}

.hero-slides {
    display: flex;
    transition: transform 0.5s var(--ease);
}

.hero-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem 4rem;
    min-height: 260px;
    background-size: cover;
    background-position: center;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.12);
    pointer-events: none;
}

.hero-slide-content {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-brand);
    font-size: clamp(3.5rem, 8vw, 5.5rem);
    font-weight: 400;
    line-height: 1;
    color: var(--pink);
    text-shadow:
        2px 2px 0 rgba(255, 255, 255, 0.7),
        0 0 20px rgba(255, 255, 255, 0.3);
}

.hero-cta {
    position: relative;
    z-index: 1;
    display: inline-block;
    padding: 12px 28px;
    background: var(--pink);
    color: #fff;
    font-family: var(--font-brand);
    font-size: 14px;
    border-radius: 8px;
    transition: background 0.2s, transform 0.15s;
    align-self: flex-end;
}
.hero-cta:hover {
    background: var(--pink-dk);
    transform: translateY(-1px);
}

/* Slideshow arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(4px);
    color: var(--brown);
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
    line-height: 1;
}
.hero-arrow:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}
.hero-arrow--prev { left: 14px; }
.hero-arrow--next { right: 14px; }

/* Slideshow dots */
.hero-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    gap: 8px;
}
.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.8);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.25s, border-color 0.25s;
}
.hero-dot.active {
    background: #fff;
    border-color: #fff;
}

/* ── SECTION DIVIDER ─────────────────────────────────────── */
.section-divider {
    height: 8px;
    background: var(--mocha);
    margin-top: 2rem;
}

/* ── FILTER BAR ──────────────────────────────────────────── */
.filter-bar {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
    display: none;
}

.filter-btn {
    flex-shrink: 0;
    padding: 14px 26px;
    font-family: var(--font-brand);
    font-size: 13px;
    color: var(--muted);
    border-bottom: 2px solid transparent;
    transition:
        color 0.2s,
        background 0.2s,
        border-color 0.2s;
}
.filter-btn:hover {
    color: var(--brown);
}
.filter-btn.active {
    color: var(--teal);
    background: rgba(91, 191, 181, 0.06);
    border-bottom-color: var(--teal);
}

/* ── CATALOG BAR ─────────────────────────────────────────── */
.catalog-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.6rem;
    background: var(--parchment);
}
.catalog-bar-title {
    font-family: var(--font-brand);
    font-size: 1rem;
    font-weight: 400;
    color: var(--muted);
}
.catalog-bar-count {
    font-family: var(--font-brand);
    font-size: 12px;
    color: var(--muted);
}

/* ── GRID ────────────────────────────────────────────────── */
.catalog {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.8rem;
    padding: 2rem 2rem;
    background: var(--cream);
}

/* ── PRODUCT CARD ────────────────────────────────────────── */
.card {
    border-radius: var(--r);
    cursor: pointer;
    transition: transform 0.25s var(--ease), box-shadow 0.25s;
    background: var(--surface);
    overflow: hidden;
}
.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(61, 48, 40, 0.08);
}
.card.sold-out {
    opacity: 0.52;
    pointer-events: none;
}

.card-img {
    aspect-ratio: 1;
    position: relative;
    overflow: hidden;
    background: var(--surface);
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}
.card:hover .card-img img {
    transform: scale(1.05);
}

.card-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 100%;
}
.card-placeholder .paw {
    font-size: 28px;
    opacity: 0.4;
}
.card-placeholder span {
    font-family: var(--font-brand);
    font-size: 11px;
    color: var(--warm-mid);
}

.card-badge {
    position: absolute;
    top: 11px;
    left: 11px;
    font-family: var(--font-brand);
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    background: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    gap: 5px;
}
.badge-live {
    color: var(--teal);
}
.badge-new {
    color: var(--pink);
}
.badge-closed {
    color: var(--muted);
}

.badge-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
    animation: pulseDot 1.8s infinite;
}

.card-swatches {
    position: absolute;
    bottom: 10px;
    right: 10px;
    display: flex;
    gap: 5px;
}
.card-swatch {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.65);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
}

.card-info {
    padding: 1.1rem 1.3rem;
}
.card-collection {
    font-family: var(--font-brand);
    font-size: 11px;
    color: var(--teal);
    margin-bottom: 4px;
}
.card-name {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.2;
}
.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.card-price {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    color: var(--brown);
}
.card-edition {
    font-family: var(--font-brand);
    font-size: 11px;
    color: var(--muted);
}
.card-edition strong {
    color: var(--brown);
}

/* ── MODAL OVERLAY ───────────────────────────────────────── */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(61, 48, 40, 0.45);
    backdrop-filter: blur(7px);
    display: none;
    place-items: center;
    padding: 1.5rem;
}
.modal-overlay.open {
    display: grid;
    animation: fadeIn 0.25s ease both;
}

.modal {
    background: var(--surface);
    border-radius: 16px;
    width: 100%;
    max-width: 860px;
    max-height: 90vh;
    overflow-y: auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    animation: scaleIn 0.32s var(--ease) both;
}

.modal-img-panel {
    position: relative;
    aspect-ratio: 1;
    background: var(--parchment);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px 0 0 16px;
}
.modal-img-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    height: 100%;
    min-height: 300px;
}
.modal-placeholder .paw {
    font-size: 52px;
    opacity: 0.35;
}
.modal-placeholder span {
    font-family: var(--font-brand);
    font-size: 11px;
    color: var(--warm-mid);
}

.modal-close {
    position: absolute;
    top: 11px;
    right: 11px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface);
    border-radius: 50%;
    color: var(--muted);
    font-size: 14px;
    z-index: 2;
    transition: color 0.2s, background 0.2s;
}
.modal-close:hover {
    color: var(--pink);
    background: #fff;
}

.modal-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}

.modal-collection {
    font-family: var(--font-brand);
    font-size: 12px;
    color: var(--teal);
    margin-bottom: 5px;
}
.modal-name {
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 400;
    line-height: 1.1;
}
.modal-desc {
    font-family: var(--font-brand);
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
}

/* Colorway picker */
.picker-label {
    font-family: var(--font-brand);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 10px;
}
.picker-label strong {
    color: var(--brown);
    font-weight: 400;
}

.colorway-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cw-btn {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border: 1px solid var(--border);
    border-radius: 20px;
    font-family: var(--font-brand);
    font-size: 12px;
    color: var(--brown);
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}
.cw-btn:hover:not(.cw-soldout) {
    border-color: var(--teal-lt);
}
.cw-btn.cw-selected {
    border-color: var(--teal);
    color: var(--teal);
    background: rgba(91, 191, 181, 0.06);
}
.cw-btn.cw-soldout {
    opacity: 0.4;
    cursor: not-allowed;
    text-decoration: line-through;
}

.cw-swatch {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

/* Edition tracker */
.edition-tracker {
    background: var(--parchment);
    border-radius: var(--r);
    padding: 12px 16px;
}
.edition-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-brand);
    font-size: 12px;
    color: var(--muted);
    margin-bottom: 8px;
}
.edition-row strong {
    color: var(--brown);
    font-size: 13px;
    font-weight: 400;
}
.edition-row .low {
    color: var(--pink);
}

.edition-bar {
    height: 4px;
    background: var(--warm-mid);
    border-radius: 99px;
    overflow: hidden;
}
.edition-fill {
    height: 100%;
    background: var(--teal);
    border-radius: 99px;
    transition: width 0.4s var(--ease);
}

/* Price & CTA */
.modal-price {
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 400;
}

.add-btn {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-brand);
    font-size: 14px;
    border-radius: 10px;
    transition:
        background 0.2s,
        transform 0.1s;
    border: none;
}
.add-btn:hover:not(:disabled) {
    background: var(--teal-dk);
}
.add-btn:active:not(:disabled) {
    transform: scale(0.99);
}
.add-btn:disabled {
    background: var(--warm-mid);
    color: var(--muted);
    cursor: not-allowed;
}

.secure-note {
    font-family: var(--font-brand);
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 10px;
}

/* ── CART DRAWER ─────────────────────────────────────────── */
.cart-backdrop {
    position: fixed;
    inset: 0;
    z-index: 299;
    background: rgba(61, 48, 40, 0.32);
    display: none;
}
.cart-backdrop.open {
    display: block;
    animation: fadeIn 0.2s ease;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 100vw);
    z-index: 300;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.38s var(--ease);
    border-radius: 16px 0 0 16px;
}
.cart-drawer.open {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.4rem 1.6rem;
    position: sticky;
    top: 0;
    background: var(--surface);
    z-index: 1;
}
.cart-title {
    font-family: var(--font-brand);
    font-size: 1.3rem;
    font-weight: 400;
}
.cart-close-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--muted);
    font-size: 14px;
    transition: color 0.2s, background 0.2s;
}
.cart-close-btn:hover {
    color: var(--pink);
    background: rgba(242, 139, 160, 0.08);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    gap: 12px;
    text-align: center;
}
.cart-empty .paw {
    font-size: 42px;
}
.cart-empty p {
    font-family: var(--font-brand);
    font-size: 1.1rem;
    color: var(--muted);
}
.cart-empty button {
    font-family: var(--font-brand);
    font-size: 13px;
    color: var(--teal);
    border-bottom: 1px solid var(--teal);
    padding-bottom: 2px;
    margin-top: 4px;
}

.cart-item {
    display: grid;
    grid-template-columns: 58px 1fr auto;
    gap: 1rem;
    padding: 1.2rem 1.6rem;
    border-bottom: 1px solid var(--border);
    align-items: center;
}
.cart-thumb {
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    background: var(--parchment);
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.cart-thumb-inner {
    text-align: center;
}
.cart-thumb-swatch {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin: 0 auto 3px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.cart-item-name {
    font-family: var(--font-brand);
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.2;
}
.cart-item-cw {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 3px;
    font-family: var(--font-brand);
    font-size: 12px;
    color: var(--muted);
}
.cart-item-cw-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
}
.qty-btn {
    width: 24px;
    height: 24px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: var(--muted);
    transition: border-color 0.2s;
}
.qty-btn:hover {
    border-color: var(--teal);
    color: var(--teal);
}
.qty-val {
    font-family: var(--font-brand);
    font-size: 13px;
    min-width: 16px;
    text-align: center;
}

.cart-item-right {
    text-align: right;
}
.cart-item-price {
    font-family: var(--font-brand);
    font-size: 1.1rem;
}
.cart-remove {
    font-family: var(--font-brand);
    font-size: 11px;
    color: var(--muted);
    margin-top: 6px;
    transition: color 0.2s;
}
.cart-remove:hover {
    color: var(--pink);
}

/* Summary */
.cart-summary {
    padding: 1.4rem 1.6rem;
    background: var(--parchment);
    position: sticky;
    bottom: 0;
    border-radius: 0 0 0 16px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-family: var(--font-brand);
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 6px;
}
.summary-row.total {
    border-top: 1px solid var(--border);
    padding-top: 10px;
    margin-top: 4px;
    font-size: 1.2rem;
    color: var(--brown);
    margin-bottom: 1.1rem;
}
.summary-free {
    color: var(--teal);
}

.checkout-btn {
    width: 100%;
    padding: 15px;
    background: var(--teal);
    color: #fff;
    font-family: var(--font-brand);
    font-size: 14px;
    border-radius: 10px;
    border: none;
    transition: background 0.2s;
}
.checkout-btn:hover {
    background: var(--teal-dk);
}

.checkout-note {
    font-family: var(--font-brand);
    font-size: 11px;
    color: var(--muted);
    text-align: center;
    margin-top: 10px;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
    padding: 3rem 2rem;
    background: var(--parchment);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}
.footer-logo {
    font-family: var(--font-brand);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 8px;
    color: var(--brown);
}
.footer-desc {
    font-family: var(--font-brand);
    font-size: 13px;
    color: var(--muted);
    max-width: 300px;
    line-height: 1.75;
}
.footer-copy {
    font-family: var(--font-brand);
    font-size: 12px;
    color: var(--muted);
}

/* ── TOAST ───────────────────────────────────────────────── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    z-index: 400;
    opacity: 0;
    pointer-events: none;
    background: var(--brown);
    color: #fff;
    padding: 12px 24px;
    border-radius: 10px;
    font-family: var(--font-brand);
    font-size: 13px;
    white-space: nowrap;
    border-left: 3px solid var(--teal);
    transition:
        opacity 0.3s,
        transform 0.3s;
}
.toast.show {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 700px) {
    .hero {
        padding: 2rem 1rem 1.5rem;
    }
    .hero-slide {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
        padding: 2rem;
        min-height: 220px;
    }
    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }
    .hero-arrow {
        width: 32px;
        height: 32px;
        font-size: 18px;
    }
    .hero-arrow--prev { left: 8px; }
    .hero-arrow--next { right: 8px; }
    .modal {
        grid-template-columns: 1fr;
        border-radius: 16px;
    }
    .modal-img-panel {
        aspect-ratio: auto;
        min-height: 240px;
        border-radius: 16px 16px 0 0;
    }
    .hamburger {
        display: flex;
    }
    header {
        height: auto;
        padding: 1rem 1.2rem;
        flex-wrap: wrap;
        gap: 0.8rem;
    }
    header > nav,
    header > .bag-btn {
        display: none;
    }
    .logo {
        font-size: 1.3rem;
    }
    .logo-image {
        width: 36px;
    }
    .mobile-menu {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0.5rem 0 0.2rem;
    }
    .mobile-menu.open {
        display: flex;
    }
    .mobile-menu a,
    .mobile-menu button {
        font-family: var(--font-brand);
        font-size: 14px;
        color: var(--muted);
        padding: 0.75rem 0.5rem;
        border-radius: 8px;
        transition: color 0.2s, background 0.2s;
        text-align: left;
    }
    .mobile-menu a:hover,
    .mobile-menu button:hover {
        color: var(--teal);
        background: rgba(91, 191, 181, 0.06);
    }
    .mobile-menu .bag-btn {
        display: flex;
        padding: 0.75rem 0.5rem;
    }
    .catalog {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 1rem;
        padding: 1rem;
    }
}
