/* 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;

    /* ===== Override Element UI green/success color variables globally ===== */
    --el-color-success: var(--wolt-primary-red) !important;
    --el-color-success-light-3: var(--wolt-primary-red-hover) !important;
    --el-color-success-light-5: var(--wolt-red-light) !important;
    --el-color-success-light-7: var(--wolt-red-light) !important;
    --el-color-success-light-8: var(--wolt-red-light) !important;
    --el-color-success-light-9: var(--wolt-red-light) !important;
    --el-color-success-dark-2: var(--wolt-primary-red-hover) !important;
    /* Prevent hover from going green on any button */
    --el-button-hover-bg-color: var(--wolt-primary-red-hover) !important;
    --el-button-hover-border-color: var(--wolt-primary-red-hover) !important;
    --el-button-hover-text-color: #fff !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;
}

/* ===== KILL GREEN HOVER ON ALL EL-BUTTONS GLOBALLY ===== */
/* Element UI by default uses --el-color-success for success buttons hover.
   Since we redefined those vars in :root, we also need explicit selectors
   because ElUI inlines some colors. These rules ensure NO green ever shows. */

/* Solid red buttons: darken on hover */
.el-button--success:not(.is-plain):hover,
.el-button--success:not(.is-plain):focus {
    background-color: var(--wolt-primary-red-hover) !important;
    border-color: var(--wolt-primary-red-hover) !important;
    color: #fff !important;
}

/* Plain/ghost red buttons: fill on hover */
.el-button--success.is-plain:hover,
.el-button--success.is-plain:focus {
    background-color: var(--wolt-primary-red) !important;
    border-color: var(--wolt-primary-red) !important;
    color: #fff !important;
}

/* Default/neutral el-button (grey): NO green - keep neutral hover */
.el-button:not([class*="--"]):hover,
.el-button--default:hover {
    border-color: var(--wolt-primary-red) !important;
    color: var(--wolt-primary-red) !important;
    background-color: var(--wolt-red-light) !important;
}

/* Header nav buttons: hover stays the same color, NO green */
#snabb-header .el-button:hover,
#snabb-header .is-plain:hover {
    background-color: var(--wolt-primary-red-hover) !important;
    border-color: var(--wolt-primary-red-hover) !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 (Leverans / Upphämtning / Äta-in) */
/* Container: reset overflow so buttons don't bleed out */
.merchant-top-header .component-merchant-services .el-radio-button,
.merchant-top-header .el-radio-group {
    overflow: hidden;
}

.merchant-top-header .component-merchant-services .el-radio-button:first-child .el-radio-button__inner,
.merchant-top-header .el-radio-group .el-radio-button:first-child .el-radio-button__inner {
    border-radius: 8px 0 0 8px !important;
}

.merchant-top-header .component-merchant-services .el-radio-button:last-child .el-radio-button__inner,
.merchant-top-header .el-radio-group .el-radio-button:last-child .el-radio-button__inner {
    border-radius: 0 8px 8px 0 !important;
}

.merchant-top-header .component-merchant-services .el-radio-button__inner,
.merchant-top-header .el-radio-button__inner {
    border-radius: 0 !important;
    border: 1.5px solid rgba(255, 255, 255, 0.25) !important;
    border-right: none !important;
    background: rgba(255, 255, 255, 0.08) !important;
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 8px 18px !important;
    transition: all 0.2s ease !important;
    line-height: 1.4;
    /* prevent box shadow overflow */
    box-shadow: none !important;
}

.merchant-top-header .component-merchant-services .el-radio-button__inner:hover {
    background: rgba(255, 255, 255, 0.16) !important;
    color: #fff !important;
}

/* Active / selected = RED, never black */
.merchant-top-header .el-radio-button__original-radio:checked+.el-radio-button__inner,
.merchant-top-header .component-merchant-services .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;
    font-weight: 700 !important;
    box-shadow: none !important;
}

/* Global fallback - same rule for components outside merchant header */
.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;
    font-weight: 700 !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;
}

/* ========================================================================= */
/* 15. WOLT-STYLE HERO & PHOTOCARDS (NEW)
/* ========================================================================= */

/* Hero Section - Wolt Style */
.wolt-hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    letter-spacing: -0.04em;
    margin-bottom: 16px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.wolt-hero-subtitle {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 32px;
    font-weight: 500;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
    line-height: 1.4;
    max-width: 600px;
}

.wolt-restaurant-hero {
    background: #fff;
    margin-bottom: 24px;
}

.hero-cover-wrap {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.hero-cover-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-cover-image.placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.hero-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.hero-logo-wrap {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-logo-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    background: #fff;
}

.hero-logo-circle .el-image {
    width: 100%;
    height: 100%;
}

.hero-fav-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 20;
}

.hero-info-section {
    padding-top: 75px;
    padding-bottom: 24px;
    background: #fff;
}

.hero-info-content {
    text-align: center;
    max-width: 800px;
}

.mobile-cover-image.placeholder {
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

.mobile-cover-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.5) 100%);
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
}

.mobile-fav-btn {
    position: absolute;
    top: 16px;
}

.mobile-hero-info {
    text-align: center;
    padding: 0 16px 20px;
    position: relative;
}

.mobile-logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    background: #fff;
    margin: -50px auto 12px;
    position: relative;
    z-index: 10;
}

.mobile-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mobile-restaurant-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wolt-dark-text);
    margin-bottom: 8px;
}

.mobile-cuisine-tags {
    font-size: 0.9rem;
    color: var(--wolt-secondary-text);
    margin-bottom: 12px;
}

.mobile-info-strip {
    font-size: 0.9rem;
    color: var(--wolt-secondary-text);
}

.mobile-rating {
    color: #f59e0b;
    font-weight: 600;
}

.mobile-rating i {
    margin-right: 4px;
}

/* ========================================================================= */
/* 20. HORIZONTAL CATEGORY PILLS - WOLT STYLE
/* ========================================================================= */

.wolt-category-nav-wrap {
    margin-bottom: 24px;
}

/* Desktop Sticky Category Nav */
.sticky-category-nav {
    position: sticky;
    top: 70px;
    z-index: 100;
    background: #fff;
    padding: 16px 0;
    border-bottom: 1px solid var(--wolt-gray-border);
    margin-bottom: 24px;
}

.category-pills-container {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.category-pills-container::-webkit-scrollbar {
    display: none;
}

.category-pill {
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    background: var(--wolt-gray-bg);
    border-radius: 24px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--wolt-dark-text);
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.category-pill:hover {
    background: #e8e8e8;
    color: var(--wolt-dark-text);
}

.category-pill.active {
    background: var(--wolt-dark-text);
    color: #fff;
}

/* Skeleton for pills */
.category-pills-skeleton {
    display: flex;
    gap: 12px;
}

/* Mobile Category Nav */
.mobile-category-nav {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
    overflow-x: auto;
    padding: 12px 16px;
    background: #fff;
    border-bottom: 1px solid var(--wolt-gray-border);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-category-nav::-webkit-scrollbar {
    display: none;
}

.mobile-category-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: var(--wolt-gray-bg);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--wolt-dark-text);
    text-decoration: none !important;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.mobile-category-pill:hover {
    background: #e8e8e8;
    color: var(--wolt-dark-text);
}

/* Menu Content Row - Adjusted for wider center column */
.menu-content-row {
    margin-top: 20px;
}

/* ========================================================================= */
/* 21. WOLT-STYLE PRODUCT CARDS
/* ========================================================================= */

.wolt-menu-section {
    margin-bottom: 40px;
}

.wolt-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--wolt-dark-text);
    margin-bottom: 8px;
}

.wolt-category-desc {
    font-size: 1rem;
    color: var(--wolt-secondary-text);
    margin-bottom: 20px;
}

/* Products Grid */
.wolt-products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

@media (max-width: 767px) {
    .wolt-products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Product Card */
.wolt-product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--wolt-gray-border);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.wolt-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.wolt-product-card.not-available {
    opacity: 0.7;
}

/* Product Image */
.product-image-wrap {
    position: relative;
    height: 180px;
    overflow: hidden;
    cursor: pointer;
    background: var(--wolt-gray-bg);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.wolt-product-card:hover .product-image {
    transform: scale(1.05);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--wolt-gray-bg);
    color: #ccc;
    font-size: 2rem;
}

/* Promo Badge */
.product-promo-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--wolt-primary-blue);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 5;
}

/* Not Available Overlay */
.not-available-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.not-available-overlay span {
    background: var(--wolt-secondary-text);
    color: #fff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Product Info */
.product-info {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 8px;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wolt-dark-text);
    margin: 0;
    line-height: 1.3;
    flex: 1;
}

.product-allergen {
    margin-left: 8px;
}

.allergen-btn {
    padding: 4px !important;
    font-size: 1.2rem !important;
    color: var(--wolt-secondary-text) !important;
}

.allergen-btn:hover {
    color: var(--wolt-primary-blue) !important;
}

.product-description {
    font-size: 0.9rem;
    color: var(--wolt-secondary-text);
    margin-bottom: 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    box-orient: vertical;
    overflow: hidden;
}

/* Dish Icons */
.dish-icons {
    display: flex;
    gap: 6px;
    margin-bottom: 12px;
}

.dish-icon .el-avatar {
    border: 1px solid var(--wolt-gray-border);
}

/* Product Footer */
.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid var(--wolt-gray-border);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 8px;
}

.current-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--wolt-dark-text);
}

.current-price.text-success {
    color: #22c55e;
}

.original-price {
    font-size: 0.9rem;
    color: var(--wolt-secondary-text);
}

.original-price del {
    text-decoration: line-through;
}

/* Product Actions */
.product-actions {
    display: flex;
    align-items: center;
}

/* Add Button */
.wolt-add-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--wolt-primary-red);
    color: #fff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(227, 6, 19, 0.3);
}

.wolt-add-btn:hover {
    transform: scale(1.1);
    background: var(--wolt-primary-red-hover);
    box-shadow: 0 4px 12px rgba(227, 6, 19, 0.4);
}

.wolt-add-btn.disabled {
    background: #ccc;
    cursor: not-allowed;
    box-shadow: none;
}

.wolt-add-btn i {
    font-size: 1.3rem;
    font-weight: bold;
}

/* Quantity Controls */
.quantity-controls {
    display: flex;
    align-items: center;
}

.qty-btn-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--wolt-gray-bg);
    padding: 4px;
    border-radius: 24px;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--wolt-dark-text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.qty-btn:hover {
    background: var(--wolt-primary-red);
    color: #fff;
}

.qty-btn.minus:hover {
    background: #666;
}

.qty-btn i {
    font-size: 1rem;
}

.qty-value {
    font-size: 1rem;
    font-weight: 600;
    color: var(--wolt-dark-text);
    min-width: 24px;
    text-align: center;
}