/* Video Watch Page Styles - Simplified Clean Design */

/* Main container matching product page */
body.video-watch-page main .content {
    max-width: none;
    padding: 0;
    margin: 80px 0 0 0;
    width: 100%;
    overflow-x: hidden;
}

/* Override for mobile viewport constraints */
@media (max-width: 550px) {
    body.video-watch-page main .content {
        padding: 0 5px !important;
        margin: 80px 0 0 0 !important;
        position: relative;
        overflow-x: hidden !important;
        max-width: 100vw !important;
        width: 100vw !important;
        box-sizing: border-box !important;
    }
    
    body.video-watch-page {
        overflow-x: hidden !important;
        position: relative;
        max-width: 100vw !important;
    }
    
    body.video-watch-page * {
        max-width: 100% !important;
        box-sizing: border-box !important;
    }
}

.video-watch-page-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Breadcrumb styling */
.video-watch-page-breadcrumb {
    margin-bottom: 25px;
    font-size: 14px;
    color: #666;
    padding: 0 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.video-watch-page-breadcrumb a {
    color: #ff9900;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 600;
}

.video-watch-page-breadcrumb a:hover {
    color: #e68a00;
    text-decoration: underline;
}

.video-watch-page-breadcrumb span {
    margin: 0 8px;
    color: #999;
}

/* Video Section */
.video-watch-page-video-section {
    margin-bottom: 30px;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.video-watch-page-embedded-video {
    width: 100%;
    aspect-ratio: 16 / 9;
}

.video-watch-page-embedded-video iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}

/* Simple Product Information Section */
.video-watch-page-simple-info {
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    text-align: center;
}

.video-watch-page-product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    line-height: 1.2;
    margin: 0 0 1.5rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.video-watch-page-description {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #ff9900;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    text-align: left;
}

.video-watch-page-description p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    margin: 0;
}

/* Product Page Button - Styled like Amazon button */
.video-watch-page-product-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, #ff9900, #ff8800);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.35);
    border: 2px solid #ff7700;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 200px;
}

.video-watch-page-product-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.video-watch-page-product-button:hover {
    background: linear-gradient(135deg, #ff8800, #ff7700);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 153, 0, 0.45);
}

.video-watch-page-product-button:hover::before {
    left: 100%;
}

.video-watch-page-product-button:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 153, 0, 0.35);
}

/* Responsive Design */
@media (max-width: 768px) {
    .video-watch-page-container {
        padding: 15px;
    }
    
    .video-watch-page-simple-info {
        padding: 2rem 1.5rem;
    }
    
    .video-watch-page-product-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 1.25rem;
    }
    
    .video-watch-page-description {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .video-watch-page-product-button {
        width: 100%;
        padding: 0.9rem 2rem;
        font-size: 1rem;
    }
    
    .video-watch-page-video-section {
        border-radius: 8px;
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
    }
}

@media (max-width: 480px) {
    .video-watch-page-container {
        padding: 10px;
    }
    
    .video-watch-page-simple-info {
        padding: 1.5rem 1rem;
    }
    
    .video-watch-page-product-title {
        font-size: 1.4rem;
    }
    
    .video-watch-page-breadcrumb {
        font-size: 12px;
        margin-bottom: 20px;
    }
    
    .video-watch-page-description p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}
