.category_list_container .card ul li {
    border-width: 0 !important;
}

.category_list_container .card ul.list-group {
    margin-left: -15px;
}
@media screen and (min-width: 1024px) {
    .category_list_container .card {
        min-height: 511px;
    }
}
@media screen and (min-width: 700px) {
    .category_list_container .card {
        min-height: 511px;
    }
}
@media screen and (min-width: 900px) {
    .category_list_container .card {
        min-height: 404px;
    }
}
.player-information li {
    border-top: 1px solid #dedede;
    padding: 8px 14px !important;
    display: flex;
    justify-content: space-between;
    gap: 68px;
}
.player-information li span {
    word-break: break-all;
    float: none !important;
}
.loader-bg {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #00000082;
    z-index: 10000;
}
.loader-box {
    position: absolute;
    width: 125px;
    height: 125px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 20px;
    text-align: center;
    border-radius: 50%;
    border: 4px solid var(--main-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-box img {
    height: 100%;
    margin-right: -2px;
}

/* --- STORE FRONT LINKS STYLING --- */

/* 1. Header Navigation Styling */
.badge-hot {
    background: linear-gradient(135deg, #ff3b30 0%, #ff2d55 100%);
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 700;
    padding: 1px 5px !important;
    border-radius: 4px;
    margin-left: 4px;
    display: inline-block;
    vertical-align: middle;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(255, 59, 48, 0.4);
    animation: hot-pulse 1.8s infinite;
}

@keyframes hot-pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); box-shadow: 0 2px 10px rgba(255, 59, 48, 0.6); }
    100% { transform: scale(1); }
}

.badge-hot-mobile {
    font-size: 8px;
    padding: 2px 5px;
    border-radius: 3px;
    vertical-align: middle;
    font-weight: bold;
    background: linear-gradient(135deg, #ff3b30 0%, #ff2d55 100%);
    color: #fff;
    margin-left: 5px;
    box-shadow: 0 1px 4px rgba(255, 59, 48, 0.3);
}

/* 2. Floating Action Button (FAB) */
.floating-store-btn {
    position: fixed;
    bottom: 30px;
    left: 30px; /* Put it on bottom-left, since bottom-right often has back-to-top or chat */
    background: linear-gradient(135deg, #01d099 0%, #009e73 100%);
    color: #ffffff !important;
    padding: 12px 20px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(1, 208, 153, 0.45);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none !important;
    font-family: inherit;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid rgba(255, 255, 255, 0.2);
    overflow: hidden;
}

.floating-store-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(1, 208, 153, 0.65);
    background: linear-gradient(135deg, #00b080 0%, #01d099 100%);
}

.floating-store-btn .btn-icon {
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: float-cart 2s ease-in-out infinite;
}

.floating-store-btn .btn-text {
    white-space: nowrap;
    text-transform: uppercase;
    font-weight: bold;
}

.floating-store-btn .btn-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50px;
    border: 2px solid #01d099;
    opacity: 0.8;
    animation: btn-ripple 2.5s infinite;
    pointer-events: none;
}

@keyframes float-cart {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

@keyframes btn-ripple {
    0% {
        transform: scale(0.95);
        opacity: 0.8;
    }
    50% {
        opacity: 0.3;
    }
    100% {
        transform: scale(1.25);
        opacity: 0;
    }
}

/* 3. Store Spotlight Section on Homepage */
.store-spotlight-section {
    background: linear-gradient(180deg, #ffffff 0%, #f4faf7 100%);
    padding: 80px 0;
    border-top: 1px solid rgba(1, 208, 153, 0.1);
    border-bottom: 1px solid rgba(1, 208, 153, 0.1);
    position: relative;
    overflow: hidden;
}

.store-spotlight-section::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(1, 208, 153, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.store-spotlight-kicker {
    display: inline-block;
    color: #01d099;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
}

.store-spotlight-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 15px;
}

.store-spotlight-desc {
    color: #666;
    font-size: 15px;
    line-height: 1.6;
    max-width: 600px;
    margin: 0;
}

.store-spotlight-btn-main {
    display: inline-block;
    background: #1a1a1a;
    color: #ffffff !important;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    text-decoration: none !important;
}

.store-spotlight-btn-main:hover {
    background: #01d099;
    color: #ffffff !important;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(1, 208, 153, 0.35);
}

/* Product Cards in Spotlight */
.spotlight-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.spotlight-product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(1, 208, 153, 0.15);
    border-color: rgba(1, 208, 153, 0.2);
}

.spotlight-product-img-wrap {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background-color: #f7f7f7;
    overflow: hidden;
}

.spotlight-product-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.spotlight-product-card:hover .spotlight-product-img-wrap img {
    transform: scale(1.08);
}

.spotlight-tag-sale {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #ff3b30;
    color: #ffffff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 5px rgba(255, 59, 48, 0.3);
}

.spotlight-product-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.spotlight-product-cat {
    font-size: 11px;
    font-weight: 700;
    color: #01d099;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.spotlight-product-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    line-height: 1.4;
}

.spotlight-product-name a {
    color: #1a1a1a;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.spotlight-product-name a:hover {
    color: #01d099;
}

.spotlight-product-rating {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 12px;
}

.spotlight-product-rating i {
    color: #ffcc00;
}

.spotlight-product-rating span {
    color: #888;
    margin-left: 5px;
    font-weight: 500;
}

.spotlight-product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.spotlight-product-price {
    display: flex;
    flex-direction: column;
}

.spotlight-product-price .current-price {
    font-size: 18px;
    font-weight: 800;
    color: #1a1a1a;
}

.spotlight-product-price .old-price {
    font-size: 13px;
    color: #aaa;
    margin-top: -2px;
}

.spotlight-product-buy {
    background: #01d099;
    color: #ffffff !important;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.spotlight-product-buy:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* Fallback Promo Cards */
.spotlight-promo-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.02);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spotlight-promo-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(1, 208, 153, 0.12);
    border-color: rgba(1, 208, 153, 0.15);
}

.spotlight-promo-icon-wrap {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 20px;
    transition: transform 0.4s ease;
}

.spotlight-promo-card:hover .spotlight-promo-icon-wrap {
    transform: rotate(10deg) scale(1.05);
}

.spotlight-promo-icon-wrap.bg-green {
    background: rgba(1, 208, 153, 0.1);
    color: #01d099;
}

.spotlight-promo-icon-wrap.bg-blue {
    background: rgba(0, 122, 255, 0.1);
    color: #007aff;
}

.spotlight-promo-icon-wrap.bg-yellow {
    background: rgba(255, 204, 0, 0.1);
    color: #ffb300;
}

.spotlight-promo-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
}

.spotlight-promo-body p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.spotlight-promo-body a {
    color: #01d099;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: gap 0.2s ease;
}

.spotlight-promo-body a:hover {
    color: #1a1a1a;
    gap: 8px;
}

@media (max-width: 991px) {
    .store-spotlight-section {
        padding: 60px 0;
    }
    .store-spotlight-title {
        font-size: 28px;
    }
    .floating-store-btn {
        bottom: 20px;
        left: 20px;
    }
}

