/* Modern Products Section Styles */
.product-featured-card {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-image-container {
    height: 400px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.product-image-container img {
    max-width: 280px;
    max-height: 280px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.product-image-container:hover img {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #e74c3c;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 10;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.product-info {
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-category {
    color: #f39c12;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #f39c12;
}

.product-description {
    color: #7f8c8d;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.product-id {
    color: #95a5a6;
    font-size: 14px;
    margin-bottom: 20px;
}

.product-actions {
    margin-top: auto;
}

.btn-primary.btn-lg {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(243, 156, 18, 0.3);
}

.btn-primary.btn-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(243, 156, 18, 0.4);
}

.btn-outline-secondary.btn-lg {
    border: 2px solid #bdc3c7;
    color: #7f8c8d;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.btn-outline-secondary.btn-lg:hover {
    border-color: #f39c12;
    color: #f39c12;
    text-decoration: none;
}

/* Carousel Indicators */
.carousel-indicators {
    bottom: -50px;
}

.carousel-indicators li {
    background-color: #f39c12;
    border: 2px solid #f39c12;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
}

.carousel-indicators li:hover {
    transform: scale(1.2);
}

/* Carousel Controls */
.carousel-control {
    background: none;
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    background: rgba(243, 156, 18, 0.9);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control:hover {
    background: rgba(243, 156, 18, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-control.left {
    left: -25px;
}

.carousel-control.right {
    right: -25px;
}

.carousel-control i {
    font-size: 18px;
    color: white;
}

/* Video Container */
.video-container {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    overflow: hidden;
    margin-top: 20px;
}

.video-header {
    background: linear-gradient(45deg, #f39c12, #e67e22);
    color: white;
    padding: 20px;
    text-align: center;
}

.video-header h4 {
    margin: 0;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.video-content {
    padding: 20px;
}

.video-content .embed-responsive {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Section Title */
.section-title {
    margin-bottom: 50px;
    font-size: 2.5em;
    color: #333;
    font-weight: 300;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(45deg, #f39c12, #e67e22);
    border-radius: 2px;
}

/* Video Section Styles */
.video-section {
    background: #e3a100;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.video-section h2 {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    position: relative;
}

.video-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, #ffffff, rgba(255,255,255,0.7));
    border-radius: 2px;
}

.video-wrapper {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.4), 0 10px 25px rgba(0,0,0,0.3);
    overflow: hidden;
    border: 3px solid rgba(255,255,255,0.3);
}

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

/* Categories Section Styles */
.categoria-item-wrapper {
    transition: all 0.3s ease;
    cursor: pointer;
}

.categoria-item-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15) !important;
}

.categoria-item-wrapper:hover .categoria-img {
    transform: scale(1.1);
}

.categoria-item-wrapper:hover .categoria-title {
    color: #f39c12 !important;
}

.categoria-img-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 80px;
}

.categoria-img {
    max-width: 80px;
    max-height: 80px;
    width: auto;
    height: auto;
}

/* Decorative Elements Animation */
.video-wrapper > div:nth-child(2),
.video-wrapper > div:nth-child(3),
.video-wrapper > div:nth-child(4) {
    animation: float 6s ease-in-out infinite;
}

.video-wrapper > div:nth-child(3) {
    animation-delay: -2s;
}

.video-wrapper > div:nth-child(4) {
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* Responsive Video Styles */
@media (max-width: 768px) {
    .video-section {
        padding: 60px 0;
        min-height: 60vh;
    }
    
    .video-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }
    
    .video-wrapper {
        max-width: 95%;
    }
    
    /* Hide decorative elements on mobile */
    .video-wrapper > div[style*="position: absolute"] {
        display: none;
    }
    
    .video-container {
        border-radius: 18px;
        box-shadow: 
            0 20px 40px rgba(0,0,0,0.4),
            0 10px 20px rgba(0,0,0,0.3);
        border: 2px solid rgba(255,255,255,0.3);
    }
    
    .video-container iframe {
        border-radius: 16px;
    }
    
    .video-wrapper > div:nth-child(2),
    .video-wrapper > div:nth-child(3),
    .video-wrapper > div:nth-child(4) {
        display: none;
    }
    
    /* Categories responsive */
    .categoria-item-wrapper {
        padding: 15px 8px !important;
        margin-bottom: 15px !important;
    }
    
    .categoria-img {
        width: 60px !important;
        height: 60px !important;
    }
    
    .categoria-title {
        font-size: 12px !important;
    }
}

@media (max-width: 480px) {
    .video-section {
        padding: 40px 0;
        min-height: 50vh;
    }
    
    .video-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .video-wrapper {
        max-width: 98%;
    }
    
    .video-wrapper:hover {
        transform: translateY(-2px);
    }
    
    .video-container {
        border-radius: 15px;
        box-shadow: 
            0 15px 30px rgba(0,0,0,0.4),
            0 8px 15px rgba(0,0,0,0.3);
        border: 2px solid rgba(255,255,255,0.3);
    }
    
    .video-container iframe {
        border-radius: 13px;
    }
    
    /* Categories mobile */
    .categoria-item-wrapper {
        padding: 12px 5px !important;
        margin-bottom: 10px !important;
    }
    
    .categoria-img {
        width: 50px !important;
        height: 50px !important;
    }
    
    .categoria-title {
        font-size: 11px !important;
        line-height: 1.2 !important;
    }
}

@media (max-width: 320px) {
    .video-section {
        padding: 30px 0;
        min-height: 40vh;
    }
    
    .video-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }
    
    .video-wrapper {
        margin: 0 5px !important;
    }
    
    .video-container {
        border-radius: 12px;
        box-shadow: 
            0 12px 25px rgba(0,0,0,0.4),
            0 6px 12px rgba(0,0,0,0.3);
        border: 1px solid rgba(255,255,255,0.3);
    }
    
    .video-container iframe {
        border-radius: 11px;
    }
    
    /* Categories very small mobile */
    .categoria-item-wrapper {
        padding: 10px 3px !important;
        margin-bottom: 8px !important;
    }
    
    .categoria-img {
        width: 40px !important;
        height: 40px !important;
    }
    
    .categoria-title {
        font-size: 10px !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-info {
        padding: 20px;
        height: auto;
    }
    
    .product-image-container {
        height: 300px;
        padding: 20px;
    }
    
    .product-image-container img {
        max-width: 220px;
        max-height: 220px;
    }
    
    .product-title {
        font-size: 1.5em;
    }
    
    .product-actions {
        text-align: center;
    }
    
    .btn-outline-secondary.btn-lg {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
    
    .carousel-control {
        display: none;
    }
    
    .section-title {
        font-size: 2em;
    }
    
    .video-section .container {
        padding: 0 15px;
    }
    
    .video-header {
        padding: 20px;
    }
    
    .video-content {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .product-featured-card .row {
        flex-direction: column;
    }
    
    .product-featured-card .col-md-5,
    .product-featured-card .col-md-7 {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .product-image-container {
        height: 250px;
        padding: 15px;
    }
    
    .product-image-container img {
        max-width: 180px;
        max-height: 180px;
    }
    
    .product-info {
        padding: 15px;
        height: auto;
    }
    
    .btn-primary.btn-lg,
    .btn-outline-secondary.btn-lg {
        padding: 10px 20px;
        font-size: 14px;
        display: block;
        width: 100%;
        margin: 5px 0;
    }
    
    .product-actions {
        margin-top: 20px;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .video-section .video-container {
        margin: 0 10px;
    }
    
    .video-header {
        padding: 15px;
    }
    
    .video-header h4 {
        font-size: 16px;
    }
    
    .video-content {
        padding: 15px;
    }
} 