.products-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.products-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #0066cc, #0099ff, #66ccff);
}

.section-title {
    font-size: 3.5rem;
    font-weight: 700;
    /* color: #1a365d; */
    color: #2e496f;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #0066cc, #0099ff);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.5rem;
    color: #64748b;
    margin-bottom: 4rem;
    font-weight: 300;
}

.product-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 102, 204, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(0, 102, 204, 0.1);
    height: 100%;
    position: relative;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 102, 204, 0.2);
    border-color: rgba(0, 102, 204, 0.3);
}

.product-image-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #0066cc, #0099ff);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 2;
}

.fresh-badge {
    background: linear-gradient(135deg, #10b981, #34d399) !important;
}

.frozen-badge {
    background: linear-gradient(135deg, #3b82f6, #60a5fa) !important;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.7rem;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 0.8rem;
    line-height: 1.3;
}

.product-type {
    display: inline-block;
    background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
    color: #475569;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-description {
    color: #64748b;
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: rgba(0, 102, 204, 0.1);
    color: #0066cc;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 1.0rem;
    font-weight: 500;
}

.product-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.availability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0rem;
    color: #10b981;
    font-weight: 500;
}

.unavailability {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.0rem;
    color: #b91010;
    font-weight: 500;
}

.more-products-btn {
    background: linear-gradient(135deg, #0066cc, #0099ff);
    border: none;
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 102, 204, 0.3);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.more-products-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 102, 204, 0.4);
    color: white;
    text-decoration: none;
}

.more-products-btn i {
    transition: transform 0.3s ease;
}

.more-products-btn:hover i {
    transform: translateX(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
    
    .product-content {
        padding: 1.5rem;
    }
    
    .products-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .more-products-btn {
        padding: 15px 30px;
        font-size: 1rem;
    }
}

.wave-decoration {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M985.66,92.83C906.67,72,823.78,31,743.84,14.19c-82.26-17.34-168.06-16.33-250.45.39-57.84,11.73-114,31.07-172,41.86A600.21,600.21,0,0,1,0,27.35V120H1200V95.8C1132.19,118.92,1055.71,111.31,985.66,92.83Z' fill='%230066cc' opacity='0.1'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 120px;
    z-index: 1;
            /* transform: rotate(180deg); */
}

/* Top wave decoration */
/* .products-section::after {
    content: '';
    position: absolute;
    top: -2px;
    left: 0;
    width: 100%;
    height: 100px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M321.39,56.44c58-10.79,114.16-30.13,172-41.86,82.39-16.72,168.19-17.73,250.45-.39C823.78,31,906.67,72,985.66,92.83c70.05,18.48,146.53,26.09,214.34,3V0H0V27.35A600.21,600.21,0,0,0,321.39,56.44Z' fill='%230066cc' opacity='0.05'%3E%3C/path%3E%3C/svg%3E") repeat-x;
    background-size: 1200px 100px;
    z-index: 1;
    transform: rotate(180deg);
} */