/* Video Section Styles */
.product-video-section {
    margin: 4rem 0;
    padding: 2rem 0;
}

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

.video-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.video-section-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.video-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* Loading placeholder */
.video-container:empty::before {
    content: "Loading video...";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #999;
    font-size: 1.1rem;
}

/* CTA Section */
.video-cta-section {
    text-align: center;
    margin-top: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-radius: 12px;
    border: 1px solid #e0e0e0;
}

.video-cta-text {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.video-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: #e8322d;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(232, 50, 45, 0.3);
}

.video-cta-button:hover {
    background: #d42a25;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 50, 45, 0.4);
}

.cta-arrow {
    transition: transform 0.3s ease;
}

.video-cta-button:hover .cta-arrow {
    transform: translateX(5px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-video-section {
        margin: 3rem 0;
        padding: 1.5rem 0;
    }
    
    .video-section-title {
        font-size: 1.75rem;
    }
    
    .video-section-subtitle {
        font-size: 1rem;
    }
    
    .video-cta-section {
        padding: 1.5rem;
    }
    
    .video-cta-text {
        font-size: 1.1rem;
    }
    
    .video-cta-button {
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
}

/* Dark mode removed */
