/* SnabbFood Rebranding (Wolt Style) */
/* ========================================================================= */
/* 1. FONTS (Poppins) */
/* ========================================================================= */

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/poppins/Poppins-Light.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/poppins/Poppins-Regular.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 500;
    src: url('../fonts/poppins/Poppins-Medium.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/poppins/Poppins-SemiBold.woff2') format('woff2');
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    font-style: normal;
    font-weight: 700;
    src: url('../fonts/poppins/Poppins-Bold.woff2') format('woff2');
    font-display: swap;
}

/* ========================================================================= */
/* 2. ROOT VARIABLES */
/* ========================================================================= */
:root {
    --wolt-primary-red: #E30613;
    /* SnabbFood Red */
    --wolt-primary-red-hover: #C50510;
    --wolt-red-light: #FBE5E7;
    /* Light background for highlights */
    --wolt-dark-text: #1A1A1A;
    --wolt-secondary-text: #6B7280;
    --wolt-gray-bg: #F5F5F5;
    --wolt-gray-border: #E5E7EB;

    --primary-color: var(--wolt-primary-red);
    --green-color: var(--primary-color) !important;
    /* Replacing theme's green with red */

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-pill: 9999px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.1);

    --font-family-sans-serif: 'Poppins', sans-serif !important;
}

/* ========================================================================= */
/* 3. GLOBAL OVERRIDES */
/* ========================================================================= */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
div,
span,
button,
input {
    font-family: var(--font-family-sans-serif) !important;
}

body {
    background-color: #ffffff;
    color: var(--wolt-dark-text) !important;
}

/* ========================================================================= */
/* 4. BUTTONS & BADGES */
/* ========================================================================= */
.btn-green,
.btn.green {
    background-color: var(--wolt-primary-red) !important;
    border-color: var(--wolt-primary-red) !important;
    color: #fff !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-green:hover,
.btn.green:hover {
    background-color: var(--wolt-primary-red-hover) !important;
    border-color: var(--wolt-primary-red-hover) !important;
    transform: translateY(-1px);
}

.btn-green-line {
    background-color: transparent !important;
    border: 1px solid var(--wolt-primary-red) !important;
    color: var(--wolt-primary-red) !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500;
}

.btn-green-line:hover {
    background-color: var(--wolt-red-light) !important;
}

.btn-black {
    background-color: var(--wolt-primary-red) !important;
    border-color: var(--wolt-primary-red) !important;
    color: #fff !important;
    border-radius: var(--radius-md) !important;
    font-weight: 500;
}

.btn-black:hover {
    background-color: var(--wolt-primary-red-hover) !important;
    border-color: var(--wolt-primary-red-hover) !important;
}

/* ===== Override ALL Element UI success/green buttons & tags to Primary Red ===== */
.el-button--success,
.el-button--success.is-plain {
    background-color: var(--wolt-primary-red) !important;
    border-color: var(--wolt-primary-red) !important;
    color: #fff !important;
}

.el-button--success:hover,
.el-button--success:focus,
.el-button--success.is-plain:hover,
.el-button--success.is-plain:focus {
    background-color: var(--wolt-primary-red-hover) !important;
    border-color: var(--wolt-primary-red-hover) !important;
    color: #fff !important;
}

.el-button--success.is-plain {
    background-color: var(--wolt-red-light) !important;
    color: var(--wolt-primary-red) !important;
    border-color: var(--wolt-primary-red) !important;
}

.el-button--success.is-plain:hover {
    background-color: var(--wolt-primary-red) !important;
    color: #fff !important;
}

.el-tag--success,
.el-tag.el-tag--success {
    background-color: var(--wolt-red-light) !important;
    border-color: var(--wolt-primary-red) !important;
    color: var(--wolt-primary-red) !important;
}

.el-link--success {
    color: var(--wolt-primary-red) !important;
}

.el-link--success:hover {
    color: var(--wolt-primary-red-hover) !important;
}

/* Join section button - the outline/plain variant */
.join-sections .el-button {
    border-color: var(--wolt-primary-red) !important;
    color: var(--wolt-primary-red) !important;
    background: transparent !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    transition: all 0.25s ease !important;
}

.join-sections .el-button:hover {
    background-color: var(--wolt-primary-red) !important;
    color: #fff !important;
}

.badge-yellow,
.badge-dark,
.badge.bg-lighter {
    background-color: var(--wolt-gray-bg) !important;
    color: var(--wolt-dark-text) !important;
    border-radius: var(--radius-sm) !important;
    padding: 4px 8px;
    font-weight: 500;
    border: 1px solid var(--wolt-gray-border) !important;
}

.with-promo {
    background-color: var(--wolt-primary-red) !important;
    color: #fff !important;
    border-radius: var(--radius-sm) !important;
    font-weight: 600;
}

/* ========================================================================= */
/* 5. HEADER (Wolt Style - Sticky with Scroll Effect) */
/* ========================================================================= */
#snabb-header {
    position: sticky !important;
    top: 0;
    z-index: 1030 !important;
    background-color: #fff;
    border-bottom: 1px solid transparent;
    box-shadow: none;
    transition: background-color 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

/* When scrolled - full white with shadow */
#snabb-header.scrolled {
    background-color: #fff !important;
    border-bottom-color: var(--wolt-gray-border) !important;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07) !important;
}

/* Transparent mode: header at top of page on pages with hero banner */
#snabb-header.transparent-header {
    background-color: transparent !important;
    border-bottom-color: transparent !important;
    box-shadow: none !important;
}

/* Make logo, links, icons visible on transparent background */
#snabb-header.transparent-header .top-logo img,
#snabb-header.transparent-header .top-menu a,
#snabb-header.transparent-header .top-menu li a,
#snabb-header.transparent-header ul.top-menu a {
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

#snabb-header.transparent-header .cart-handle,
#snabb-header.transparent-header .cart-handle i {
    color: #fff !important;
}

/* Keep top-navigation spacing */
#top-navigation {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

/* ========================================================================= */
/* 5.2 STICKY CATEGORY NAV (fixed offset below sticky header) */
/* ========================================================================= */
/* The sticky-sidebar plugin sets 'top' inline - override it */
.sticky-sidebar,
#sticky-sidebar {
    position: sticky !important;
    top: 70px !important;
    /* header height ~65px + small gap */
    z-index: 1020 !important;
    align-self: flex-start;
}

/* The top category bar container (must be sticky so it stays visible while scrolling the menu) */
#vue-merchant-category {
    position: sticky;
    top: 65px;
    z-index: 1020;
    background: #fff;
    border-bottom: 1px solid var(--wolt-gray-border);
}

/* The horizontal scroll category nav itself */
.component-topcategory,
[data-component="topcategory"],
.menu-cat-top-wrap {
    padding: 10px 0;
    margin-bottom: 16px;
}

/* Also handle sticky-wrapper which stickySidebar.js uses */
.sticky-wrapper.is-sticky,
.sticky-wrapper.is-sticky .category-nav {
    top: 65px !important;
    z-index: 1020 !important;
}



/* Pill-shaped search bar in header */
#top-navigation .search-box,
.change-address-wrap .form-label-group input {
    border-radius: var(--radius-pill) !important;
    background-color: var(--wolt-gray-bg) !important;
    border: 1px solid transparent !important;
    box-shadow: none !important;
}

#top-navigation .search-box:focus-within,
.change-address-wrap .form-label-group input:focus {
    background-color: #fff !important;
    border-color: var(--wolt-primary-red) !important;
    box-shadow: 0 0 0 4px var(--wolt-red-light) !important;
}

/* Header Login Button (Wolt Style) */
.top-menu .line-left {
    border-left: none !important;
    margin-left: 10px;
}

.top-menu .line-left a {
    background-color: var(--wolt-primary-red) !important;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.top-menu .line-left a:hover {
    background-color: var(--wolt-primary-red-hover) !important;
    transform: translateY(-1px);
}

/* ========================================================================= */
/* 5.5 RESTAURANT PROFILE HERO (Wolt Style) */
/* ========================================================================= */
.merchant-top-header {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.merchant-top-header>.container {
    max-width: 100% !important;
    padding: 0 !important;
}

/* The entire top row becomes the hero */
.merchant-top-header .row {
    display: flex;
    flex-wrap: nowrap;
    margin: 0 !important;
    position: relative;
    min-height: 280px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    overflow: hidden;
}

/* Left info panel - overlaid on the dark bg */
.merchant-top-header .left-info {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px 40px !important;
    flex: 1;
}

/* White text on dark background */
.merchant-top-header .left-info h4 {
    color: #fff !important;
    font-size: 2rem;
    font-weight: 800 !important;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.merchant-top-header .left-info ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
}

.merchant-top-header .left-info ul li,
.merchant-top-header .left-info ul li a,
.merchant-top-header .left-info ul li span,
.merchant-top-header .left-info .text-grey {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
}

.merchant-top-header .left-info ul li a:hover {
    color: #fff !important;
}

.merchant-top-header .left-info ul li i {
    color: rgba(255, 255, 255, 0.9) !important;
}

.merchant-top-header .left-info .zmdi-star {
    color: #fbbf24 !important;
}

/* Logo inside the hero */
.merchant-top-header .left-info .img-thumbnail {
    border-radius: var(--radius-lg) !important;
    border: 3px solid rgba(255, 255, 255, 0.2) !important;
    background: rgba(255, 255, 255, 0.95) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

/* Right side - header image as cover background */
.merchant-top-header .right-infox {
    position: absolute !important;
    top: 0;
    left: 0;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
    flex: none !important;
    z-index: 1;
    overflow: hidden;
}

.merchant-top-header .right-infox .el-image {
    width: 100% !important;
    height: 100% !important;
    max-height: none !important;
}

.merchant-top-header .right-infox .el-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    opacity: 0.35;
}

/* Dark gradient overlay on the cover image */
.merchant-top-header .right-infox::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(15, 15, 30, 0.95) 0%, rgba(15, 15, 30, 0.75) 50%, rgba(15, 15, 30, 0.2) 100%);
    z-index: 2;
    pointer-events: none;
}

/* Favorite/heart button */
.merchant-top-header .fav-wrap {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 10 !important;
}

/* Breadcrumb white text */
.merchant-top-header .el-breadcrumb {
    color: rgba(255, 255, 255, 0.6) !important;
}

.merchant-top-header .el-breadcrumb__item span,
.merchant-top-header .el-breadcrumb a {
    color: rgba(255, 255, 255, 0.7) !important;
}

.merchant-top-header .el-breadcrumb a:hover {
    color: #fff !important;
}

.merchant-top-header .el-breadcrumb__separator {
    color: rgba(255, 255, 255, 0.4) !important;
}

/* Services/delivery buttons - pill style */
.merchant-top-header .component-merchant-services .el-radio-button__inner,
.merchant-top-header .el-radio-button__inner {
    border-radius: var(--radius-pill) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
    background: transparent !important;
    color: #fff !important;
    font-weight: 500;
    margin-right: 8px;
}

.merchant-top-header .el-radio-button__original-radio:checked+.el-radio-button__inner {
    background: #fff !important;
    color: var(--wolt-primary-red) !important;
    border-color: #fff !important;
}

/* Global Services/delivery buttons active state (fixes default black background) */
.component-merchant-services .el-radio-button__original-radio:checked+.el-radio-button__inner,
.el-radio-button__original-radio:checked+.el-radio-button__inner {
    background-color: var(--wolt-primary-red) !important;
    border-color: var(--wolt-primary-red) !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* ========================================================================= */
/* 6. CARDS (Restaurants / Items) */
/* ========================================================================= */

/* --- NEW WOLT CARD DESIGN --- */
/* Swiper slide needs padding-bottom so the lifted card on hover is not clipped */
.swiperResto .swiper-wrapper {
    padding-bottom: 12px !important;
    align-items: stretch;
}

.swiperResto .swiperSlide {
    height: auto !important;
    min-height: unset !important;
    overflow: visible !important;
    /* allow card to lift without clipping */
    background: transparent !important;
    border: none !important;
}

.wolt-card {
    background: #fff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--wolt-gray-border);
    overflow: hidden;
    /* clip inner content cleanly */
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease !important;
    will-change: transform;
}

.wolt-card:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.10) !important;
    border-color: rgba(0, 0, 0, 0.05) !important;
}

.wolt-card-image-wrap {
    width: 100%;
    height: 160px;
    /* Fixed height for image */
    position: relative;
    overflow: hidden;
    background-color: var(--wolt-gray-bg);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    margin: 0 !important;
    padding: 0 !important;
}

.wolt-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover !important;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    /* Don't crop restaurant logos */
    transition: transform 0.5s ease;
}

.wolt-card:hover .wolt-card-image-wrap img {
    transform: scale(1.05);
}

/* Floating Delivery Time tag overlay */
.wolt-delivery-time-overlay {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background-color: #fff;
    color: var(--wolt-primary-red);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--radius-pill);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.wolt-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.wolt-card-footer {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed var(--wolt-gray-border);
}

.wolt-fee-text {
    font-size: 0.85rem;
    color: var(--wolt-secondary-text);
    font-weight: 500;
}

.wolt-rating-badge {
    background: var(--wolt-gray-bg);
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--wolt-dark-text);
}

.wolt-badge-blue {
    background-color: rgba(0, 157, 224, 0.1);
    /* Wolt blue tint */
    color: #009de0;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
}

/* Fallback for other rounded boxes */
.rounded-box {
    border-radius: var(--radius-lg);
    box-shadow: none !important;
    border: 1px solid var(--wolt-gray-border);
    transition: all 0.2s;
    background-color: #fff !important;
}

.rounded-box:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06) !important;
    border-color: transparent !important;
}

/* Remove El-card wrappers in Search Results */
.el-card.is-always-shadow,
.el-card.is-hover-shadow:focus,
.el-card.is-hover-shadow:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
}

.el-card {
    border-radius: var(--radius-lg) !important;
    border: 1px solid var(--wolt-gray-border) !important;
}

.el-image {
    border-radius: var(--radius-lg) !important;
}

/* ========================================================================= */
/* 7. CHECKBOXES & RADIOS */
/* ========================================================================= */
.custom-control-input:checked~.custom-control-label::before {
    border-color: var(--wolt-primary-red) !important;
    background-color: var(--wolt-primary-red) !important;
}

/* ========================================================================= */
/* 8. TYPOGRAPHY Fixes */
/* ========================================================================= */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 600 !important;
    letter-spacing: -0.02em;
}

.price,
.font-weight-bolder {
    font-weight: 600 !important;
}

a {
    color: var(--wolt-dark-text);
    transition: color 0.2s ease;
}

a:hover,
a.link:hover {
    color: var(--wolt-primary-red) !important;
}

.text-green {
    color: var(--wolt-primary-red) !important;
}

/* ========================================================================= */
/* 9. FOOTER STYLING (SnabbFood) */
/* ========================================================================= */
.snabb-footer {
    background-color: var(--wolt-gray-bg);
    border-top: 1px solid var(--wolt-gray-border);
    padding-top: 2rem;
    color: var(--wolt-dark-text);
    font-family: var(--font-family-sans-serif);
}

.footer-logo img {
    max-width: 140px;
}

.footer-heading {
    font-weight: 700 !important;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--wolt-dark-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: var(--wolt-secondary-text);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.footer-links a:hover {
    text-decoration: underline;
    color: var(--wolt-primary-red) !important;
}

.snabb-footer .border-top {
    border-top-color: var(--wolt-gray-border) !important;
}

/* ========================================================================= */
/* 10. HOMEPAGE HERO SECTION */
/* ========================================================================= */
.mobile-home-banner {
    display: none !important;
}

#main-search-banner {
    background:
        /* Very subtle overlay to make text pop against the image */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%),
        url("../images/full-header.png") center center;
    background-size: cover !important;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 120px 0 100px 0;
    position: relative;
    overflow: hidden;
}

#main-search-banner .banner-center {
    position: relative;
    z-index: 2;
}

#main-search-banner h2 {
    font-size: 3.2rem;
    font-weight: 800 !important;
    color: #fff !important;
    /* Ensure white text on photo background */
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 32px;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

/* --- SEARCH BAR REDESIGN --- */
#main-search-banner .home-search-wrap {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    background: #fff;
    border-radius: var(--radius-pill) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15) !important;
    border: 2px solid transparent !important;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    align-items: center;
}

#main-search-banner .home-search-wrap:focus-within {
    border-color: var(--wolt-primary-red) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 0 0 4px rgba(227, 6, 19, 0.3) !important;
}

/* Ensure inner wrappers created by vue components have no background or borders */
#main-search-banner .home-search-wrap .inputs-box-wrap,
#main-search-banner .home-search-wrap>div {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    flex: 1;
    display: flex;
    align-items: center;
}

/* The text input */
#main-search-banner .home-search-wrap input.form-control,
.inputs-box-wrap input,
.mobile-home-banner+div input {
    border: none !important;
    box-shadow: none !important;
    height: 60px;
    font-size: 1.05rem;
    font-weight: 400;
    color: var(--wolt-dark-text);
    padding-left: 24px !important;
    background: transparent !important;
    border-radius: 0 !important;
    width: 100%;
}

#main-search-banner .home-search-wrap input.form-control::placeholder {
    color: #9CA3AF;
    font-weight: 400;
}

#main-search-banner .home-search-wrap input.form-control:focus {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Location + Submit buttons */
#main-search-banner .home-search-wrap button {
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px;
    padding: 0 !important;
    margin: 8px 4px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none !important;
    transition: all 0.25s ease !important;
    flex-shrink: 0;
}

/* Location button (first button) - subtle style */
#main-search-banner .home-search-wrap button:first-of-type {
    background-color: var(--wolt-gray-bg) !important;
    color: var(--wolt-dark-text) !important;
}

#main-search-banner .home-search-wrap button:first-of-type:hover {
    background-color: #e5e7eb !important;
    transform: scale(1.05);
}

/* Submit/Arrow button (last button) - red */
#main-search-banner .home-search-wrap button:last-of-type {
    background-color: var(--wolt-primary-red) !important;
    color: #fff !important;
    margin-right: 8px !important;
}

#main-search-banner .home-search-wrap button:last-of-type:hover {
    background-color: var(--wolt-primary-red-hover) !important;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3) !important;
}

/* Button icons inside search */
#main-search-banner .home-search-wrap button i {
    font-size: 1.2rem !important;
}

/* ========================================================================= */
/* 11. FEED & MENU PAGES */
/* ========================================================================= */

/* Sidebar filter headings */
.section-filter h5 a {
    font-weight: 600 !important;
    color: var(--wolt-dark-text);
}

/* Range Sliders */
.custom-range::-webkit-slider-thumb {
    background: var(--wolt-primary-red) !important;
}

.custom-range::-moz-range-thumb {
    background: var(--wolt-primary-red) !important;
}

.custom-range::-ms-thumb {
    background: var(--wolt-primary-red) !important;
}

/* Menu Page - Category sidebar */
.menu-category .nav-link {
    color: var(--wolt-secondary-text) !important;
    font-weight: 500;
    border-radius: var(--radius-sm);
    transition: all 0.2s;
    padding: 8px 16px;
    margin-bottom: 4px;
}

.menu-category .nav-link.active,
.menu-category .nav-link:hover {
    background-color: var(--wolt-red-light);
    color: var(--wolt-primary-red) !important;
    font-weight: 600;
}

/* Menu Page - Menu items */
.items-row {
    border-radius: var(--radius-lg);
    border: 1px solid var(--wolt-gray-border);
    transition: all 0.2s;
}

.items-row:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
    border-color: transparent;
}

/* Right Cart Sidebar */
.cart-wrap {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--wolt-gray-border) !important;
}

/* Swiper navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: var(--wolt-primary-red) !important;
    background: #fff;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

/* ========================================================================= */
/* 12. MOBILE RESPONSIVENESS */
/* ========================================================================= */
@media (max-width: 767.98px) {
    #main-search-banner {
        padding: 40px 0;
    }

    #main-search-banner h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .footer-heading {
        font-size: 1rem;
        margin-top: 1.5rem;
    }

    /* Make sure search input is easily tappable on mobile */
    #main-search-banner .home-search-wrap input.form-control,
    .mobile-home-banner+div input {
        height: 54px;
        font-size: 1rem;
    }
}

/* ========================================================================= */
/* 13. HIDE OLD SUB-FOOTER (replaced by new snabb-footer) */
/* ========================================================================= */
.sub-footer {
    display: none !important;
}

/* ========================================================================= */
/* 14. ANIMATIONS & MICRO-INTERACTIONS (Wolt-level) */
/* ========================================================================= */

/* --- 14.1 SKELETON LOADING ANIMATION --- */
@keyframes skeletonPulse {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.el-skeleton__item,
.el-skeleton.is-animated .el-skeleton__item,
.placeholder-glow .placeholder {
    background: linear-gradient(90deg,
            #f0f0f0 25%,
            #e0e0e0 37%,
            #f0f0f0 63%) !important;
    background-size: 200% 100% !important;
    animation: skeletonPulse 1.8s ease-in-out infinite !important;
    border-radius: var(--radius-md) !important;
}

/* --- 14.2 CARD HOVER - LIFT + IMAGE ZOOM --- */
.rounded-box {
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
    cursor: pointer;
}

.rounded-box:hover {
    transform: translateY(-6px) !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12) !important;
    border-color: transparent !important;
}

/* Image zoom inside cards on hover */
.rounded-box .el-image img,
.rounded-box img.lazy-img,
.rounded-box figure img,
.list-items figure img {
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.rounded-box:hover .el-image img,
.rounded-box:hover img.lazy-img,
.rounded-box:hover figure img,
.list-items figure:hover img {
    transform: scale(1.08) !important;
}

/* --- 14.3 SCROLL FADE-IN ANIMATION --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Apply fade-in to main sections */
.components-cuisine-list,
.components-swiper-list,
.components-featured-list,
.components-join,
.section-mobileapp,
#vue-home-widgets>.container>* {
    animation: fadeInUp 0.6s ease-out both;
}

/* Stagger delay for sequential sections */
#vue-home-widgets>.container>*:nth-child(1) {
    animation-delay: 0.1s;
}

#vue-home-widgets>.container>*:nth-child(2) {
    animation-delay: 0.2s;
}

#vue-home-widgets>.container>*:nth-child(3) {
    animation-delay: 0.3s;
}

#vue-home-widgets>.container>*:nth-child(4) {
    animation-delay: 0.4s;
}

#vue-home-widgets>.container>*:nth-child(5) {
    animation-delay: 0.5s;
}

#vue-home-widgets>.container>*:nth-child(6) {
    animation-delay: 0.6s;
}

/* Hero section entrance */
#main-search-banner .banner-center {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

#main-search-banner .home-search-wrap {
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

/* --- 14.4 BUTTON MICRO-INTERACTIONS --- */
.btn,
button,
.el-button {
    transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1) !important;
    will-change: transform;
}

.btn:hover,
.el-button:hover {
    transform: translateY(-2px);
}

.btn:active,
.el-button:active {
    transform: translateY(0) scale(0.97) !important;
    transition-duration: 0.1s !important;
}

/* Add to cart button special effect */
.btn-add-cart,
.add-to-cart,
.btn-addtocart,
button[class*="add"] {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    position: relative;
    overflow: hidden;
}

.btn-add-cart:active,
.add-to-cart:active,
.btn-addtocart:active {
    transform: scale(0.92) !important;
}

/* Plus button ripple */
.items-row .btn-plus,
.menu-item-add {
    transition: all 0.2s ease !important;
}

.items-row .btn-plus:hover,
.menu-item-add:hover {
    transform: scale(1.15) rotate(90deg);
    background-color: var(--wolt-primary-red) !important;
    color: #fff !important;
}

/* --- 14.5 MODAL / DIALOG ANIMATIONS --- */
@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.92) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes modalOverlayFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.el-dialog__wrapper,
.el-drawer,
.modal {
    animation: modalOverlayFade 0.3s ease both !important;
}

.el-dialog,
.el-drawer__body,
.modal-content {
    animation: modalSlideIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) both !important;
    border-radius: var(--radius-lg) !important;
    overflow: hidden;
}

/* --- 14.6 MENU ITEMS ON RESTAURANT PAGE --- */
.items-row,
.list-item-rows,
.menu-items-wrap .item-row {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    cursor: pointer;
    border-radius: var(--radius-lg);
    border: 1px solid var(--wolt-gray-border);
    margin-bottom: 12px;
    padding: 8px 0;
}

.items-row:hover,
.list-item-rows:hover,
.menu-items-wrap .item-row:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    border-color: transparent !important;
    background-color: #fff;
}

/* Food image zoom on menu item hover */
.items-row img,
.list-item-rows .item-image-preview img,
.menu-items-wrap .item-row img {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
    border-radius: var(--radius-md) !important;
}

.items-row:hover img,
.list-item-rows:hover .item-image-preview img,
.menu-items-wrap .item-row:hover img {
    transform: scale(1.08) !important;
}

/* --- 14.7 CATEGORY NAV (Sticky pills like Wolt) --- */
/* Fix Category nav overlap with new sticky main header */
.sticky-wrapper.is-sticky .category-nav,
.sticky-wrapper.is-sticky {
    top: 65px !important;
    z-index: 1020 !important;
}

.menu-category .nav-link,
.component-topcategory .nav-link,
.component-topcategory a {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    position: relative;
    text-decoration: none;
    color: var(--wolt-dark-text);
}

.menu-category .nav-link::after,
.component-topcategory .nav-link::after,
.component-topcategory a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 3px;
    background-color: var(--wolt-primary-red);
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    transform: translateX(-50%);
}

.menu-category .nav-link.active::after,
.menu-category .nav-link:hover::after,
.component-topcategory .nav-link.active::after,
.component-topcategory .nav-link:hover::after,
.component-topcategory a.active::after,
.component-topcategory a:hover::after {
    width: 70%;
}

.component-topcategory a.active,
.component-topcategory .nav-link.active {
    color: var(--wolt-primary-red) !important;
    font-weight: 600 !important;
}

/* --- 14.8 CUISINE CIRCLES ANIMATION --- */
.cuisine-item,
.components-cuisine-list [class*="cuisine"] {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    cursor: pointer;
}

.cuisine-item:hover,
.components-cuisine-list [class*="cuisine"]:hover {
    transform: translateY(-5px) scale(1.05);
}

.cuisine-item img,
.components-cuisine-list img {
    transition: transform 0.4s ease !important;
}

.cuisine-item:hover img,
.components-cuisine-list [class*="cuisine"]:hover img {
    transform: scale(1.12) rotate(3deg);
}

/* --- 14.9 NOTIFICATION BADGE PULSE --- */
@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.badge-dark,
.cart-handle .badge,
span.badge {
    animation: badgePulse 2s ease-in-out infinite;
}

/* --- 14.10 SEARCH BAR FOCUS ANIMATION --- */
#main-search-banner .home-search-wrap input.form-control,
.inputs-box-wrap input {
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1) !important;
}

#main-search-banner .home-search-wrap input.form-control:focus,
.inputs-box-wrap input:focus {
    transform: scale(1.02);
    box-shadow: 0 0 0 4px var(--wolt-red-light), 0 8px 30px rgba(227, 6, 19, 0.15) !important;
}

/* --- 14.11 SWIPER/CAROUSEL SMOOTH TRANSITIONS --- */
.swiper-slide {
    transition: transform 0.4s ease, opacity 0.4s ease !important;
}

.swiper-button-next,
.swiper-button-prev {
    transition: all 0.3s ease !important;
    width: 40px !important;
    height: 40px !important;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    transform: scale(1.15);
    box-shadow: var(--shadow-md) !important;
}

.swiper-button-next:active,
.swiper-button-prev:active {
    transform: scale(0.95);
}

/* --- 14.12 LINK UNDERLINE ANIMATION --- */
.footer-links a,
a.animated-link {
    position: relative;
    text-decoration: none !important;
}

.footer-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--wolt-primary-red);
    transition: width 0.3s ease;
}

.footer-links a:hover::after {
    width: 100%;
}

/* --- 14.13 PAGE LOAD ENTRANCE --- */
@keyframes pageEntrance {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body {
    animation: pageEntrance 0.5s ease both;
}

/* --- 14.14 SMOOTH SCROLLING & CUSTOM SCROLLBAR --- */
html {
    scroll-behavior: smooth;
}

/* Global Premium Scrollbar */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* --- 14.15 CART SIDEBAR ANIMATION --- */
.cart-wrap,
.ssm-nav-visible {
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
        opacity 0.3s ease !important;
}

/* --- 14.16 DELIVERY TIME BADGE BOUNCE --- */
@keyframes subtleBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-3px);
    }
}

.delivery-time-tag,
.estimated_time,
[class*="delivery-est"] {
    animation: subtleBounce 3s ease-in-out infinite;
}

/* --- 14.17 TOGGLE & SWITCH ANIMATIONS --- */
.custom-control-input:checked~.custom-control-label::before {
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1) !important;
    transform: scale(1.05);
}

/* --- 14.18 RATING STARS HOVER --- */
.rating-list i,
.fa-star {
    transition: all 0.2s ease !important;
}

.rating-list i:hover,
.fa-star:hover {
    transform: scale(1.3);
    color: #F59E0B !important;
}

/* ========================================================================= */
/* 6. MODALS & BOTTOM SHEETS (Wolt Style) */
/* ========================================================================= */

/* Main item modal styling */
#itemModal .modal-content {
    border: none;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Floating close button */
#itemModal .floating-close {
    position: absolute !important;
    top: 15px;
    right: 15px;
    z-index: 1050;
    border: none;
    background: #fff !important;
    color: #000 !important;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    opacity: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    margin: 0;
    padding: 0;
    text-shadow: none;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1);
}

#itemModal .floating-close:hover {
    transform: scale(1.1);
}

#itemModal .floating-close span {
    font-size: 24px;
    line-height: 1;
    position: relative;
    top: -1px;
}

/* Full bleed image */
#itemModal .item_s {
    margin-bottom: 24px !important;
    position: relative;
    display: block;
}

#itemModal .item_s .el-image {
    width: 100% !important;
    height: 300px !important;
    margin: 0 !important;
    border-radius: 0 !important;
    object-fit: cover !important;
}

#itemModal .modal-body>*:not(.floating-close):not(.item_s):not(.owl-carousel):not(.el-skeleton) {
    padding-left: 24px;
    padding-right: 24px;
}

#itemModal .owl-carousel {
    padding-left: 24px;
    padding-right: 24px;
    margin-bottom: 15px;
}

#itemModal .el-skeleton {
    padding: 24px;
}

/* Addon rows refinement */
#itemModal .addon-rows {
    background: #fafafa;
    border-radius: var(--radius-md);
    padding: 16px;
    margin: 16px 24px 24px 24px;
}

#itemModal .addon-rows .heads h5 {
    font-size: 16px;
    font-weight: 600;
}

/* Sticky Footer styling */
#itemModal .item-modal-footer {
    position: sticky;
    bottom: 0;
    background: #fff;
    padding: 20px 24px;
    border-top: 1px solid var(--wolt-gray-border);
    z-index: 1040;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.04);
}

/* Quantity Controls in Footer */
#itemModal .item-modal-footer .quantity {
    background: var(--wolt-gray-bg);
    border-radius: var(--radius-pill);
    padding: 4px;
    display: inline-flex;
    align-items: center;
}

#itemModal .item-modal-footer .qty-btn {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 50%;
    color: var(--wolt-primary-blue) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

#itemModal .item-modal-footer .qty {
    font-size: 18px;
    font-weight: 600;
    padding: 0 12px;
}

/* Add to Cart button in Footer */
#itemModal .add_to_cart {
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    height: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#itemModal .add_to_cart .label {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

#itemModal .add_to_cart .item-summary {
    font-weight: 700;
}

/* Desktop sizing */
@media (min-width: 992px) {
    #itemModal .modal-dialog {
        max-width: 600px;
    }
}

/* Mobile Bottom Sheet effect */
@media (max-width: 767px) {
    #itemModal {
        padding: 0 !important;
    }

    #itemModal .modal-dialog {
        margin: 0;
        align-items: flex-end;
        /* Push to bottom */
        min-height: 100%;
        display: flex;
    }

    #itemModal .modal-content {
        border-radius: 24px 24px 0 0 !important;
        max-height: 90vh;
        /* Don't take whole screen unless huge */
        overflow-y: auto;
    }

    /* Animation for bottom sheet sliding up */
    #itemModal.fade .modal-dialog {
        transform: translateY(100%);
        transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    }

    #itemModal.show .modal-dialog {
        transform: translateY(0);
    }
}

/* ========================================================================= */
/* 7. DELIVERY INFO STRIP (Wolt Hero Banner) */
/* ========================================================================= */

.merchant-top-header .left-info ul.info-strip {
    background: var(--wolt-primary-red);
    backdrop-filter: blur(12px);
    border-radius: var(--radius-pill);
    padding: 12px 20px !important;
    display: inline-flex;
    align-items: center;
    width: fit-content;
    margin-top: 8px;
    box-shadow: 0 4px 16px rgba(227, 6, 19, 0.25);
}

.merchant-top-header .left-info ul.info-strip li {
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    display: flex;
    align-items: center;
}

.merchant-top-header .left-info ul.info-strip li b {
    font-weight: 700;
    margin-right: 4px;
}

.merchant-top-header .left-info ul.info-strip a {
    display: flex;
    align-items: center;
    text-decoration: none !important;
}

.merchant-top-header .left-info ul.info-strip .info-items-dot-separator {
    background-color: rgba(255, 255, 255, 0.6) !important;
    height: 4px;
    width: 4px;
    border-radius: 50%;
    margin: 0 16px;
    opacity: 1;
}

.merchant-top-header .left-info ul.info-strip li i {
    font-size: 18px;
}

/* ========================================================================= */
/* 8. CART SIDEBAR (Wolt Style) */
/* ========================================================================= */

.sticky-cart {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--wolt-gray-border);
    padding: 24px;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 100px);
    /* Fill available space only up to screen size */
    position: sticky !important;
    top: 80px !important;
}

/* Scrollable cart items area */
.sticky-cart .section-cart {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    /* space for scrollbar */
    margin-bottom: 20px;
}

/* Minimal scrollbar for cart */
.sticky-cart .section-cart::-webkit-scrollbar {
    width: 4px;
}

.sticky-cart .section-cart::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 4px;
}

.sticky-cart h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    border-bottom: 2px solid var(--wolt-primary-red);
    padding-bottom: 15px;
    display: inline-block;
}

/* Cart item row */
.sticky-cart .line-items {
    padding: 16px 0;
    border-bottom: 1px solid var(--wolt-gray-border);
    transition: background-color 0.2s ease;
}

.sticky-cart .line-items:hover {
    background-color: var(--wolt-gray-bg);
    border-radius: var(--radius-sm);
}

.sticky-cart .cart-image-preview .el-image {
    border-radius: var(--radius-md);
}

/* Cart Quantity controls */
.sticky-cart .quantity:not(.col-3) {
    background: var(--wolt-gray-bg);
    border-radius: var(--radius-pill);
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    margin-top: 8px;
    width: fit-content;
}

.sticky-cart .quantity:not(.col-3) .qty-btn {
    color: var(--wolt-primary-red) !important;
    font-size: 16px;
    padding: 0 8px;
    background: transparent !important;
    border: none;
    box-shadow: none;
}

.sticky-cart .quantity:not(.col-3) .qty {
    font-weight: 600;
    font-size: 14px;
    margin: 0 12px;
}

/* Cart Checkout Button Wrapper - Fixed inside the sidebar */
.sticky-cart .btn-green,
.sticky-cart .btn-green.add_to_cart {
    background-color: var(--wolt-primary-red) !important;
    color: #fff !important;
    border: none !important;
    border-radius: var(--radius-pill) !important;
    font-weight: 600 !important;
    font-size: 16px !important;
    padding: 16px 24px !important;
    height: auto !important;
    margin-top: auto;
    /* push to bottom */
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.3) !important;
    transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease !important;
}

.sticky-cart .btn-green:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(227, 6, 19, 0.4) !important;
    background-color: var(--wolt-primary-red-hover) !important;
}

.sticky-cart .btn-green .flex-col {
    display: flex;
    align-items: center;
}

/* Empty Cart State */
.sticky-cart .cart-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.sticky-cart .cart-empty .no-results {
    width: 80px;
    height: 80px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23ccc' d='M7 18c-1.1 0-1.99.9-1.99 2S5.9 22 7 22s2-.9 2-2-.9-2-2-2zM1 2v2h2l3.6 7.59-1.35 2.45c-.16.28-.25.61-.25.96 0 1.1.9 2 2 2h12v-2H7.42c-.14 0-.25-.11-.25-.25l.03-.12.9-1.63h7.45c.75 0 1.41-.41 1.75-1.03l3.58-6.49c.08-.14.12-.31.12-.48 0-.55-.45-1-1-1H5.21l-.94-2H1zm16 16c-1.1 0-1.99.9-1.99 2s.89 2 1.99 2 2-.9 2-2-.9-2-2-2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.5;
    margin-bottom: 16px;
}

.sticky-cart .cart-empty h6 {
    font-size: 18px;
    font-weight: 600;
    color: var(--wolt-dark-text);
}

.sticky-cart .cart-empty p {
    color: #888;
}

/* ========================================================================= */
/* 9. CUISINE CIRCLES & CAROUSELS (Wolt Style) */
/* ========================================================================= */

.swiperCuisine .swiperSlide {
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.swiperCuisine .swiperSlide:hover {
    transform: translateY(-4px);
}

.swiperCuisine .swiperSlide img {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.swiperCuisine .swiperSlide:hover img {
    border-color: var(--wolt-primary-blue);
    box-shadow: 0 8px 16px rgba(0, 157, 224, 0.2);
}

.swiperCuisine .swiperSlide .truncate {
    font-weight: 600;
    color: var(--wolt-dark-text);
    margin-top: 8px;
    text-align: center;
    transition: color 0.2s;
}

.swiperCuisine .swiperSlide:hover .truncate {
    color: var(--wolt-primary-blue);
}

/* ========================================================================= */
/* 10. EMPTY STATES (Premium Feel) */
/* ========================================================================= */

.no-results-wrap,
.cart-empty {
    padding: 3rem 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.no-results-wrap h6,
.cart-empty h6 {
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--wolt-dark-text);
    margin-top: 1.5rem;
}

.no-results-wrap p,
.cart-empty p {
    color: var(--wolt-secondary-text);
    font-size: 1rem;
    max-width: 300px;
}

/* ========================================================================= */
/* 11. SHIMMER & SKELETON ANIMATIONS */
/* ========================================================================= */

.el-skeleton {
    --el-skeleton-color: var(--wolt-gray-bg) !important;
    --el-skeleton-to-color: #ececec !important;
}

.el-skeleton__item {
    border-radius: var(--radius-md) !important;
}

@keyframes woltShimmer {
    0% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0 50%;
    }
}

.skeleton-placeholder {
    background: linear-gradient(90deg, var(--wolt-gray-bg) 25%, #ececec 37%, var(--wolt-gray-bg) 63%);
    background-size: 400% 100%;
    animation: woltShimmer 1.4s ease infinite;
    border-radius: var(--radius-md);
}