﻿@font-face {
    font-family: "baloo-bold";
    src: url("./font/Baloo_2/Baloo2-Bold.ttf");
}

@font-face {
    font-family: "baloo-medium";
    src: url("./font/Baloo_2/Baloo2-Medium.ttf");
}

@font-face {
    font-family: "baloo-regular";
    src: url("./font/Baloo_2/Baloo2-Regular.ttf");
}

@font-face {
    font-family: "handwriting";
    src: url("./font/Charm/Charm-Regular.ttf");
}

@font-face {
    font-family: "logo", cursive;
    src: url("./font/Coiny/Coiny-Regular.ttf");
}

:root {
    --primary-color: #ff6b6b; /* Soft red */
    --secondary-color: #95274e; /* Dark Red */
    --accent-color: #ff9ff3; /* Light pink */
    --dark-color: #4834d4; /* Dark purple for contrast */
    --light-color: #95274e; /* Light background */
    --text-color: #2c3e50; /* Dark gray for text */
    --text-light: #6c757d; /* Light gray for secondary text */
}

body {
    font-family: "Arial", sans-serif;
}

.category-carousel {
    display: flex;
    border: 1px solid var(--light-color);
    flex-direction: row;
    align-items: center;
    justify-content: start;
    background-color: #95274e;
    backdrop-filter: blur(40px);
    background-size: cover;
    background-repeat: no-repeat;
    min-height: 30rem;
    border-radius: 10px;
}

.category-panel {
    padding: 20px;
    color: white;
    height: 100%;
    width: 90%;
    border-right: 2px solid white;
    backdrop-filter: blur(10px);
    min-height: 17rem;
}

.parent-category-panel {
    background-color: #ffffff00;
    padding: 0;
    border-radius: 10px;
}

.category-panel ul {
    list-style-type: none;
    padding: 0;
}

.owl-stage {
    padding-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.category-panel ul .li-unique {
    padding: 10px;
    margin-bottom: 10px;
    backdrop-filter: blur(40px);
    display: flex;
    align-items: flex-end;
    gap: 1rem;
    border-radius: 5px;
    cursor: pointer;
    color: #ffffff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    i

{
    font-size: 1.3rem;
}

span {
    font-family: "DynaPuff", system-ui;
    font-optical-sizing: auto;
    font-weight: 400;
    padding: 0;
    line-height: 1;
    font-style: normal;
    font-variation-settings: "wdth" 100;
}

}

.category-panel ul li:hover {
    background-color: rgb(181, 66, 66);
}

.category-panel ul li.active {
    background-color: #95274e;
    color: white;
    border-color: #95274e;
    position: relative;
}

    .category-panel ul li.active::after {
        content: "";
        display: block;
        position: absolute;
        left: 10px;
        right: 10px;
        bottom: 4px;
        height: 2px;
        background: white;
        border-radius: 2px;
        transform: scaleX(1);
        transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
    }

.category-panel ul li:not(.active)::after {
    content: "";
    display: block;
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 4px;
    height: 3px;
    background: transparent;
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4,0,0.2,1);
}

.owl-carausel .owl-stage {
    height: 40rem;
    padding: 2rem;
}

.product-card {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    height: auto;
    min-height: 16rem;
    min-width: 16rem;
    border: 1px solid #f1f1f1;
}

.show {
    background: #ffffff00;
    border-radius: 10px;
    overflow: visible;
    border: none;
    box-shadow: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    height: auto;
    .product-image

{
    width: 90%;
    height: 13rem;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background-color: rgb(255, 234, 165);
    img

{
    width: 18rem;
    height: 18rem;
    object-fit: cover;
    overflow: visible;
    transition: all 0.3s ease-in-out;
}

}

.product-info {
    padding: 15px;
    text-align: center;
    background-color: #f9f9f900;
    h5

{
    font-size: 1.5rem;
    font-family: 'handwriting';
    font-weight: bold;
}

.product-price {
    display: none;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

}
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.show:hover {
    transform: translateY(-5px);
    box-shadow: none;
    .product-image

{
    width: 90%;
    display: flex;
    border-radius: 10px;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background-color: rgb(255, 234, 165);
    img

{
    width: 25rem;
    height: 25rem;
    transform: scale(1.2);
    overflow: visible;
}

}
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #f9f9f9;
}

    .product-image img {
        width: auto;
        height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

.product-card:hover .product-image img {
    transform: scale(1.07);
}

.product-info {
    padding: 15px;
    text-align: center;
    background-color: #f9f9f9;
}

.product-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 10px;
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title {
    color: var(--primary-color);
    position: relative;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
}

    .section-title::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 4px;
        background: var(--primary-color);
        border-radius: 2px;
    }

.section-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}
/* Add some responsive adjustments */
@media (max-width: 768px) {
    .product-image {
        height: 150px;
    }

    .product-card {
        margin-bottom: 15px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .show {
        min-width: 16
    }
}
/* Additional styling for the carousel navigation */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
    background: rgba(255, 107, 107, 0.144) !important;
    backdrop-filter: blur(10px);
    color: white !important;
    width: 3.5rem !important;
    height: 3.5rem !important;
    border-radius: 50% !important;
    transition: all 0.3s ease !important;
    position: absolute !important;
    top: 90% !important;
    transform: translateY(-20%) !important;
    span

{
    font-size: 2rem !important;
    color: white !important;
}

}

.owl-nav button.owl-prev {
    left: -0px !important;
}

.owl-nav button.owl-next {
    right: -0px !important;
}

    .owl-nav button.owl-prev:hover,
    .owl-nav button.owl-next:hover {
        backdrop-filter: blur(15px);
        background: rgba(255, 107, 107, 0.225) !important;
    }
/* Add a nice transition for the category panel items */
.category-panel ul li {
    transition: all 0.3s ease;
}
/* Style for the product badges if they are used */
.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: var(--primary-color);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 10;
}

    .product-badge.special {
        background: linear-gradient( 135deg, var(--secondary-color) 0%, var(--accent-color) 100% );
    }

    .product-badge.bestseller {
        background: var(--dark-color);
    }

    .product-badge.healthy {
        background: #7bed9f;
    }
/* Style for the add to cart button if it's added later */
.btn-add-to-cart {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

    .btn-add-to-cart:hover {
        background-color: #e05656;
    }
/* Make sure the carousel items are properly aligned */
.owl-carousel .owl-item {
    display: flex;
    justify-content: center;
}
/* Add some spacing between product cards in the carousel */
.owl-carousel .owl-item {
    padding: 0 10px;
}
/* Ensure the carousel container has proper width */
.owl-carousel {
    width: 100%;
    display: flex;
}

/* Custom styles for main dropdowns (no nested dropright needed for this structure) */
@media (min-width: 992px) {
    .navbar .dropdown:hover > .dropdown-menu {
        display: block;
    }
}

/* Ensure dropdown menus have a background for visibility */
.dropdown-menu {
    background-color: #95274e; /* Or your preferred background */
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
    color: #fff; /* Text color */
    box-shadow: 0 .5rem 1rem rgba(0,0,0,.175);
    border-radius: 1rem;
    .dropdown-item
{
    background-color: transparent;
    color: #95274e;
}

.dropdown-item:hover {
    background-color: rgba(255, 255, 255, 0.1); /* Slightly darker on hover */
    color: #F1A80E;
}

}

/* NEW & IMPROVED STYLES FOR DELIVERY SECTION - REDESIGN TO MATCH IMAGE */
#delivery-section {
    padding: 80px 0;
    background-color: #95274e01; /* Light beige background from the image */
    font-family: Arial, sans-serif; /* Use a standard sans-serif for general text */
}

.delivery-promo-card {
    background-color: #95274e; /* Same as section background for seamless look */
    border-radius: 20px; /* Matching the image's rounded corners */
    padding: 50px; /* Generous padding inside the card */
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: hsl(0, 0%, 95%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 5px 15px rgba(0, 0, 0, 0.05); /* Soft, subtle shadow */
    border: none; /* No visible border */
}

.delivery-promo-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align content to the left */
    padding-right: 30px; /* Space between left content and right */
}

/* Custom CSS to approximate the shopping bag illustration */
.delivery-illustration {
    width: 150px; /* Adjusted size for the illustration */
    height: 150px;
    margin-bottom: 25px;
    position: relative;
    flex-shrink: 0; /* Prevent shrinking */
    /* This is where you would place an SVG or image */
    /* For demonstration, I'll attempt a simple CSS approximation */
}

.delivery-bag {
    width: 90px;
    height: 100px;
    border: 2px solid var(--secondary-color); /* Dark red border */
    border-radius: 5px 5px 40px 40px; /* Rounded bottom */
    position: absolute;
    bottom: 0;
    left: 20px; /* Positioning the bag within the illustration area */
    background-color: rgb(231, 231, 231); /* Bag background */
}

    .delivery-bag::before, .delivery-bag::after {
        content: '';
        position: absolute;
        top: -15px;
        width: 45px;
        height: 25px;
        border: 2px solid var(--secondary-color);
        border-bottom: none;
        border-radius: 20px 20px 0 0;
    }

    .delivery-bag::before {
        left: -5px;
        transform: rotate(-10deg);
    }
    /* Left handle */
    .delivery-bag::after {
        right: -5px;
        transform: rotate(10deg);
    }
/* Right handle */

.delivery-bag-text {
    font-family: 'Parisienne', cursive; /* Use a handwriting-style font */
    color: var(--secondary-color);
    font-size: 1.1em;
    position: absolute;
    top: 35px;
    width: 100%;
    text-align: center;
    color: #95274e;
    left: 0;
    line-height: 1.1;
    font-weight: bold;
}

/* Items peeking out of the bag - simplified as shapes, not detailed like image */
.bag-item-bread {
    width: 60px;
    height: 25px;
    background-color: #E2B27B; /* Bread color */
    border-radius: 15px;
    position: absolute;
    top: -15px; /* Peeking out */
    left: 45px;
    transform: rotate(10deg);
    border: 1px solid #C79E62;
    z-index: 1;
}

.bag-item-roll1 {
    width: 35px;
    height: 35px;
    background-color: #D3A771; /* Roll color */
    border-radius: 50%;
    position: absolute;
    top: 90px; /* At the bottom left, outside bag */
    left: 0;
    border: 1px solid #B78C53;
    z-index: 0;
}

.bag-item-roll2 {
    width: 40px;
    height: 40px;
    background-color: #E2B27B;
    border-radius: 50%;
    position: absolute;
    top: 100px; /* At the bottom right, outside bag */
    left: 80px;
    border: 1px solid #C79E62;
    z-index: 0;
}


.delivery-heading {
    font-family: "DynaPuff", system-ui; /* From your existing fonts, or pick a similar bold sans-serif */
    font-size: 3.5em; /* Large and impactful */
    font-weight: 700;
    color: hsl(0, 0%, 95%);
    /* Dark red */
    margin-bottom: 5px; /* Tighten spacing */
    line-height: 1.1;
}

.delivery-subheading {
    font-size: 1.2em;
    color: hsl(0, 0%, 95%);
    ;
    line-height: 1.4;
    max-width: 90%; /* Prevent text from being too wide */
}

.delivery-promo-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center horizontally */
    text-align: center; /* Center text */
    padding-left: 30px; /* Space from left section */
}

.delivery-description {
    font-size: 1.1em;
    color: hsl(0, 0%, 95%);
    margin-bottom: 25px; /* Space before buttons */
    line-height: 1.5;
}

.delivery-buttons {
    display: flex;
    gap: 20px; /* Space between buttons */
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
    justify-content: center; /* Center buttons if they wrap */
    width: 100%;
}

.delivery-app-button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px; /* Adjust padding to match image */
    border: 1px solid #DEDEDE; /* Light border */
    border-radius: 999px; /* Pill shape */
    background-color: #FFFFFF;
    font-weight: bold;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    min-width: 180px; /* Set a minimum width for consistency */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05); /* Subtle shadow for depth */
}

    .delivery-app-button i {
        margin-right: 10px;
        font-size: 1.2em;
    }

    /* Specific button styles */
    .delivery-app-button.uber-eats {
        color: #000; /* Black text */
    }

        .delivery-app-button.uber-eats:hover {
            background-color: #f0f0f0;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

    .delivery-app-button.menulog {
        color: #FF8000; /* Menulog orange */
    }

        .delivery-app-button.menulog i {
            color: #FF8000; /* Menulog orange icon */
        }

        .delivery-app-button.menulog:hover {
            background-color: #FFF3E6; /* Lighter orange background on hover */
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }


/* Responsive adjustments */
@media (max-width: 991px) {
    .delivery-promo-card {
        flex-direction: column; /* Stack vertically on smaller screens */
        padding: 30px;
    }

    .delivery-promo-left {
        padding-right: 0;
        margin-bottom: 30px; /* Space between sections */
        align-items: center; /* Center content horizontally */
        text-align: center; /* Center text */
    }

    .delivery-promo-right {
        padding-left: 0;
    }

    .delivery-heading {
        font-size: 2.8em;
    }

    .delivery-subheading {
        font-size: 1.1em;
        max-width: 100%;
    }

    .delivery-description {
        font-size: 1em;
    }

    .delivery-illustration {
        width: 120px;
        height: 120px;
    }

    .delivery-bag {
        width: 70px;
        height: 80px;
        left: 20px;
    }

        .delivery-bag::before, .delivery-bag::after {
            width: 35px;
            height: 20px;
            top: -12px;
        }

    .delivery-bag-text {
        font-size: 0.9em;
        top: 25px;
    }

    .bag-item-bread {
        width: 50px;
        height: 20px;
        top: -10px;
        left: 30px;
    }

    .bag-item-roll1, .bag-item-roll2 {
        width: 30px;
        height: 30px;
    }

    .bag-item-roll1 {
        left: 0;
        top: 75px;
    }

    .bag-item-roll2 {
        left: 70px;
        top: 85px;
    }
}

@media (max-width: 767px) {
    #delivery-section {
        padding: 40px 0;
    }

    .delivery-promo-card {
        padding: 20px;
        border-radius: 15px;
    }

    .delivery-promo-left {
        margin-bottom: 20px;
    }

    .delivery-heading {
        font-size: 2.2em;
    }

    .delivery-subheading {
        font-size: 0.95em;
    }

    .delivery-illustration {
        width: 100px;
        height: 100px;
        margin-bottom: 15px;
    }

    .delivery-bag {
        width: 60px;
        height: 70px;
        left: 10px;
    }

        .delivery-bag::before, .delivery-bag::after {
            width: 30px;
            height: 18px;
            top: -10px;
        }

    .delivery-bag-text {
        font-size: 0.8em;
        top: 20px;
    }

    .bag-item-bread {
        width: 40px;
        height: 18px;
        top: -8px;
        left: 25px;
    }

    .bag-item-roll1 {
        left: -5px;
        top: 60px;
    }

    .bag-item-roll2 {
        left: 55px;
        top: 68px;
    }

    .delivery-description {
        font-size: 0.9em;
        margin-bottom: 20px;
    }

    .delivery-buttons {
        flex-direction: column; /* Stack buttons even more definitively */
        gap: 15px;
    }

    .delivery-app-button {
        min-width: unset; /* Remove min-width on very small screens */
        width: 100%; /* Full width */
        font-size: 1em;
        padding: 10px 20px;
    }
}

</style > <style >
/* Existing sidebar styles */
.sidebar {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px; /* Kept original width */
    height: 100vh;
    background: linear-gradient(135deg, #95274e 80%, #f62564 100%);
    color: #fff;
    box-shadow: -4px 0 24px rgba(0,0,0,0.15);
    z-index: 1050;
    transition: right 0.4s cubic-bezier(0.4,0,0.2,1);
    border-top-left-radius: 24px;
    border-bottom-left-radius: 24px;
    overflow-y: auto; /* Enable scrolling for content */
    font-family: 'DynaPuff', 'Arial', cursive, sans-serif;
}

.sidebar.open {
    right: 0;
}

.sidebar .close-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 2.2rem;
    position: absolute;
    top: 18px;
    right: 22px;
    cursor: pointer;
    transition: color 0.2s;
    z-index: 1060; /* Higher z-index for close button */
}

    .sidebar .close-btn:hover {
        color: #ff9ff3;
    }

.sidebar-content {
    padding: 2.5rem 1.5rem !important; /* Adjusted for better padding */
    padding-top: 4rem !important; /* Give space for close button */
}

.sidebar h4, .sidebar h5 {
    font-family: 'Chicle', cursive;
    color: #fff;
    letter-spacing: 1px;
    text-shadow: 0 2px 8px rgba(163,31,52,0.12);
}

.sidebar hr {
    border-top: 1.5px solid #fff2;
    margin: 1.5rem 0;
}
/* You can remove the old .sidebar .input-group styles if you only use the new search bar now */
/* .sidebar .input-group .form-control { ... } */
/* .sidebar .input-group .form-control:focus { ... } */
/* .sidebar .input-group-append .btn { ... } */
/* .sidebar .input-group-append .btn:hover { ... } */
.sidebar ul.list-unstyled li {
    margin-bottom: 0.7rem;
}

    .sidebar ul.list-unstyled li a {
        color: #fff;
        font-size: 1.08rem;
        font-family: 'DynaPuff', cursive, sans-serif;
        text-decoration: none;
        transition: color 0.2s;
        padding: 0.2rem 0.5rem;
        border-radius: 8px;
        display: inline-block;
    }

        .sidebar ul.list-unstyled li a:hover,
        .sidebar ul.list-unstyled li a:focus {
            color: #fff;
            background: #fff1;
            text-decoration: none;
        }

.sidebar-category-link i {
    color: #fff;
    margin-right: 0.5rem;
}

.sidebar-social a {
    color: #fff;
    font-size: 1.3rem;
    margin-right: 0.7rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-block;
}

    .sidebar-social a:hover {
        color: #fff;
        transform: scale(1.15) rotate(-8deg);
        text-decoration: none;
    }

@media (max-width: 600px) {
    .sidebar {
        width: 100vw;
        right: -100vw;
        border-radius: 0;
    }

        .sidebar.open {
            right: 0;
        }
}


/* NEW SEARCH UI STYLES */
.sidebar .search-input-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background-color: #fff; /* White background for the whole container/input */
    border-radius: 25px; /* Pill shape */
    padding: 0 15px; /* Inner padding for input and icons */
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar .sidebar-search-input {
    flex-grow: 1; /* Allows input to take available space */
    border: none;
    background: transparent; /* No background as parent container has it */
    color: #333;
    font-size: 1rem;
    padding: 12px 0; /* Vertical padding */
    outline: none; /* Remove focus outline */
}

    .sidebar .sidebar-search-input::placeholder {
        color: #999;
        font-family: Arial, sans-serif; /* Simpler font for placeholder */
    }

    .sidebar .sidebar-search-input:focus {
        box-shadow: none; /* Handled by container */
        border: none;
    }

.sidebar .search-icon-overlay,
.sidebar .clear-search-btn {
    position: static; /* Reset absolute positioning if previously set */
    margin-left: 10px; /* Space between input text and icon/button */
    cursor: pointer;
    font-size: 1.1rem;
    color: #95274e; /* Dark red from your theme */
    transition: color 0.2s;
}

.sidebar .search-icon-overlay {
    margin-left: -20px; /* Pull search icon slightly into input for "inner" look */
    pointer-events: none; /* Make icon unclickable, click on input instead */
    color: #999; /* Lighter color for default icon */
}

.sidebar .clear-search-btn {
    color: #ccc;
    background: none;
    border: none;
    padding: 0;
    line-height: 1; /* Fix line height for single icon */
}

    .sidebar .clear-search-btn:hover {
        color: #999;
    }

.sidebar .filter-tabs {
    display: flex;
    gap: 10px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.sidebar .filter-btn {
    background-color: rgba(255,255,255,0.2);
    color: #fff;
    border: none;
    padding: 8px 18px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: background-color 0.2s, color 0.2s;
    font-family: Arial, sans-serif; /* Using Arial for clean look as in image */
    font-weight: 500;
    white-space: nowrap;
}

    .sidebar .filter-btn:hover {
        background-color: rgba(255,255,255,0.3);
    }

    .sidebar .filter-btn.active {
        background-color: #fff; /* Accent color for active tab */
        color: #95274e; /* Dark red text for active tab */
        font-weight: bold;
    }

.sidebar .search-results-list {
    padding-top: 0px; /* Already part of sidebar-content padding */
    max-height: 40vh; /* Limit height to enable scrolling for results */
    overflow-y: auto;
    /* Hide scrollbar for Webkit browsers */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

    .sidebar .search-results-list::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }

.sidebar .search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background-color 0.2s;
}

    .sidebar .search-result-item:last-child {
        border-bottom: none;
    }

    .sidebar .search-result-item:hover {
        background-color: rgba(255,255,255,0.08);
    }

.sidebar .result-img {
    width: 70px;
    height: 70px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 15px;
    flex-shrink: 0;
    border: 1px solid rgba(255,255,255,0.15);
}

.sidebar .result-title {
    font-size: 1.1rem;
    color: #fff;
    line-height: 1.3;
    font-family: Arial, sans-serif; /* Clean sans-serif for result titles */
    font-weight: 500;
}

.sidebar .view-all-results {
    color: #fff;
    text-decoration: none;
    margin-top: 25px;
    margin-bottom: 15px;
    display: block;
    text-align: right;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.2s;
    font-family: Arial, sans-serif; /* Clean sans-serif for link */
}

    .sidebar .view-all-results:hover {
        color: #F1A80E;
        text-decoration: underline;
    }

    .sidebar .view-all-results i {
        margin-left: 8px;
        transition: transform 0.2s;
    }

    .sidebar .view-all-results:hover i {
        transform: translateX(3px);
    }

.sidebar .ui-divider { /* Custom divider for new UI sections */
    border-top: 1px solid rgba(255,255,255,0.1);
    margin: 1rem 0;
}

/* No results message */
.no-results-message {
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    padding: 20px 0;
    font-style: italic;
}
