* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

h1,h2,h3,h4,h5,h6{
    font-family: 'poppins', sans-serif;
}

p,a,input,label,textarea,span,ul,li{
    font-family: 'poppins', sans-serif;
}


/* Header Banner */
.product-cat-banner {
    position: relative;
    width: 100%;
    height: 300px;
    background-color: #005587;
    align-items: center;
    justify-content: center;
    background-size: cover;
    display: flex;
    padding: 0 5%;
    margin-bottom: 15px;
}

.product-cat-banner h1 {
    color: #fff;

    font-family: 'Yantramanav', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}


/* Breadcrumb Navigation */
.breadcrumb {
    padding: 0;
    margin-bottom: 2rem;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 0.9rem;
}

.breadcrumb li {
    display: inline-flex;
    align-items: center;
}

.breadcrumb li:not(:last-child)::after {
    content: "/";
    margin: 0 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #333;
}

.breadcrumb li:last-child {
    color: #333;
    font-weight: 500;
}

/* Main Content Layout */
.content {
    display: flex;
    padding: 2rem 5%;
    gap: 2rem;
}

/* Sidebar */
.sidebar {
    width: 250px;
    flex-shrink: 0;
}

.sidebar h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #233b55;
}

.sidebar ul {
    list-style: none;
}

.sidebar li {
    font-size: 0.9rem;
    padding: 0.5rem 0;
    cursor: pointer;
}

.sidebar li a {
    text-decoration: none;
    color: #666;
}

.sidebar li a:hover {
    color: #233b55;
}

/* Product Grid Container */
.product-grid-container {
    flex-grow: 1;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
    text-decoration: none;
    cursor: pointer;
}

.product-card-item {
    border: 1px solid #eee;
    padding: 1rem;
    text-align: left;
}

.product-image {
    width: 100%;
    background-color: none;
    margin-bottom: 1rem;
}

.product-image img {
    width: 100%;
    text-align: center;
    justify-content: center;
}

.product-category {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.product-number {
    font-size: 1.1rem;
    color: #233b55;
}

.product-title {
    font-size: 0.8rem;
    color: #333;
    margin-bottom: 0.5rem;
}

/* New Top Rated Items Styles */
.top-rated-list li {
    display: flex;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
    gap: 1rem;
}

.top-rated-list li:last-child {
    border-bottom: none;
}

.top-rated-thumbnail {
    width: 50px;
    height: 70px;
    background-color: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.top-rated-thumbnail img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.top-rated-info {
    flex-grow: 1;
}

.top-rated-title {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 0.25rem;
}

.top-rated-category {
    font-size: 0.75rem;
    color: #666;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
}

.pagination a {
    padding: 0.5rem 1rem;
    border: 1px solid #ddd;
    color: #333;
    text-decoration: none;
}

.pagination a.active {
    background-color: #233b55;
    color: white;
}

ul.mini-category-list li {
    list-style-type: disc;
    margin-left: 10px;
    font-size: 0.95em;
}


/* Responsive Design */
@media (max-width: 768px) {
    .content {
        flex-direction: column;
    }

    .sidebar {
        width: 100%;
    }

    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }

    .breadcrumb {
        font-size: 0.8rem;
    }
}