/* Bakery Menu Widget Styles */

.bom-menu-widget {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

.bom-menu-category {
    margin-bottom: 40px;
}

.bom-menu-category:last-child {
    margin-bottom: 0;
}

.bom-category-title {
    font-size: 24px;
    font-weight: 600;
    color: #222;
    margin-top: 0;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e61e4d;
}

.bom-menu-items {
    display: grid;
    gap: 20px;
}

.bom-menu-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.bom-menu-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.bom-item-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 6px;
    overflow: hidden;
}

.bom-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bom-item-content {
    flex: 1;
    min-width: 0;
}

.bom-item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 6px;
}

.bom-item-title {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin: 0;
    line-height: 1.3;
}

.bom-item-price {
    font-size: 18px;
    font-weight: 700;
    color: #e61e4d;
    white-space: nowrap;
}

.bom-item-ingredients {
    font-size: 13px;
    color: #717171;
    margin: 0 0 8px 0;
    font-style: italic;
}

.bom-item-description {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}

.bom-item-description p {
    margin: 0 0 8px 0;
}

.bom-item-description p:last-child {
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .bom-category-title {
        font-size: 20px;
    }
    
    .bom-menu-item {
        flex-direction: column;
    }
    
    .bom-item-image {
        width: 100%;
        height: 150px;
    }
    
    .bom-item-title {
        font-size: 16px;
    }
    
    .bom-item-price {
        font-size: 16px;
    }
}

/* Widget sidebar specific styles */
.widget .bom-menu-widget {
    padding: 0;
}

.widget .bom-menu-category {
    margin-bottom: 30px;
}

.widget .bom-category-title {
    font-size: 18px;
    margin-bottom: 15px;
}

.widget .bom-menu-item {
    padding: 12px;
    margin-bottom: 12px;
}

.widget .bom-item-image {
    width: 60px;
    height: 60px;
}

.widget .bom-item-title {
    font-size: 15px;
}

.widget .bom-item-price {
    font-size: 15px;
}

.widget .bom-item-ingredients {
    font-size: 12px;
}

.widget .bom-item-description {
    font-size: 13px;
}
