/* Products Page Styles */

/* Hero Section */
.product-hero {
    position: relative;
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
    overflow: hidden;
}

.product-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.85), rgba(26, 11, 46, 0.85));
    z-index: 1;
}

.product-hero .container {
    position: relative;
    z-index: 2;
}

.product-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(221, 78, 157, 0.3));
    border: 2px solid var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(157, 78, 221, 0.4);
    }

    50% {
        box-shadow: 0 0 30px rgba(157, 78, 221, 0.6);
    }
}

.price-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.current-price {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.original-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

.save-badge {
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
}

.product-mockup {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.product-mockup img {
    filter: drop-shadow(0 20px 50px rgba(157, 78, 221, 0.4));
}

/* Benefits Section */
.benefits-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.benefit-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6), rgba(26, 11, 46, 0.6));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Features Section */
.features-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.feature-item {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6), rgba(26, 11, 46, 0.6));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.feature-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(221, 78, 157, 0.2));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-content {
    flex: 1;
}

.feature-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.testimonial-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6), rgba(26, 11, 46, 0.6));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.testimonial-role {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Pricing Section */
.pricing-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.pricing-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 3px solid var(--primary-color);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.4);
}

.pricing-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.pricing-amount {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-amount .price {
    display: block;
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.pricing-amount .period {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    margin-top: 0.5rem;
}

.original-price-strike {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(157, 78, 221, 0.2);
    font-size: 1.05rem;
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.accordion-item {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6), rgba(26, 11, 46, 0.6));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 15px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(221, 78, 157, 0.2));
    color: white;
}

.accordion-button::after {
    filter: brightness(0) invert(1);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.cta-box-final {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 3px solid var(--primary-color);
    border-radius: 24px;
    padding: 4rem 2rem;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.4);
}

.price-highlight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.final-price {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-original {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
}

/* Responsive */
@media (max-width: 991px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .current-price {
        font-size: 2.5rem;
    }

    .pricing-amount .price {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .price-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .current-price {
        font-size: 2rem;
    }

    .final-price {
        font-size: 2.5rem;
    }
}

/* Who Is This For Section */
.who-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.who-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6), rgba(26, 11, 46, 0.6));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
}

.who-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
    transform: translateY(-5px);
}

.who-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 1.5rem;
}

/* Bonus Section */
.bonus-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.bonus-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6), rgba(26, 11, 46, 0.6));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.bonus-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.3);
}

.bonus-value {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.85rem;
}

.bonus-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.3), rgba(221, 78, 157, 0.3));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.bonus-total {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.8), rgba(26, 11, 46, 0.8));
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, rgba(26, 11, 46, 0.95), rgba(13, 2, 33, 0.95));
}

.guarantee-badge-large {
    display: flex;
    justify-content: center;
    align-items: center;
}

.guarantee-circle {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.5);
    animation: pulse 2s infinite;
}

.guarantee-circle i {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
}

.guarantee-text {
    text-align: center;
}

.guarantee-days {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.guarantee-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
}

.guarantee-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.guarantee-point {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.guarantee-point i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

/* Author Section */
.author-section {
    background: linear-gradient(135deg, rgba(13, 2, 33, 0.95), rgba(26, 11, 46, 0.95));
}

.author-card {
    background: linear-gradient(135deg, rgba(36, 0, 70, 0.6), rgba(26, 11, 46, 0.6));
    border: 2px solid rgba(157, 78, 221, 0.2);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.3s ease;
}

.author-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(157, 78, 221, 0.3);
}

.author-image {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(157, 78, 221, 0.4);
}

.author-image-wrapper {
    position: relative;
    display: inline-block;
}

.author-image-photo {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-color);
    box-shadow: 0 15px 40px rgba(157, 78, 221, 0.5);
    transition: all 0.3s ease;
}

.author-image-photo:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(157, 78, 221, 0.7);
}

.author-verified-badge {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #0d1117;
    box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
}

.author-verified-badge i {
    color: white;
    font-size: 1.2rem;
}

.author-badges {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.author-badge-item {
    display: inline-block;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.2), rgba(221, 78, 157, 0.2));
    border: 1px solid rgba(157, 78, 221, 0.4);
    color: rgba(255, 255, 255, 0.9);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.author-role {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    font-size: 1.1rem;
}

.author-stats {
    display: flex;
    gap: 2rem;
    justify-content: space-between;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(157, 78, 221, 0.1), rgba(221, 78, 157, 0.1));
    border-radius: 15px;
}

.author-stat {
    text-align: center;
}

.author-stat h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

/* Responsive for new sections */
@media (max-width: 991px) {
    .guarantee-circle {
        width: 250px;
        height: 250px;
    }

    .guarantee-circle i {
        font-size: 3rem;
    }

    .guarantee-days {
        font-size: 2rem;
    }

    .guarantee-label {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .author-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .guarantee-circle {
        width: 200px;
        height: 200px;
    }

    .guarantee-circle i {
        font-size: 2.5rem;
    }

    .guarantee-days {
        font-size: 1.5rem;
    }
}