/* Custom feature stylesheets.
   One custom_<name>.css per feature; imported here so custom.css stays the entry
   point. @import rules MUST come before any other rule below (CSS spec). */
@import url("custom_DeliveryModal.css");

body {
    background: rgba(255, 255, 255, 0) !important;
}

/* Task 10364 added to render badges */
.product-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.product-badges .badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
}

.badge-new {
    background-color: #1fa767;
}

.badge-discount {
    background-color: #c01919;
}

.badge-ingredient {
    background-color: #0076e4;
}
/* Task 10364 added to render badges */