/* Product Category Page Styles */
.category-container {
    background: #f8f9fa;
    min-height: 100vh;
    padding: 20px 0;
}

/* Breadcrumb Styles - Consistent with product page */
.uk-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.uk-breadcrumb li {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.uk-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #adb5bd;
    font-size: 16px;
}

.uk-breadcrumb li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.uk-breadcrumb li a:hover {
    color: #0056b3;
    text-decoration: none;
}

.uk-breadcrumb li a i {
    margin-right: 5px;
    font-size: 14px;
}

.uk-breadcrumb li:last-child {
    color: #495057;
    font-weight: 600;
}

.category-title {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 30px;
    text-align: center;
}

.category-title h1 {
    color: #2c3e50;
    font-size: 28px;
    font-weight: 700;
    margin: 0;
    position: relative;
}

.category-title h1:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #007bff, #0056b3);
    border-radius: 2px;
}

.products-grid {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.thumb-product {
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 30px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #f1f3f4;
}

.thumb-product:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    border-color: #007bff;
}

.thumb-product .img {
    overflow: hidden;
    position: relative;
    height: 250px;
    background: #f8f9fa;
}

.thumb-product .img::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
    z-index: 1;
}

.thumb-product:hover .img::before {
    transform: translateX(100%);
}

.thumb-product .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.thumb-product:hover .img img {
    transform: scale(1.05);
}

.wrap-info {
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wrap-info h3 {
    margin: 0 0 15px 0;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
}

.wrap-info h3 a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.wrap-info h3 a:hover {
    color: #007bff;
}

.true-price {
    font-size: 14px;
    font-weight: 600;
    margin: 10px 0;
    padding: 6px 12px;
    border-radius: 15px;
    display: inline-block;
}

.price-available {
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    color: white;
    box-shadow: 0 4px 15px rgba(255,107,107,0.3);
}

.price-contact {
    background: linear-gradient(135deg, #3742fa, #2f3542);
    color: white;
    box-shadow: 0 4px 15px rgba(55,66,250,0.3);
}

.order {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white !important;
    padding: 8px 16px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    font-size: 13px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,184,148,0.3);
    margin-top: 8px;
    white-space: nowrap;
    min-width: fit-content;
}

.order:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0,184,148,0.4);
    color: white !important;
    text-decoration: none;
}

.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.pagination {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 10px 20px;
}

.pagination .page-link {
    border: none;
    color: #495057;
    padding: 10px 15px;
    margin: 0 2px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-item.active .page-link {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    box-shadow: 0 4px 10px rgba(0,123,255,0.3);
}

.pagination .page-link:hover {
    background: #f8f9fa;
    color: #007bff;
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #6c757d;
}

.no-products i {
    font-size: 48px;
    margin-bottom: 20px;
    color: #dee2e6;
}

.no-products h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #495057;
}

/* Responsive Design */
@media (max-width: 768px) {
    .category-title h1 {
        font-size: 22px;
    }

    .thumb-product .img {
        height: 200px;
    }

    .wrap-info h3 {
        font-size: 16px;
    }

    .true-price {
        font-size: 13px;
    }

    .order {
        font-size: 12px;
        padding: 6px 12px;
        white-space: nowrap;
        min-width: fit-content;
    }
}

@media (max-width: 576px) {
    .products-grid {
        padding: 20px 15px;
    }

    .thumb-product .img {
        height: 180px;
    }
}
