.category-header {
    padding: 40px 0;
    background-color: #f8f9fa;
    margin-bottom: 40px;
}

.category-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.category-subtitle {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    color: #555;
    line-height: 1.6;
}

.product-grid {
    margin-bottom: 40px;
}

.product-row-separator {
    margin-bottom: 30px;
}

.product-card {
    position: relative;
    border: none;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 25px;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.product-card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.product-title {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: #2c3e50;
}

.product-code {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 5px;
}

.product-price {
    font-weight: 700;
    color: #2c3e50;
    font-size: 1.15rem;
    margin-bottom: 0;
}

.products-count {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 20px;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
}

.pagination .page-item {
    margin: 0 5px;
}

.pagination .page-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    background-color: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link,
.pagination .page-link:hover {
    background-color: #4e73df;
    color: white;
    border-color: #4e73df;
}

.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.whatsapp-float a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.whatsapp-float a:hover {
    background-color: #128C7E;
    transform: scale(1.1);
}

@media (max-width: 991px) {
    .category-title {
        font-size: 2.2rem;
    }

    .category-subtitle {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .category-header {
        padding: 30px 0;
    }

    .category-title {
        font-size: 1.8rem;
    }

    .product-image {
        height: 220px;
    }
}

@media (max-width: 576px) {
    .category-header {
        padding: 25px 0;
    }

    .category-title {
        font-size: 1.5rem;
    }

    .product-image {
        height: 200px;
    }
}