/* Premium Product Page - Red/Orange/Pink/Yellow Theme */
:root {
    --primary-red: #ff4d4d;
    --secondary-orange: #ff9966;
    --accent-pink: #ff66a3;
    --highlight-yellow: #ffcc66;
    --dark-bg: #1a1a1a;
    --light-bg: #fff5f5;
    --card-bg: #ffffff;
    --text-dark: #333333;
    --text-light: #666666;
    --border-color: rgba(255, 100, 100, 0.15);
    --shadow-light: rgba(255, 100, 100, 0.1);
    --shadow-medium: rgba(255, 100, 100, 0.2);
    --gradient-primary: linear-gradient(135deg, var(--primary-red), var(--accent-pink));
    --gradient-secondary: linear-gradient(135deg, var(--secondary-orange), var(--highlight-yellow));
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #fff5f5 0%, #fff9ee 100%);
    margin: 0;
    padding: 40px 20px;
    color: var(--text-dark);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    max-width: 1400px;
    background: var(--card-bg);
    border-radius: 24px;
    box-shadow: 0 20px 60px var(--shadow-medium);
    overflow: hidden;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    min-height: 800px;
}

/* Left Column - Image Section */
.product-image-section {
    position: relative;
    background: linear-gradient(45deg, var(--primary-red), var(--secondary-orange));
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.product-image {
    width: 100%;
    height: auto;
    display: block;
    mix-blend-mode: normal;
    filter: brightness(1.1) contrast(1.1);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 77, 77, 0.3) 0%, 
        rgba(255, 102, 163, 0.2) 100%);
    pointer-events: none;
}

.badge-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-secondary);
    color: #8a3a00;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 150, 100, 0.4);
    z-index: 2;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-icon {
    font-size: 14px;
}

.quick-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-item {
    text-align: center;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: white;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.3);
}

/* Right Column - Content Section */
.product-content-section {
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-header {
    text-align: center;
    margin-bottom: 20px;
}

.category-label {
    display: inline-block;
    background: var(--gradient-primary);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.product-title {
    font-size: 52px;
    font-weight: 900;
    margin: 0;
    background: linear-gradient(135deg, 
        var(--primary-red) 0%, 
        var(--accent-pink) 50%, 
        var(--secondary-orange) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1.1;
}

.title-highlight {
    background: var(--gradient-secondary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
}

.title-highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-secondary);
    border-radius: 2px;
}

.product-tagline {
    font-size: 18px;
    color: var(--text-light);
    margin-top: 10px;
    font-weight: 500;
}

.product-description {
    background: linear-gradient(135deg, 
        rgba(255, 245, 245, 0.8) 0%, 
        rgba(255, 249, 238, 0.8) 100%);
    padding: 25px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-red);
}

.product-description p {
    margin: 0;
    line-height: 1.6;
    color: var(--text-dark);
    font-size: 16px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.feature-card {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow-light);
    border-color: var(--primary-red);
}

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-card h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.4;
}

/* Downloads Section */
.downloads-section {
    background: linear-gradient(135deg, 
        rgba(255, 245, 245, 0.9) 0%, 
        rgba(255, 249, 238, 0.9) 100%);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 8px 0;
    color: var(--text-dark);
}

.section-subtitle {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

.download-platforms {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.platform-group {
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
}

.platform-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 15px 0;
    color: var(--text-dark);
}

.platform-icon {
    font-size: 20px;
}

.download-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 12px;
}

.download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.download-btn.primary {
    background: var(--gradient-primary);
    color: white;
}

.download-btn.secondary {
    background: var(--gradient-secondary);
    color: #8a3a00;
}

.download-btn.tertiary {
    background: white;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.download-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px var(--shadow-medium);
}

.btn-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.btn-content {
    flex: 1;
}

.btn-title {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 2px;
}

.btn-subtitle {
    font-size: 11px;
    opacity: 0.8;
}

/* Footer CTA */
.cta-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--gradient-primary);
    padding: 25px 30px;
    border-radius: 20px;
    color: white;
    margin-top: auto;
}

.cta-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.cta-content p {
    margin: 0;
    opacity: 0.9;
    font-size: 14px;
}

.cta-button {
    background: white;
    color: var(--primary-red);
    padding: 14px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2);
}

.cta-icon {
    font-size: 18px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-container {
        grid-template-columns: 1fr;
        max-width: 800px;
    }
    
    .product-image-section {
        padding: 40px 20px;
    }
    
    .image-wrapper {
        max-width: 400px;
        transform: none;
    }
}

@media (max-width: 768px) {
    body {
        padding: 20px 10px;
    }
    
    .product-container {
        border-radius: 20px;
    }
    
    .product-content-section {
        padding: 30px 20px;
    }
    
    .product-title {
        font-size: 36px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .download-buttons {
        grid-template-columns: 1fr;
    }
    
    .cta-footer {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .quick-stats {
        gap: 20px;
        padding: 15px 20px;
    }
    
    .stat-value {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .product-title {
        font-size: 28px;
    }
    
    .badge-premium {
        font-size: 10px;
        padding: 6px 12px;
    }
    
    .feature-card {
        padding: 15px;
    }
    
    .downloads-section {
        padding: 20px 15px;
    }
}
