.category-section {
    background-color: #fdf4e9;
    padding: 40px 20px;
    width: 100%;
}

.category-section-tittle {
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
    color: #522E00;
    letter-spacing: 1px;
    text-transform: capitalize;
}

/* Container */
.category-container {
    width: 95%;
    margin: 0 auto;
}

/* Flex utility */
.flex-s-c {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Card Base Styles ===== */
.list-card,
.list-card-2,
.list-card-3 {
    border-radius: 1.25rem;
    background-color: #fdf4e9;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    width: 100%;
}

.list-card:hover,
.list-card-2:hover,
.list-card-3:hover {
    transform: scale(1.04);
}

/* ===== Height and Image Settings ===== */
.list-card .image-container {
    height: 520px;
}

.list-card-2 .image-container {
    height: 200px;
}

.list-card-3 .image-container {
    height: 310px;
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ===== Inverted Corner Button ===== */
.list-card-icon {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 4rem;
    height: 4rem;
    background: #fdf4e9;
    border-top-left-radius: 1.25rem;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}

.list-cart-anchor {
    width: 3rem;
    height: 3rem;
    background-color: #b8874d;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-decoration: none;
}

.list-cart-anchor i {
    transform: rotate(-45deg);
    font-size: 18px;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 1200px) {
    .list-card .image-container {
        height: 380px;
    }

    .list-card-3 .image-container {
        height: 260px;
    }
}

@media (max-width: 992px) {
    .category-section {
        padding: 30px 10px;
    }

    .list-card .image-container {
        height: 320px;
    }

    .list-card-2 .image-container {
        height: 180px;
    }

    .list-card-3 .image-container {
        height: 240px;
    }
}

@media (max-width: 768px) {

    .list-card,
    .list-card-2,
    .list-card-3 {
        width: 100%;
        margin-bottom: 15px;
    }

    .list-card .image-container,
    .list-card-2 .image-container,
    .list-card-3 .image-container {
        height: auto;
    }

    .card-image {
        height: auto;
    }

    .list-card-icon {
        width: 3rem;
        height: 3rem;
    }

    .list-cart-anchor {
        width: 2.4rem;
        height: 2.4rem;
    }

    .list-cart-anchor i {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .category-section-tittle {
        font-size: 1.3rem;
    }
}




/* */