/* ========== SHOP SPECIFIC STYLES ========== */

.shop-section {
    padding: 5rem 0;
}

.shop-hero {
    padding: 6rem 0 4rem;
    text-align: center;
}

.shop-hero__title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-white);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.8s var(--animation-easing);
}

.shop-hero__subtitle {
    font-size: 1.25rem;
    color: var(--color-dark-text-secondary);
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s var(--animation-easing) 0.2s backwards;
}

/* Premium Cards Grid */
.shop-grid-premium {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.product-card-premium {
    background: linear-gradient(135deg, rgba(20, 20, 45, 0.95), rgba(30, 30, 60, 0.95));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.6s var(--animation-easing) backwards;
}

.product-card-premium:nth-child(1) { animation-delay: 0.1s; }
.product-card-premium:nth-child(2) { animation-delay: 0.2s; }
.product-card-premium:nth-child(3) { animation-delay: 0.3s; }

.product-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7c3aed, #06b6d4);
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card-premium:hover {
    transform: translateY(-12px);
    border-color: rgba(124, 58, 237, 0.8);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 60px rgba(124, 58, 237, 0.5);
}

.product-card-premium:hover::before {
    opacity: 1;
}

.product-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(124, 58, 237, 0.4);
}

.product-icon-premium {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    position: relative;
}

.product-icon-premium svg {
    width: 120px;
    height: 120px;
    filter: drop-shadow(0 8px 24px rgba(124, 58, 237, 0.6));
    transition: all 0.4s ease;
}

.product-card-premium:hover .product-icon-premium svg {
    transform: scale(1.1) rotateY(10deg);
    filter: drop-shadow(0 12px 32px rgba(124, 58, 237, 0.8));
}

.product-title-premium {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.75rem;
}

.product-description-premium {
    font-size: 0.95rem;
    color: var(--color-dark-text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 60px;
}

.product-features {
    list-style: none;
    margin-bottom: 2rem;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: var(--color-dark-text);
    font-size: 0.9rem;
}

.product-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-weight: 700;
    flex-shrink: 0;
}

.product-footer-premium {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(124, 58, 237, 0.2);
}

.product-price-premium {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.product-price-period {
    font-size: 0.9rem;
    color: var(--color-dark-text-muted);
    font-weight: 400;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    padding: 2rem;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: linear-gradient(135deg, rgba(20, 20, 45, 0.98), rgba(30, 30, 60, 0.98));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(124, 58, 237, 0.4);
    border-radius: var(--radius-2xl);
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    animation: modalSlideIn 0.4s var(--animation-easing);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(124, 58, 237, 0.4);
    transform: rotate(90deg);
}

.modal-header {
    margin-bottom: 2rem;
    text-align: center;
}

.modal-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.modal-plan {
    font-size: 1.1rem;
    color: var(--color-primary-light);
    font-weight: 600;
}

.modal-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 1rem 0;
}

/* Form Styles */
.purchase-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-white);
}

.form-label .required {
    color: var(--color-error);
}

.form-input,
.form-select {
    padding: 1rem 1.25rem;
    background: rgba(20, 20, 45, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-md);
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-primary);
    background: rgba(30, 30, 60, 0.8);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

.form-input::placeholder {
    color: var(--color-dark-text-muted);
}

.form-checkbox-group {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-checkbox {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 2px;
    cursor: pointer;
}

.form-checkbox-label {
    font-size: 0.85rem;
    color: var(--color-dark-text-secondary);
    line-height: 1.5;
}

.form-checkbox-label a {
    color: var(--color-primary-light);
    text-decoration: underline;
}

.form-checkbox-label a:hover {
    color: var(--color-primary);
}

.legal-notice {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: var(--radius-md);
    padding: 1rem;
    font-size: 0.8rem;
    color: var(--color-dark-text-secondary);
    line-height: 1.6;
    margin-top: 1rem;
}

.form-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-full {
    flex: 1;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(20, 20, 45, 0.4), rgba(30, 30, 60, 0.4));
}

.faq-grid {
    display: grid;
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(20, 20, 45, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(124, 58, 237, 0.4);
    background: rgba(30, 30, 60, 0.8);
}

.faq-question {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--color-dark-text-secondary);
    line-height: 1.6;
    margin-top: 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    margin-top: 1rem;
}

/* Guarantee Section */
.guarantee-section {
    padding: 5rem 0;
    text-align: center;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.guarantee-item {
    padding: 2rem;
    background: rgba(20, 20, 45, 0.6);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: var(--radius-xl);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    transform: translateY(-5px);
    border-color: rgba(124, 58, 237, 0.4);
}

.guarantee-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.2);
    border-radius: 50%;
}

.guarantee-icon svg {
    width: 30px;
    height: 30px;
    color: var(--color-primary-light);
}

.guarantee-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.guarantee-text {
    font-size: 0.9rem;
    color: var(--color-dark-text-secondary);
}

/* Info Modal Styles */
.modal-content--info {
    max-width: 550px;
    text-align: center;
}

.modal-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.15);
    border-radius: 50%;
    border: 2px solid rgba(124, 58, 237, 0.3);
}

.modal-icon svg {
    color: var(--color-primary-light);
}

.modal-body {
    margin: 2rem 0;
    padding: 1.5rem;
    background: rgba(20, 20, 45, 0.4);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.modal-message {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--color-dark-text-secondary);
    margin-bottom: 1rem;
}

.modal-message:last-child {
    margin-bottom: 0;
}

.modal-message--highlight {
    color: var(--color-primary-light);
    font-weight: 600;
    background: rgba(124, 58, 237, 0.1);
    padding: 0.75rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--color-primary);
}

/* Responsive */
@media (max-width: 768px) {
    .shop-hero__title {
        font-size: 2.5rem;
    }

    .shop-grid-premium {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 2rem 1.5rem;
    }

    .form-buttons {
        flex-direction: column;
    }
}
