/* ============================================
   SHOP STYLES - BlueNova RP
   ============================================ */

/* Shop Grid */
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

/* Shop Card */
.shop-card {
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.shop-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4),
                0 0 20px rgba(65,105,225,0.2);
}

/* Shop Image */
.shop-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.shop-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.shop-card:hover .shop-image img {
    transform: scale(1.1);
}

/* Badge */
.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.badge.popular {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.badge.new {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Shop Content */
.shop-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.shop-content h3 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.shop-content > p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 1rem;
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Features List */
.features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.5rem 0;
    color: rgba(255,255,255,0.9);
    font-size: 0.95rem;
}

.features i {
    color: var(--accent);
    font-size: 1rem;
    min-width: 16px;
}

/* Shop Footer */
.shop-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    gap: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent);
    background: linear-gradient(135deg, var(--accent), #7ca6ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.buy-button {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--accent), #7ca6ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.buy-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(65,105,225,0.3);
}

/* ============================================
   VIP CARDS
   ============================================ */

.vip-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem;
    max-width: var(--max-width);
    margin: 0 auto;
}

.vip-card {
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}

.vip-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.vip-card.featured {
    border-color: var(--accent);
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(65,105,225,0.3);
}

.vip-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.vip-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), #7ca6ff);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(65,105,225,0.4);
}

.vip-header {
    text-align: center;
    margin-bottom: 2rem;
}

.vip-header i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.vip-card.bronze .vip-header i {
    color: #cd7f32;
}

.vip-card.silver .vip-header i {
    color: #c0c0c0;
}

.vip-card.gold .vip-header i {
    color: #ffd700;
}

.vip-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.vip-card.bronze h3 {
    color: #cd7f32;
}

.vip-card.silver h3 {
    color: #c0c0c0;
}

.vip-card.gold h3 {
    color: #ffd700;
}

.vip-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
}

.vip-price span {
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    font-weight: 400;
}

.vip-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    flex: 1;
}

.vip-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 0;
    color: rgba(255,255,255,0.9);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 0.95rem;
}

.vip-features li:last-child {
    border-bottom: none;
}

.vip-features i {
    color: var(--accent);
    font-size: 1.1rem;
    min-width: 20px;
}

.vip-button {
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent), #7ca6ff);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    margin-top: auto;
}

.vip-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(65,105,225,0.4);
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255,255,255,0.03);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.faq-item h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.faq-item p {
    color: rgba(255,255,255,0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   SECTION STYLES
   ============================================ */

.section-light {
    background: rgba(255,255,255,0.02);
    padding: 4rem 2rem;
}

.section-dark {
    background: rgba(0,0,0,0.2);
    padding: 4rem 2rem;
}

/* ============================================
   RESPONSIVE SHOP
   ============================================ */

@media (max-width: 1024px) {
    .shop-grid,
    .vip-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .shop-grid,
    .vip-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1rem;
    }

    .vip-card.featured {
        transform: scale(1);
    }

    .vip-card.featured:hover {
        transform: translateY(-5px);
    }

    .shop-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .buy-button {
        width: 100%;
    }

    .price {
        font-size: 1.8rem;
        text-align: center;
    }

    .vip-price {
        font-size: 2rem;
    }

    .section-light,
    .section-dark {
        padding: 3rem 1rem;
    }
}

@media (max-width: 480px) {
    .shop-image {
        height: 180px;
    }

    .shop-content {
        padding: 1.2rem;
    }

    .shop-content h3 {
        font-size: 1.3rem;
    }

    .vip-header h3 {
        font-size: 1.6rem;
    }

    .vip-header i {
        font-size: 2.5rem;
    }

    .vip-card {
        padding: 1.5rem;
    }

    .features li,
    .vip-features li {
        font-size: 0.9rem;
    }

    .faq-item {
        padding: 1.2rem;
    }

    .faq-item h3 {
        font-size: 1.1rem;
    }

    .price {
        font-size: 1.6rem;
    }

    .buy-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 360px) {
    .shop-grid,
    .vip-grid,
    .faq-grid {
        gap: 1rem;
    }

    .shop-content h3 {
        font-size: 1.2rem;
    }

    .vip-header h3 {
        font-size: 1.4rem;
    }

    .vip-price {
        font-size: 1.8rem;
    }
}