/* ============ SHOP PAGE ============ */
:root {
    --primary: #8B2252;
    --primary-dark: #6B1A3F;
    --primary-light: #A83262;
    --primary-glow: rgba(139, 34, 82, 0.3);
    --primary-glow-strong: rgba(139, 34, 82, 0.5);
    --primary-bg: rgba(139, 34, 82, 0.05);
    --primary-bg-hover: rgba(139, 34, 82, 0.1);
    --primary-border: rgba(139, 34, 82, 0.2);
    --gold: rgba(255, 215, 0, 0.8);
    --gold-glow: rgba(255, 215, 0, 0.3);
    --bg-dark: #0a0a0a;
    --bg-card: #151515;
    --bg-card-hover: #1a1a1a;
    --text: #ffffff;
    --text-light: #cccccc;
    --text-muted: #888888;
    --border: rgba(255, 255, 255, 0.08);
    --border-hover: rgba(139, 34, 82, 0.3);
}

/* ===== HERO ===== */
.shop-hero {
    min-height: 30vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a15 40%, #0a0a0a 100%);
    padding: 80px 2rem 2rem;
    border-bottom: 1px solid var(--border);
}

.shop-hero-content {
    animation: fadeInUp 0.6s ease-out;
}

.shop-hero-icon {
    font-size: 3.5rem;
    margin-bottom: 0.8rem;
}

.shop-hero h1 {
    font-size: 2.5rem;
    color: var(--primary);
    text-shadow: 0 0 30px var(--primary-glow);
    margin-bottom: 0.5rem;
}

.shop-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ===== PRODUCTS ===== */
.shop-products {
    padding: 3rem 0 4rem;
}

.shop-products .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

/* ===== PRODUCT CARD ===== */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.8rem;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.product-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3), 0 0 80px rgba(139, 34, 82, 0.1);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card.featured {
    border-color: var(--primary-border);
    background: linear-gradient(180deg, var(--primary-bg), var(--bg-card));
}

.product-card.gold-card {
    border-color: rgba(255, 215, 0, 0.2);
    background: linear-gradient(180deg, rgba(255, 215, 0, 0.03), var(--bg-card));
}

.product-card.vip-card {
    border-color: rgba(139, 34, 82, 0.3);
    background: linear-gradient(180deg, rgba(139, 34, 82, 0.05), var(--bg-card));
}

/* Badge */
.product-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.8rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: bold;
}

.product-badge.hot {
    background: #ff4444;
    animation: badgePulse 1.5s ease-in-out infinite;
}

.product-badge.vip {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 10px rgba(255, 68, 68, 0.3); }
    50% { box-shadow: 0 0 25px rgba(255, 68, 68, 0.6); }
}

/* Icon */
.product-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

/* Title */
.product-title {
    font-size: 1.3rem;
    color: var(--text);
    margin-bottom: 0.8rem;
    font-weight: bold;
}

/* Description */
.product-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

/* Price */
.product-price {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
    margin-bottom: 1rem;
}

.price-amount {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--text);
}

.price-currency {
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Buy Button */
.buy-btn {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.buy-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 5px 20px var(--primary-glow);
    transform: scale(1.02);
}

/* ===== MONEY OPTIONS ===== */
.money-options {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.money-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.2s;
    position: relative;
}

.money-option:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: var(--border-hover);
}

.money-option.popular {
    border-color: var(--primary-border);
    background: var(--primary-bg);
}

.popular-badge {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--primary);
    color: white;
    padding: 0.15rem 0.6rem;
    border-radius: 10px;
    font-size: 0.6rem;
    font-weight: bold;
}

.money-amount {
    color: var(--text);
    font-weight: bold;
    font-size: 0.9rem;
}

.money-price {
    color: var(--primary);
    font-weight: bold;
    font-size: 0.9rem;
}

/* Buy Button Small */
.buy-btn-sm {
    padding: 0.4rem 1rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.buy-btn-sm:hover {
    background: var(--primary-dark);
    box-shadow: 0 3px 10px var(--primary-glow);
}

.buy-btn-sm.gold-btn {
    background: linear-gradient(135deg, #ffd700, #ffaa00);
    color: #000;
}

.buy-btn-sm.gold-btn:hover {
    box-shadow: 0 3px 15px var(--gold-glow);
}

.buy-btn-sm.vip-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

/* ===== PAYMENT INFO ===== */
.payment-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
}

.payment-info h3 {
    font-size: 1.2rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.payment-method {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: 10px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.payment-note {
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .shop-hero h1 {
        font-size: 1.8rem;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        padding: 1.5rem;
    }
    
    .money-option {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    .shop-hero h1 {
        font-size: 1.5rem;
    }
    
    .payment-methods {
        gap: 0.5rem;
    }
}