.store-page {
    flex: 1 1 auto;
    padding: 32px 0 72px;
}

.store-demo-banner {
    box-sizing: border-box;
    width: calc(100% - 30px);
    max-width: 1200px;
    margin: 0 auto 20px;
    padding: 12px 18px;
    border-radius: 10px;
    background: rgba(238, 87, 92, 0.09);
    border: 1px solid rgba(238, 87, 92, 0.22);
    color: var(--basic-text);
    font-size: 14px;
    line-height: 1.45;
}

.store-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    display: grid;
    gap: 28px;
}

@media (min-width: 960px) {
    .store-layout {
        grid-template-columns: 240px minmax(0, 1fr);
        align-items: start;
    }
}

.store-sidebar {
    position: sticky;
    top: 96px;
}

.store-sidebar__title {
    font-family: "Mulish", "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--secondary-text-color);
    margin: 0 0 12px;
}

.store-cat-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

@media (max-width: 959px) {
    .store-sidebar {
        position: static;
    }

    .store-cat-list {
        flex-direction: row;
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 8px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }

    .store-cat-list::-webkit-scrollbar {
        height: 6px;
    }
}

.store-cat-link {
    display: block;
    padding: 10px 14px;
    border-radius: 10px;
    text-decoration: none;
    color: var(--basic-text);
    font-weight: 600;
    font-size: 15px;
    border: 1px solid transparent;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    white-space: nowrap;
}

.store-cat-link:hover {
    background: rgba(238, 87, 92, 0.08);
    color: var(--button-bg-color);
}

.store-cat-link.is-active {
    background: rgba(238, 87, 92, 0.12);
    border-color: rgba(238, 87, 92, 0.35);
    color: var(--button-bg-color);
}

.store-main__lead {
    font-size: 17px;
    color: var(--secondary-text-color);
    margin: 0 0 28px;
    max-width: 48rem;
}

.store-product-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.store-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 14px;
    border: 1px solid rgba(33, 34, 45, 0.09);
    background: #fff;
    box-shadow: 0 8px 28px rgba(33, 34, 45, 0.06);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.store-product-card:hover {
    border-color: rgba(238, 87, 92, 0.28);
    box-shadow: 0 14px 36px rgba(238, 87, 92, 0.1);
}

.store-product-card__media {
    aspect-ratio: 320 / 220;
    background: #f4f5f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.store-product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.store-product-card__body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
}

.store-product-card__title {
    font-family: "Mulish", "Open Sans", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.35;
    margin: 0 0 8px;
    color: var(--basic-text);
}

.store-product-card__sku {
    font-size: 12px;
    color: var(--secondary-text-color);
    margin-bottom: 8px;
}

.store-product-card__desc {
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary-text-color);
    margin: 0 0 14px;
    flex: 1 1 auto;
}

.store-product-card__price-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
}

.store-product-card__price {
    font-size: 22px;
    font-weight: 700;
    color: var(--basic-text);
}

.store-product-card__price span {
    font-size: 15px;
    font-weight: 600;
    color: var(--secondary-text-color);
    margin-left: 2px;
}

.store-product-card__cta {
    flex-shrink: 0;
}

.store-product-card__cta.button {
    padding: 10px 16px;
    font-size: 14px;
}

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