/* ==========================================================================
   Product Category Page
   ========================================================================== */
body.tax-product_cat {
    .inner-banner {
        flex-direction: column;
        align-items: flex-start;
    }

    .breadcrumb-nav {
        font-size: 14px;
    }

    .breadcrumb-nav a {
        color: #333;
    }

    .inner-banner:before {
        content: "";
        background-color: transparent;
        position: absolute;
        width: 100%;
        height: 100%;
        left: 0;
        top: 0;
        z-index: 1;
    }

    .mass-category-title {
        color: #000000;
        position: relative;
        display: inline;
        font-size: 24px;
        font-weight: 400;
    }

    .mass-category-title :before {
        content: "";
        position: absolute;
        background-color: #000;
        height: 4px;
        border-right: 33px solid #e30913;
        max-width: 150px;
        width: 100%;
        left: 0;
        right: 0;
        bottom: -10px;
        margin: auto;
    }

    .category-banner-row {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 0;
        margin-top: 20px;
    }

    .category-banner-row .category-title-col {
        width: 100%;
        text-align: center;
    }

    .category-banner-row .category-desc-col {
        width: 100%;
        text-align: center;
    }

    .category-banner-row .mass-category-title {
        font-family: 'Montserrat', sans-serif;
        margin: 0;
        font-size: 24px;
        font-weight: 400;
        color: #333;
        line-height: 1.2;
    }

    .category-banner-row .category-description p {
        font-size: 16px;
        line-height: 1.7;
        color: #555;
        margin-top: 25px;
    }

    .category-banner-row .category-description p:last-child {
        margin-bottom: 0;
    }

    .breadcrumb-nav {
        padding: 15px 20px;
        margin: 0;
        font-size: 14px;
        font-weight: 400;
        color: #777;
        text-transform: none !important;
    }

    .breadcrumb-nav a {
        color: #333 !important;
        text-decoration: none;
    }

    .breadcrumb-nav span {
        color: #333;
    }

    .product-lisiting .container {
        background-color: transparent;
    }

    .product-lisiting h2 {
        font-size: 38px;
        font-weight: normal;
    }

    .product-category-how-it-work .container {
        padding-bottom: 5px;
    }

    .product-category-how-it-work h3 {
        color: #000;
    }

    .product-category-how-it-work {

        h1,
        h2,
        h3,
        h4 {
            font-weight: normal;
        }

        h2 {
            font-size: 42px;
        }
    }

    #faqs-section {
        margin-bottom: 20px;
    }

    #faqs-section .container {
        background-color: #f2f2f2;
        padding-top: 20px;
    }

    .faq summary h3 {
        color: #000;
        font-weight: 400;
        margin-bottom: 10px;
    }

    .quaote_blk .heading-block h2 {
        font-weight: normal;
    }
}

/* Shared Product Card Styles (used in Categories and Single Product Related) */
.product-content {
    padding: 20px 15px;
    background-color: #4c4c4c;
}

.product-content h3 {
    text-align: center;
    margin: 0;
}

.product-content h3 a {
    font-size: 16px;
    color: #fff !important;
    text-decoration: none;
}

.childProduct .productActions {
    border-left: 15px solid #000000;
}

.childProduct .productActions a.theme-btn {
    width: 100%;
    cursor: pointer;
    border: none;
}

span.theme-btn {
    font-size: 13px;
    background: #4c4c4c;
    display: inline-block;
    width: 33.333%;
    text-align: left;
    margin: 0;
    float: left;
    color: #d2d2d2;
    border: 1px solid #fff;
    font-family: "Roboto Condensed", sans-serif;
    padding: 13px 13px;
    transition: 0.3s ease;
}

span.theme-btn:hover {
    color: #d2d2d2;
}

/* Product grid: equal-height cards with image filling space */
.product-block .row {
    display: flex;
    flex-wrap: wrap;
}

.product-block .row>[class*="col-"] {
    display: flex;
    margin-bottom: 30px;
}

.productblock.childProduct {
    display: flex;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border: 1px solid #ddd;
    height: 100%;
}

.productblock.childProduct>a {
    flex: 1;
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    height: 288px;
    min-height: 288px;
    max-height: 288px;
    background: #fff;
    width: 100%;
}

.productblock.childProduct>a img {
    width: 100%;
    height: 288px;
    min-height: 288px;
    max-height: 288px;
    object-fit: cover;
    display: block;
}

.productblock.childProduct .product-content {
    flex-shrink: 0;
    min-height: 90px; /* Space for at least 2 lines of text */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.productblock.childProduct .productActions {
    flex-shrink: 0;
}

.solutions-cta-box {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #b0b0b0;
    min-height: 180px;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.solutions-cta-box:hover {
    background-color: #e30913;
    transform: translateY(-2px);
    text-decoration: none;
}

.solutions-cta-box span {
    color: #fff;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .solutions-cta .col-md-6 {
        margin-bottom: 15px;
    }

    .category-banner-row .category-title-col {
        text-align: center;
    }
}

