/* Product Page Styles */

/* Product Hero Section */
.product-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--spacing-3xl) + 60px) 0 var(--spacing-3xl);
    background: radial-gradient(ellipse at center, rgba(35, 134, 54, 0.1) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
}

.product-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: movingLines 20s linear infinite;
}

.product-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(180deg, transparent 0%, rgba(31, 111, 235, 0.02) 50%, transparent 100%),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(31, 111, 235, 0.06) 2px,
            rgba(31, 111, 235, 0.06) 4px
        ),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 20px,
            rgba(137, 87, 229, 0.04) 20px,
            rgba(137, 87, 229, 0.04) 40px
        );
    animation: movingLines 25s linear infinite reverse;
    opacity: 0.2;
}

.product-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Product Media */
.product-media {
    position: sticky;
    top: 100px;
}

.product-image-container {
    position: relative;
    margin-bottom: var(--spacing-lg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.product-image:hover {
    transform: scale(1.02);
}

.product-badge {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: var(--gradient-primary);
    color: white;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: var(--font-size-sm);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    z-index: 2;
}

/* Navigation Arrows for Main Image */
.image-nav-arrows {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 var(--spacing-md);
    opacity: 1;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.image-nav-arrows .nav-arrow {
    pointer-events: all;
}

.product-image-container:hover .image-nav-arrows {
    opacity: 1;
    pointer-events: all;
}

.nav-arrow {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.nav-arrow:hover {
    background: var(--accent-green);
    border-color: var(--accent-green);
    transform: scale(1.15);
    box-shadow: 0 0 25px rgba(35, 134, 54, 0.6);
}

.nav-arrow-left {
    transform: translateX(-15px);
}

.nav-arrow-right {
    transform: translateX(15px);
}

.nav-arrow:hover.nav-arrow-left {
    transform: translateX(-15px) scale(1.15);
}

.nav-arrow:hover.nav-arrow-right {
    transform: translateX(15px) scale(1.15);
}

/* Product Gallery Container */
.product-gallery-container {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.8);
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    color: white;
    font-size: var(--font-size-lg);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    z-index: 2;
    backdrop-filter: blur(10px);
}

.gallery-nav-btn:hover {
    background: var(--accent-green);
    color: white;
    border-color: var(--accent-green);
    transform: scale(1.15);
    box-shadow: 0 0 20px rgba(35, 134, 54, 0.5);
}

.gallery-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: none;
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.2);
}

.gallery-nav-btn:disabled:hover {
    background: rgba(0, 0, 0, 0.3);
    color: rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
    transform: none;
    box-shadow: none;
}

/* Product Gallery */
.product-gallery {
    display: flex;
    gap: var(--spacing-md);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: var(--spacing-xs) 0;
    flex: 1;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.product-gallery::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
    aspect-ratio: 1;
    animation: float 6s ease-in-out infinite;
    min-width: 140px;
    width: 140px;
    height: 140px;
    flex-shrink: 0;
}

.gallery-item:nth-child(2) { animation-delay: -2s; }
.gallery-item:nth-child(3) { animation-delay: -4s; }
.gallery-item:nth-child(4) { animation-delay: -6s; }

.gallery-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item.active {
    border-color: var(--accent-green);
    box-shadow: 0 0 0 2px rgba(35, 134, 54, 0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-thumbnail {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--card-bg);
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
    transition: all 0.3s ease;
}

.play-button:hover {
    background: var(--accent-green);
    transform: translate(-50%, -50%) scale(1.1);
}

/* Product Info */
.product-info {
    padding: var(--spacing-lg) 0;
}

.product-header {
    margin-bottom: var(--spacing-xl);
}

.product-title {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: var(--font-size-sm);
}

.rating-text {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

.product-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Product Price */
.product-price {
    background: var(--card-bg);
    border: 2px solid transparent;
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    text-align: center;
    position: relative;
    overflow: hidden;
    background-clip: padding-box;
}

.product-price::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: -1;
    margin: -2px;
    border-radius: inherit;
    background: conic-gradient(from 0deg, var(--accent-green), var(--accent-blue), var(--accent-purple), var(--accent-green));
    animation: rotate-border 3s linear infinite;
}

.product-price::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: var(--card-bg);
    border-radius: calc(var(--radius-xl) - 2px);
    z-index: -1;
}

.price-main {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-bottom: var(--spacing-sm);
}

.currency {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.amount {
    font-size: var(--font-size-5xl);
    font-weight: 700;
    color: var(--accent-green);
    transition: all 0.3s ease;
    position: relative;
}

.amount.animating {
    animation: priceGlow 0.1s ease-in-out;
    text-shadow: 0 0 10px rgba(35, 134, 54, 0.5);
}

@keyframes priceGlow {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes priceCountUp {
    0% {
        opacity: 0.7;
        transform: scale(0.9);
    }
    50% {
        opacity: 1;
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.amount.counting-up {
    animation: priceCountUp 2.5s ease-out;
}

.period {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.original-price {
    text-decoration: line-through;
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
}

.discount {
    background: var(--warning-color);
    color: white;
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: var(--font-size-sm);
    font-weight: 600;
}

.price-note {
    color: var(--accent-green);
    font-weight: 600;
    font-size: var(--font-size-sm);
}

/* Product Highlights */
.product-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.highlight-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-2px);
}

.highlight-item i {
    color: var(--accent-green);
    font-size: var(--font-size-base);
}

.highlight-item span {
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-primary);
}

/* Product Actions */
.product-actions {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.product-actions .btn {
    width: 100%;
    justify-content: center;
    padding: var(--spacing-lg) var(--spacing-xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.add-to-cart {
    order: 2;
}

.buy-now {
    order: 1;
    background: var(--gradient-secondary);
    border: none;
    color: white;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(137, 87, 229, 0.3);
}

.buy-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.buy-now:hover::before {
    left: 100%;
}

.buy-now:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(137, 87, 229, 0.5);
    animation: none;
}

/* Product Guarantee */
.product-guarantee {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    padding: var(--spacing-lg);
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.guarantee-item i {
    color: var(--accent-green);
    font-size: var(--font-size-sm);
}

.guarantee-item span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* Product Features Section */
.product-features {
    padding: var(--spacing-3xl) 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.product-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: movingLines 30s linear infinite;
}

.product-features::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, rgba(255, 255, 255, 0.1), transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(35, 134, 54, 0.2), transparent),
        radial-gradient(1px 1px at 90px 40px, rgba(31, 111, 235, 0.2), transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(137, 87, 229, 0.2), transparent),
        radial-gradient(2px 2px at 160px 30px, rgba(255, 255, 255, 0.1), transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: floatParticles 25s linear infinite;
    opacity: 0.2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.feature-category {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.feature-category:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.category-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--border-color);
}

.category-header i {
    font-size: var(--font-size-xl);
    color: var(--accent-green);
}

.category-header h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--text-primary);
}

.feature-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) 0;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

.feature-list li i {
    color: var(--accent-green);
    font-size: var(--font-size-xs);
    flex-shrink: 0;
}

/* How It Works Section */
.how-it-works {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.how-it-works::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: movingLines 35s linear infinite reverse;
}

.how-it-works::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 20px,
            rgba(35, 134, 54, 0.03) 20px,
            rgba(35, 134, 54, 0.03) 40px
        ),
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 20px,
            rgba(31, 111, 235, 0.03) 20px,
            rgba(31, 111, 235, 0.03) 40px
        );
    animation: movingLines 40s linear infinite;
    opacity: 0.2;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.step-item {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
}

.step-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-green);
    box-shadow: var(--shadow-xl);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-xl);
    font-weight: 700;
    margin: 0 auto var(--spacing-lg);
}

.step-content h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--text-primary);
}

.step-content p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: var(--spacing-3xl) 0;
    background: var(--secondary-bg);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: movingLines 45s linear infinite;
}

.testimonials::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(135deg, transparent 0%, rgba(137, 87, 229, 0.02) 50%, transparent 100%),
        repeating-linear-gradient(
            135deg,
            transparent,
            transparent 30px,
            rgba(31, 111, 235, 0.03) 30px,
            rgba(31, 111, 235, 0.03) 60px
        );
    animation: movingLines 50s linear infinite reverse;
    opacity: 0.2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-xl);
}

.testimonial-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    transition: all 0.3s ease;
}

.testimonial-item:hover {
    border-color: var(--accent-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.testimonial-content {
    margin-bottom: var(--spacing-lg);
}

.testimonial-content .stars {
    margin-bottom: var(--spacing-md);
}

.testimonial-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-lg);
}

.author-info h4 {
    font-size: var(--font-size-base);
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.author-info span {
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}

/* FAQ Section */
.faq {
    padding: var(--spacing-3xl) 0;
    background: var(--primary-bg);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23ffffff" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    animation: movingLines 55s linear infinite reverse;
}

.faq::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(1px 1px at 30px 50px, rgba(35, 134, 54, 0.15), transparent),
        radial-gradient(1px 1px at 80px 20px, rgba(31, 111, 235, 0.15), transparent),
        radial-gradient(2px 2px at 120px 90px, rgba(137, 87, 229, 0.1), transparent);
    background-repeat: repeat;
    background-size: 150px 120px;
    animation: floatParticles 30s linear infinite reverse;
    opacity: 0.2;
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-md);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent-green);
}

.faq-question {
    padding: var(--spacing-lg);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--hover-bg);
}

.faq-question h3 {
    font-size: var(--font-size-base);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-question i {
    color: var(--accent-green);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 var(--spacing-lg) var(--spacing-lg);
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gradient-primary);
    text-align: center;
}

.cta-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: white;
    margin-bottom: var(--spacing-md);
}

.cta-content p {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--spacing-xl);
}

.cta-price {
    margin-bottom: var(--spacing-xl);
}

.cta-price .price {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: white;
    margin-right: var(--spacing-md);
}

.cta-price .original {
    font-size: var(--font-size-lg);
    color: rgba(255, 255, 255, 0.7);
    text-decoration: line-through;
}

.cta-actions .btn {
    background: white;
    color: var(--accent-green);
    border: none;
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.cta-note {
    margin-top: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
    font-size: var(--font-size-sm);
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.video-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.video-modal-content video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.video-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.3s ease;
}

.video-close:hover {
    color: var(--accent-green);
}

/* Image Lightbox Modal */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 10001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: lightboxZoomIn 0.3s ease-out;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-close:hover {
    color: var(--accent-green);
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 var(--spacing-lg);
    pointer-events: none;
}

.lightbox-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: var(--font-size-xl);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    pointer-events: all;
}

.lightbox-nav-btn:hover {
    background: var(--accent-green);
    transform: scale(1.1);
}

.lightbox-prev {
    transform: translateX(-20px);
}

.lightbox-next {
    transform: translateX(20px);
}

.lightbox-nav-btn:hover.lightbox-prev {
    transform: translateX(-20px) scale(1.1);
}

.lightbox-nav-btn:hover.lightbox-next {
    transform: translateX(20px) scale(1.1);
}

@keyframes lightboxZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lightboxZoomOut {
    from {
        opacity: 1;
        transform: scale(1);
    }
    to {
        opacity: 0;
        transform: scale(0.8);
    }
}

.image-lightbox.closing .lightbox-content {
    animation: lightboxZoomOut 0.3s ease-in;
}

/* Purchase Modal */
.purchase-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.purchase-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.purchase-modal,
.purchase-modal-simple {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.8) translateY(50px);
    transition: all 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.purchase-modal-overlay.active .purchase-modal,
.purchase-modal-overlay.active .purchase-modal-simple {
    transform: scale(1) translateY(0);
}

.purchase-modal-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.purchase-modal-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: var(--font-size-xl);
    animation: pulse 2s ease-in-out infinite;
}

.purchase-modal-header h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    flex: 1;
}

.purchase-modal-close {
    position: absolute;
    top: var(--spacing-lg);
    right: var(--spacing-lg);
    background: none;
    border: none;
    color: var(--text-secondary);
    font-size: var(--font-size-lg);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.purchase-modal-close:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
}

.purchase-modal-body {
    padding: var(--spacing-xl);
}

.purchase-modal-content {
    text-align: center;
}

.purchase-info-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(35, 134, 54, 0.1), rgba(31, 111, 235, 0.1));
    border: 2px solid var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--spacing-lg);
    color: var(--accent-green);
    font-size: var(--font-size-2xl);
    animation: float 3s ease-in-out infinite;
}

.purchase-modal-content h4 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.purchase-modal-content p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
}

/* Simple modal styles */
.purchase-modal-simple .purchase-modal-body {
    text-align: center;
}

.purchase-modal-simple .purchase-modal-body p {
    color: var(--text-secondary);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.discord-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-lg);
    color: var(--accent-blue);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.discord-link i {
    font-size: var(--font-size-xl);
    color: #5865f2;
}

.discord-info {
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.discord-server {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    color: var(--accent-blue);
    font-size: var(--font-size-lg);
    font-weight: 600;
}

.discord-server i {
    font-size: var(--font-size-xl);
    color: #5865f2;
}

.purchase-steps {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.step {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--secondary-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
}

.step:hover {
    border-color: var(--accent-green);
    transform: translateX(5px);
}

.step-number {
    width: 30px;
    height: 30px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: 600;
    flex-shrink: 0;
}

.step span {
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

.purchase-modal-footer {
    display: flex;
    gap: var(--spacing-md);
    padding: var(--spacing-xl);
    border-top: 1px solid var(--border-color);
    justify-content: flex-end;
}

.purchase-modal-footer .btn {
    padding: var(--spacing-md) var(--spacing-lg);
    font-size: var(--font-size-sm);
    font-weight: 600;
    border-radius: var(--radius-md);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.purchase-modal-footer .btn-secondary {
    background: var(--secondary-bg);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
}

.purchase-modal-footer .btn-secondary:hover {
    background: var(--hover-bg);
    color: var(--text-primary);
    border-color: var(--accent-green);
}

.purchase-modal-footer .btn-primary {
    background: var(--gradient-primary);
    color: white;
    position: relative;
    overflow: hidden;
}

.purchase-modal-footer .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.purchase-modal-footer .btn-primary:hover::before {
    left: 100%;
}

.purchase-modal-footer .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(35, 134, 54, 0.3);
}

/* Purchase Modal Animations */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalSlideOut {
    from {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    to {
        opacity: 0;
        transform: scale(0.8) translateY(50px);
    }
}

/* Purchase Modal Responsive */
@media (max-width: 768px) {
    .purchase-modal {
        width: 95%;
        margin: var(--spacing-md);
    }
    
    .purchase-modal-header,
    .purchase-modal-body,
    .purchase-modal-footer {
        padding: var(--spacing-lg);
    }
    
    .purchase-modal-footer {
        flex-direction: column;
    }
    
    .purchase-modal-footer .btn {
        width: 100%;
        justify-content: center;
    }
    
    .purchase-steps {
        gap: var(--spacing-sm);
    }
    
    .step {
        padding: var(--spacing-sm);
    }
    
    .purchase-info-icon {
        width: 60px;
        height: 60px;
        font-size: var(--font-size-xl);
    }
}

@media (max-width: 480px) {
    .purchase-modal-header h3 {
        font-size: var(--font-size-lg);
    }
    
    .purchase-modal-content h4 {
        font-size: var(--font-size-lg);
    }
    
    .discord-server {
        font-size: var(--font-size-base);
    }
    
    .purchase-modal-icon {
        width: 40px;
        height: 40px;
        font-size: var(--font-size-lg);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }
    
    .product-media {
        position: static;
        order: -1;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .product-hero {
        padding: calc(var(--spacing-2xl) + 60px) 0 var(--spacing-2xl);
    }
    
    .product-title {
        font-size: var(--font-size-2xl);
    }
    
    .product-highlights {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .gallery-item {
        aspect-ratio: 1;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .cta-price .price {
        font-size: var(--font-size-3xl);
    }
}

@media (max-width: 480px) {
    .product-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .product-price {
        padding: var(--spacing-lg);
    }
    
    .amount {
        font-size: var(--font-size-4xl);
    }
    
    .feature-category {
        padding: var(--spacing-lg);
    }
    
    .step-item {
        padding: var(--spacing-lg);
    }
    
    .testimonial-item {
        padding: var(--spacing-lg);
    }
    
    .faq-question {
        padding: var(--spacing-md);
    }
    
    .faq-answer p {
        padding: 0 var(--spacing-md) var(--spacing-md);
    }
}

/* Animation for product page */
.product-hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.feature-category {
    animation: slideInUp 0.6s ease-out;
}

.step-item {
    animation: slideInUp 0.6s ease-out;
}

.testimonial-item {
    animation: slideInUp 0.6s ease-out;
}

/* Stagger animation delays */
.feature-category:nth-child(1) { animation-delay: 0.1s; }
.feature-category:nth-child(2) { animation-delay: 0.2s; }
.feature-category:nth-child(3) { animation-delay: 0.3s; }
.feature-category:nth-child(4) { animation-delay: 0.4s; }
.feature-category:nth-child(5) { animation-delay: 0.5s; }
.feature-category:nth-child(6) { animation-delay: 0.6s; }

.step-item:nth-child(1) { animation-delay: 0.1s; }
.step-item:nth-child(2) { animation-delay: 0.3s; }
.step-item:nth-child(3) { animation-delay: 0.5s; }

.testimonial-item:nth-child(1) { animation-delay: 0.1s; }
.testimonial-item:nth-child(2) { animation-delay: 0.3s; }
.testimonial-item:nth-child(3) { animation-delay: 0.5s; }

/* Additional animations from main page */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes rotate-border {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes movingLines {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    100% {
        transform: translateY(100px) translateX(50px);
    }
}

@keyframes floatParticles {
    0% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-10px) translateX(5px);
    }
    50% {
        transform: translateY(-5px) translateX(-5px);
    }
    75% {
        transform: translateY(-15px) translateX(3px);
    }
    100% {
        transform: translateY(0px) translateX(0px);
    }
}

/* Enhanced product image animation */
.product-image {
    animation: float 8s ease-in-out infinite;
}

/* Enhanced highlight items animation */
.highlight-item {
    animation: float 6s ease-in-out infinite;
}

.highlight-item:nth-child(1) { animation-delay: -1s; }
.highlight-item:nth-child(2) { animation-delay: -2s; }
.highlight-item:nth-child(3) { animation-delay: -3s; }
.highlight-item:nth-child(4) { animation-delay: -4s; }

/* Enhanced feature categories floating animation */
.feature-category {
    animation: float 10s ease-in-out infinite;
}

.feature-category:nth-child(1) { animation-delay: -1s; }
.feature-category:nth-child(2) { animation-delay: -2s; }
.feature-category:nth-child(3) { animation-delay: -3s; }
.feature-category:nth-child(4) { animation-delay: -4s; }
.feature-category:nth-child(5) { animation-delay: -5s; }
.feature-category:nth-child(6) { animation-delay: -6s; }

/* Enhanced step items floating animation */
.step-item {
    animation: float 8s ease-in-out infinite;
}

.step-item:nth-child(1) { animation-delay: -1s; }
.step-item:nth-child(2) { animation-delay: -2s; }
.step-item:nth-child(3) { animation-delay: -3s; }

/* Enhanced testimonial floating animation */
.testimonial-item {
    animation: float 12s ease-in-out infinite;
}

.testimonial-item:nth-child(1) { animation-delay: -2s; }
.testimonial-item:nth-child(2) { animation-delay: -4s; }
.testimonial-item:nth-child(3) { animation-delay: -6s; }
