:root {
    color-scheme: dark;
    --store-bg: #070b14;
    --store-surface: #0d1422;
    --store-surface-strong: #121b2d;
    --store-card: #111a2b;
    --store-border: rgba(148, 163, 184, 0.16);
    --store-border-strong: rgba(167, 139, 250, 0.34);
    --store-text: #f8fafc;
    --store-muted: #94a3b8;
    --store-purple: #7c3aed;
    --store-purple-dark: #5b21b6;
    --store-purple-soft: rgba(124, 58, 237, 0.16);
    --store-green: #34d399;
    --store-green-dark: #052e24;
    --store-amber: #fbbf24;
    --store-radius-sm: 12px;
    --store-radius: 20px;
    --store-radius-lg: 28px;
    --store-shadow: 0 24px 70px rgba(0, 0, 0, 0.32);
    --store-container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body.store-body {
    background:
        radial-gradient(circle at 12% 2%, rgba(124, 58, 237, 0.18), transparent 30rem),
        radial-gradient(circle at 94% 14%, rgba(16, 185, 129, 0.12), transparent 28rem),
        var(--store-bg);
    color: var(--store-text);
    font-family: "Space Grotesk", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.5;
    margin: 0;
    min-height: 100vh;
}

body.store-body::before {
    background-image: linear-gradient(rgba(148, 163, 184, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(148, 163, 184, 0.035) 1px, transparent 1px);
    background-size: 44px 44px;
    content: "";
    inset: 0;
    mask-image: linear-gradient(to bottom, black, transparent 72%);
    pointer-events: none;
    position: fixed;
    z-index: -1;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font: inherit;
}

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

.store-container {
    margin: 0 auto;
    max-width: var(--store-container);
    padding-left: 24px;
    padding-right: 24px;
    width: 100%;
}

.store-announcement {
    background: linear-gradient(90deg, var(--store-purple-dark), var(--store-purple), #4f46e5);
    color: white;
    font-size: 0.76rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    padding: 9px 16px;
    text-align: center;
    text-transform: uppercase;
}

.store-header {
    backdrop-filter: blur(18px);
    background: rgba(7, 11, 20, 0.84);
    border-bottom: 1px solid var(--store-border);
    position: sticky;
    top: 0;
    z-index: 60;
}

.store-header-main {
    align-items: center;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(220px, 1fr) auto minmax(220px, 1fr);
    min-height: 82px;
}

.store-brand {
    align-items: center;
    display: flex;
    gap: 12px;
    min-width: 0;
}

.store-brand-logo,
.store-brand-fallback {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 15px;
    box-shadow: 0 8px 28px rgba(124, 58, 237, 0.24);
    flex: 0 0 auto;
    height: 48px;
    object-fit: cover;
    width: 48px;
}

.store-brand-fallback {
    align-items: center;
    background: linear-gradient(135deg, var(--store-purple), #4338ca);
    display: flex;
    font-size: 0.92rem;
    font-weight: 800;
    justify-content: center;
    letter-spacing: 0.04em;
}

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

.store-brand-kicker {
    color: var(--store-green);
    display: block;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.store-brand-name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-nav {
    align-items: center;
    display: flex;
    gap: 6px;
}

.store-nav-link {
    border-radius: 999px;
    color: #cbd5e1;
    font-size: 0.82rem;
    font-weight: 650;
    padding: 10px 13px;
    transition: background 0.2s ease, color 0.2s ease;
}

.store-nav-link:hover,
.store-nav-link:focus-visible {
    background: rgba(255, 255, 255, 0.07);
    color: white;
}

.store-nav-link.is-promo {
    color: #fde68a;
}

.store-header-actions {
    align-items: center;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

.store-instagram,
.store-menu-toggle {
    align-items: center;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid var(--store-border);
    border-radius: 999px;
    color: #cbd5e1;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    transition: border-color 0.2s ease, color 0.2s ease;
    width: 42px;
}

.store-instagram:hover,
.store-instagram:focus-visible,
.store-menu-toggle:hover,
.store-menu-toggle:focus-visible {
    border-color: var(--store-border-strong);
    color: white;
}

.store-menu-toggle {
    cursor: pointer;
    display: none;
}

.store-cart {
    align-items: center;
    background: var(--store-green);
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(52, 211, 153, 0.18);
    color: #03271d;
    display: inline-flex;
    font-size: 0.82rem;
    font-weight: 800;
    gap: 8px;
    min-height: 44px;
    padding: 0 17px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.store-cart:hover,
.store-cart:focus-visible {
    background: #6ee7b7;
    transform: translateY(-1px);
}

.store-cart-count {
    align-items: center;
    background: rgba(3, 39, 29, 0.14);
    border-radius: 999px;
    display: inline-flex;
    height: 24px;
    justify-content: center;
    min-width: 24px;
    padding: 0 6px;
}

.store-mobile-menu {
    border-top: 1px solid transparent;
    display: none;
    padding-bottom: 14px;
}

.store-mobile-menu.is-open {
    border-color: var(--store-border);
    display: grid;
}

.store-mobile-menu .store-nav-link {
    border-radius: 10px;
    padding: 12px 4px;
}

.store-main {
    padding-bottom: 40px;
    padding-top: 28px;
}

.store-hero {
    background:
        linear-gradient(130deg, rgba(124, 58, 237, 0.21), transparent 52%),
        linear-gradient(315deg, rgba(16, 185, 129, 0.12), transparent 42%),
        var(--store-surface);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius-lg);
    box-shadow: var(--store-shadow);
    display: grid;
    gap: 34px;
    grid-template-columns: minmax(0, 1.06fr) minmax(360px, 0.94fr);
    min-height: 450px;
    overflow: hidden;
    padding: 46px;
    position: relative;
}

.store-hero::after {
    border: 1px solid rgba(167, 139, 250, 0.14);
    border-radius: 50%;
    content: "";
    height: 340px;
    left: -180px;
    position: absolute;
    top: -180px;
    width: 340px;
}

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

.store-eyebrow {
    align-items: center;
    color: #c4b5fd;
    display: inline-flex;
    font-size: 0.7rem;
    font-weight: 800;
    gap: 9px;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.store-eyebrow::before {
    background: var(--store-green);
    border-radius: 999px;
    box-shadow: 0 0 0 5px rgba(52, 211, 153, 0.12);
    content: "";
    height: 7px;
    width: 7px;
}

.store-hero h1 {
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    letter-spacing: -0.055em;
    line-height: 0.98;
    margin: 0;
    max-width: 720px;
}

.store-hero h1 span {
    background: linear-gradient(90deg, #c4b5fd, #6ee7b7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.store-hero-description {
    color: #cbd5e1;
    font-size: 1rem;
    margin: 22px 0 0;
    max-width: 590px;
}

.store-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.store-button {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    font-size: 0.86rem;
    font-weight: 800;
    gap: 9px;
    justify-content: center;
    min-height: 48px;
    padding: 0 20px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.store-button:hover,
.store-button:focus-visible {
    transform: translateY(-2px);
}

.store-button-primary {
    background: linear-gradient(135deg, var(--store-purple), #4f46e5);
    box-shadow: 0 12px 28px rgba(124, 58, 237, 0.26);
    color: white;
}

.store-button-primary:hover,
.store-button-primary:focus-visible {
    background: linear-gradient(135deg, #8b5cf6, #6366f1);
}

.store-button-secondary {
    background: rgba(255, 255, 255, 0.055);
    border-color: var(--store-border);
    color: white;
}

.store-button-secondary:hover,
.store-button-secondary:focus-visible {
    background: rgba(255, 255, 255, 0.09);
    border-color: var(--store-border-strong);
}

.store-button-amber {
    background: var(--store-amber);
    color: #2b1a00;
}

.store-trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 32px;
}

.store-trust-item {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    font-size: 0.76rem;
    gap: 7px;
}

.store-trust-item svg {
    color: var(--store-green);
}

.store-hero-showcase {
    align-self: stretch;
    min-height: 350px;
    position: relative;
}

#hero-carousel {
    background: #0a1020;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
    height: 100%;
    min-height: 350px;
    overflow: hidden;
    position: relative;
}

.store-slide {
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    transition: opacity 0.6s ease, transform 0.6s ease;
    transform: scale(1.015);
}

.store-slide.is-active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1);
}

.store-slide-media {
    background: linear-gradient(145deg, rgba(124, 58, 237, 0.14), rgba(15, 23, 42, 0.4));
    min-height: 0;
    overflow: hidden;
    position: relative;
}

.store-slide-media img {
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.6s ease;
    width: 100%;
}

.store-slide:hover .store-slide-media img {
    transform: scale(1.035);
}

.store-slide-placeholder {
    align-items: center;
    color: #64748b;
    display: flex;
    font-size: 3.2rem;
    height: 100%;
    justify-content: center;
}

.store-slide-badge {
    background: rgba(7, 11, 20, 0.76);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    color: #d8b4fe;
    font-size: 0.65rem;
    font-weight: 800;
    left: 16px;
    letter-spacing: 0.08em;
    padding: 7px 10px;
    position: absolute;
    text-transform: uppercase;
    top: 16px;
}

.store-slide-content {
    background: linear-gradient(180deg, rgba(17, 26, 43, 0.95), #101827);
    border-top: 1px solid var(--store-border);
    padding: 18px 20px 20px;
}

.store-slide-content h2 {
    font-size: 1.08rem;
    line-height: 1.25;
    margin: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.store-slide-meta {
    align-items: center;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: 9px;
}

.store-slide-price {
    color: var(--store-green);
    font-size: 1.2rem;
    font-weight: 850;
}

.store-slide-link {
    color: #c4b5fd;
    font-size: 0.72rem;
    font-weight: 800;
}

.store-carousel-empty {
    align-items: center;
    color: var(--store-muted);
    display: flex;
    flex-direction: column;
    gap: 10px;
    height: 100%;
    justify-content: center;
    padding: 32px;
    text-align: center;
}

#hero-dots {
    bottom: 102px;
    display: flex;
    gap: 7px;
    position: absolute;
    right: 18px;
    z-index: 5;
}

.store-carousel-dot {
    background: rgba(255, 255, 255, 0.42);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 7px;
    padding: 0;
    transition: background 0.2s ease, width 0.2s ease;
    width: 7px;
}

.store-carousel-dot.is-active {
    background: white;
    width: 24px;
}

.store-benefits {
    display: grid;
    gap: 1px;
    grid-template-columns: repeat(3, 1fr);
    margin: 1px auto 0;
    max-width: calc(var(--store-container) - 48px);
    overflow: hidden;
}

.store-benefit {
    align-items: center;
    background: rgba(13, 20, 34, 0.82);
    border-bottom: 1px solid var(--store-border);
    display: flex;
    gap: 12px;
    justify-content: center;
    padding: 15px 20px;
}

.store-benefit svg {
    color: var(--store-green);
    flex: 0 0 auto;
}

.store-benefit strong {
    display: block;
    font-size: 0.76rem;
}

.store-benefit span {
    color: var(--store-muted);
    display: block;
    font-size: 0.68rem;
}

.store-category-bar {
    margin-top: 34px;
}

.store-category-head,
.store-section-head {
    align-items: end;
    display: flex;
    gap: 18px;
    justify-content: space-between;
    margin-bottom: 16px;
}

.store-section-kicker {
    color: #a78bfa;
    display: block;
    font-size: 0.67rem;
    font-weight: 850;
    letter-spacing: 0.12em;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.store-section-title {
    font-size: clamp(1.45rem, 2.5vw, 2.05rem);
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin: 0;
}

.store-section-note {
    color: var(--store-muted);
    font-size: 0.78rem;
    margin: 0;
    text-align: right;
}

.store-category-list {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding: 2px 2px 10px;
    scrollbar-color: rgba(148, 163, 184, 0.32) transparent;
    scrollbar-width: thin;
}

.store-category-chip {
    align-items: center;
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--store-border);
    border-radius: 999px;
    color: #cbd5e1;
    display: inline-flex;
    flex: 0 0 auto;
    font-size: 0.78rem;
    font-weight: 700;
    gap: 8px;
    min-height: 42px;
    padding: 0 16px;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.store-category-chip:hover,
.store-category-chip:focus-visible {
    border-color: var(--store-border-strong);
    color: white;
}

.store-category-chip.is-active {
    background: var(--store-purple);
    border-color: var(--store-purple);
    color: white;
}

.store-category-chip.is-offer {
    background: rgba(251, 191, 36, 0.1);
    border-color: rgba(251, 191, 36, 0.35);
    color: #fde68a;
}

.store-catalog-layout {
    display: grid;
    gap: 26px;
    grid-template-columns: 280px minmax(0, 1fr);
    margin-top: 30px;
}

.store-filter-panel {
    align-self: start;
    background: rgba(13, 20, 34, 0.86);
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    padding: 22px;
    position: sticky;
    top: 108px;
}

.store-filter-panel h2 {
    font-size: 1rem;
    margin: 0;
}

.store-filter-panel > p {
    color: var(--store-muted);
    font-size: 0.74rem;
    margin: 6px 0 20px;
}

.store-filter-form {
    display: grid;
    gap: 13px;
}

.store-field {
    display: grid;
    gap: 7px;
}

.store-field label {
    color: #cbd5e1;
    font-size: 0.69rem;
    font-weight: 750;
}

.store-input,
.store-select {
    background: rgba(255, 255, 255, 0.045);
    border: 1px solid var(--store-border);
    border-radius: 11px;
    color: white;
    min-height: 46px;
    outline: none;
    padding: 0 13px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}

.store-input::placeholder {
    color: #64748b;
}

.store-input:focus,
.store-select:focus {
    border-color: #8b5cf6;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.16);
}

.store-select option {
    background: var(--store-surface-strong);
}

.store-filter-submit {
    background: var(--store-purple);
    border: 0;
    border-radius: 11px;
    color: white;
    cursor: pointer;
    font-weight: 800;
    min-height: 47px;
    transition: background 0.2s ease, transform 0.2s ease;
}

.store-filter-submit:hover,
.store-filter-submit:focus-visible {
    background: #8b5cf6;
    transform: translateY(-1px);
}

.store-filter-reset {
    color: #c4b5fd;
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    margin-top: 12px;
    text-align: center;
}

.store-filter-info {
    border-top: 1px solid var(--store-border);
    color: var(--store-muted);
    font-size: 0.7rem;
    margin-top: 20px;
    padding-top: 16px;
}

.store-products-column {
    min-width: 0;
}

.store-section + .store-section {
    margin-top: 48px;
}

.store-products-grid {
    display: grid;
    gap: 18px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.product-card {
    background: linear-gradient(180deg, rgba(17, 26, 43, 0.98), rgba(13, 20, 34, 0.98));
    border: 1px solid var(--store-border);
    border-radius: var(--store-radius);
    display: flex;
    flex-direction: column;
    min-width: 0;
    overflow: hidden;
    position: relative;
    transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.product-card:hover {
    border-color: var(--store-border-strong);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.26);
    transform: translateY(-5px);
}

.product-card-link {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-height: 0;
}

.product-card-media {
    align-items: center;
    aspect-ratio: 1 / 0.88;
    background:
        radial-gradient(circle at 50% 28%, rgba(124, 58, 237, 0.15), transparent 50%),
        rgba(255, 255, 255, 0.025);
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-card-media img {
    height: 100%;
    object-fit: contain;
    padding: 18px;
    transition: transform 0.35s ease;
    width: 100%;
}

.product-card:hover .product-card-media img {
    transform: scale(1.055);
}

.product-card-placeholder {
    color: #64748b;
    font-size: 0.78rem;
}

.product-card-status {
    backdrop-filter: blur(10px);
    background: rgba(5, 46, 36, 0.82);
    border: 1px solid rgba(52, 211, 153, 0.3);
    border-radius: 999px;
    color: #a7f3d0;
    font-size: 0.62rem;
    font-weight: 800;
    left: 13px;
    letter-spacing: 0.05em;
    padding: 6px 9px;
    position: absolute;
    text-transform: uppercase;
    top: 13px;
}

.product-card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 17px;
}

.product-card-category {
    color: #a78bfa;
    font-size: 0.64rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    margin: 0 0 7px;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
    white-space: nowrap;
}

.product-card-title {
    display: -webkit-box;
    font-size: 0.98rem;
    font-weight: 750;
    line-height: 1.35;
    margin: 0;
    min-height: 2.7em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.product-card-description {
    color: var(--store-muted);
    display: -webkit-box;
    font-size: 0.73rem;
    line-height: 1.55;
    margin: 9px 0 0;
    min-height: 3.1em;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.sizes-block {
    margin-top: 13px;
}

.sizes-label {
    color: #64748b;
    display: block;
    font-size: 0.58rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.sizes-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}

.sz-pill {
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--store-border);
    border-radius: 7px;
    color: #cbd5e1;
    display: inline-flex;
    font-size: 0.61rem;
    font-weight: 750;
    justify-content: center;
    min-height: 25px;
    min-width: 28px;
    padding: 2px 7px;
}

.product-card-footer {
    align-items: end;
    display: flex;
    gap: 12px;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 17px;
}

.product-card-price-label {
    color: #64748b;
    display: block;
    font-size: 0.58rem;
    font-weight: 700;
    text-transform: uppercase;
}

.product-card-price {
    color: var(--store-green);
    display: block;
    font-size: 1.12rem;
    font-weight: 850;
    letter-spacing: -0.02em;
}

.product-card-detail {
    color: #c4b5fd;
    font-size: 0.67rem;
    font-weight: 750;
}

.product-card-cta {
    align-items: center;
    background: var(--store-purple);
    color: white;
    display: flex;
    font-size: 0.76rem;
    font-weight: 850;
    gap: 8px;
    justify-content: center;
    min-height: 48px;
    padding: 0 16px;
    transition: background 0.2s ease;
}

.product-card-cta:hover,
.product-card-cta:focus-visible {
    background: #8b5cf6;
}

.store-empty {
    align-items: center;
    background: rgba(13, 20, 34, 0.72);
    border: 1px dashed rgba(148, 163, 184, 0.25);
    border-radius: var(--store-radius);
    color: var(--store-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column: 1 / -1;
    justify-content: center;
    min-height: 180px;
    padding: 28px;
    text-align: center;
}

.store-empty strong {
    color: white;
}

.store-pagination {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-top: 30px;
}

.store-page-link {
    align-items: center;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--store-border);
    border-radius: 10px;
    color: #cbd5e1;
    display: inline-flex;
    font-size: 0.75rem;
    font-weight: 750;
    justify-content: center;
    min-height: 40px;
    min-width: 40px;
    padding: 0 13px;
}

.store-page-link:hover,
.store-page-link:focus-visible {
    border-color: var(--store-border-strong);
    color: white;
}

.store-page-link.is-active {
    background: var(--store-purple);
    border-color: var(--store-purple);
    color: white;
}

.store-page-link.is-disabled {
    opacity: 0.38;
    pointer-events: none;
}

.store-page-summary {
    color: #64748b;
    font-size: 0.68rem;
    margin: 12px 0 0;
    text-align: center;
}

.store-commercial-cta {
    align-items: center;
    background:
        linear-gradient(125deg, rgba(124, 58, 237, 0.26), rgba(79, 70, 229, 0.1)),
        var(--store-surface);
    border: 1px solid var(--store-border-strong);
    border-radius: var(--store-radius-lg);
    display: flex;
    gap: 28px;
    justify-content: space-between;
    margin-top: 54px;
    overflow: hidden;
    padding: 34px 38px;
    position: relative;
}

.store-commercial-cta::after {
    background: rgba(52, 211, 153, 0.12);
    border-radius: 50%;
    content: "";
    filter: blur(10px);
    height: 180px;
    position: absolute;
    right: -70px;
    top: -90px;
    width: 180px;
}

.store-commercial-cta h2 {
    font-size: clamp(1.4rem, 3vw, 2.1rem);
    letter-spacing: -0.04em;
    margin: 0;
}

.store-commercial-cta p {
    color: var(--store-muted);
    font-size: 0.82rem;
    margin: 7px 0 0;
}

.store-commercial-actions {
    display: flex;
    flex: 0 0 auto;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.store-footer {
    border-top: 1px solid var(--store-border);
    margin-top: 68px;
    padding: 30px 0 90px;
}

.store-footer-inner {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.store-footer-brand {
    font-size: 0.86rem;
    font-weight: 800;
}

.store-footer-copy {
    color: var(--store-muted);
    font-size: 0.69rem;
    margin: 4px 0 0;
}

.store-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.store-footer-links a {
    color: #cbd5e1;
    font-size: 0.72rem;
    font-weight: 700;
}

.store-footer-links a:hover,
.store-footer-links a:focus-visible {
    color: white;
}

.store-whatsapp-float {
    align-items: center;
    background: var(--store-green);
    border: 4px solid var(--store-bg);
    border-radius: 999px;
    bottom: 22px;
    box-shadow: 0 14px 40px rgba(52, 211, 153, 0.32);
    color: var(--store-green-dark);
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 850;
    gap: 9px;
    min-height: 54px;
    padding: 0 18px;
    position: fixed;
    right: 22px;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 70;
}

.store-whatsapp-float:hover,
.store-whatsapp-float:focus-visible {
    background: #6ee7b7;
    transform: translateY(-2px);
}

.store-sr-only {
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
}

:focus-visible {
    outline: 3px solid rgba(167, 139, 250, 0.72);
    outline-offset: 3px;
}

@media (max-width: 1080px) {
    .store-header-main {
        gap: 16px;
        grid-template-columns: minmax(200px, 1fr) auto;
    }

    .store-nav {
        display: none;
    }

    .store-menu-toggle {
        display: inline-flex;
    }

    .store-hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 0.85fr);
        padding: 38px;
    }

    .store-catalog-layout {
        grid-template-columns: 240px minmax(0, 1fr);
    }

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

@media (max-width: 820px) {
    .store-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .store-instagram {
        display: none;
    }

    .store-hero {
        grid-template-columns: 1fr;
        padding: 34px;
    }

    .store-hero-showcase {
        min-height: 390px;
    }

    #hero-carousel {
        min-height: 390px;
    }

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

    .store-benefit {
        justify-content: flex-start;
    }

    .store-catalog-layout {
        grid-template-columns: 1fr;
    }

    .store-filter-panel {
        position: static;
    }

    .store-filter-form {
        align-items: end;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .store-filter-submit {
        grid-column: span 2;
    }

    .store-commercial-cta,
    .store-footer-inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 560px) {
    .store-container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .store-announcement {
        font-size: 0.61rem;
        letter-spacing: 0.06em;
    }

    .store-header-main {
        min-height: 72px;
    }

    .store-brand-logo,
    .store-brand-fallback {
        border-radius: 12px;
        height: 42px;
        width: 42px;
    }

    .store-brand-kicker {
        display: none;
    }

    .store-brand-name {
        font-size: 0.86rem;
        max-width: 135px;
    }

    .store-menu-toggle {
        height: 40px;
        width: 40px;
    }

    .store-cart {
        font-size: 0;
        height: 40px;
        min-height: 40px;
        padding: 0 10px;
    }

    .store-cart svg,
    .store-cart-count {
        font-size: 0.75rem;
    }

    .store-main {
        padding-top: 16px;
    }

    .store-hero {
        border-radius: 22px;
        gap: 28px;
        min-height: 0;
        padding: 28px 22px 22px;
    }

    .store-hero h1 {
        font-size: clamp(2.25rem, 12vw, 3.25rem);
    }

    .store-hero-description {
        font-size: 0.88rem;
    }

    .store-hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .store-button {
        width: 100%;
    }

    .store-trust-list {
        display: grid;
        gap: 9px;
        margin-top: 24px;
    }

    .store-hero-showcase,
    #hero-carousel {
        min-height: 360px;
    }

    .store-category-bar {
        margin-top: 28px;
    }

    .store-category-head,
    .store-section-head {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .store-section-note {
        text-align: left;
    }

    .store-category-list {
        margin-left: -15px;
        margin-right: -15px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .store-catalog-layout {
        gap: 34px;
    }

    .store-filter-panel {
        border-radius: 16px;
        padding: 18px;
    }

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

    .store-filter-submit {
        grid-column: auto;
    }

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

    .product-card-media {
        aspect-ratio: 1 / 0.78;
    }

    .store-section + .store-section {
        margin-top: 42px;
    }

    .store-pagination {
        gap: 6px;
    }

    .store-page-link {
        min-width: 38px;
        padding: 0 10px;
    }

    .store-commercial-cta {
        border-radius: 20px;
        padding: 26px 22px;
    }

    .store-commercial-actions {
        flex-direction: column;
        width: 100%;
    }

    .store-footer {
        margin-top: 48px;
    }

    .store-whatsapp-float {
        border-width: 3px;
        bottom: 14px;
        font-size: 0;
        height: 52px;
        justify-content: center;
        min-height: 52px;
        padding: 0;
        right: 14px;
        width: 52px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}
