/* ============================================
   PRODUCTS SECTION - PROFESSIONAL & CLEAN
   ============================================ */

.products-section {
    padding: 90px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Section Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.1) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(22, 101, 52, 0.2);
    border-radius: 50px;
    color: #166534;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-title {
    font-size: 42px;
    font-weight: 900;
    color: #1e293b;
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-intro {
    font-size: 17px;
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.section-intro strong {
    color: #1e293b;
    font-weight: 700;
}

/* Products Slider */
#productsSlider {
    position: relative;
}

#productsSlider .glide__track {
    overflow: visible;
}

#productsSlider .glide__slides {
    align-items: stretch;
}

/* OCULTAR DOTS/BULLETS */
#productsSlider .glide__bullets {
    display: none !important;
}

/* Product Card */
.product-card {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    border-color: #166534;
    box-shadow: 0 20px 60px rgba(22, 101, 52, 0.15);
    transform: translateY(-8px);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.3);
}

.product-badge.popular {
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
}

.product-badge.industrial {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

/* Product Image */
.product-image {
    position: relative;
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Content */
.product-content {
    padding: 28px 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.product-title {
    font-size: 22px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 14px;
    line-height: 1.3;
}

.product-description {
    font-size: 15px;
    color: #64748b;
    line-height: 1.65;
    margin-bottom: 20px;
}

/* Product Features */
.product-features {
    list-style: none;
    margin: 0 0 24px 0;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #475569;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.product-features li:last-child {
    border-bottom: none;
}

.product-features li i {
    color: #22c55e;
    font-size: 16px;
}

/* Product Footer */
.product-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 2px solid #f1f5f9;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.product-capacity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 700;
    color: #166534;
}

.product-capacity i {
    font-size: 18px;
}

.product-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, #166534 0%, #15803d 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(22, 101, 52, 0.2);
}

.product-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 101, 52, 0.3);
}

.product-btn i {
    font-size: 16px;
}

/* Glide Arrows */
#productsSlider .glide__arrows {
    position: relative;
}

#productsSlider .glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 50%;
    color: #166534;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

#productsSlider .glide__arrow:hover {
    background: #166534;
    color: #fff;
    border-color: #166534;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 30px rgba(22, 101, 52, 0.25);
}

#productsSlider .glide__arrow--left {
    left: -25px;
}

#productsSlider .glide__arrow--right {
    right: -25px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1200px) {
    #productsSlider .glide__arrow--left {
        left: 10px;
    }
    
    #productsSlider .glide__arrow--right {
        right: 10px;
    }
}

@media (max-width: 1024px) {
    .products-section {
        padding: 70px 0;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .product-image {
        height: 260px;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-intro {
        font-size: 16px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-content {
        padding: 24px 20px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-description {
        font-size: 14px;
    }
    
    .product-footer {
        flex-direction: column;
        align-items: stretch;
    }
    
    .product-btn {
        width: 100%;
        justify-content: center;
    }
    
    #productsSlider .glide__arrows {
        display: none;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 50px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .product-badge {
        font-size: 11px;
        padding: 6px 14px;
    }
    
    .product-image {
        height: 220px;
    }
    
    .product-content {
        padding: 20px 16px;
    }
    
    .product-title {
        font-size: 18px;
    }
    
    .product-features li {
        font-size: 13px;
    }
}

/* ============================================
   GLIDE CORE OVERRIDES (SIN DOTS)
   ============================================ */

#productsSlider .glide__bullets,
#productsSlider [data-glide-el="controls[nav]"],
.products-section .glide__bullets {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}
