.sr-store-page {
    display: grid;
    gap: 34px;
}

.sr-store-hero {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns:
        minmax(0, 1.25fr)
        minmax(330px, .75fr);
    gap: 34px;
    align-items: end;
    padding: 44px;
    border: 1px solid rgba(34, 197, 94, .28);
    border-radius: 30px;
    background:
        radial-gradient(
            circle at 15% 0%,
            rgba(34, 197, 94, .24),
            transparent 38%
        ),
        radial-gradient(
            circle at 90% 30%,
            rgba(14, 165, 233, .16),
            transparent 35%
        ),
        rgba(15, 23, 42, .92);
    box-shadow:
        0 34px 100px rgba(0, 0, 0, .42);
}

.sr-store-hero::after {
    content: "";
    position: absolute;
    inset: auto -90px -120px auto;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(34, 197, 94, .12);
    filter: blur(18px);
    pointer-events: none;
}

.sr-store-eyebrow,
.sr-store-modal-badge {
    display: inline-flex;
    width: fit-content;
    padding: 8px 12px;
    border: 1px solid rgba(74, 222, 128, .34);
    border-radius: 999px;
    background: rgba(34, 197, 94, .12);
    color: #86efac;
    font-size: 13px;
    font-weight: 900;
}

.sr-store-hero h1 {
    max-width: 800px;
    margin: 18px 0;
    font-size: clamp(44px, 5vw, 72px);
    line-height: .95;
}

.sr-store-hero p {
    max-width: 760px;
    font-size: 18px;
}

.sr-store-hero-panel {
    display: grid;
    gap: 12px;
}

.sr-store-hero-panel article {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border: 1px solid rgba(148, 163, 184, .16);
    border-radius: 18px;
    background: rgba(2, 6, 23, .52);
}

.sr-store-hero-panel strong {
    color: #86efac;
    font-size: 20px;
}

.sr-store-hero-panel span {
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 800;
}

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

.sr-store-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 480px;
    border: 1px solid rgba(34, 197, 94, .22);
    border-radius: 24px;
    background:
        linear-gradient(
            180deg,
            rgba(15, 23, 42, .98),
            rgba(2, 6, 23, .94)
        );
    box-shadow:
        0 22px 70px rgba(0, 0, 0, .28);
    transition:
        transform .2s ease,
        border-color .2s ease,
        box-shadow .2s ease;
}

.sr-store-card:hover {
    transform: translateY(-4px);
    border-color: rgba(74, 222, 128, .58);
    box-shadow:
        0 30px 90px rgba(0, 0, 0, .38),
        0 0 34px rgba(34, 197, 94, .08);
}

.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: 220px;
    overflow: hidden;
    background:
        linear-gradient(
            135deg,
            rgba(34, 197, 94, .26),
            rgba(14, 165, 233, .16)
        ),
        #020617;
}

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

.sr-store-card-placeholder,
.sr-store-detail-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 8px;
    background:
        radial-gradient(
            circle at center,
            rgba(34, 197, 94, .30),
            transparent 45%
        ),
        linear-gradient(
            135deg,
            rgba(15, 23, 42, .90),
            rgba(2, 6, 23, .98)
        );
}

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

.sr-store-card-placeholder strong,
.sr-store-detail-placeholder strong {
    color: #e2e8f0;
}

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

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

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

.sr-store-card h2 {
    margin: 10px 0;
    font-size: 25px;
}

.sr-store-card p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.sr-store-buy-button,
.sr-store-detail-link {
    position: relative;
    z-index: 3;
    pointer-events: auto;
}

.sr-store-buy-button,
.sr-store-primary-button,
.sr-store-secondary-button,
.sr-store-cancel-button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 13px 18px;
    border: 0;
    border-radius: 14px;
    background:
        linear-gradient(135deg, #22c55e, #16a34a);
    color: #03140a;
    font-family: inherit;
    font-size: 14px;
    font-weight: 1000;
    text-decoration: none;
    cursor: pointer;
}

.sr-store-primary-button[disabled] {
    opacity: .48;
    cursor: not-allowed;
}

.sr-store-secondary-button,
.sr-store-cancel-button {
    border: 1px solid rgba(148, 163, 184, .20);
    background: rgba(148, 163, 184, .10);
    color: #e2e8f0;
}

.sr-store-detail-link {
    margin-top: 16px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    text-align: center;
}

.sr-store-empty,
.sr-store-not-found {
    display: grid;
    place-items: center;
    min-height: 360px;
    padding: 40px;
    border: 1px dashed rgba(74, 222, 128, .28);
    border-radius: 28px;
    background: rgba(15, 23, 42, .72);
    text-align: center;
}

.sr-store-empty-icon {
    font-size: 54px;
}

.sr-store-empty h2,
.sr-store-not-found h1 {
    margin: 14px 0;
}
