 :root {
    --sstore-primary: #ff6f00;
    --sstore-secondary: #ff9100;
    --sstore-accent: #d81b60;
    --sstore-background: #f8f9fa;
    --sstore-card-bg: rgba(255, 255, 255, 0.95);
    --sstore-text: #1a1a1a;
    --sstore-text-light: #4a4a4a;
    --sstore-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    --sstore-glossy-gradient: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.7));
    --sstore-glossy-overlay: linear-gradient(135deg, #ff6f00, #ff9100, #d81b60);
    --sstore-success: #00c4b4;
    --sstore-border-radius: 12px;
    --sstore-transition: all 0.3s ease;
    --sstore-animation-duration: 0.4s;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', 'Arial', sans-serif;
    background: var(--sstore-background);
    color: var(--sstore-text);
    line-height: 1.4;
    font-size: 0.85rem;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--sstore-transition);
}

a:hover {
    color: var(--sstore-primary);
    background: rgba(255, 111, 0, 0.1);
}

/* Container */
.sstore-main-content {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    gap: 0rem;
    margin-top: 1rem;
}

/* Sidebar */
.sstore-sidebar {
    width: 340px;
    background: var(--sstore-card-bg);
    padding: 0.75rem;
    border-radius: var(--sstore-border-radius);
    box-shadow: var(--sstore-shadow);
    transition: transform var(--sstore-animation-duration) ease, left 0.3s ease;
    position: relative;
}

.sstore-sidebar:hover {
    transform: translateY(-4px);
}

.sstore-sidebar h3 {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    width: 200px !important;
}

.sstore-sidebar ul {
    list-style: none;
}

.sstore-sidebar ul li {
    margin-bottom: 0.4rem;
}

.sstore-sidebar ul a {
    font-size: 0.75rem;
    transition: var(--sstore-transition);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sstore-sidebar ul a:hover {
    padding-left: 0.3rem;
}

.sstore-sidebar .sstore-form-group {
    margin-bottom: 0.75rem;
}

.sstore-sidebar .sstore-form-group label {
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.sstore-sidebar input[type="radio"] {
    margin-right: 0.5rem;
    transform: scale(1.2);
}

/* Submenu styles */
.category-item {
    position: relative;
}

.submenu {
    display: none;
    position: absolute;
    left: 70%;
    transform: translateX(-50%);
    top: 0;
    min-width: 178px;
    background-color: #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    z-index: 2100;
    /* Higher than hamburger (2000) and other elements */
    padding: 10px 0;
    list-style: none;
}

.submenu li {
    padding: 0px 5px;
}

.submenu li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    display: block;
}

.submenu li a:hover {
    background-color: #f5f5f5;
    color: #ff6200;
}

.category-item:hover .submenu {
    display: block;
}

/* Hamburger Menu */
.sstore-hamburger {
    display: none;
    position: fixed;
    top: 0rem;
    left: 0rem;
    background: var(--sstore-primary);
    color: #fff;
    padding: 0.5rem;
    border-radius: 50%;
    z-index: 2000;
    cursor: pointer;
    font-size: 0.77rem;
}

/* Category Carousel */
.sstore-category-carousel {
    display: flex;
    overflow-x: auto;
    gap: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    background: var(--sstore-card-bg);
    border-radius: var(--sstore-border-radius);
    box-shadow: var(--sstore-shadow);
    scrollbar-width: thin;
}

.sstore-category-item {
    flex: 0 0 auto;
    text-align: center;
    padding: 0.5rem;
    background: var(--sstore-glossy-overlay);
    color: #fff;
    border-radius: 4px;
    transition: var(--sstore-transition);
}

.sstore-category-item:hover {
    transform: scale(1.05);
}

.sstore-category-item i {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.sstore-category-item span {
    font-size: 0.75rem;
    font-weight: 400;
}

/* Hero Banner */
.sstore-hero-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--sstore-border-radius);
    box-shadow: var(--sstore-shadow), inset 0 0 20px rgba(255, 255, 255, 0.5);
    background: var(--sstore-glossy-overlay);
    animation: glossyShine 4s infinite;
    min-height: 300px;
    margin-bottom: 1rem;
    touch-action: pan-y;
}

.sstore-hero-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    filter: brightness(0.7);
}

.sstore-hero-banner .banner-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}

.sstore-hero-banner .banner-content {
    padding: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    vertical-align: middle;
    width: 60%;
    width: 60%;
    height: 300px;
    max-height: 300px;
}

.sstore-hero-banner .banner-image {
    max-width: 84%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: var(--sstore-shadow);
    animation: float 3s infinite ease-in-out;
    vertical-align: middle;
    padding: 1rem;
}

.sstore-hero-banner h1 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--sstore-glossy-gradient);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    display: inline-block;
}

.sstore-hero-banner .banner-btn {
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid #fff;
    padding: 0.8rem 2rem;
    font-size: 1.1rem;
    border-radius: 25px;
    transition: var(--sstore-transition);
    display: inline-block;
    backdrop-filter: blur(5px);
}

.sstore-hero-banner .banner-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

/* Directory Section */
.directory {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--sstore-card-bg);
    border-radius: var(--sstore-border-radius);
    box-shadow: var(--sstore-shadow);
}

.directory-item {
    background: var(--sstore-card-bg);
    border-radius: var(--sstore-border-radius);
    box-shadow: var(--sstore-shadow);
    padding: 0.75rem;
    transition: var(--sstore-transition);
    text-align: center;
}

.directory-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.directory-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.directory-item .info h2 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.directory-item .info h2 a {
    color: var(--sstore-text);
}

.directory-item .info h2 a:hover {
    color: var(--sstore-primary);
}

.directory-item .info p {
    font-size: 0.8rem;
    color: var(--sstore-text-light);
    line-height: 1.3;
}

/* Promo Banner */
.sstore-promo-banner {
    position: relative;
    overflow: hidden;
    border-radius: var(--sstore-border-radius);
    box-shadow: var(--sstore-shadow), inset 0 0 20px rgba(255, 255, 255, 0.5);
    background: var(--sstore-glossy-overlay);
    animation: glossyShine 4s infinite;
    min-height: 250px;
    margin-bottom: 1rem;
}

.sstore-promo-banner .banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.4;
    z-index: 0;
    filter: brightness(0.7);
}

.sstore-promo-banner .banner-table {
    width: 100%;
    height: 100%;
    border-collapse: collapse;
    position: relative;
    z-index: 1;
}

.sstore-promo-banner .banner-content {
    padding: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    vertical-align: middle;
    width: 60%;
    height: 255px;
}

.sstore-promo-banner .banner-image {
    max-width: 85%;
    height: auto;
    object-fit: contain;
    border-radius: 30px;
    box-shadow: var(--sstore-shadow);
    animation: float 3s infinite ease-in-out;
    vertical-align: middle;
    padding: 1rem;
}

.sstore-promo-banner .promo-discount {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
}

/* Product Grid */
.sstore-product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    padding: 0.5rem;
    justify-content: center;
    max-width: 100%;
}

.sstore-product-item {
    background: var(--sstore-card-bg);
    border-radius: var(--sstore-border-radius);
    box-shadow: var(--sstore-shadow);
    padding: 0.75rem;
    transition: var(--sstore-transition);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
}

.sstore-product-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}

.sstore-product-item .sstore-product-details {
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.sstore-product-item .sstore-product-details h3 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
}

.sstore-product-item .sstore-price {
    font-size: 1rem;
    color: var(--sstore-primary);
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.sstore-product-item .sstore-contributors {
    font-size: 0.8rem;
    color: var(--sstore-text-light);
    margin-bottom: 0.5rem;
}

.sstore-product-item.promo-item {
    border: 3px solid var(--sstore-glossy-overlay);
    background: linear-gradient(to bottom, rgba(255, 111, 0, 0.1), rgba(216, 27, 96, 0.1));
    box-shadow: 0 0 15px rgba(255, 111, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.5);
    animation: pulseGlow 2s infinite;
}

.sstore-product-item.promo-item .sstore-discount-badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--sstore-glossy-overlay);
    color: #fff;
    font-size: 0.8rem;
    padding: 0.3rem 0.6rem;
    border-radius: 15px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.sstore-product-item.promo-item img {
    height: 120px;
}

.sstore-product-item.promo-item .sstore-product-details h3 {
    font-size: 1rem;
    color: var(--sstore-accent);
    font-weight: 600;
}

.sstore-product-item.promo-item .sstore-price {
    font-size: 1rem;
    color: var(--sstore-primary);
    font-weight: 700;
}

/* Buttons */
.sstore-btn-orange,
.sstore-btn-instant {
    background: var(--sstore-glossy-overlay);
    color: #fff;
    padding: 0.5rem;
    border: none;
    border-radius: var(--sstore-border-radius);
    font-size: 0.9rem;
    font-weight: 600;
    transition: var(--sstore-transition);
    display: flex;
    align-items: center;
    gap: 0.3rem;
    justify-content: center;
    width: 100%;
}

.sstore-btn-instant {
    background: linear-gradient(135deg, #28a745, #34c759);
}

.sstore-btn-orange:hover,
.sstore-btn-instant:hover {
    background: linear-gradient(135deg, #d81b60, #ff6f00);
    transform: scale(1.05);
}

.sstore-btn-instant:hover {
    background: linear-gradient(135deg, #218838, #28a745);
}

.sstore-explore-more {
    margin: 1rem auto;
    width: fit-content;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

/* Cart Icon */
.sstore-cart-icon {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    background: var(--sstore-primary);
    color: #fff;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: var(--sstore-shadow);
    z-index: 100;
    transition: var(--sstore-transition);
}

.sstore-cart-icon:hover {
    transform: scale(1.1);
}

/* Animations */
@keyframes glossyShine {
    0% {
        box-shadow: var(--sstore-shadow), inset 0 0 20px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: var(--sstore-shadow), inset 0 0 30px rgba(255, 255, 255, 0.8);
    }

    100% {
        box-shadow: var(--sstore-shadow), inset 0 0 20px rgba(255, 255, 255, 0.5);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 15px rgba(255, 111, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 111, 0, 0.5), inset 0 0 15px rgba(255, 255, 255, 0.7);
    }

    100% {
        box-shadow: 0 0 15px rgba(255, 111, 0, 0.3), inset 0 0 10px rgba(255, 255, 255, 0.5);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sstore-main-content {
        flex-direction: column;
        padding: 0.5rem;
    }

    .sstore-sidebar {
        position: fixed;
        top: 0;
        left: -100%;
        width: 90%;
        max-width: 300px;
        height: 100%;
        z-index: 1500;
        transition: left 0.3s ease;
    }

    .sstore-sidebar.active {
        left: 0;
    }

    .sstore-hamburger {
        display: block;
    }

    .submenu {
        position: static;
        width: 100%;
        box-shadow: none;
        background-color: #f9f9f9;
        padding-left: 20px;
        z-index: 1;
        /* Lower z-index on mobile as it's static */
        transform: none;
        /* Remove centering transform */
    }

    .category-item:hover .submenu {
        display: none;
    }

    .category-item.active .submenu {
        display: block;
    }

    .sstore-hero-banner {
        min-height: 250px;
    }

    .sstore-hero-banner .banner-table {
        display: block;
    }

    .sstore-hero-banner .banner-content {
        width: 100%;
        padding: 1rem;
    }

    .sstore-hero-banner .banner-image {
        max-width: 50%;
        margin: 0 auto;
        display: block;
    }

    .sstore-hero-banner h1 {
        font-size: 1.5rem;
    }

    .sstore-hero-banner .banner-btn {
        font-size: 0.9rem;
        padding: 0.6rem 1.5rem;
    }

    .directory {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 0.5rem;
        max-width: 100%;
    }

    .directory-item img {
        height: 80px;
    }

    .directory-item .info h2 {
        font-size: 0.9rem;
    }

    .directory-item .info p {
        font-size: 0.7rem;
    }

    .sstore-promo-banner {
        min-height: 180px;
    }

    .sstore-promo-banner .banner-table {
        display: block;
    }

    .sstore-promo-banner .banner-content {
        width: 100%;
        padding: 1rem;
    }

    .sstore-promo-banner .banner-image {
        max-width: 50%;
        margin: 0 auto;
        display: block;
    }

    .sstore-promo-banner .promo-discount {
        font-size: 1.3rem;
    }

    .sstore-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        max-width: 100%;
        margin: 0 auto;
        justify-content: center;
        padding: 0.5rem;
    }

    .sstore-product-item {
        max-width: 100%;
    }

    .sstore-product-item img {
        height: 90px;
    }

    .sstore-product-item.promo-item img {
        height: 80px;
    }

    .sstore-product-item .sstore-product-details h3 {
        font-size: 0.75rem;
    }

    .sstore-product-item .sstore-price {
        font-size: 0.85rem;
    }

    .sstore-product-item .sstore-btn-orange,
    .sstore-product-item .sstore-btn-instant {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
}

@media (max-width: 480px) {
    .sstore-hero-banner {
        min-height: 200px;
    }

    .sstore-hero-banner .banner-content {
        padding: 0.5rem;
    }

    .sstore-hero-banner .banner-image {
        max-width: 40%;
    }

    .sstore-hero-banner h1 {
        font-size: 1.2rem;
    }

    .sstore-hero-banner .banner-btn {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .sstore-promo-banner {
        min-height: 150px;
    }

    .sstore-promo-banner .banner-content {
        padding: 0.5rem;
    }

    .sstore-promo-banner .banner-image {
        max-width: 40%;
    }

    .sstore-promo-banner .promo-discount {
        font-size: 1.1rem;
    }

    .sstore-product-grid {
        gap: 0.5rem;
        padding: 0.5rem;
    }

    .sstore-product-item img {
        height: 80px;
    }

    .sstore-product-item.promo-item img {
        height: 70px;
    }

    .sstore-product-item .sstore-product-details h3 {
        font-size: 0.7rem;
    }

    .sstore-product-item .sstore-price {
        font-size: 0.8rem;
    }

    .sstore-product-item .sstore-btn-orange,
    .sstore-product-item .sstore-btn-instant {
        font-size: 0.7rem;
        padding: 0.3rem;
    }
}

/* Skeleton Loading */
.sstore-skeleton {
    background: #e0e0e0;
    border-radius: var(--sstore-border-radius);
    animation: pulse 1.5s infinite;
}

.sstore-skeleton-image {
    width: 100%;
    height: 150px;
    background: #e0e0e0;
    border-radius: 8px;
}

.sstore-skeleton-text {
    width: 80%;
    height: 16px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.sstore-skeleton-text.short {
    width: 50%;
}

.sstore-skeleton-text.medium {
    width: 60%;
}

.sstore-skeleton-button {
    width: 120px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 25px;
    margin-top: 12px;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Loading Spinner */
.sstore-main-content.loading::before,
.sstore-hero-banner.loading::before,
.sstore-product-grid.loading::before,
.sstore-promo-banner.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid var(--sstore-primary);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Skeleton Loading */
.sstore-skeleton {
    background: #e0e0e0;
    border-radius: var(--sstore-border-radius);
    animation: pulse 1.5s infinite;
}

.sstore-skeleton-image {
    width: 100%;
    height: 150px;
    background: #e0e0e0;
    border-radius: 8px;
}

.sstore-skeleton-text {
    width: 80%;
    height: 16px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.sstore-skeleton-text.short {
    width: 50%;
}

.sstore-skeleton-text.medium {
    width: 60%;
}

.sstore-skeleton-button {
    width: 120px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 25px;
    margin-top: 12px;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Loading Spinner */
.sstore-main-content.loading::before,
.sstore-hero-banner.loading::before,
.sstore-product-grid.loading::before,
.sstore-promo-banner.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid var(--sstore-primary);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Fade Effect for Products */
.sstore-product-item {
    transition: opacity 1s ease-in-out;
}

.sstore-product-item.fade-out {
    opacity: 0;
}

.sstore-product-item.fade-in {
    opacity: 1;
}

/* Skeleton Loading */
.sstore-skeleton {
    background: #e0e0e0;
    border-radius: var(--sstore-border-radius);
    animation: pulse 1.5s infinite;
}

.sstore-skeleton-image {
    width: 100%;
    height: 150px;
    background: #e0e0e0;
    border-radius: 8px;
}

.sstore-skeleton-text {
    width: 80%;
    height: 16px;
    background: #e0e0e0;
    border-radius: 4px;
    margin-bottom: 8px;
}

.sstore-skeleton-text.short {
    width: 50%;
}

.sstore-skeleton-text.medium {
    width: 60%;
}

.sstore-skeleton-button {
    width: 120px;
    height: 36px;
    background: #e0e0e0;
    border-radius: 25px;
    margin-top: 12px;
}

@keyframes pulse {
    0% {
        opacity: 0.6;
    }

    50% {
        opacity: 1;
    }

    100% {
        opacity: 0.6;
    }
}

/* Loading Spinner */
.sstore-main-content.loading::before,
.sstore-hero-banner.loading::before,
.sstore-product-grid.loading::before,
.sstore-promo-banner.loading::before,
.sstore-product-item.loading::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    border: 4px solid var(--sstore-primary);
    border-top: 4px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.sstore-product-item.loading::before {
    width: 30px;
    height: 30px;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* Fade Effect for Products */
.sstore-product-item {
    transition: opacity 1s ease-in-out;
    position: relative;
}

.sstore-product-item.fade-out {
    opacity: 0;
}

.sstore-product-item.fade-in {
    opacity: 1;
}

/* Error Message */
.sstore-error-message {
    text-align: center;
    color: #d32f2f;
    font-size: 1rem;
    margin: 20px 0;
    padding: 10px;
    background: #ffebee;
    border-radius: 4px;
}

/* Retry Button */
.sstore-retry {
    display: block;
    margin: 10px auto;
    padding: 10px 20px;
    background: var(--sstore-primary);
    color: white;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
}

.sstore-retry:hover {
    background: #e55f00;
}

all