/* Product Video Section Styles */
.product-video-section {
    background-color: var(--color-white);
    padding: 100px 0;
    position: relative;
}

.video-section-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.video-section-title {
    font-size: clamp(36px, 4vw, 48px);
    font-weight: 600;
    color: var(--color-primary);
    margin: 0 0 20px 0;
    line-height: 1.2;
}

.video-section-description {
    font-size: clamp(16px, 2vw, 18px);
    line-height: 1.6;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin-bottom: 30px;
}

.video-player-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 0 50px 0;
    position: relative;
}

.video-player {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: var(--color-dark-darker);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px var(--color-dark-15);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-image-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.video-image-link:hover {
    opacity: 0.9;
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
    color: var(--color-primary);
}

.video-play-button:hover {
    transform: translate(-50%, -50%) scale(1.1);
    color: var(--color-primary-light);
}

.video-play-button:active {
    transform: translate(-50%, -50%) scale(0.95);
}

.video-play-button svg {
    filter: drop-shadow(0 4px 12px rgba(77, 208, 225, 0.3));
}

.video-cta {
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-try-product {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    background: var(--gradient-primary);
    color: var(--color-text-white);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--color-primary-10);
}

.btn-try-product:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px var(--color-primary-10);
    background: var(--gradient-primary-full);
}

.btn-try-product:active {
    transform: translateY(-1px);
}

.btn-try-product svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.btn-try-product:hover svg {
    transform: rotate(180deg);
}

/* Video Section Responsive */
@media (max-width: 1024px) {
    .product-video-section {
        padding: 80px 0;
    }

    .video-player-wrapper {
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .product-video-section {
        padding: 60px 0;
    }

    .video-section-title {
        margin-bottom: 16px;
    }

    .video-section-description {
        margin-bottom: 40px;
        font-size: 16px;
    }

    .video-player-wrapper {
        margin-bottom: 40px;
    }

    .video-player {
        border-radius: 16px;
    }

    .video-play-button svg {
        width: 60px;
        height: 60px;
    }

    .btn-try-product {
        padding: 14px 28px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .product-video-section {
        padding: 50px 0;
    }

    .video-section-title {
        font-size: 32px;
        margin-bottom: 14px;
    }

    .video-section-description {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .video-player-wrapper {
        margin-bottom: 35px;
    }

    .video-player {
        border-radius: 12px;
    }

    .video-play-button svg {
        width: 50px;
        height: 50px;
    }

    .btn-try-product {
        padding: 12px 24px;
        font-size: 15px;
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}
.video-wrapper {
  position: relative;
  width: 90%;              /* Adjust as needed (e.g., 100% for full width) */
  max-width: 1000px;       /* Limit the maximum size */
  margin: 40px auto;       /* Center it nicely */
  aspect-ratio: 16 / 9;    /* Keeps it responsive */
  border-radius: 16px;     /* Smooth rounded corners */
  overflow: hidden;        /* Clips corners for iframe */
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Modern shadow */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-wrapper:hover {
  transform: scale(1.02);
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.4);
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}



