/* Professional Horizontal Products Layout */
.products-container {
    max-width: 1400px;
    margin: 0 auto;
    margin-top: 80px;
    padding: 3rem 2rem;
    font-family: 'Inter', 'Segoe UI', sans-serif;
    background: #f8fafc;
    min-height: 100vh;
}







/* Horizontal Grid Layout - 2 products per row */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.product-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #5da8ae;
}

/* Product Visual Section */
.product-visual {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    flex-shrink: 0;
}

.product-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: transform 0.5s ease;
}

.product-item:hover .product-image {
    transform: scale(1.08);
}

.product-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.1) 0%, rgba(255, 107, 0, 0) 70%);
}

/* Product Details Section */
.product-details {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    position: relative;
}

.product-details h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.4;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f1f5f9;
}

/* Professional Status Badges */
.product-specs {
    display: flex;
    align-items: center;
    margin-bottom: 1.25rem;
}

.spec {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
}

.spec i {
    font-size: 1rem;
}

/* Product Description */
.product-description {
    color: #4a5568;
    line-height: 1.6;
    font-size: 0.95rem;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;

}

/* Professional CTA Section */
.product-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1.5rem;
    border-top: 1px solid #f1f5f9;
    margin-top: auto;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5da8ae;
    letter-spacing: -0.5px;
}

.btn-enquire {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #5da8ae, #6cbac0);
    color: white;
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px #5da8ae;
    border: none;
    cursor: pointer;
}

.btn-enquire:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px 5da8ae;
    color: white;
    text-decoration: none;
}

/* Empty State */
.empty-gallery {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    color: #a0aec0;
}

.empty-gallery i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.empty-gallery p {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Professional Pagination */
.pagination-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .product-showcase {
        gap: 2rem;
    }
    
    .product-visual {
        height: 220px;
    }
}

@media (max-width: 992px) {
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .product-visual {
        height: 250px;
    }
}

@media (max-width: 768px) {
    .products-container {
        padding: 2rem 1rem;
        margin-top: 60px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .product-showcase {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-details {
        padding: 1.5rem;
    }
    
    .product-cta {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }
    
    .btn-enquire {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 1.8rem;
    }
    
    .product-visual {
        height: 200px;
    }
    
    .product-details h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.3rem;
    }
}

/* Animation for staggered effect */
.product-item:nth-child(odd) {
    animation-delay: 0.1s;
}

.product-item:nth-child(even) {
    animation-delay: 0.2s;
}