/* ============================================
   PRODUCTS SECTION STYLES
   ============================================ */

.products-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.products-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--main-color);
}

.products-section .section-title span {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--second-color) 0%, var(--main-color) 100%);
    border-radius: 2px;
}

.product-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15) !important;
}

.product-card:hover img {
    transform: scale(1.1);
}

.product-card:hover .position-absolute.top-0.start-0 {
    opacity: 0.6;
}

.product-card .product-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--main-color);
    transition: color 0.3s ease;
}

.product-card:hover .product-title {
    color: var(--second-color);
}

.product-card .product-desc {
    color: #5a6c7d;
    line-height: 1.7;
    font-size: 0.95rem;
}

.product-card .product-link-text {
    color: var(--second-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.product-card:hover i {
    transform: translateX(5px);
}

[dir="rtl"] .product-card:hover i {
    transform: translateX(-5px);
}

.product-badge {
    background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
    font-size: 0.85rem;
    font-weight: 600;
    color: white;
}

.btn-modern {
    background: linear-gradient(135deg, var(--second-color) 0%, var(--main-color) 100%);
    color: white;
    font-weight: 600;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 62, 87, 0.4) !important;
    color: white;
}

.product-image-overlay {
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.product-card:hover .product-image-overlay {
    opacity: 0.6;
}

@media (max-width: 768px) {
    .products-section .section-title {
        font-size: 2rem !important;
    }
    
    .product-card {
        margin-bottom: 1rem;
    }
}

