.sr-store-empty-state {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border: 1px solid rgba(251, 191, 36, .20);
    border-radius: 999px;
    background: rgba(245, 158, 11, .08);
    color: #fde68a;
    font-size: 11px;
    font-weight: 900;
}

.sr-store-empty-state span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fbbf24;
    box-shadow:
        0 0 10px rgba(251, 191, 36, .55);
}

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

.sr-store-skeleton-card {
    overflow: hidden;
    min-height: 415px;
    border: 1px solid rgba(148, 163, 184, .12);
    border-radius: 20px;
    background: rgba(2, 6, 23, .55);
}

.sr-store-skeleton-media {
    display: grid;
    place-items: center;
    height: 190px;
    background:
        radial-gradient(
            circle at center,
            rgba(34, 197, 94, .10),
            transparent 48%
        ),
        rgba(15, 23, 42, .60);
}

.sr-store-skeleton-logo {
    display: grid;
    place-items: center;
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: rgba(34, 197, 94, .09);
    color: rgba(134, 239, 172, .45);
    font-size: 22px;
    font-weight: 1000;
}

.sr-store-skeleton-body {
    padding: 20px;
}

.sr-store-skeleton-body > span,
.sr-store-skeleton-body > strong,
.sr-store-skeleton-body > p,
.sr-store-skeleton-footer i,
.sr-store-skeleton-footer b {
    display: block;
    border-radius: 999px;
    background:
        linear-gradient(
            90deg,
            rgba(148, 163, 184, .07),
            rgba(148, 163, 184, .13),
            rgba(148, 163, 184, .07)
        );
    background-size: 200% 100%;
    animation:
        srStoreSkeleton 2.3s ease infinite;
}

.sr-store-skeleton-body > span {
    width: 32%;
    height: 9px;
}

.sr-store-skeleton-body > strong {
    width: 72%;
    height: 19px;
    margin-top: 14px;
}

.sr-store-skeleton-body > p {
    width: 100%;
    height: 10px;
    margin-top: 20px;
}

.sr-store-skeleton-body > p.short {
    width: 67%;
    margin-top: 9px;
}

.sr-store-skeleton-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 48px;
}

.sr-store-skeleton-footer i {
    width: 38%;
    height: 18px;
}

.sr-store-skeleton-footer b {
    width: 27%;
    height: 38px;
    border-radius: 11px;
}

@keyframes srStoreSkeleton {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

@media (max-width: 980px) {
    .sr-store-grid,
    .sr-store-skeleton-grid {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 650px) {
    .sr-store-products-section,
    .sr-store-empty-shell {
        padding: 20px;
    }

    .sr-store-products-heading,
    .sr-store-empty-heading {
        align-items: flex-start;
        flex-direction: column;
    }

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