.store-page,
.store-product-page {
    background: linear-gradient(180deg, #fffdf9 0%, #f8fafc 100%);
}

.store-hero {
    max-width: 980px;
    padding: 64px 0 22px;
    text-align: center;
}

.store-hero h1,
.store-product-info h1 {
    margin: 0;
    color: var(--primary);
    font-size: clamp(2.25rem, 6vw, 4.5rem);
    line-height: 1.02;
}

.store-hero > p:not(.eyebrow) {
    max-width: 700px;
    margin: 16px auto 0;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.7;
}

.store-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(160px, 230px) auto;
    gap: 10px;
    margin: 26px auto 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.store-search input,
.store-search select {
    width: 100%;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--primary);
    font: inherit;
}

.store-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 0 16px;
    scrollbar-width: none;
}

.store-filters::-webkit-scrollbar {
    display: none;
}

.store-filters a {
    flex: 0 0 auto;
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 0 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 900;
    text-decoration: none;
}

.store-filters a:hover,
.store-filters a.is-active {
    border-color: rgba(255, 107, 26, 0.35);
    background: var(--plexo-peach);
    color: var(--accent-strong);
}

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

.store-card {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
    box-shadow: 0 14px 36px rgba(16, 35, 63, 0.06);
}

.store-card-cover {
    aspect-ratio: 16 / 11;
    display: grid;
    place-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--plexo-green-pale), var(--plexo-peach));
    color: var(--primary);
    font-size: 2.5rem;
    font-weight: 1000;
    text-decoration: none;
}

.store-card-cover img,
.store-product-cover img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.store-card-body {
    display: grid;
    gap: 10px;
    padding: 18px;
}

.store-card-body small {
    color: var(--accent-strong);
    font-weight: 900;
}

.store-card-body h2 {
    margin: 0;
    color: var(--primary);
    font-size: 1.2rem;
    line-height: 1.25;
}

.store-card-body h2 a {
    color: inherit;
    text-decoration: none;
}

.store-card-body p {
    min-height: 3.2em;
    margin: 0;
    color: var(--muted);
    line-height: 1.6;
}

.store-price {
    color: var(--primary);
    font-size: 1.08rem;
    font-weight: 1000;
}

.store-actions,
.store-product-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.store-empty {
    min-height: 280px;
    display: grid;
    place-items: center;
    justify-items: center;
    gap: 10px;
    padding: 34px;
    text-align: center;
}

.store-empty h2,
.store-related-head h2,
.store-contact-box h2 {
    margin: 0;
    color: var(--primary);
}

.store-empty p {
    margin: 0;
    color: var(--muted);
}

.store-product-container {
    padding: 34px 0 64px;
}

.store-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-weight: 800;
}

.store-breadcrumb a {
    color: var(--primary);
    text-decoration: none;
}

.store-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 32px;
    align-items: start;
    margin-top: 28px;
}

.store-product-cover {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: linear-gradient(135deg, var(--plexo-green-pale), var(--plexo-peach));
    color: var(--primary);
    font-size: 5rem;
    font-weight: 1000;
    box-shadow: var(--shadow);
}

.store-product-info {
    display: grid;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--surface);
    box-shadow: 0 14px 36px rgba(16, 35, 63, 0.06);
}

.store-product-price {
    font-size: 1.45rem;
}

.store-description {
    color: var(--text);
    line-height: 1.75;
}

.store-digital-link {
    width: fit-content;
    color: var(--accent-strong);
    font-weight: 900;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.store-contact-box {
    padding: 18px;
    border: 1px solid rgba(18, 55, 42, 0.12);
    border-radius: 16px;
    background: var(--plexo-green-pale);
}

.store-contact-box p {
    margin: 8px 0 0;
    color: var(--text);
    line-height: 1.65;
}

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

.store-related-head {
    margin-bottom: 16px;
    text-align: center;
}

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

@media (max-width: 680px) {
    .store-search,
    .store-grid,
    .store-product-layout {
        grid-template-columns: 1fr;
    }

    .store-hero {
        padding-top: 44px;
    }

    .store-product-info {
        padding: 22px;
    }

    .store-actions .btn,
    .store-product-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
