/* ============== section-img ============== */
.section-img {
    background-color: var(--light-white);
}

.section-img .img-box {
    width: 100%;
    height: 180px;
}

.section-img .img-box::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: var(--black);
    opacity: 0.8;
}

.section-img .img-box .img-text {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--light-white);
}

.section-img .img-box .sem-inner-border {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border: 2px solid var(--light-white);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-img .img-box .img-text h2 {
    font-weight: var(--fw-semi-bold);
    font-size: clamp(18px, 1.8vw, 24px);
}

.section-img .img-box .img-text p {
    font-weight: var(--fw-normal);
    font-size: var(--common-size);
    margin-bottom: 0;
}








/* ============== Shop by Category ============== */
.category {
    background-color: var(--sky-white);
}

.category .category-heading {
    font-weight: var(--fw-semi-bold);
    font-size: clamp(18px, 1.8vw, 24px);
    color: var(--dark);
}

.category .category-title {
    font-weight: var(--fw-normal);
    font-size: var(--common-size);
    color: var(--dark);
}

.category .category-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    background-color:var(--light-white)

}

.category .category-card .category-icon {
    width: 50px;
    height: 50px;
}

.category .category-card .category-text {
    margin-bottom: 0;
    font-weight: var(--fw-medium);
    font-size: var(--common-size);
    color: var(--dark);
    text-align: center;
}
