:root {
    --store-bg: #F8FAFC;
    --store-surface: rgba(255, 255, 255, 0.97);
    --store-surface-strong: #ffffff;
    --store-border: #E2E8F0;
    --store-border-strong: #CBD5E1;
    --store-ink: #0F172A;
    --store-muted: #64748B;
    --store-accent: #E7549E;
    --store-accent-dark: #D63D8D;
    --store-accent-soft: #FCE7F3;
    --store-jewel: #111827;
    --store-gold: #F59E0B;
    --store-shadow: 0 22px 48px rgba(15, 23, 42, 0.12);
    --store-shadow-soft: 0 10px 24px rgba(15, 23, 42, 0.08);
    --store-radius-xl: 28px;
    --store-radius-lg: 22px;
    --store-radius-md: 16px;
    --store-container-max: 1480px;
    --store-page-gutter: clamp(1rem, 3vw, 2.5rem);
}

html,
body {
    min-height: 100%;
}

body.store-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background:
        radial-gradient(circle at top left, rgba(255, 255, 255, 0.98) 0, rgba(255, 255, 255, 0) 30%),
        radial-gradient(circle at top right, rgba(231, 84, 158, 0.08) 0, rgba(231, 84, 158, 0) 38%),
        radial-gradient(circle at 18% 62%, rgba(17, 24, 39, 0.05) 0, rgba(17, 24, 39, 0) 42%),
        linear-gradient(180deg, #FFFFFF 0%, #F8FAFC 55%, #EEF2F7 100%);
    color: var(--store-ink);
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.72;
    letter-spacing: 0.01em;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "liga" 1, "kern" 1;
}

body.store-body > .container,
.store-header-shell > .container,
.store-footer > .container {
    max-width: var(--store-container-max);
    padding-left: var(--store-page-gutter);
    padding-right: var(--store-page-gutter);
    width: 100%;
}

.store-page-shell {
    flex: 1 0 auto;
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.store-demo-banner {
    background: transparent;
    border-bottom: 0;
    color: #F9F7F4;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 0.24rem 0.8rem;
    text-align: center;
    text-transform: none;
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 1;
}

.store-demo-banner-track {
    display: flex;
    gap: 0.75rem;
    margin: 0 auto;
    max-width: min(980px, 100%);
    overflow-x: auto;
    padding: 0.02rem 0.2rem;
    scroll-behavior: smooth;
    scrollbar-width: none;
    scroll-snap-type: x mandatory;
}

.store-demo-banner-track::-webkit-scrollbar {
    display: none;
}

.store-demo-banner-item {
    background: transparent;
    border: 0;
    border-radius: 0;
    flex: 0 0 100%;
    font-size: inherit;
    font-weight: inherit;
    margin: 0;
    padding: 0.04rem 0.15rem;
    scroll-snap-align: center;
    white-space: normal;
}

.store-navbar {
    background: transparent;
    backdrop-filter: none;
    border-bottom: 0;
    position: relative;
    z-index: 1;
    grid-column: 2;
    grid-row: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    padding: 0.55rem 0.1rem 0.62rem;
    min-height: 56px;
}

.store-header-shell {
    position: sticky;
    top: 0;
    z-index: 1040;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(30, 41, 59, 0.94)),
        repeating-linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.03) 0 12px,
            rgba(255, 255, 255, 0) 12px 24px
        );
    backdrop-filter: blur(14px);
    border-bottom: 0;
}

.store-header-grid {
    display: grid;
    grid-template-columns: 180px 1fr;
    grid-template-rows: auto auto;
    align-items: center;
    gap: 0;
    position: relative;
}

.store-brand {
    color: #F9F7F4;
    display: flex;
    align-items: center;
    justify-content: center;
    grid-column: 1;
    grid-row: 1 / span 2;
    text-decoration: none;
    min-width: 0;
    padding: 0.12rem 0.2rem;
    border-right: 0;
}

.store-brand-logo-inline {
    display: block;
    width: 168px;
    height: 112px;
    object-fit: contain;
    flex: 0 0 auto;
}

.store-brand:hover {
    color: #F9F7F4;
}

.store-brand-logo {
    display: block;
    height: clamp(56px, 8vw, 76px);
    max-width: clamp(220px, 34vw, 360px);
    object-fit: contain;
    width: auto;
}

.store-nav-actions {
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0.6rem;
    flex: 0 0 auto;
    position: relative;
}

.store-brand-kicker {
    color: rgba(249, 247, 244, 0.72);
    font-size: 0.68rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.store-brand-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1rem, 2.2vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    color: #FFFFFF;
    text-shadow: 0 1px 10px rgba(255, 255, 255, 0.25);
}

.store-nav-pill {
    border: 1px solid rgba(231, 84, 158, 0.45);
    border-radius: 999px;
    color: #F9F7F4;
    font-size: 0.92rem;
    font-weight: 700;
    padding: 0.5rem 0.95rem;
}

.store-nav-pill.btn-outline-light:hover,
.store-nav-pill.btn-outline-light:focus-visible {
    background: rgba(231, 84, 158, 0.2);
    border-color: rgba(231, 84, 158, 0.65);
    color: #ffffff;
}

.store-cart-pill {
    background: linear-gradient(135deg, var(--store-accent), var(--store-accent-dark));
    border-color: rgba(231, 84, 158, 0.24);
    color: #ffffff;
    padding-right: 1.45rem;
}

.store-cart-pill:hover,
.store-cart-pill:focus-visible {
    background: linear-gradient(135deg, #FFD3EA, #FBCFE8);
    border-color: rgba(214, 61, 141, 0.42);
    color: #831843;
}

.store-bottom-nav {
    display: none;
}

.store-search-popover {
    position: absolute;
    top: calc(100% + 0.45rem);
    right: 3.9rem;
    width: min(320px, 72vw);
    z-index: 1080;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
    padding: 0.5rem;
}

.store-category-popover {
    position: absolute;
    top: calc(100% + 0.3rem);
    right: 0.9rem;
    width: min(340px, 76vw);
    z-index: 1080;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    box-shadow: 0 14px 34px rgba(15, 23, 42, 0.2);
    padding: 0.5rem;
}

.store-search-form {
    margin: 0;
}

.store-search-inline {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.store-search-inline .store-filter-control {
    flex: 1 1 auto;
}

.store-search-clear {
    border: 0;
    background: transparent;
    color: var(--store-accent-dark);
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.2rem 0.25rem;
}

.store-search-dropup {
    position: fixed;
    left: max(0.65rem, env(safe-area-inset-left));
    right: max(0.65rem, env(safe-area-inset-right));
    bottom: calc(82px + env(safe-area-inset-bottom));
    z-index: 1085;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 12px;
    box-shadow: 0 -8px 28px rgba(15, 23, 42, 0.26);
    padding: 0.5rem;
}

@media (max-width: 991.98px) {
    body.store-body {
        padding-bottom: 86px;
    }

    .store-bottom-nav {
        position: fixed;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1060;
        display: grid;
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 0.45rem;
        align-items: stretch;
        padding: 0.52rem max(0.7rem, env(safe-area-inset-left)) calc(0.58rem + env(safe-area-inset-bottom)) max(0.7rem, env(safe-area-inset-right));
        background:
            linear-gradient(120deg, rgba(17, 24, 39, 0.98), rgba(30, 41, 59, 0.96)),
            repeating-linear-gradient(
                120deg,
                rgba(255, 255, 255, 0.03) 0 10px,
                rgba(255, 255, 255, 0) 10px 20px
            );
        border-top: 1px solid rgba(255, 255, 255, 0.12);
        box-shadow: 0 -14px 30px rgba(15, 23, 42, 0.34);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
    }

    .store-bottom-nav-item {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 0.2rem;
        min-height: 56px;
        border-radius: 0;
        border: 0;
        color: #F8FAFC;
        text-decoration: none;
        background: transparent;
        box-shadow: none;
        font: inherit;
        margin: 0;
        padding: 0.3rem 0.25rem;
        transition: transform 140ms ease, border-color 140ms ease, background-color 140ms ease;
    }

    .store-bottom-nav-cart {
        position: relative;
    }

    button.store-bottom-nav-item {
        cursor: pointer;
    }

    .store-bottom-nav-item:hover,
    .store-bottom-nav-item:focus-visible {
        color: #ffffff;
        border-color: transparent;
        background: rgba(231, 84, 158, 0.12);
        transform: translateY(-1px);
    }

    .store-bottom-nav-icon {
        width: 1.2rem;
        height: 1.2rem;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .store-bottom-nav-icon svg {
        width: 100%;
        height: 100%;
    }

    .store-bottom-nav-label {
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.04em;
        line-height: 1;
    }

    .store-bottom-cart-badge {
        position: absolute;
        top: 6px;
        right: 8px;
        min-width: 1.1rem;
        padding: 0.15rem 0.32rem;
        border-radius: 999px;
        background: #ef4444;
        color: #ffffff;
        font-size: 0.65rem;
        font-weight: 800;
        line-height: 1;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.28);
    }

    .store-nav-actions {
        display: none;
    }

    .store-search-popover {
        display: none;
    }

}

@media (max-width: 991.98px) {
    .store-brand-logo-inline {
        width: 136px;
        height: 92px;
    }

    .store-brand-title {
        font-size: clamp(0.95rem, 2.8vw, 1.2rem);
    }

    .store-header-grid {
        grid-template-columns: 146px 1fr;
    }

    .store-nav-pill {
        font-size: 0.86rem;
        padding: 0.46rem 0.8rem;
    }

    .store-cart-pill {
        padding-right: 1.15rem;
    }
}

@media (max-width: 767.98px) {
    .store-demo-banner {
        font-size: 0.72rem;
        letter-spacing: 0.02em;
        padding: 0.18rem 0.55rem;
    }

    .store-demo-banner-track {
        gap: 0.45rem;
        padding: 0.02rem 0.1rem;
    }

    .store-demo-banner-item {
        padding: 0.03rem 0.1rem;
    }

    .store-brand {
        min-width: 120px;
        padding: 0.08rem 0.15rem;
    }

    .store-brand-logo-inline {
        width: 108px;
        height: 72px;
    }

    .store-brand-title {
        font-size: 0.9rem;
    }

    .store-nav-actions {
        gap: 0.45rem;
    }

    .store-nav-pill {
        padding: 0.4rem 0.64rem;
        font-size: 0.8rem;
    }

    .store-cart-pill {
        padding-right: 0.9rem;
    }

    .store-header-grid {
        grid-template-columns: 116px 1fr;
    }
}

.store-whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1080;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 3.2rem;
    background: #25D366;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-whatsapp-button:hover,
.store-whatsapp-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.store-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
}

.store-whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.store-whatsapp-text {
    display: inline-block;
}

@media (max-width: 767.98px) {
    .store-whatsapp-button {
        bottom: 5.6rem;
        right: 1rem;
        padding: 0.7rem 0.9rem;
        font-size: 0.84rem;
    }

    .store-whatsapp-text {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .store-whatsapp-button {
        bottom: calc(5.4rem + env(safe-area-inset-bottom));
    }
}

.store-cart-badge {
    min-width: 1.6rem;
    padding: 0.36rem 0.45rem;
    box-shadow: 0 8px 18px rgba(214, 61, 141, 0.35);
}

.store-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6)),
        linear-gradient(45deg, rgba(17, 24, 39, 0.25), rgba(231, 84, 158, 0.15)),
        radial-gradient(circle at 20% 80%, rgba(17, 24, 39, 0.32), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(231, 84, 158, 0.22), transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.5), transparent 70%);
    backdrop-filter: blur(25px) saturate(200%) brightness(1.1);
    -webkit-backdrop-filter: blur(25px) saturate(200%) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--store-radius-xl);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.25),
        0 8px 32px rgba(231, 84, 158, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(15, 23, 42, 0.1);
    overflow: hidden;
    text-decoration: none;
}

.store-whatsapp-button {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 1080;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 3.2rem;
    background: #25D366;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.85rem 1rem;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 700;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.store-whatsapp-button:hover,
.store-whatsapp-button:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.store-whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
}

.store-whatsapp-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.store-whatsapp-text {
    display: inline-block;
}

@media (max-width: 767.98px) {
    .store-whatsapp-button {
        bottom: 5.6rem;
        right: 1rem;
        padding: 0.7rem 0.9rem;
        font-size: 0.84rem;
    }

    .store-whatsapp-text {
        display: none;
    }
}

@media (max-width: 991.98px) {
    .store-whatsapp-button {
        bottom: calc(5.4rem + env(safe-area-inset-bottom));
    }
}

.store-cart-badge {
    min-width: 1.6rem;
    padding: 0.36rem 0.45rem;
    box-shadow: 0 8px 18px rgba(214, 61, 141, 0.35);
}

.store-hero {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(255, 255, 255, 0.6)),
        linear-gradient(45deg, rgba(17, 24, 39, 0.25), rgba(231, 84, 158, 0.15)),
        radial-gradient(circle at 20% 80%, rgba(17, 24, 39, 0.32), transparent 60%),
        radial-gradient(circle at 80% 20%, rgba(231, 84, 158, 0.22), transparent 60%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.5), transparent 70%);
    backdrop-filter: blur(25px) saturate(200%) brightness(1.1);
    -webkit-backdrop-filter: blur(25px) saturate(200%) brightness(1.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--store-radius-xl);
    box-shadow:
        0 20px 60px rgba(15, 23, 42, 0.25),
        0 8px 32px rgba(231, 84, 158, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(15, 23, 42, 0.1);
    overflow: hidden;
    position: relative;
}

.store-hero::after {
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1)),
        linear-gradient(45deg, rgba(17, 24, 39, 0.15), rgba(231, 84, 158, 0.08)),
        radial-gradient(circle at 30% 70%, rgba(17, 24, 39, 0.2), transparent 40%),
        radial-gradient(circle at 70% 30%, rgba(231, 84, 158, 0.15), transparent 40%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.store-hero-content,
.store-hero-showcase {
    position: relative;
    z-index: 1;
}

.store-hero-content {
    padding: 2.6rem;
}

.store-kicker {
    color: var(--store-jewel);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.store-hero-title,
.store-section-title,
.product-detail-title {
    font-family: "Playfair Display", "Times New Roman", serif;
    letter-spacing: -0.03em;
}

.store-hero-title {
    font-size: clamp(3rem, 5vw, 5.2rem);
    line-height: 0.92;
    margin-bottom: 1rem;
    max-width: 10ch;
}

.store-hero-copy {
    color: var(--store-muted);
    font-size: 1.08rem;
    line-height: 1.9;
    letter-spacing: 0.01em;
    max-width: 54ch;
}

.store-hero-stats {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 2rem;
}

.store-stat-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px) saturate(180%) brightness(1.05);
    -webkit-backdrop-filter: blur(15px) saturate(180%) brightness(1.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--store-radius-md);
    box-shadow:
        0 8px 32px rgba(15, 23, 42, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(15, 23, 42, 0.08);
    padding: 1rem 1.1rem;
}

.store-stat-card strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.store-stat-card span {
    color: var(--store-muted);
    font-size: 0.88rem;
}

.store-hero-showcase {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    height: 100%;
    padding: 2.2rem;
}

.store-showcase-panel {
    backdrop-filter: blur(12px) saturate(170%) brightness(1.02);
    -webkit-backdrop-filter: blur(12px) saturate(170%) brightness(1.02);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--store-radius-lg);
    box-shadow:
        0 12px 40px rgba(15, 23, 42, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(15, 23, 42, 0.05);
    min-height: 210px;
    overflow: hidden;
}

.store-showcase-panel.featured {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0)),
        linear-gradient(135deg, #111827, #334155);
    color: #F9F7F4;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.35rem;
}

.store-showcase-panel.featured strong {
    font-size: 1.35rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 0.55rem;
}

.store-showcase-panel.featured span,
.store-showcase-panel.soft span {
    display: block;
    font-size: 0.92rem;
    line-height: 1.5;
}

.store-showcase-panel.soft {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(245, 238, 230, 0.3));
    backdrop-filter: blur(18px) saturate(160%) brightness(1.03);
    -webkit-backdrop-filter: blur(18px) saturate(160%) brightness(1.03);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--store-ink);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.35rem;
}

.store-showcase-panel.soft strong {
    color: var(--store-jewel);
    font-size: 1rem;
    margin-bottom: 0.45rem;
}

.store-section-head {
    align-items: end;
    display: grid;
    gap: 1rem;
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 1fr);
    margin: 2.4rem 0 1.3rem;
}

.store-section-head:first-child,
.product-description-card .store-section-head,
.product-related-card .store-section-head {
    margin-top: 0;
}

.store-section-title {
    color: var(--store-jewel);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin: 0;
    line-height: 1.05;
}

.store-section-title a {
    color: inherit;
    text-decoration: none;
    transition: color 160ms ease;
}

.store-section-title a:hover,
.store-section-title a:focus-visible {
    color: var(--store-accent-dark);
    text-decoration: none;
}

.store-section-copy {
    color: var(--store-muted);
    margin: 0;
    max-width: 56ch;
    font-size: 1rem;
    line-height: 1.85;
    letter-spacing: 0.01em;
}

.store-catalog-heading {
    margin: 0.65rem 0 0.7rem;
}

.store-catalog-heading .store-section-title {
    font-family: "Manrope", "Avenir Next", "Segoe UI", sans-serif;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: 0;
}

.store-catalog-heading .store-section-copy {
    font-size: 0.88rem;
    line-height: 1.5;
    margin-top: 0.25rem;
}

.store-head-copy {
    min-width: 0;
}

.store-head-filter {
    min-width: 0;
    width: 100%;
}

.store-quick-filter-form {
    background:
        linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 249, 241, 0.96)),
        radial-gradient(circle at top right, rgba(230, 126, 91, 0.16), rgba(230, 126, 91, 0));
    border: 1px solid rgba(122, 63, 22, 0.15);
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-soft);
    display: grid;
    gap: 0.65rem;
    grid-template-columns: minmax(120px, 0.95fr) minmax(180px, 1.6fr);
    margin: 0;
    padding: 0.8rem;
}

.store-quick-field {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.store-quick-field label {
    color: var(--store-muted);
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-quick-control {
    border-radius: 12px;
    min-height: 2.3rem;
}

.store-quick-filter-note {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.72rem;
    grid-column: 1 / -1;
    gap: 0.55rem;
    line-height: 1.35;
}

.store-quick-filter-note-text {
    display: inline;
}

.store-quick-reset-link {
    appearance: none;
    align-items: center;
    background: rgba(122, 63, 22, 0.1);
    border: 1px solid rgba(122, 63, 22, 0.22);
    border-radius: 999px;
    color: var(--store-jewel);
    cursor: pointer;
    display: inline-flex;
    font-family: inherit;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
    padding: 0.26rem 0.62rem;
    text-decoration: none;
    transition: border-color 160ms ease, background-color 160ms ease, color 160ms ease;
}

.store-quick-reset-link:hover {
    background: rgba(122, 63, 22, 0.15);
    border-color: rgba(122, 63, 22, 0.34);
    color: var(--store-accent-dark);
}

.store-catalog-block {
    transition: opacity 160ms ease;
}

.store-catalog-block.is-loading {
    opacity: 0.45;
    pointer-events: none;
}

.store-filter-summary {
    align-items: center;
    border-bottom: 1px solid rgba(122, 63, 22, 0.1);
    display: flex;
    gap: 0.6rem;
    justify-content: space-between;
    margin-bottom: 0.65rem;
    padding: 0 0 0.45rem;
}

.store-filter-path {
    align-items: center;
    color: var(--store-ink);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.82rem;
    gap: 0.28rem;
    line-height: 1.3;
    min-width: 0;
}

.store-filter-path a {
    color: var(--store-accent-dark);
    text-decoration: none;
}

.store-filter-path a:hover,
.store-filter-path a:focus-visible {
    text-decoration: underline;
}

.store-filter-result-count {
    color: var(--store-muted);
    font-size: 0.78rem;
    margin-left: 0.28rem;
}

.store-filter-clear-link {
    align-items: center;
    color: var(--store-accent-dark);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 800;
    justify-content: center;
    min-height: 1.4rem;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.store-filter-clear-link:hover,
.store-filter-clear-link:focus-visible {
    color: var(--store-accent-dark);
}

.store-home-catalog {
    display: grid;
    gap: clamp(2.4rem, 4.2vw, 4.5rem);
}

.store-catalog-section {
    min-width: 0;
}

.store-inline-section-head {
    align-items: end;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: clamp(0.9rem, 1.5vw, 1.35rem);
}

.store-inline-section-title {
    color: var(--store-ink);
    font-size: clamp(1.28rem, 1.2vw + 0.95rem, 1.9rem);
    font-weight: 800;
    line-height: 1.12;
    margin: 0;
}

.store-category-grid.store-parent-category-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
    justify-content: center;
    scroll-margin-top: 140px;
}

.store-category-grid.store-parent-category-grid .category-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    flex: 0 1 clamp(190px, 18vw, 260px);
    overflow: visible;
    width: auto;
}

.store-category-grid.store-parent-category-grid .category-card:hover {
    box-shadow: none;
}

.store-parent-category-grid .category-card-media {
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(16, 16, 24, 0.06);
}

.store-parent-category-grid .category-card:hover .category-card-media {
    box-shadow: 0 18px 40px rgba(16, 16, 24, 0.09);
}

.store-parent-category-grid .category-card-body {
    background: transparent;
    padding: 0.12rem 0 0.05rem;
}

.store-parent-category-section .store-inline-section-head {
    justify-content: center;
    margin-bottom: clamp(1.05rem, 2vw, 1.65rem);
    text-align: center;
}

.store-parent-category-section .store-inline-section-title {
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    gap: 0.45rem;
    color: var(--store-ink);
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: clamp(1.85rem, 2.6vw + 0.75rem, 3.05rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.05;
}

.store-parent-category-section .store-inline-section-title::after {
    content: "";
    display: block;
    width: min(92px, 36vw);
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, transparent, var(--store-accent), transparent);
}

.store-child-category-list {
    display: grid;
    gap: clamp(2rem, 3.4vw, 3.6rem);
}

.store-parent-product-group {
    display: grid;
    gap: clamp(1.2rem, 2vw, 1.8rem);
    min-width: 0;
    padding-top: clamp(0.45rem, 1.2vw, 0.95rem);
    scroll-margin-top: 140px;
}

.store-parent-product-title {
    align-items: center;
    color: var(--store-accent-dark);
    display: flex;
    font-size: clamp(0.86rem, 0.55vw + 0.7rem, 1.05rem);
    font-weight: 800;
    gap: 0.85rem;
    justify-content: center;
    letter-spacing: 0.12em;
    margin: 0;
    padding-bottom: 0.15rem;
    text-align: center;
    text-transform: uppercase;
}

.store-parent-product-title::before,
.store-parent-product-title::after {
    background: linear-gradient(90deg, transparent, rgba(214, 61, 141, 0.42));
    border-radius: 999px;
    content: "";
    display: block;
    flex: 1 1 72px;
    height: 1px;
    max-width: 150px;
}

.store-parent-product-title::after {
    background: linear-gradient(90deg, rgba(214, 61, 141, 0.42), transparent);
}

.store-child-category-section {
    display: grid;
    gap: clamp(0.85rem, 1.5vw, 1.15rem);
    min-width: 0;
    padding-top: clamp(0.45rem, 1vw, 0.8rem);
}

.store-child-category-head {
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
    justify-content: flex-start;
    min-width: 0;
    padding-bottom: clamp(0.55rem, 1.1vw, 0.8rem);
}

.store-child-category-title {
    align-items: center;
    color: var(--store-jewel);
    display: inline-flex;
    font-size: clamp(1.05rem, 0.75vw + 0.9rem, 1.42rem);
    font-weight: 800;
    gap: 0.55rem;
    line-height: 1.25;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.store-child-category-title::before {
    background: var(--store-accent);
    border-radius: 999px;
    content: "";
    display: inline-block;
    flex: 0 0 auto;
    height: 0.52rem;
    width: 0.52rem;
}

.store-child-category-link {
    align-items: center;
    background: var(--store-accent-soft);
    border: 1px solid rgba(214, 61, 141, 0.16);
    border-radius: 999px;
    color: var(--store-accent-dark);
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1;
    padding: 0.32rem 0.62rem;
    text-decoration: none;
    text-transform: uppercase;
}

.store-child-category-link:hover,
.store-child-category-link:focus-visible {
    background: #ffffff;
    border-color: rgba(214, 61, 141, 0.32);
    color: var(--store-accent-dark);
    text-decoration: none;
}

.store-category-grid {
    align-items: stretch;
    display: grid;
    gap: 0.9rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.category-card {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    height: auto;
    max-width: none;
    min-height: 200px;
    min-width: 0;
    width: 100%;
    overflow: visible;
    position: relative;
    transition: transform 180ms ease;
}

.category-card:hover {
    transform: translateY(-6px);
}

.category-card-link {
    color: inherit;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    min-height: 100%;
    position: relative;
    text-decoration: none;
    z-index: 1;
}

.category-card-link:hover {
    color: inherit;
}

.category-card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #f2f2f2, #eaeaea);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(16, 16, 24, 0.06);
    overflow: hidden;
    position: relative;
    transition: box-shadow 180ms ease;
}

.category-card:hover .category-card-media {
    box-shadow: 0 18px 40px rgba(16, 16, 24, 0.09);
}

.category-card-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    display: block;
}

.category-card-placeholder {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 1rem;
}

.category-card-body {
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.16rem 0 0.05rem;
}

.category-card-title {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--store-jewel);
    margin: 0;
    text-align: center;
    transition: color 160ms ease;
}

.category-card-link:hover .category-card-title,
.category-card-link:focus-visible .category-card-title {
    color: var(--store-accent-dark);
}

.category-card-count,
.category-card-overlay,
.category-card-name,
.category-card-label {
    display: none;
}

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

.product-card {
    background: transparent;
    border-radius: 12px;
    overflow: visible;
    border: 0;
    box-shadow: none;
    transition: transform 180ms ease;
    display: flex;
    flex-direction: column;
    position: relative;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-card-has-options {
    background: transparent;
    border: 0;
    box-shadow: none;
    overflow: visible;
}

.product-card-has-options:hover {
    box-shadow: none;
}

.product-card-has-options .product-card-link {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(16, 16, 24, 0.06);
    overflow: hidden;
}

.product-card-has-options:hover .product-card-link {
    box-shadow: 0 18px 40px rgba(16, 16, 24, 0.09);
}

.product-card-link {
    background: transparent;
    color: inherit;
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    text-decoration: none;
}

.product-card-link:hover {
    color: inherit;
}

.product-card-media-link {
    display: block;
    height: 100%;
    width: 100%;
}

.product-card-media {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(180deg, #f2f2f2, #eaeaea);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(16, 16, 24, 0.06);
    overflow: hidden;
    position: relative;
}

.product-card-image {
    height: 100%;
    object-fit: cover;
    object-position: center;
    width: 100%;
    display: block;
}

.product-card:hover .product-card-image {
    transform: scale(1.01);
}

.product-card-placeholder {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    height: 100%;
    justify-content: center;
    padding: 1rem;
}

.product-card-body {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 12px 14px;
}

.product-card-info {
    flex: 1 1 auto;
    min-width: 0;
}

.product-card-sub {
    font-size: 12px;
    color: var(--store-muted);
    margin-top: 6px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-card-badge {
    background: transparent;
    color: var(--store-jewel, #0F6B66);
    padding: 0;
    border-radius: 0;
    font-weight: 800;
    font-size: 1rem;
    white-space: nowrap;
}

.product-card-price-group {
    align-items: flex-start;
    display: flex;
    flex-direction: row;
    gap: 0.2rem;
    flex-wrap: wrap;
}

.product-card-meta-row {
    align-items: flex-start;
    display: flex;
    justify-content: space-between;
    gap: 0.65rem;
}

.product-card-actual-price {
    color: var(--store-muted);
    font-size: 0.82rem;
    line-height: 1.2;
    text-decoration: line-through;
}

.product-card-action-col {
    align-items: center;
    display: flex;
    justify-content: flex-end;
    flex-shrink: 0;
}

.product-card-add-form {
    margin: 0;
}

.product-card-cart-button {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--store-jewel);
    display: inline-flex;
    justify-content: center;
    padding: 0;
    width: 24px;
    height: 24px;
}

.product-card-cart-button:hover,
.product-card-cart-button:focus-visible {
    color: var(--store-accent-dark);
}

.product-card-cart-button svg {
    width: 20px;
    height: 20px;
}

.product-card-image-cart-form {
    bottom: 10px;
    margin: 0;
    position: absolute;
    right: 10px;
    z-index: 2;
}

.product-card-image-cart-button {
    align-items: center;
    background: #fff;
    border: 0;
    border-radius: 999px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.14);
    color: var(--store-jewel);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    padding: 0;
    width: 36px;
}

.product-card-image-cart-button svg {
    width: 20px;
    height: 20px;
}

.product-card-image-cart-button .icon-cart-check {
    display: none;
}

.product-card-image-cart-button.is-in-cart .icon-cart {
    display: none;
}

.product-card-image-cart-button.is-in-cart .icon-cart-check {
    display: block;
}

.product-card-image-cart-button.is-in-cart {
    position: relative;
}

.product-card-image-cart-button.is-in-cart::after {
    align-items: center;
    background: #16a34a;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    content: "✓";
    display: inline-flex;
    font-size: 0.66rem;
    font-weight: 800;
    height: 16px;
    justify-content: center;
    line-height: 1;
    position: absolute;
    right: -4px;
    top: -4px;
    width: 16px;
}

.product-card-select-row {
    align-items: center;
    display: flex;
    justify-content: center;
}

.product-card:hover .product-card-title,
.product-card:hover .product-card-badge,
.product-card:hover .product-card-select-link,
.product-card:hover .product-card-cart-button,
.product-card:hover .product-card-image-cart-button {
    color: var(--store-accent-dark);
}

.product-card-topline {
    align-items: center;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
}

.product-chip {
    background: rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 999px;
    color: var(--store-jewel);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 0.32rem 0.72rem;
    text-transform: uppercase;
}

.product-card-cta {
    color: var(--store-muted);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--store-ink);
    margin: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-title-link {
    color: inherit;
    text-decoration: none;
}

.product-card-title-link:hover,
.product-card-title-link:focus-visible {
    color: var(--store-accent-dark);
    text-decoration: none;
}

.product-price-row {
    align-items: baseline;
    display: flex;
    gap: 0.5rem;
    justify-content: space-between;
    margin-top: auto;
}

.product-price-value {
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.product-detail-actual-price {
    color: var(--store-muted);
    font-size: 0.98rem;
    font-weight: 600;
    text-decoration: line-through;
}

.product-price-unit {
    color: var(--store-muted);
    font-size: clamp(0.78rem, 1.4vw, 0.92rem);
    text-align: right;
}

.product-card-form {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding: 1rem 1.25rem 1.25rem;
    text-align: center;
}

.product-card-select-form {
    background: transparent;
    border-top: 0;
    margin-top: auto;
    padding: 0.12rem 1rem 0.05rem;
    position: static;
}

.product-card-qty-control {
    grid-template-columns: 42px minmax(56px, 1fr) 42px;
}

.product-card-qty-input {
    min-height: 44px;
}

.product-card-option-input,
.product-detail-option-input {
    border-radius: 12px;
}

.product-card-button {
    border-radius: 12px;
}

.product-card-status {
    min-height: 1.35rem;
}

.product-card-select-link {
    align-items: center;
    background: transparent;
    border: 0;
    color: var(--store-jewel);
    display: inline-flex;
    gap: 0.35rem;
    font-size: 0.76rem;
    font-weight: 800;
    line-height: 1;
    padding: 0;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-card-select-link::after {
    content: none;
}

.product-card-select-link::before {
    content: none;
}

.product-card-select-link:hover,
.product-card-select-link:focus-visible {
    color: var(--store-accent-dark);
    text-decoration: none;
}

.product-card-has-options:hover .product-card-select-link {
    color: var(--store-accent-dark);
}

.store-breadcrumb {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: clamp(0.78rem, 1.6vw, 0.9rem);
    gap: 0.34rem;
    line-height: 1.35;
    margin: 0 0 0.8rem;
}

.store-breadcrumb a {
    color: var(--store-accent-dark);
    font-weight: 700;
    text-decoration: none;
}

.store-breadcrumb a:hover,
.store-breadcrumb a:focus-visible {
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.store-breadcrumb span:last-child {
    color: var(--store-ink);
    font-weight: 700;
    overflow-wrap: anywhere;
}

@media (max-width: 420px) {
    .product-card-title {
        font-size: 14px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }
    .product-card-badge {
        font-size: 12px;
        padding: 5px 8px;
    }
}

.product-detail-layout {
    display: grid;
    gap: clamp(1rem, 2.2vw, 1.8rem);
    grid-template-columns: minmax(0, 620px) minmax(300px, 420px);
    justify-content: center;
    margin-bottom: 2rem;
}

.product-gallery-card,
.product-summary-card,
.product-description-card,
.product-related-card,
.store-empty-card {
    background: var(--store-surface);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: var(--store-radius-xl);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.product-gallery-card,
.product-summary-card {
    padding: clamp(0.9rem, 1.9vw, 1.25rem);
}

.product-gallery-card {
    align-self: start;
    background: transparent;
    border: 0;
    box-shadow: none;
    height: fit-content;
    padding: 0;
}

.product-gallery-stage {
    display: grid;
    gap: clamp(0.75rem, 1.8vw, 1rem);
}

.product-main-frame {
    aspect-ratio: 1 / 1;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    margin: 0 auto;
    max-width: 500px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.product-main-image {
    display: block;
    height: 100%;
    object-fit: contain;
    object-position: center;
    padding: 0;
    width: 100%;
    transition: transform 180ms ease;
}

.product-main-frame:hover .product-main-image {
    transform: scale(1.02);
}

.product-image-zoom-btn {
    align-items: center;
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.16);
    border-radius: 50%;
    bottom: 10px;
    color: #0F172A;
    display: inline-flex;
    height: 36px;
    justify-content: center;
    padding: 0;
    position: absolute;
    right: 10px;
    transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
    width: 36px;
    z-index: 2;
}

.product-image-zoom-btn:hover,
.product-image-zoom-btn:focus-visible {
    background: #0F766E;
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.28);
    color: #ffffff;
    transform: translateY(-1px);
}

.product-thumb-grid {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    margin-top: 0.2rem;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.product-thumb {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    aspect-ratio: 1 / 1;
    min-height: 54px;
    transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.06);
}

.product-thumb:hover,
.product-thumb.is-active {
    border-color: rgba(15, 118, 110, 0.5);
    box-shadow: 0 8px 18px rgba(15, 118, 110, 0.18);
    transform: translateY(-2px);
    background: rgba(240, 253, 250, 0.95);
}

.product-thumb img {
    aspect-ratio: 1 / 1;
    display: block;
    object-fit: contain;
    background: #fff;
    padding: 0.25rem;
    width: 100%;
}

@media (min-width: 992px) {
    .product-gallery-stage {
        grid-template-columns: 1fr;
    }

    .product-thumb-grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .product-main-frame {
        max-width: 460px;
    }

    .product-thumb-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-width: 246px;
        gap: 0.45rem;
    }

    .product-thumb {
        min-height: 42px;
    }
}

.product-summary-card {
    display: flex;
    flex-direction: column;
    gap: clamp(0.65rem, 1.6vw, 0.92rem);
}

.product-detail-title {
    font-size: clamp(1.35rem, 3.1vw, 2.05rem);
    font-weight: 800;
    line-height: 1.16;
    margin: 0;
    overflow-wrap: anywhere;
}

.product-summary-copy {
    color: var(--store-muted);
    font-size: clamp(0.9rem, 1.6vw, 1.05rem);
    line-height: 1.7;
    margin: 0;
}

.product-meta-grid {
    color: var(--store-muted);
    line-height: 1.75;
    margin: 0;
}

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

.product-meta-card {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(122, 63, 22, 0.1);
    border-radius: 18px;
    padding: clamp(0.75rem, 1.6vw, 1rem);
}

.product-meta-label {
    color: var(--store-muted);
    display: block;
    font-size: clamp(0.66rem, 1.25vw, 0.82rem);
    letter-spacing: 0.08em;
    margin-bottom: 0.35rem;
    text-transform: uppercase;
}

.product-meta-value {
    display: block;
    font-size: clamp(0.86rem, 1.5vw, 1rem);
    font-weight: 700;
    overflow-wrap: anywhere;
}

.product-detail-form {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    padding: clamp(0.68rem, 1.5vw, 0.95rem);
}

.product-select-label {
    color: #0F172A;
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.product-size-option {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    color: var(--store-ink);
    font-weight: 600;
    min-width: 78px;
    padding: 0.34rem 0.55rem;
    transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease, color 160ms ease;
}

.product-size-option small {
    color: var(--store-muted);
    font-weight: 600;
}

.product-size-option:hover,
.product-summary-card .btn-check:focus-visible + .product-size-option {
    background: rgba(240, 253, 250, 0.95);
    border-color: rgba(15, 118, 110, 0.55);
    box-shadow: 0 0 0 0.14rem rgba(15, 118, 110, 0.12);
    color: #0F766E;
}

.product-summary-card .btn-check:checked + .product-size-option {
    background: #ecfeff;
    border-color: #0F766E;
    box-shadow: 0 6px 14px rgba(15, 118, 110, 0.16);
    color: #0F766E;
}

.product-summary-card .btn-check:checked + .product-size-option small {
    color: rgba(15, 118, 110, 0.86);
}

.product-option-row {
    background: rgba(255, 255, 255, 0.88);
    border-color: rgba(122, 63, 22, 0.18) !important;
}

.product-price-unit-left {
    background: linear-gradient(135deg, rgba(231, 84, 158, 0.16), rgba(252, 231, 243, 0.8));
    border: 1px solid rgba(214, 61, 141, 0.32);
    border-radius: 999px;
    color: #9D174D;
    display: inline-flex;
    font-size: clamp(0.8rem, 1.4vw, 0.95rem);
    font-weight: 800;
    letter-spacing: 0.03em;
    padding: 0.3rem 0.72rem;
    text-align: center;
    text-transform: uppercase;
}

.product-detail-actions {
    align-items: stretch;
    display: grid;
    gap: 0.7rem;
    grid-template-columns: minmax(190px, 220px) minmax(0, 1fr);
}

.product-detail-actions-single {
    grid-template-columns: minmax(190px, 220px);
}

.product-qty-control {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.18);
    border-radius: 10px;
    display: grid;
    grid-template-columns: 42px minmax(60px, 1fr) 42px;
    overflow: hidden;
    max-width: 176px;
}

.product-qty-button {
    background: #ffffff;
    border: 0;
    color: #0F172A;
    cursor: pointer;
    font-size: clamp(0.92rem, 2vw, 1.12rem);
    font-weight: 800;
    line-height: 1;
    transition: background-color 160ms ease, color 160ms ease;
}

.product-qty-button:hover {
    background: rgba(240, 253, 250, 0.95);
    color: #0F766E;
}

.product-qty-button:focus-visible {
    background: rgba(240, 253, 250, 0.95);
    outline: 2px solid rgba(15, 118, 110, 0.3);
    outline-offset: -2px;
    color: #0F766E;
}

.product-detail-input {
    appearance: textfield;
    border: 0;
    border-left: 1px solid rgba(15, 23, 42, 0.14);
    border-radius: 0;
    border-right: 1px solid rgba(15, 23, 42, 0.14);
    font-size: clamp(0.84rem, 1.5vw, 0.92rem);
    font-weight: 700;
    min-height: clamp(44px, 6vw, 52px);
    text-align: center;
}

.product-detail-input:focus {
    box-shadow: none;
}

.product-detail-input::-webkit-outer-spin-button,
.product-detail-input::-webkit-inner-spin-button,
.product-card-option-input[type="number"]::-webkit-outer-spin-button,
.product-card-option-input[type="number"]::-webkit-inner-spin-button,
.product-detail-option-input[type="number"]::-webkit-outer-spin-button,
.product-detail-option-input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.product-card-option-input[type="number"],
.product-detail-option-input[type="number"] {
    appearance: textfield;
}

.product-detail-button {
    background: #0F766E;
    border: 1px solid #0F766E;
    border-radius: 12px;
    min-height: 42px;
    padding: 0.5rem 0.9rem;
    transition: transform 150ms ease, box-shadow 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.product-detail-button:hover,
.product-detail-button:focus-visible {
    background: #0C5F59;
    border-color: #0C5F59;
    box-shadow: 0 10px 20px rgba(15, 118, 110, 0.28);
    transform: translateY(-1px);
}

.product-price-savings {
    align-items: center;
    color: #0f766e;
    display: inline-flex;
    font-size: 0.84rem;
    font-weight: 700;
    gap: 0.45rem;
}

.product-discount-badge {
    background: rgba(20, 184, 166, 0.12);
    border: 1px solid rgba(15, 118, 110, 0.3);
    border-radius: 999px;
    color: #0f766e;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    padding: 0.2rem 0.55rem;
    text-transform: uppercase;
}

.product-detail-actions-row {
    display: grid;
    gap: 0.55rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-button-alt {
    align-items: center;
    display: inline-flex;
    font-weight: 700;
    justify-content: center;
    min-height: 42px;
    padding: 0.5rem 0.9rem;
}

.product-description-collapse summary {
    color: var(--store-ink);
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

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

.product-zoom-modal {
    inset: 0;
    position: fixed;
    z-index: 1200;
}

.product-zoom-modal-backdrop {
    background: rgba(15, 23, 42, 0.72);
    inset: 0;
    position: absolute;
}

.product-zoom-modal-card {
    inset: 0;
    margin: auto;
    max-height: 90vh;
    max-width: min(94vw, 920px);
    position: absolute;
}

.product-zoom-image {
    border-radius: 14px;
    height: 100%;
    max-height: 90vh;
    object-fit: contain;
    width: 100%;
}

.product-zoom-close {
    background: rgba(255, 255, 255, 0.9);
    border: 0;
    border-radius: 999px;
    font-size: 1.5rem;
    height: 36px;
    line-height: 1;
    position: absolute;
    right: 8px;
    top: 8px;
    width: 36px;
}

.product-detail-status {
    min-height: 1.35rem;
}

.cart-qty-form {
    max-width: 220px;
}

.cart-qty-control {
    width: 100%;
}

.cart-qty-input {
    min-height: 46px;
}

.cart-qty-status {
    min-height: 1.2rem;
}

.cart-page-title {
    margin-bottom: 1.15rem;
}

.cart-table-wrap {
    background: var(--store-surface);
    border: 1px solid rgba(122, 63, 22, 0.12);
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-soft);
    overflow: hidden;
}

.cart-table {
    margin-bottom: 0;
}

.cart-table > :not(caption) > * > * {
    background: transparent;
    border-color: rgba(122, 63, 22, 0.14);
    vertical-align: middle;
}

.cart-table thead th {
    background: rgba(96, 45, 24, 0.94);
    border-color: rgba(255, 255, 255, 0.08);
    color: #fff8f2;
    font-size: 0.77rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.cart-product-thumb,
.cart-image-fallback {
    border-radius: 14px;
    height: 72px;
    width: 72px;
}

.cart-product-thumb {
    border: 1px solid rgba(122, 63, 22, 0.16);
    display: block;
    object-fit: cover;
}

.cart-image-fallback {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 224, 210, 0.32), rgba(255, 196, 176, 0.74));
    border: 1px solid rgba(122, 63, 22, 0.16);
    color: var(--store-muted);
    display: flex;
    font-size: 0.7rem;
    font-weight: 700;
    justify-content: center;
    line-height: 1.2;
    padding: 0.35rem;
    text-align: center;
}

.cart-cell-product {
    font-weight: 700;
}

.cart-cell-price {
    font-weight: 700;
}

.cart-summary-bar {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 0.85rem;
    justify-content: space-between;
    margin-top: 1rem;
}

.cart-total-text {
    margin: 0;
}

.cart-checkout-btn {
    border-radius: 12px;
    padding: 0.62rem 1.08rem;
}

.product-description-card,
.product-related-card,
.store-empty-card {
    padding: 1.4rem;
}

.store-static-page {
    margin: 0 auto 2rem;
    max-width: 920px;
}

.store-static-hero {
    margin-bottom: 1.15rem;
}

.store-static-content {
    background: var(--store-surface);
    border: 1px solid rgba(122, 63, 22, 0.12);
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow-soft);
    padding: 1.35rem;
}

.store-static-section + .store-static-section {
    border-top: 1px solid rgba(122, 63, 22, 0.1);
    margin-top: 1rem;
    padding-top: 1rem;
}

.store-static-section h2 {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 0 0 0.45rem;
}

.store-static-section p {
    color: var(--store-muted);
    line-height: 1.75;
    margin: 0;
}

.store-static-section p + p {
    margin-top: 0.55rem;
}

.product-description-body {
    color: var(--store-muted);
    line-height: 1.85;
}

.product-related-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    overflow-x: auto;
    overscroll-behavior-x: contain;
    padding-bottom: 0.45rem;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
}

.product-related-hint {
    align-items: center;
    color: var(--store-accent-dark);
    display: inline-flex;
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-related-grid::-webkit-scrollbar {
    height: 8px;
}

.product-related-grid::-webkit-scrollbar-thumb {
    background: rgba(96, 45, 24, 0.34);
    border-radius: 999px;
}

.product-related-link {
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(122, 63, 22, 0.1);
    border-radius: 20px;
    color: inherit;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc((100% - 5rem) / 5.1);
    height: 390px;
    min-width: calc((100% - 5rem) / 5.1);
    overflow: hidden;
    scroll-snap-align: start;
    text-decoration: none;
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.product-related-link:hover {
    border-color: rgba(122, 63, 22, 0.22);
    box-shadow: var(--store-shadow-soft);
    color: inherit;
    transform: translateY(-3px);
}

.product-related-image,
.product-related-placeholder {
    flex: 0 0 182px;
    width: 100%;
}

.product-related-image {
    object-fit: cover;
}

.product-related-placeholder {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 224, 210, 0.3), rgba(255, 196, 176, 0.75));
    color: var(--store-muted);
    display: flex;
    justify-content: center;
}

.product-related-body {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1rem;
}

.product-related-body .product-card-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-related-body .product-price-row {
    margin-top: auto;
}

.store-footer {
    margin-top: auto;
    background:
        linear-gradient(90deg, rgba(17, 24, 39, 0.95), rgba(30, 41, 59, 0.94)),
        repeating-linear-gradient(
            115deg,
            rgba(255, 255, 255, 0.03) 0 12px,
            rgba(255, 255, 255, 0) 12px 24px
        );
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 1.4rem 0 0.85rem;
}

.store-footer-inner {
    align-items: start;
    display: grid;
    gap: 1.5rem;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
}

.store-footer-brand {
    align-items: start;
    display: grid;
    gap: 0.55rem;
}

.store-footer-logo-link {
    display: inline-flex;
    text-decoration: none;
}

.store-footer-logo {
    display: block;
    height: auto;
    max-width: min(100%, 230px);
    object-fit: contain;
    width: 100%;
}

.store-footer-title {
    color: #F9F7F4;
    display: inline-flex;
    font-family: "Playfair Display", "Times New Roman", serif;
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.45rem;
    text-decoration: none;
}

.store-footer-copy {
    color: rgba(249, 247, 244, 0.78);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    max-width: 34ch;
}

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

.store-footer-group-toggle {
    align-items: center;
    background: transparent;
    border: 0;
    color: rgba(249, 247, 244, 0.92);
    cursor: pointer;
    display: flex;
    font-size: 0.75rem;
    font-weight: 800;
    justify-content: space-between;
    letter-spacing: 0.08em;
    line-height: 1.2;
    margin: 0 0 0.5rem;
    padding: 0;
    text-align: left;
    text-transform: uppercase;
}

.store-footer-toggle-icon {
    display: inline-flex;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1;
    transform: rotate(0deg);
    transition: transform 180ms ease;
}

.store-footer-link-group.is-open .store-footer-toggle-icon {
    transform: rotate(180deg);
}

.store-footer-group-links {
    display: none;
}

.store-footer-link-group.is-open .store-footer-group-links {
    display: block;
}

.store-footer-link-group a {
    color: rgba(226, 232, 240, 0.9);
    display: block;
    font-size: 0.88rem;
    line-height: 1.35;
    margin-top: 0.38rem;
    text-decoration: none;
}

.store-footer-link-group a:hover,
.store-footer-link-group a:focus-visible,
.store-footer-title:hover,
.store-footer-title:focus-visible {
    color: #FFFFFF;
    text-decoration: underline;
    text-underline-offset: 0.16em;
}

.store-footer-legal {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    margin-top: 1rem;
    padding-top: 0.8rem;
}

.store-footer-legal-copy {
    color: rgba(226, 232, 240, 0.86);
    font-size: 0.78rem;
    margin: 0;
    text-align: center;
}

@media (max-width: 991.98px) {
    :root {
        --store-page-gutter: clamp(0.9rem, 3.6vw, 1.5rem);
    }

    .store-section-head {
        align-items: start;
        grid-template-columns: 1fr;
    }

    .store-home-catalog {
        gap: 2.4rem;
    }

    .store-parent-category-section .store-inline-section-title {
        font-size: clamp(1.8rem, 3.2vw + 1rem, 2.45rem);
    }

    .store-parent-product-title {
        font-size: 0.86rem;
    }

    .store-child-category-title {
        font-size: 1.12rem;
    }

    .store-quick-filter-form {
        grid-template-columns: 1fr 1fr;
    }

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

    .category-card,
    .product-card {
        height: auto;
        max-width: none;
        min-width: 0;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
        justify-items: center;
    }

    .product-gallery-card {
        max-width: 500px;
        width: 100%;
    }

    .product-main-frame {
        max-width: 500px;
    }

    .store-hero-content,
    .store-hero-showcase {
        padding: 1.55rem;
    }

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

    .product-related-link {
        flex-basis: calc((100% - 3rem) / 3.1);
        height: 360px;
        min-width: calc((100% - 3rem) / 3.1);
    }

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

    .product-related-image,
    .product-related-placeholder {
        flex-basis: 162px;
    }

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

    .cart-table {
        min-width: 760px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --store-page-gutter: 0.85rem;
    }

    .store-page-shell {
        padding-top: 1.25rem;
    }

    .store-quick-filter-form {
        grid-template-columns: 1fr;
        padding: 0.8rem;
    }

    .store-quick-filter-note {
        font-size: 0.74rem;
    }

    .store-home-catalog {
        gap: 2rem;
    }

    .store-parent-category-section .store-inline-section-head {
        margin-bottom: 1rem;
    }

    .store-parent-category-section .store-inline-section-title {
        font-size: 1.95rem;
        line-height: 1.08;
    }

    .store-child-category-list {
        gap: 1.65rem;
    }

    .store-parent-product-group {
        gap: 1rem;
        padding-top: 0.35rem;
    }

    .store-parent-product-title {
        font-size: 0.76rem;
        gap: 0.55rem;
        letter-spacing: 0.1em;
    }

    .store-parent-product-title::before,
    .store-parent-product-title::after {
        flex-basis: 32px;
    }

    .store-child-category-section {
        gap: 0.72rem;
        padding-top: 0.35rem;
    }

    .store-child-category-head {
        align-items: flex-start;
        padding-bottom: 0.55rem;
    }

    .store-child-category-title {
        font-size: 1.04rem;
        line-height: 1.22;
    }

    .store-filter-summary {
        align-items: flex-start;
        gap: 0.5rem;
    }

    .store-static-content {
        padding: 1rem;
    }

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

    .store-nav-actions {
        gap: 0.55rem;
        justify-content: flex-end;
    }

    .store-nav-pill {
        font-size: 0.86rem;
        padding: 0.62rem 0.9rem;
    }

    .store-hero-title {
        max-width: 12ch;
    }

    .store-hero-stats,
    .store-hero-showcase,
    .product-meta-grid {
        grid-template-columns: 1fr;
    }

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

    .category-card,
    .product-card {
        height: auto;
        max-width: 100%;
        min-width: 0;
        width: 100%;
    }

    .category-card-body {
        padding: 10px 12px;
    }

    .category-card-title {
        font-size: 15px;
    }

    .category-card-count,
    .category-card-badge,
    .category-card-label {
        display: none;
    }

    .product-card-form {
        padding: 0.7rem;
    }

    .product-card-select-form {
        padding: 0.1rem 0.7rem 0.05rem;
    }

    .product-card-button {
        border-radius: 10px;
        width: 100%;
    }

    .product-card-topline {
        align-items: start;
        flex-direction: column;
        gap: 0.35rem;
    }

    .product-card-title {
        font-size: 0.95rem;
    }

    .product-price-value {
        font-size: 1rem;
    }

    .product-price-unit {
        font-size: 0.74rem;
    }

    .product-chip {
        font-size: 0.62rem;
        padding: 0.28rem 0.52rem;
    }

    .product-related-grid {
        gap: 0.8rem;
    }

    .product-related-hint {
        font-size: 0.68rem;
        letter-spacing: 0.08em;
    }

    .product-related-link {
        flex-basis: calc((100% - 1.6rem) / 2.1);
        height: 320px;
        min-width: calc((100% - 1.6rem) / 2.1);
    }

    .product-related-image,
    .product-related-placeholder {
        flex-basis: 138px;
    }

    .product-related-body {
        padding: 0.8rem;
    }

    .product-related-body .product-card-title {
        font-size: 0.95rem;
    }

    .product-related-body .product-price-value {
        font-size: 1rem;
    }

    .product-related-body .product-price-unit {
        font-size: 0.74rem;
    }

    .product-detail-actions {
        grid-template-columns: 1fr;
    }

    .product-qty-control {
        grid-template-columns: 54px minmax(80px, 1fr) 54px;
    }

    .cart-table-wrap {
        background: transparent;
        border: 0;
        box-shadow: none;
        overflow: visible;
    }

    .cart-table {
        border-collapse: separate;
        border-spacing: 0;
        min-width: 0;
    }

    .cart-table thead {
        display: none;
    }

    .cart-table tbody {
        display: grid;
        gap: 0.85rem;
    }

    .cart-table tbody tr {
        background: var(--store-surface);
        border: 1px solid rgba(122, 63, 22, 0.12);
        border-radius: 18px;
        box-shadow: var(--store-shadow-soft);
        display: grid;
        gap: 0.65rem 0.9rem;
        grid-template-areas:
            "image product"
            "image qty"
            "price price"
            "action action";
        grid-template-columns: 96px minmax(0, 1fr);
        padding: 0.85rem;
    }

    .cart-table > :not(caption) > * > * {
        border: 0 !important;
        padding: 0;
    }

    .cart-cell-image {
        align-self: start;
        grid-area: image;
    }

    .cart-cell-product {
        font-size: 1rem;
        grid-area: product;
        line-height: 1.35;
    }

    .cart-cell-qty {
        grid-area: qty;
    }

    .cart-cell-price {
        align-items: center;
        display: flex;
        font-size: 1rem;
        grid-area: price;
        justify-content: space-between;
        padding-top: 0.1rem;
    }

    .cart-cell-price::before {
        color: var(--store-muted);
        content: "Price";
        font-size: 0.72rem;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .cart-cell-action {
        grid-area: action;
    }

    .cart-cell-action .btn {
        width: 100%;
    }

    .cart-qty-form {
        max-width: none;
        width: 100%;
    }

    .cart-qty-input {
        min-height: 44px;
    }

    .cart-summary-bar {
        align-items: stretch;
        flex-direction: column;
    }

    .cart-checkout-btn {
        text-align: center;
        width: 100%;
    }

    .product-detail-button {
        width: 100%;
    }

    .product-gallery-card {
        max-width: 100%;
        width: 100%;
    }

    .product-main-frame {
        aspect-ratio: auto;
        height: clamp(350px, 62vw, 400px);
        max-width: 100%;
    }

    .product-card-form,
    .product-summary-card,
    .product-description-card,
    .product-related-card {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .cart-product-thumb,
    .cart-image-fallback {
        height: 96px;
        width: 96px;
    }
}

/* Slide-out Filter Panel */
.store-filter-overlay {
    background: rgba(0, 0, 0, 0.1);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1040;
}

.store-filter-overlay.active {
    display: block;
}

.store-filter-panel {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    height: auto;
    max-height: calc(100% - 2rem);
    max-width: 340px;
    position: fixed;
    right: -120%;
    top: 1rem;
    transition: right 0.3s ease;
    width: min(86vw, 340px);
    border-radius: 14px;
    z-index: 1050;
    overflow: hidden;
}

.store-filter-panel.active {
    right: 1rem;
}

.store-filter-header {
    align-items: center;
    background: linear-gradient(180deg, rgba(255, 253, 249, 0.98), rgba(255, 249, 241, 0.96));
    border-bottom: 1px solid rgba(122, 63, 22, 0.15);
    display: flex;
    justify-content: space-between;
    padding: 1rem 1.25rem;
}

.store-filter-title {
    color: var(--store-heading);
    font-family: var(--store-font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.store-filter-close {
    align-items: center;
    background: none;
    border: none;
    color: var(--store-heading);
    cursor: pointer;
    display: flex;
    font-size: 1.5rem;
    height: 36px;
    justify-content: center;
    line-height: 1;
    padding: 0;
    width: 36px;
}

.store-filter-close:hover {
    background: rgba(122, 63, 22, 0.08);
    border-radius: 50%;
}

.store-filter-body {
    height: auto;
    max-height: calc(100vh - 130px);
    overflow-y: auto;
    padding: 0.9rem;
}

.store-filter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.store-filter-form-compact {
    border: 1px solid rgba(122, 63, 22, 0.12);
    border-radius: 12px;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.88);
    gap: 0.7rem;
}

.store-filter-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.6rem;
}

.store-filter-field-primary {
    gap: 0.35rem;
}

.store-filter-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.store-filter-field label {
    color: var(--store-muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.store-filter-control {
    border: 1px solid rgba(122, 63, 22, 0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    min-height: 2.75rem;
    padding: 0.5rem 0.75rem;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.store-filter-control option {
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 0.5rem;
    line-height: 1.4;
}

.store-filter-actions {
    border-top: 1px solid rgba(122, 63, 22, 0.1);
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
}

.store-filter-actions-compact {
    border-top: 0;
    margin-top: 0;
    padding-top: 0;
    gap: 0.45rem;
}

.store-filter-btn {
    border-radius: 12px;
    flex: 1;
    font-weight: 600;
    min-height: 2.75rem;
    padding: 0.5rem 1rem;
}

.store-filter-actions-compact .store-filter-btn {
    min-height: 2.35rem;
    font-size: 0.84rem;
    padding: 0.35rem 0.65rem;
}

.store-filter-btn-primary {
    background: linear-gradient(135deg, #e67e5b, #c75a33);
    border: none;
    color: #fff;
}

.store-filter-btn-secondary {
    background: transparent;
    border: 1px solid rgba(122, 63, 22, 0.3);
    color: var(--store-heading);
}

.cart-slider-overlay {
    background: rgba(15, 23, 42, 0.36);
    inset: 0;
    position: fixed;
    z-index: 1090;
}

.cart-slider {
    background: #ffffff;
    border-left: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: -14px 0 34px rgba(15, 23, 42, 0.2);
    display: flex;
    flex-direction: column;
    height: 100vh;
    max-width: 420px;
    position: fixed;
    right: 0;
    top: 0;
    width: min(92vw, 420px);
    z-index: 1091;
}

.cart-slider-head {
    align-items: center;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    display: flex;
    justify-content: space-between;
    padding: 0.85rem 1rem;
}

.cart-slider-title {
    font-size: 1.04rem;
    margin: 0;
}

.cart-slider-close {
    align-items: center;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 999px;
    color: var(--store-ink);
    display: inline-flex;
    flex: 0 0 auto;
    height: 34px;
    justify-content: center;
    padding: 0;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    width: 34px;
}

.cart-slider-close svg {
    height: 17px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 17px;
}

.cart-slider-close:hover,
.cart-slider-close:focus-visible {
    background: var(--store-heading);
    border-color: var(--store-heading);
    color: #fff;
}

.cart-slider-list {
    flex: 1 1 auto;
    overflow-y: auto;
    padding: 0.85rem;
}

.cart-slider-item {
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 10px;
    display: grid;
    gap: 0.4rem 0.65rem;
    grid-template-columns: 58px 1fr auto;
    margin-bottom: 0.7rem;
    padding: 0.55rem;
}

.cart-slider-item > div {
    min-width: 0;
}

.cart-slider-thumb {
    border-radius: 8px;
    height: 58px;
    object-fit: cover;
    width: 58px;
}

.cart-slider-name {
    font-size: 0.88rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0;
    overflow-wrap: anywhere;
}

.cart-slider-price {
    color: var(--store-accent-dark);
    font-size: 0.84rem;
    font-weight: 700;
    overflow-wrap: anywhere;
}

.cart-slider-remove {
    align-items: center;
    background: #fff5f5;
    border: 1px solid rgba(220, 38, 38, 0.16);
    border-radius: 999px;
    color: #dc2626;
    display: inline-flex;
    flex: 0 0 auto;
    height: 30px;
    justify-content: center;
    padding: 0;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    width: 30px;
}

.cart-slider-remove svg {
    height: 15px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 15px;
}

.cart-slider-remove:hover,
.cart-slider-remove:focus-visible {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.cart-slider-qty {
    align-items: center;
    display: inline-flex;
    gap: 0.35rem;
}

.cart-slider-qty-btn {
    align-items: center;
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.12);
    border-radius: 7px;
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 700;
    height: 26px;
    justify-content: center;
    width: 26px;
}

.cart-slider-qty-value {
    display: inline-block;
    font-size: 0.86rem;
    font-weight: 700;
    min-width: 1.1rem;
    text-align: center;
}

.cart-slider-footer {
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.1);
    padding: 0.8rem;
    position: sticky;
    bottom: 0;
}

.cart-slider-subtotal-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.cart-slider-btn {
    border-radius: 10px;
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    padding: 0.62rem 0.7rem;
    text-align: center;
    text-decoration: none;
}

.cart-slider-btn-secondary {
    background: #f8fafc;
    border: 1px solid rgba(15, 23, 42, 0.12);
    color: var(--store-ink);
}

.cart-slider-btn-primary {
    background: linear-gradient(135deg, #25d366, #16a34a);
    color: #fff;
}

.modern-cart-shell {
    background: rgba(255, 255, 255, 0.94);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    max-width: 920px;
    min-height: 68vh;
    overflow: hidden;
}

.modern-cart-list {
    flex: 1 1 auto;
    max-height: 58vh;
    overflow-y: auto;
    padding: 0.95rem;
}

.modern-cart-item {
    align-items: stretch;
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: 84px 1fr;
    margin-bottom: 0.8rem;
    padding: 0.72rem;
    min-width: 0;
}

.modern-cart-thumb {
    border-radius: 12px;
    height: 84px;
    object-fit: cover;
    width: 84px;
}

.modern-cart-thumb-placeholder {
    align-items: center;
    background: #f8fafc;
    color: var(--store-muted);
    display: flex;
    font-size: 0.72rem;
    justify-content: center;
}

.modern-cart-content {
    display: flex;
    flex-direction: column;
    gap: 0.44rem;
    min-width: 0;
}

.modern-cart-top {
    align-items: flex-start;
    display: flex;
    gap: 0.55rem;
    justify-content: space-between;
    min-width: 0;
}

.modern-cart-name {
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1.32;
    margin: 0;
    min-width: 0;
    overflow-wrap: anywhere;
}

.modern-cart-remove {
    align-items: center;
    background: #fff5f5;
    border: 1px solid rgba(220, 38, 38, 0.16);
    border-radius: 999px;
    color: #dc2626;
    display: inline-flex;
    flex: 0 0 auto;
    height: 32px;
    justify-content: center;
    padding: 0;
    transition: background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    width: 32px;
}

.modern-cart-remove svg {
    height: 16px;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 2;
    width: 16px;
}

.modern-cart-remove:hover,
.modern-cart-remove:focus-visible {
    background: #dc2626;
    border-color: #dc2626;
    color: #fff;
}

.modern-cart-meta {
    color: var(--store-muted);
    font-size: 0.75rem;
    overflow-wrap: anywhere;
}

.modern-cart-bottom {
    align-items: center;
    display: flex;
    gap: 0.65rem;
    justify-content: space-between;
    min-width: 0;
}

.modern-cart-price {
    color: #0f766e;
    font-size: 0.92rem;
    font-weight: 700;
}

.modern-cart-price-block {
    display: grid;
    gap: 0.2rem;
    min-width: 0;
}

.modern-cart-price-line {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    font-size: 0.78rem;
    gap: 0.45rem;
    justify-content: space-between;
    min-width: 0;
}

.modern-cart-price-value {
    color: var(--store-ink);
    font-weight: 700;
    overflow-wrap: anywhere;
    text-align: right;
}

.modern-cart-price-line-strong .modern-cart-price-label,
.modern-cart-price-line-strong .modern-cart-price-value {
    color: #0f766e;
    font-weight: 800;
}

.modern-cart-qty-form {
    margin: 0;
    flex: 0 0 auto;
}

.modern-cart-qty-control {
    grid-template-columns: 34px 46px 34px;
}

.modern-cart-qty-input {
    min-height: 34px;
    text-align: center;
}

.modern-cart-summary {
    background: #fff;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
    padding: 0.9rem;
    position: sticky;
    bottom: 0;
}

.modern-cart-subtotal-row {
    align-items: center;
    display: flex;
    font-size: 0.92rem;
    justify-content: space-between;
    margin-bottom: 0.65rem;
}

.modern-cart-subtotal-row strong {
    font-size: 1rem;
}

.modern-cart-btn {
    align-items: center;
    border-radius: 11px;
    display: flex;
    font-weight: 700;
    gap: 0.45rem;
    justify-content: center;
    margin-bottom: 0.5rem;
    min-height: 44px;
    text-decoration: none;
}

.modern-cart-btn-primary {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
    color: #fff;
}

.modern-cart-btn-whatsapp {
    background: linear-gradient(135deg, #25d366, #16a34a);
    color: #fff;
}

.modern-cart-btn:hover,
.modern-cart-btn:focus-visible {
    color: #fff;
}

/* Hide inline filter on store page, show in panel only */
.store-head-filter {
    display: none;
}

/* Mobile responsive */
@media (max-width: 767.98px) {
    .store-category-grid.store-parent-category-grid {
        gap: 0.65rem;
    }

    .store-category-grid.store-parent-category-grid .category-card {
        flex: 0 0 calc((100% - 0.65rem) / 2);
        width: calc((100% - 0.65rem) / 2);
    }

}

@media (max-width: 576px) {
    .store-category-grid,
    .store-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-filter-panel {
        border-radius: 0 0 14px 14px;
        height: auto;
        max-height: 100%;
        max-width: 100%;
        left: 0;
        right: 0;
        top: 86px;
        width: 100%;
        max-height: calc(100vh - 86px - 86px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .store-filter-panel.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }
    
    .store-filter-title {
        font-size: 1.1rem;
    }

    .cart-slider {
        width: min(100vw, 420px);
    }

    .cart-slider-list {
        padding: 0.7rem;
    }

    .cart-slider-item {
        gap: 0.45rem 0.55rem;
        grid-template-columns: 54px minmax(0, 1fr) 30px;
        padding: 0.5rem;
    }

    .cart-slider-thumb {
        height: 54px;
        width: 54px;
    }

    .modern-cart-shell {
        border-radius: 14px;
        max-width: 100%;
    }

    .modern-cart-list {
        padding: 0.7rem;
    }

    .modern-cart-item {
        gap: 0.62rem;
        grid-template-columns: 72px minmax(0, 1fr);
        padding: 0.62rem;
    }

    .modern-cart-thumb {
        border-radius: 10px;
        height: 72px;
        width: 72px;
    }

    .modern-cart-bottom {
        align-items: stretch;
        flex-direction: column;
    }

    .modern-cart-qty-form {
        width: min(100%, 220px);
    }

    .modern-cart-qty-control {
        grid-template-columns: 36px minmax(44px, 1fr) 36px;
    }
}

@media (min-width: 577px) and (max-width: 991.98px) {
    .store-filter-panel {
        border-radius: 0 0 14px 14px;
        height: auto;
        left: 0;
        right: 0;
        top: 92px;
        width: 100%;
        max-width: 100%;
        max-height: calc(100vh - 92px - 86px);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .store-filter-panel.active {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        right: 0;
    }
}

@media (max-width: 991.98px) {
    .store-category-popover {
        position: fixed;
        top: 102px;
        right: 0.7rem;
        left: auto;
        width: min(340px, calc(100vw - 1.4rem));
        max-height: calc(100vh - 102px - 86px);
        overflow-y: auto;
        z-index: 1085;
    }
}

@media (max-width: 360px) {
    .store-category-grid.store-parent-category-grid .category-card {
        flex: 0 0 calc((100% - 0.65rem) / 2);
        width: calc((100% - 0.65rem) / 2);
    }
}

@media (max-width: 767.98px) {
    .product-detail-actions-row {
        grid-template-columns: 1fr;
    }

    .product-main-frame {
        aspect-ratio: 1 / 1;
        height: auto;
        max-width: min(100%, 320px);
    }

    .product-thumb-grid {
        display: grid;
        gap: 0.45rem;
        grid-auto-columns: calc((100% - 0.45rem) / 2);
        grid-auto-flow: column;
        grid-template-columns: none;
        max-width: min(100%, 220px);
        overflow-x: auto;
        overscroll-behavior-x: contain;
        padding-bottom: 0.2rem;
        scroll-snap-type: x mandatory;
    }

    .product-thumb {
        scroll-snap-align: start;
        min-height: 36px;
    }

    .product-thumb img {
        padding: 0.18rem;
    }
}

.product-gallery-card {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.product-main-frame {
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}

.product-main-image {
    padding: 0;
}

/* Product detail layout refresh */
.product-detail-layout {
    align-items: start;
    display: grid;
    gap: clamp(1rem, 2.6vw, 2.25rem);
    grid-template-columns: minmax(360px, 560px) minmax(340px, 460px);
    justify-content: center;
    margin: 0 auto clamp(1.8rem, 4vw, 3rem);
    max-width: 1120px;
    width: 100%;
}

.product-gallery-card {
    align-self: start;
    max-width: 560px;
    width: 100%;
}

.product-gallery-stage {
    display: grid;
    gap: clamp(0.65rem, 1.4vw, 0.9rem);
    justify-items: center;
    width: 100%;
}

.product-main-frame {
    aspect-ratio: 1 / 1;
    display: grid;
    max-width: min(100%, 540px);
    place-items: center;
    width: 100%;
}

.product-main-image {
    height: 100%;
    max-height: 540px;
    object-fit: contain;
    width: 100%;
}

.product-image-zoom-btn {
    bottom: 0.75rem;
    right: 0.75rem;
}

.product-thumb-grid {
    display: grid;
    gap: 0.5rem;
    grid-template-columns: repeat(5, minmax(48px, 1fr));
    margin: 0;
    max-width: min(100%, 360px);
    width: 100%;
}

.product-thumb {
    border-radius: 8px;
    min-height: 0;
}

.product-thumb img {
    background: transparent;
    padding: 0;
}

.product-summary-card {
    align-self: start;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 16px;
    box-shadow: 0 14px 32px rgba(15, 23, 42, 0.08);
    display: grid;
    gap: clamp(0.75rem, 1.6vw, 1rem);
    padding: clamp(1rem, 2.2vw, 1.35rem);
    width: 100%;
}

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

.product-detail-title {
    color: var(--store-ink);
    font-size: clamp(1.45rem, 2.2vw, 2.15rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.14;
    margin: 0;
}

.product-detail-sku {
    color: var(--store-muted);
    font-size: 0.82rem;
    margin: 0;
}

.product-price-row {
    align-items: baseline;
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    margin: 0;
}

.product-price-row .product-price-value {
    color: #9D174D;
    font-size: clamp(1.45rem, 2.2vw, 2rem);
    font-weight: 850;
    line-height: 1.05;
}

.product-detail-actual-price {
    color: var(--store-muted);
    font-size: 0.92rem;
    text-decoration: line-through;
}

.product-detail-form {
    background: transparent;
    border: 0;
    border-radius: 0;
    display: grid;
    gap: 0.95rem;
    padding: 0;
}

.product-detail-form .mb-3 {
    margin-bottom: 0 !important;
}

.product-select-label {
    color: var(--store-ink);
    display: block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0;
    margin-bottom: 0.5rem !important;
}

.product-size-option {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    justify-content: center;
    min-height: 2.5rem;
    min-width: 4.6rem;
    padding: 0.42rem 0.68rem;
    text-align: center;
}

.product-size-option small {
    line-height: 1.2;
}

.product-pack-option {
    flex-direction: column;
    gap: 0.18rem;
}

.product-pack-option > span {
    line-height: 1.15;
}

.product-pack-option small {
    display: block;
    font-size: 0.78rem;
}

.product-cart-action-row {
    align-items: end;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: minmax(180px, 220px) minmax(160px, 1fr);
}

.product-qty-control-inline {
    max-width: 220px;
}

.product-detail-input {
    min-height: 2.6rem;
    text-align: center;
}

.product-detail-button,
.product-detail-button-alt {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    justify-content: center;
    min-height: 2.75rem;
    padding: 0.62rem 1rem;
    width: 100%;
}

.product-detail-actions-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.product-description-collapse {
    border-top: 1px solid rgba(15, 23, 42, 0.08) !important;
    margin-top: 0.2rem !important;
    padding-top: 0.85rem !important;
}

.product-description-collapse summary {
    color: var(--store-ink);
    cursor: pointer;
    font-weight: 800;
}

.product-description-full {
    color: var(--store-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .product-summary-card {
        position: sticky;
        top: 1rem;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .product-detail-layout {
        grid-template-columns: minmax(0, 1fr);
        max-width: 680px;
    }

    .product-gallery-card,
    .product-summary-card {
        max-width: 680px;
    }

    .product-main-frame {
        max-width: 520px;
    }
}

@media (max-width: 767.98px) {
    .product-detail-layout {
        gap: 0.9rem;
        grid-template-columns: minmax(0, 1fr);
        margin-bottom: 1.6rem;
        max-width: 100%;
    }

    .product-gallery-card {
        max-width: 100%;
    }

    .product-main-frame {
        aspect-ratio: 1 / 1;
        max-width: min(100%, 340px);
    }

    .product-summary-card {
        border-radius: 12px;
        padding: 0.95rem;
    }

    .product-detail-title {
        font-size: clamp(1.25rem, 6vw, 1.65rem);
    }

    .product-thumb-grid {
        grid-auto-columns: 58px;
        grid-auto-flow: column;
        grid-template-columns: none;
        justify-content: start;
        max-width: 100%;
        overflow-x: auto;
        padding-bottom: 0.15rem;
    }

    .product-size-option {
        min-width: 4.25rem;
    }

    .product-qty-control-inline {
        max-width: 220px;
    }

    .product-cart-action-row {
        grid-template-columns: minmax(150px, 1fr) minmax(132px, 0.82fr);
    }

    .product-detail-button,
    .product-detail-button-alt {
        width: 100%;
    }
}

@media (max-width: 420px) {
    .product-cart-action-row {
        grid-template-columns: minmax(142px, 1fr) minmax(118px, 0.75fr);
    }

    .product-qty-control {
        grid-template-columns: 40px minmax(44px, 1fr) 40px;
    }

    .product-detail-button {
        font-size: 0.9rem;
        padding-left: 0.6rem;
        padding-right: 0.6rem;
    }
}
