body {
    background: #f5f5f5;
    font-family: Arial, Helvetica, sans-serif;
}

.product-section {
    padding: 40px 0;
}

.category-title {
    background: #343b44;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.sub-category-title {
    font-size: 20px;
}

.category-box {
    background: #f1f1f1;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-btn {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    font-size: 24px;
    font-weight: 600;
    cursor: pointer;
    background: #f7f7f7;
}

.accordion-btn.active {
    background: #dfe4ea;
    color: #0056b3;
}

.inner-list {
    display: none;
    list-style: none;
    padding: 0;
    margin: 0;
    background: #fff;
}

.inner-list li {
    padding: 10px 15px;
    font-size: 16px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
}

/* RIGHT SIDE */
.product-card {
    height: 100%;
    padding: 10px;
}
.product-card:hover{
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition:0.3s;
}

.img-box {
    background: #efefef;
    /* min-height: 300px; */
    display: flex;
    justify-content: center;
    align-items: center;
    /*padding: 12px;*/
}

.img-box img {
    max-width: 100%;
}

.product-title {
    height: 40px;
    font-size: 16px;
    font-weight: 500;
    color: #0d2f5f;
    margin-top: 15px;
    margin-bottom: 15px;
}

.view-btn {
    display: inline-block;
    margin-top: 20px;
    background: #005dc0;
    color: #fff;
    padding: 12px 20px;
    border-radius: 7px;
    text-decoration: none;
    font-weight: 600;
}

.view-btn:hover {
    color: #fff;
}

.product-category-name {
    font-size: 20px;
}

.product-subcategory-name {
    font-size: 18px;
}

@media screen and (max-width: 768px) {
    .category-title {
        margin-top: -30px;
        margin-bottom: -25px;
    }

    .mobile-category-name {
        font-size: 18px;
    }
    .mobile-subcategory-name {
        font-size: 17px;
    }
    .mobile-childcategory-name {
        font-size: 17px;
    }
}

@media screen and (min-width: 768px) {
    .product-section {
        margin-top: 120px;
    }
}
