/* GRID */
.el-products-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 20px 0;
    box-sizing: border-box;
}

/* CARD */
.el-product-card {
    background: #fdf5f2;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 24px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    box-sizing: border-box;
    margin-bottom: 20px;
}

/* IMAGE */
.el-product-image {
    flex-shrink: 0;
}

.el-product-image img {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
}

/* DETAILS */
.el-product-details {
    flex: 1;
    min-width: 0;
}

/* HEADER */
.el-product-header {
    display: flex;
    align-items: baseline;
    width: 100%;
    gap: 10px;
}

.el-product-title {
    font-size: 20px;
    font-weight: 500;
    color: #2c2c2c;
    margin: 0;
    padding: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: default;
}

/* DOT LEADER */
.el-product-dots {
    flex: 1;
    border-bottom: 1px dotted #c9bfb9;
    transform: translateY(-4px);
    min-width: 12px;
}

/* PRICE */
.el-product-price {
    font-size: 18px;
    font-weight: 500;
    color: #2c2c2c;
    white-space: nowrap;
}

/* DESCRIPTION */
.el-product-description {
    font-size: 14px;
    color: #888;
    line-height: 1.5;
    margin-top: 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* CATEGORY TITLE */
.menu-cat-title {
    max-width: 1200px;
    margin: 40px auto 20px;
    padding: 0 16px;
    font-size: 32px;
    font-weight: 600;
    color: #8b5e3c;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.menu-cat-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #8b5e3c;
    margin-top: 8px;
}

/* VIEW ALL BUTTON */
.cbm-view-all-container {
    text-align: center;
    margin: 40px 0;
    width: 100%;
}

.cbm-view-all-btn {
    display: inline-block;
    background: #8b5e3c;
    color: #fff;
    padding: 14px 36px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.2);
}

.cbm-view-all-btn:hover {
    background: #2c2c2c;
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.cbm-view-all-btn:active {
    transform: translateY(1px);
}

/* TABLET */
@media (max-width: 900px) {
    .el-products-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .el-product-card {
        max-width: 600px;
        margin: 0 auto;
        width: 100%;
    }
}

/* MOBILE */
@media (max-width: 600px) {
    .el-product-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 24px;
        gap: 16px;
        max-width: 100%;
    }

    .el-product-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .el-product-image img {
        width: 110px;
        height: 110px;
    }

    .el-product-details {
        width: 100%;
    }

    .el-product-header {
        flex-direction: column;
        align-items: center;
        gap: 4px;
    }

    .el-product-title {
        font-size: 19px;
        white-space: normal;
        flex: none;
        width: 100%;
        overflow: visible;
        text-overflow: unset;
        text-align: center;
        margin: 0;
        padding: 0;
    }

    .el-product-dots {
        display: none;
    }

    .el-product-price {
        font-size: 17px;
        flex: none;
        width: 100%;
        color: #8b5e3c;
        text-align: center;
    }

    .el-product-description {
        font-size: 13px;
        -webkit-line-clamp: 3;
        line-clamp: 3;
    }

    .cbm-view-all-container {
        padding: 0 20px;
        box-sizing: border-box;
        margin: 30px 0;
    }

    .cbm-view-all-btn {
        width: 100%;
        display: block;
        box-sizing: border-box;
        padding: 16px 20px;
        font-size: 14px;
    }

    .menu-cat-title {
        font-size: 24px;
        margin-top: 30px;
    }
}
