/* ============================================
   SHOP INDEX PAGE
   ============================================ */
.shop-page {
    min-height: 100vh;
    padding: 120px 5% 80px;
    background: #0a0a0a;
}
.shop-page-container {
    max-width: 1000px;
    margin: 0 auto;
}
.shop-hero {
    text-align: center;
    margin-bottom: 4rem;
}
.shop-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}
.shop-hero-title span {
    background: linear-gradient(45deg, #e74c3c, #ff6b6b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.shop-hero-subtitle {
    color: rgba(255,255,255,0.6);
    font-size: 1.15rem;
}
.shop-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.shop-product-card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.shop-product-card:hover {
    transform: translateY(-6px);
    border-color: rgba(231,76,60,0.4);
    box-shadow: 0 20px 50px rgba(231,76,60,0.15);
}
.shop-product-image {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #111, #1a1a1a);
    overflow: hidden;
}
.shop-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 2rem;
    transition: transform 0.5s ease;
}
.shop-product-card:hover .shop-product-image img {
    transform: scale(1.08);
}
.shop-product-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 0.3rem 1rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}
.shop-product-badge.badge-new {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}
.shop-product-info {
    padding: 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    flex: 1;
}
.shop-product-info h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
}
.shop-product-desc {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.6;
    flex: 1;
}
.shop-product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin-top: 0.5rem;
}
.shop-product-price {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
}
.shop-product-bonus {
    color: #e74c3c;
    font-size: 0.8rem;
    font-weight: 700;
}

/* Promo Banner */
.shop-promo-banner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, rgba(231,76,60,0.08), rgba(255,107,107,0.04));
    border: 1px solid rgba(231,76,60,0.2);
    border-radius: 20px;
}
.shop-promo-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}
.shop-promo-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.shop-promo-text strong {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
}
.shop-promo-text span {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 700px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    .shop-hero-title {
        font-size: 2.5rem;
    }
    .shop-promo-banner {
        flex-direction: column;
        text-align: center;
        gap: 0.8rem;
    }
}
