/* ==========================================================
   E-BAAZAAR
   CATEGORY + BRAND PRODUCT CATALOGUE
========================================================== */

.ebaazaar-catalogue-heading {
    width: 100%;
    margin: 0 0 30px;
    padding: 10px 0 20px;
}

.ebaazaar-catalogue-heading-inner {
    width: 100%;
}

.ebaazaar-catalogue-breadcrumb {
    font-size: 14px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 8px;
}

.ebaazaar-catalogue-breadcrumb span {
    margin: 0 8px;
    color: #9ca3af;
}

.ebaazaar-catalogue-heading h1 {
    margin: 0 0 8px;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
    color: #172554;
}

.ebaazaar-catalogue-heading p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
}


/* ==========================================================
   PRODUCT GRID
========================================================== */

.woocommerce ul.products li.product {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, .10);
}


/* ==========================================================
   PRODUCT IMAGE
========================================================== */

.woocommerce ul.products li.product img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 15px;
}


/* ==========================================================
   PRODUCT TITLE
========================================================== */

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
    line-height: 1.4;
    font-weight: 600;
    color: #172554;
    min-height: 45px;
}


/* ==========================================================
   PRODUCT PRICE
========================================================== */

.woocommerce ul.products li.product .price {
    font-size: 17px;
    font-weight: 700;
    margin-top: 8px;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 767px) {

    .ebaazaar-catalogue-heading {
        margin-bottom: 20px;
    }

    .ebaazaar-catalogue-heading h1 {
        font-size: 24px;
    }

    .ebaazaar-catalogue-heading p {
        font-size: 14px;
    }

    .woocommerce ul.products li.product {
        padding: 10px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 14px;
    }

}
/* ==========================================================
   E-BAAZAAR CATEGORY PAGE
   PAGE TITLE SPACING
========================================================== */

/* 1. Increase space between header/navigation and page title */
.woocommerce.archive .woocommerce-products-header {
    padding-top: 35px !important;
}


/* 2. Reduce space between page title and category description */
.woocommerce.archive .woocommerce-products-header .page-title {
    margin-bottom: 20px !important;
}


/* 3. Reduce extra spacing before the description */
.woocommerce.archive .woocommerce-products-header .term-description {
    margin-top: 0 !important;
    padding-top: 0 !important;
}


/* 4. Keep the description closer to the title */
.woocommerce.archive .woocommerce-products-header .term-description p:first-child {
    margin-top: 0 !important;
}