/* Store collections */
.store-collections-section { margin: 18px 0 22px; }
.store-collections-row {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 6px;
    scroll-snap-type: x proximity;
}
.store-collection-card {
    position: relative;
    flex: 0 0 220px;
    height: 120px;
    border: 0;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    text-align: left;
    color: #fff;
    background: linear-gradient(135deg, #1b2838, #2a475e);
    background-size: cover;
    background-position: center;
    scroll-snap-align: start;
}
.store-collection-card-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.75));
}
.store-collection-card-body {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    z-index: 1;
}
.store-collection-card-title {
    font-weight: 650;
    font-size: 0.98rem;
}
.store-collection-card-meta {
    font-size: 0.78rem;
    opacity: 0.85;
}
.store-collection-page .sc-hero {
    position: relative;
    min-height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #1b2838;
    border-radius: 0 0 14px 14px;
    margin-bottom: 16px;
}
.sc-hero-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(8,12,18,.88), rgba(8,12,18,.35));
}
.sc-hero-body {
    position: relative;
    z-index: 1;
    padding: 28px 24px 24px;
    max-width: 720px;
}
.sc-title { margin: 4px 0 8px; font-size: 1.8rem; }
.sc-desc { margin: 0 0 8px; opacity: 0.9; line-height: 1.4; }
.sc-meta { margin: 0; }
.sc-pdp-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    margin: 12px 0 8px;
}
.sc-pdp-label { font-size: 0.85rem; }
.sc-pdp-chip { border-radius: 999px; }
