/* Shop Page Styles */
.shop-content {
    padding: 80px 0;
}

.shop-notice {
    margin-bottom: 50px;
}

.notice-box {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid var(--primary);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.notice-box i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
}

.notice-box h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 80px;
}

.shop-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shop-item.popular {
    border: 2px solid var(--secondary);
    transform: scale(1.05);
}

.shop-item.popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge, .value-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.popular-badge {
    background: var(--secondary);
    color: white;
}

.value-badge {
    background: #ff6b6b;
    color: white;
}

.shop-item-header {
    padding: 30px 20px;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    position: relative;
}

.shop-item-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--light);
}

.shop-item-price {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.shop-item-duration {
    color: var(--gray);
    font-size: 0.9rem;
}

.shop-item-features {
    padding: 25px;
}

.shop-item-features ul {
    list-style: none;
    margin-bottom: 25px;
}

.shop-item-features li {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.shop-item-features li:last-child {
    border-bottom: none;
}

.shop-item-features li i {
    color: var(--secondary);
    margin-top: 3px;
    flex-shrink: 0;
}

.shop-item-button {
    display: block;
    text-align: center;
    margin: 0 25px 25px;
}

/* FAQ Section */
.shop-faq {
    margin-bottom: 60px;
}

.shop-faq h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 25px;
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--primary);
}

.faq-item h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #ccc;
    line-height: 1.6;
}

/* Support Notice */
.support-notice {
    margin-top: 50px;
}

.support-box {
    background: linear-gradient(45deg, rgba(80, 200, 120, 0.1), rgba(74, 144, 226, 0.1));
    border: 1px solid var(--secondary);
    border-radius: 10px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.support-box i {
    color: var(--secondary);
    font-size: 2rem;
    flex-shrink: 0;
}

.support-box h3 {
    color: var(--secondary);
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.support-box p {
    color: #ccc;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
    .shop-grid {
        grid-template-columns: 1fr;
    }
    
    .shop-item.popular {
        transform: none;
    }
    
    .shop-item.popular:hover {
        transform: translateY(-10px);
    }
    
    .notice-box, .support-box {
        flex-direction: column;
        text-align: center;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .shop-item-header {
        padding: 20px 15px;
    }
    
    .shop-item-features {
        padding: 20px;
    }
    
    .shop-item-button {
        margin: 0 15px 20px;
    }
}