.sr-store-products-section,
.sr-store-empty-shell {
    padding: 29px;
    border: 1px solid rgba(148, 163, 184, .14);
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(34, 197, 94, .06),
            transparent 35%
        ),
        rgba(15, 23, 42, .72);
}

.sr-store-products-heading,
.sr-store-empty-heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 25px;
    margin-bottom: 22px;
}

.sr-store-section-label {
    display: block;
    margin-bottom: 7px;
    color: #86efac;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .11em;
}

.sr-store-products-heading h2,
.sr-store-empty-heading h2 {
    margin: 0 0 7px;
    color: #f8fafc;
    font-size: 27px;
}

.sr-store-products-heading p,
.sr-store-empty-heading p {
    max-width: 690px;
    color: #94a3b8;
    font-size: 14px;
}

.sr-store-products-heading > strong {
    flex: 0 0 auto;
    padding: 9px 13px;
    border: 1px solid rgba(74, 222, 128, .22);
    border-radius: 999px;
    background: rgba(34, 197, 94, .09);
    color: #86efac;
    font-size: 12px;
}

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

.sr-store-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 465px;
    border: 1px solid rgba(148, 163, 184, .15);
    border-radius: 21px;
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, .98),
            rgba(2, 6, 23, .96)
        );
    box-shadow:
        0 18px 55px rgba(0, 0, 0, .24);
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.sr-store-card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 222, 128, .44);
    box-shadow:
        0 27px 75px rgba(0, 0, 0, .36),
        0 0 30px rgba(34, 197, 94, .06);
}

.sr-store-card-open {
    position: absolute;
    inset: 0;
    z-index: 1;
    width: 100%;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.sr-store-card-media {
    position: relative;
    height: 205px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(34, 197, 94, .20),
            rgba(14, 165, 233, .13)
        ),
        #020617;
}

.sr-store-card-media::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 65px;
    background:
        linear-gradient(
            transparent,
            rgba(2, 6, 23, .72)
        );
}

.sr-store-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sr-store-card-placeholder {
    display: grid;
    place-items: center;
    align-content: center;
    width: 100%;
    height: 100%;
    gap: 10px;
    background:
        radial-gradient(
            circle at center,
            rgba(34, 197, 94, .22),
            transparent 45%
        );
}

.sr-store-placeholder-logo {
    display: grid;
    place-items: center;
    width: 72px;
    height: 72px;
    border-radius: 22px;
    background:
        linear-gradient(135deg, #22c55e, #14532d);
    color: #04130a;
    font-size: 26px;
    font-weight: 1000;
    box-shadow:
        0 0 40px rgba(34, 197, 94, .28);
}

.sr-store-card-placeholder > span {
    color: #cbd5e1;
    font-size: 12px;
    font-weight: 900;
}

.sr-store-featured {
    position: absolute;
    z-index: 2;
    top: 13px;
    right: 13px;
    padding: 7px 10px;
    border: 1px solid rgba(251, 191, 36, .35);
    border-radius: 999px;
    background: rgba(245, 158, 11, .92);
    color: #231500;
    font-size: 11px;
    font-weight: 1000;
}

.sr-store-card-body {
    position: relative;
    z-index: 2;
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 20px;
    pointer-events: none;
}

.sr-store-card-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
}

.sr-store-category {
    color: #86efac;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .09em;
}

.sr-store-card-status {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #94a3b8;
    font-size: 10px;
    font-weight: 900;
}

.sr-store-card-status::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow:
        0 0 9px rgba(74, 222, 128, .65);
}

.sr-store-card h2 {
    margin: 11px 0 8px;
    color: #f8fafc;
    font-size: 22px;
    line-height: 1.15;
}

.sr-store-card-body > p {
    flex: 1;
    color: #94a3b8;
    font-size: 13px;
    line-height: 1.55;
}

.sr-store-card-divider {
    height: 1px;
    margin: 18px 0;
    background:
        linear-gradient(
            90deg,
            rgba(148, 163, 184, .16),
            transparent
        );
}

.sr-store-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 13px;
}

.sr-store-card-price-wrap > span {
    display: block;
    margin-bottom: 3px;
    color: #64748b;
    font-size: 10px;
    font-weight: 900;
}

.sr-store-price {
    color: #f8fafc;
    font-size: 17px;
}

.sr-store-buy-button {
    position: relative;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 42px;
    padding: 11px 14px;
    border-radius: 12px;
    background:
        linear-gradient(135deg, #22c55e, #16a34a);
    color: #03140a;
    font-size: 12px;
    font-weight: 1000;
    text-decoration: none;
    pointer-events: auto;
}

.sr-store-detail-link {
    position: relative;
    z-index: 3;
    margin-top: 14px;
    color: #64748b;
    font-size: 10px;
    font-weight: 800;
    text-align: center;
    text-decoration: none;
    pointer-events: auto;
}

.sr-store-detail-link:hover {
    color: #94a3b8;
}
