.store-section {
    background: #f7fbff;
    border: 1px solid #d7e6f5;
    border-radius: 8px;
    color: #172033;
    margin: 32px auto 0;
    max-width: 1120px;
    padding: 28px;
}

.store-section--landing {
    margin-bottom: 48px;
}

.store-heading {
    align-items: flex-end;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.store-kicker {
    color: #1565c0;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.store-title {
    color: #172033;
    font-size: 30px;
    line-height: 1.15;
    margin: 4px 0 0;
}

.store-subtitle {
    color: #516070;
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
    max-width: 360px;
}

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

.store-card {
    background: #fff;
    border: 1px solid #d8e4f0;
    border-radius: 8px;
    display: grid;
    gap: 16px;
    grid-template-columns: 132px minmax(0, 1fr);
    min-width: 0;
    padding: 16px;
}

.store-visual {
    align-items: center;
    aspect-ratio: 1;
    background: #ecf6ff;
    border: 1px solid #cde0f2;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.store-visual--photo {
    background: #f0fbff;
}

.store-visual img {
    box-sizing: border-box;
    display: block;
    height: 100%;
    object-fit: contain;
    padding: 8px;
    width: 100%;
}

.store-card-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.store-product-name {
    color: #172033;
    font-size: 19px;
    line-height: 1.25;
    margin: 0 0 6px;
}

.store-product-copy {
    color: #5d6b7c;
    font-size: 13px;
    line-height: 1.45;
    margin: 0 0 12px;
}

.store-size-row {
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
}

.store-size-label {
    color: #5d6b7c;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.store-size-options {
    display: inline-flex;
    gap: 6px;
}

.store-size-btn {
    background: #eef5fc;
    border: 0;
    border-radius: 6px;
    color: #172033;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    height: 32px;
    min-width: 40px;
    padding: 0 10px;
}

.store-size-btn:hover {
    background: #dbeaf8;
}

.store-size-btn.is-selected {
    background: #1565c0;
    color: #fff;
}

.store-size-btn.is-selected:hover {
    background: #1565c0;
}

.store-card-footer {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: auto;
}

.store-price {
    color: #0d47a1;
    font-size: 20px;
    font-weight: 800;
}

.store-quantity {
    align-items: center;
    border: 1px solid #c9d7e6;
    border-radius: 8px;
    display: inline-flex;
    height: 38px;
    overflow: hidden;
}

.store-qty-btn {
    align-items: center;
    background: #eef5fc;
    border: 0;
    color: #172033;
    cursor: pointer;
    display: inline-flex;
    font-size: 20px;
    font-weight: 800;
    height: 38px;
    justify-content: center;
    line-height: 1;
    width: 38px;
}

.store-qty-btn:hover {
    background: #dbeaf8;
}

.store-qty-input {
    border: 0;
    color: #172033;
    font-size: 15px;
    font-weight: 800;
    height: 38px;
    text-align: center;
    width: 44px;
}

.store-buy-btn {
    background: #1565c0;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 800;
    min-height: 40px;
    padding: 0 18px;
}

.store-buy-btn:hover {
    background: #0d47a1;
}

.store-buy-btn:disabled {
    cursor: wait;
    opacity: 0.7;
}

.store-status {
    color: #516070;
    flex-basis: 100%;
    font-size: 12px;
    min-height: 18px;
}

.store-status--error {
    color: #b71c1c;
    font-weight: 700;
}

.store-status--success {
    color: #1b5e20;
    font-weight: 700;
}

.store-primary-link {
    background: #1565c0;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-weight: 800;
    min-height: 42px;
    padding: 10px 18px;
    text-decoration: none;
}

.store-primary-link:hover {
    background: #0d47a1;
}

@media (max-width: 820px) {
    .store-section {
        padding: 22px 16px;
    }

    .store-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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

@media (max-width: 520px) {
    .store-card {
        grid-template-columns: 96px minmax(0, 1fr);
        padding: 12px;
    }

    .store-title {
        font-size: 24px;
    }

    .store-card-footer {
        align-items: flex-start;
        flex-direction: column;
    }
}