/* ===== Store Page Premium Styles ===== */
.store-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    animation: fadeIn 0.5s ease;
}

.store-page-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.2) 0%, rgba(78, 205, 196, 0.2) 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.store-page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    background: linear-gradient(to left, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.store-nav-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.store-tab {
    padding: 10px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    white-space: nowrap;
}

.store-tab.active {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8e8e 100%) !important;
    color: white !important;
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
    border-color: transparent;
}

.store-tab i {
    font-size: 1rem;
}

.badge-discount {
    position: absolute;
    top: 10px;
    left: -30px;
    background: #ff4757;
    color: white;
    padding: 4px 35px;
    font-size: 0.7rem;
    transform: rotate(-45deg);
    font-weight: bold;
    z-index: 10;
    pointer-events: none;
}

.price-card h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.price-card .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 5px;
}

.price-card .duration {
    display: block;
    opacity: 0.6;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.plan-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
    text-align: right;
    flex-grow: 1;
}

.plan-features li {
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.95rem;
}

.plan-features li i {
    color: var(--success);
    margin-left: 10px;
}

.buy-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    border: none;
    background: var(--primary);
    color: white;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.2);
}

.buy-btn:hover {
    filter: brightness(1.1);
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(255, 107, 107, 0.4);
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Light Mode Adjustments */
body.light-mode .store-page-header {
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(78, 205, 196, 0.1) 100%);
    border-color: rgba(0, 0, 0, 0.05);
}

body.light-mode .store-tab {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
    color: #2d3748;
}

body.light-mode .store-info-box {
    background: rgba(0, 0, 0, 0.02);
    border-right-color: var(--primary);
}