/* Shop CTA Section Styles */
.shop-cta-section {
    background-color: var(--color-primary, #0D6EFD);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    z-index: 1; /* Asegura que la sección tenga un z-index apropiado */
margin-bottom: 2rem;
}

.shop-cta-section .section-title {
    font-family: var(--font-primary, 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--color-white, #FFFFFF);
}

.shop-cta-section .section-subtitle {
    font-size: var(--font-size-lg, 1.25rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
}

.shop-cta-section .cta-button-wrapper {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.shop-cta-section .cta-image-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shop-cta-section .boxed-container {
    border-radius: var(--border-radius-lg, 0.75rem);
    overflow: hidden;
    box-shadow: var(--shadow-lg, 0 10px 15px -3px rgba(0, 0, 0, 0.1));
    background-color: var(--color-white, #FFFFFF);
    max-width: 550px;
    margin: 0 auto;
}

.shop-cta-section .cta-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base, all 0.3s ease);
}

.shop-cta-section .boxed-container:hover .cta-image {
    transform: scale(1.05);
}

.shop-cta-section .video-wrapper {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* Proporción 16:9 */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.shop-cta-section .full-width-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.5s ease;
}

.shop-cta-section .video-wrapper:hover .full-width-video {
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 991px) {
    .shop-cta-section {
        padding: 3rem 0;
    }
    
    .shop-cta-section .section-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .shop-cta-section .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .shop-cta-section .cta-text-content {
        text-align: center;
        margin-bottom: 2rem;
    }
    
    .shop-cta-section .section-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .shop-cta-section .cta-button-wrapper {
        margin-top: 1.5rem;
        margin-bottom: 1.5rem;
        display: flex;
        justify-content: center;
    }
    
    .shop-cta-section .boxed-container {
        max-width: 100%;
    }
}

 