.justify-content-between{
    display: flex;
    justify-content: space-between;
}

.footer-logo{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    overflow: hidden;
    height: 200px; 
}

.footer-logo a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.flex-div{
    display: flex;
    justify-content: flex-end;
}
/* ================================================
   CATERING MENU SECTION STYLES
   ================================================ */

/* Section Container */
.lc_catering_menu_section {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.lc_catering_menu_section::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.lc_catering_menu_section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 167, 38, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.lc_catering_menu_section .auto-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Responsive Container Widths */
@media (min-width: 576px) {
    .lc_catering_menu_section .auto-container {
        max-width: 540px;
    }
}

@media (min-width: 768px) {
    .lc_catering_menu_section .auto-container {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .lc_catering_menu_section .auto-container {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .lc_catering_menu_section .auto-container {
        max-width: 1140px;
    }
}

@media (min-width: 1400px) {
    .lc_catering_menu_section .auto-container {
        max-width: 1320px;
    }
}

/* Section Header */
.lc_section_header {
    text-align: center;
    margin-bottom: 70px;
    animation: lc_fadeInDown 0.8s ease-out;
}

.lc_section_subtitle {
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    color: #e6b15f;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
}

.lc_section_subtitle::before,
.lc_section_subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 2px;
    background: #e6b15f;
}

.lc_section_subtitle::before {
    left: 0;
}

.lc_section_subtitle::after {
    right: 0;
}

.lc_section_title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.lc_section_description {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Category Block */
.lc_category_block {
    background: #ffffff;
    border-radius: 20px;
    margin-bottom: 40px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: lc_fadeInUp 0.6s ease-out backwards;
}

.lc_category_block:nth-child(1) { animation-delay: 0.1s; }
.lc_category_block:nth-child(2) { animation-delay: 0.15s; }
.lc_category_block:nth-child(3) { animation-delay: 0.2s; }
.lc_category_block:nth-child(4) { animation-delay: 0.25s; }
.lc_category_block:nth-child(5) { animation-delay: 0.3s; }
.lc_category_block:nth-child(6) { animation-delay: 0.35s; }
.lc_category_block:nth-child(7) { animation-delay: 0.4s; }
.lc_category_block:nth-child(8) { animation-delay: 0.45s; }
.lc_category_block:nth-child(9) { animation-delay: 0.5s; }
.lc_category_block:nth-child(10) { animation-delay: 0.55s; }

.lc_category_block:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

/* Category Header */
.lc_category_header {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 25px 30px;
    background: linear-gradient(#e6b15f);
    position: relative;
}

.lc_category_image {
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 4px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.lc_category_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.lc_category_block:hover .lc_category_image img {
    transform: scale(1.1);
}

.lc_category_overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.3) 0%, rgba(255, 140, 66, 0.2) 100%);
    mix-blend-mode: overlay;
}

.lc_category_info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.lc_category_title {
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    font-family: 'Playfair Display', serif;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.lc_item_counter {
    font-size: 16px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Items Grid */
.lc_items_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    padding: 30px;
}

/* Touch-friendly improvements */
@media (hover: none) and (pointer: coarse) {
    .lc_items_grid {
        gap: 18px;
    }
    
    .lc_item_label {
        padding: 16px 18px;
        min-height: 56px;
    }
    
    .lc_checkbox_custom {
        width: 26px;
        height: 26px;
    }
    
    .lc_addon_label {
        padding: 14px 16px;
        min-height: 52px;
    }
    
    .lc_form_input {
        min-height: 48px;
    }
    
    .lc_submit_btn {
        min-height: 54px;
    }
}

/* Menu Item */
.lc_menu_item {
    position: relative;
}

.lc_checkbox {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.lc_item_label {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.lc_item_label::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.1), transparent);
    transition: left 0.5s ease;
}

.lc_item_label:hover::before {
    left: 100%;
}

.lc_item_label:hover {
    background: #fff;
    border-color: #ffa726;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(255, 107, 0, 0.1);
}

.lc_checkbox:checked + .lc_item_label {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #e6b15f;
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.15);
}

.lc_checkbox:disabled + .lc_item_label {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

/* Custom Checkbox */
.lc_checkbox_custom {
    width: 24px;
    height: 24px;
    border: 2px solid #bdc3c7;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
    position: relative;
}

.lc_checkbox_custom::after {
    content: '✓';
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transform: scale(0) rotate(-45deg);
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.lc_checkbox:checked + .lc_item_label .lc_checkbox_custom {
    background: linear-gradient(135deg, #e6b15f 0%, #ff8c42 100%);
    border-color: #e6b15f;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.lc_checkbox:checked + .lc_item_label .lc_checkbox_custom::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.lc_item_name {
    font-size: 16px;
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.lc_item_price {
    font-size: 15px;
    font-weight: 700;
    color: #e6b15f;
    background: rgba(255, 107, 0, 0.1);
    padding: 4px 12px;
    border-radius: 20px;
    margin-left: 10px;
}

.lc_checkbox:checked + .lc_item_label .lc_item_name {
    color: #e6b15f;
    font-weight: 600;
}

.lc_checkbox:checked + .lc_item_label .lc_item_price {
    background: #e6b15f;
    color: #ffffff;
}

/* Add Ons Section */
.lc_addons_section {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin: 50px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: lc_fadeInUp 0.6s ease-out 0.6s backwards;
}

.lc_addons_title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.lc_addons_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e6b15f, #ffa726);
    border-radius: 2px;
}

.lc_addons_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.lc_addon_item {
    position: relative;
}

.lc_checkbox_addon {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.lc_addon_label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 18px;
    background: #f8f9fa;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.lc_addon_label:hover {
    background: #fff;
    border-color: #ffa726;
    box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}


.lc_checkbox_addon:checked + .lc_addon_label {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-color: #e6b15f;
}
.lc_checkbox_addon:checked + .lc_addon_label .lc_checkbox_custom {
    background: linear-gradient(135deg, #e6b15f 0%, #ff8c42 100%);
    border-color: #e6b15f;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}
.lc_checkbox_addon:checked + .lc_addon_label .lc_checkbox_custom::after {
    opacity: 1;
    transform: scale(1) rotate(0deg);
}

.lc_addon_name {
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
    flex: 1;
}

.lc_addon_price {
    font-size: 14px;
    font-weight: 700;
    color: #e6b15f;
    background: rgba(255, 107, 0, 0.1);
    padding: 3px 10px;
    border-radius: 15px;
    margin-left: 8px;
}

.lc_checkbox_addon:checked + .lc_addon_label .lc_addon_name {
    color: #e6b15f;
    font-weight: 600;
}

.lc_checkbox_addon:checked + .lc_addon_label .lc_addon_price {
    background: #e6b15f;
    color: #ffffff;
}

/* Order Details Section */
.lc_order_details_section {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: lc_fadeInUp 0.6s ease-out 0.7s backwards;
}

.lc_order_details_title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.lc_order_details_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(#e6b15f);
    border-radius: 2px;
}

.lc_price_breakdown {
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%);
    border-radius: 15px;
    padding: 25px 30px;
    margin-bottom: 30px;
    border: 2px solid #e6b15f;
}

.lc_price_row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.lc_price_row:last-child {
    margin-bottom: 0;
    padding-top: 12px;
    border-top: 2px dashed #e6b15f;
}

.lc_price_label {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
}

.lc_price_value {
    font-size: 22px;
    font-weight: 800;
    color: #e6b15f;
    font-family: 'Playfair Display', serif;
}

.lc_order_form_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

/* Customer Info Section */
.lc_customer_info_section {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    animation: lc_fadeInUp 0.6s ease-out 0.8s backwards;
}

.lc_customer_info_title {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 30px;
    font-family: 'Playfair Display', serif;
    text-align: center;
    position: relative;
    padding-bottom: 20px;
}

.lc_customer_info_title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #e6b15f, #ffa726);
    border-radius: 2px;
}

.lc_customer_form_grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

/* Form Elements */
.lc_form_group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.lc_form_label {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
    letter-spacing: 0.5px;
}

.lc_form_input {
    padding: 15px 20px;
    font-size: 16px;
    color: #2c3e50;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 10px;
    transition: all 0.3s ease;
    outline: none;
    font-family: inherit;
}

.lc_form_input:hover {
    background: #ffffff;
    border-color: #e0e0e0;
}

.lc_form_input:focus {
    background: #ffffff;
    border-color: #e6b15f;
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.lc_form_input::placeholder {
    color: #95a5a6;
}

.lc_form_input[readonly] {
    background: #ecf0f1;
    cursor: not-allowed;
    color: #7f8c8d;
    font-weight: 600;
}

/* Submit Section */
.lc_submit_section {
    text-align: center;
    margin-top: 50px;
    animation: lc_fadeInUp 0.6s ease-out 0.9s backwards;
}

.lc_submit_btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 18px 50px;
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    background: linear-gradient(135deg, #e6b15f 0%, #ff8c42 100%);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 0, 0.3);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.lc_submit_btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.lc_submit_btn:hover::before {
    width: 400px;
    height: 400px;
}

.lc_submit_btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 107, 0, 0.4);
}

.lc_submit_btn:active {
    transform: translateY(-1px);
}

.lc_btn_text,
.lc_btn_icon {
    position: relative;
    z-index: 1;
}

.lc_btn_icon {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.lc_submit_btn:hover .lc_btn_icon {
    transform: translateX(5px);
}

/* Animations */
@keyframes lc_fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes lc_fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */

/* Extra Large Screens */
@media (min-width: 1400px) {
    .lc_section_title {
        font-size: 52px;
    }
    
    .lc_items_grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large Screens - Desktop */
@media (max-width: 1199px) {
    .lc_section_title {
        font-size: 44px;
    }
    
    .lc_category_title {
        font-size: 28px;
    }
    
    .lc_items_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Medium Screens - Tablets Landscape */
@media (max-width: 991px) {
    .lc_catering_menu_section {
        padding: 80px 0;
    }
    
    .lc_section_header {
        margin-bottom: 50px;
    }
    
    .lc_section_title {
        font-size: 38px;
    }
    
    .lc_section_description {
        font-size: 17px;
    }
    
    .lc_category_header {
        flex-direction: row;
        text-align: left;
        padding: 20px 25px;
    }
    
    .lc_category_image {
        width: 100px;
        height: 100px;
    }
    
    .lc_category_title {
        font-size: 26px;
    }
    
    .lc_category_info {
        flex-direction: row;
        justify-content: space-between;
    }
    
    .lc_items_grid {
        grid-template-columns: repeat(2, 1fr);
        padding: 25px;
        gap: 18px;
    }
    
    .lc_addons_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .lc_order_form_grid,
    .lc_customer_form_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Small Screens - Tablets Portrait */
@media (max-width: 767px) {

    .lc_catering_menu_section {
        padding: 60px 0;
    }

    .lc_catering_menu_section::before,
    .lc_catering_menu_section::after {
        display: none;
    }

    .lc_section_header {
        margin-bottom: 40px;
        text-align: center;
    }

    .lc_section_subtitle {
        font-size: 14px;
        letter-spacing: 2px;
        padding: 0 20px;
    }

    .lc_section_subtitle::before,
    .lc_section_subtitle::after {
        width: 15px;
    }

    .lc_section_title {
        font-size: 30px;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .lc_section_description {
        font-size: 16px;
        padding: 0 20px;
    }

    /* Category */
    .lc_category_block {
        margin-bottom: 30px;
        border-radius: 16px;
    }

    .lc_category_header {
        flex-direction: column;
        text-align: center;
        padding: 20px;
        gap: 16px;
    }

    .lc_category_image {
        width: 100%;
        max-width: 200px;
        height: 150px;
        margin: 0 auto;
    }

    .lc_category_title {
        font-size: 24px;
    }

    .lc_category_info {
        flex-direction: column;
        gap: 12px;
    }

    .lc_item_counter {
        font-size: 14px;
        padding: 6px 16px;
    }

    /* Items */
    .lc_items_grid {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 20px;
    }

    .lc_item_label {
        padding: 15px 18px;
        flex-wrap: wrap;
    }

    .lc_item_name {
        font-size: 15px;
        width: 100%;
    }

    .lc_item_price {
        font-size: 14px;
        margin-top: 8px;
    }

    /* Shared Sections */
    .lc_addons_section,
    .lc_order_details_section,
    .lc_customer_info_section {
        padding: 30px 22px;
        margin: 30px 0;
        border-radius: 16px;
    }

    .lc_addons_title,
    .lc_order_details_title,
    .lc_customer_info_title {
        font-size: 26px;
        margin-bottom: 25px;
    }

    /* Addons */
    .lc_addons_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .lc_addon_label {
        padding: 14px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .lc_addon_name {
        font-size: 14px;
    }

    .lc_addon_price {
        font-size: 13px;
        margin-left: 0;
    }

    /* Forms */
    .lc_order_form_grid,
    .lc_customer_form_grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .lc_submit_btn {
        width: 100%;
        justify-content: center;
        padding: 15px 40px;
        font-size: 16px;
    }
}

/* Extra Small Screens - Mobile */
@media (max-width: 480px) {

    .lc_catering_menu_section {
        padding: 40px 0;
    }

    .auto-container {
        padding: 0 15px;
    }

    .lc_section_title {
        font-size: 26px;
    }

    .lc_section_description {
        font-size: 14px;
        line-height: 1.5;
    }

    .lc_category_header {
        padding: 16px;
    }

    .lc_category_image {
        max-width: 150px;
        height: 120px;
    }

    .lc_category_title {
        font-size: 22px;
    }

    .lc_items_grid {
        padding: 16px;
        gap: 12px;
    }

    /* Addons – single column ONLY */
    .lc_addons_grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .lc_addon_label {
        flex-direction: row;
        align-items: center;
        padding: 12px 14px;
    }

    .lc_addon_name {
        font-size: 13px;
        flex: 1;
    }

    .lc_addon_price {
        font-size: 12px;
        padding: 2px 8px;
    }

    /* Price breakdown */
    .lc_price_row {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .lc_price_value {
        align-self: flex-end;
        font-size: 20px;
    }

    .lc_form_input {
        padding: 12px 14px;
        font-size: 14px;
    }

    .lc_submit_btn {
        padding: 14px 35px;
        font-size: 15px;
    }
}


/* Very Small Screens - Small Mobile */
@media (max-width: 360px) {

    .lc_section_title {
        font-size: 24px;
    }

    .lc_category_title {
        font-size: 20px;
    }

    .lc_category_image {
        max-width: 120px;
        height: 100px;
    }

    .lc_item_name {
        font-size: 13px;
    }

    .lc_addons_title,
    .lc_order_details_title,
    .lc_customer_info_title {
        font-size: 20px;
    }

    .lc_submit_btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}


/* Landscape Orientation Fixes */
@media (max-height: 600px) and (orientation: landscape) {

    .lc_category_header {
        flex-direction: row;
        gap: 15px;
    }

    .lc_category_image {
        width: 80px;
        height: 80px;
    }

    .lc_items_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* High Resolution Displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .lc_category_image img {
        image-rendering: -webkit-optimize-contrast;
    }
}

/* Print Styles */
@media print {
    .lc_catering_menu_section::before,
    .lc_catering_menu_section::after {
        display: none;
    }
    
    .lc_submit_btn {
        display: none;
    }
    
    .lc_category_block {
        page-break-inside: avoid;
    }
}