/* Hide all scrollbars globally */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

*::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

html, body {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    display: none;
}

@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-SemiBold.ttf') format('truetype');
    font-weight: 600;
    font-style: normal;
}

@font-face{
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}


*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}


h1, h2, h3, h4, h5, h6 {
    color: black;
    font-family: 'Poppins', sans-serif;
}

html, body {
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background: #fafafa;
    color: #000;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    width: 100vw;
    margin-left: 0;
    padding-top: 0;
}

#mainContent {
    flex: 1 0 auto;
    min-height: auto;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    margin-top: 0;
}

.settings:hover {
    transform: translateX(850%);
}

/* ========================================
   STICKY HEADER ON SCROLL
   ======================================== */

.scroll-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-bottom: 1px solid #f0f0f0;
    padding: 12px 0;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    z-index: 9999;
    isolation: isolate;
    animation: slideDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    height: 64px;
}

.scroll-header.visible {
    display: flex;
}

.scroll-header .search-box {
    flex: 1;
    max-width: 400px;
    height: 40px;
    margin: 0 32px;
    position: relative;
}

.scroll-header .search-input {
    height: 40px;
    font-size: 0.9rem;
}

.scroll-header .filter-chips {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: nowrap;
    margin: 0 16px;
}

.scroll-header .filter-chip {
    padding: 8px 14px;
    font-size: 0.85rem;
    height: 40px;
    white-space: nowrap;
}

.scroll-header .hero-actions {
    display: flex;
    gap: 8px;
    align-items: center;
    margin: 0 32px;
}

.scroll-header .hero-icon-btn {
    width: 40px;
    height: 40px;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(0);
        opacity: 1;
    }
    to {
        transform: translateY(-100%);
        opacity: 0;
    }
}

.scroll-header.hiding {
    animation: slideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Hide stripe button when scroll header is visible */
.scroll-header.visible ~ .stripe {
    opacity: 0;
    pointer-events: none;
}

.settings .login{
    font-family: 'Poppins';
    color: #000;
    background-color: transparent;
    border: 1.5px solid rgba(0,0,0,0.15);
    width: auto;
    height: 40px;
    padding: 0 20px;
    text-align: center;
    justify-content: center;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.settings .register,
.settings .login {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    color: #000;
    background-color: #f8f9fa;
    border: none;
    width: auto;
    height: 40px;
    padding: 0 20px;
    font-size: 0.875rem;
    text-align: center;
    justify-content: center;
    border-radius: 25px;
    cursor: pointer;
    margin: 0;
    font-weight: 500;
    transition: background 0.2s;
}

.settings .register:hover,
.settings .login:hover {
    background-color: #e9ecef;
}

.settings .register:active,
.settings .login:active {
    background-color: #dee2e6;
}

.settings .register {
    background-color: #000;
    color: #fff;
    font-weight: 600;
}

.settings .register:hover {
    background-color: #222;
}

.settings .register:active {
    background-color: #111;
}

.stripe {
    position: fixed;
    top: 10px;
    left: 10px;
    height: 75px;
    width: 75px;
    background-color: #ffffff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: background 0.2s;
    flex-direction: column;
    z-index: 9999;
    cursor: pointer;
}

.stripe:hover {
    background-color: #f8f9fa;
}

.stripe:active {
    background-color: #e9ecef;
}

.stripe .stripe-icon {
    background-color: transparent;
    width: 30px;
    height: 30px;
    position: static;
    margin: 0;
    transition: transform 0.22s;
    cursor: pointer;
    z-index: 1001;
    pointer-events: auto;
}

.stripe-overlay .animated-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: min(420px, 90vw);
    height: 100vh;
    background: #fafafa;
    box-shadow: 8px 0 32px rgba(0,0,0,0.12);
    display: flex;
    flex-direction: column;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10001;
}

.stripe-overlay.open .animated-panel {
    transform: translateX(0);
}

.stripe-overlay:not(.open) .animated-panel {
    transform: translateX(-100%);
}

/* Panel Header - wie Cart */
.stripe-overlay .animated-panel .panel-header {
    position: sticky;
    top: 0;
    background: #fafafa;
    padding: 28px 24px 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stripe-overlay .animated-panel .panel-header > div:last-child {
    margin-right: 50px;
}

/* Back Button */
.stripe-overlay .animated-panel .back-button {
    background: transparent;
    border: none;
    color: #000;
    cursor: pointer;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    width: 40px;
    height: 40px;
}

.stripe-overlay .animated-panel .back-button:hover {
    background: rgba(0,0,0,0.04);
}

.stripe-overlay .animated-panel .back-button:active {
    background: rgba(0,0,0,0.08);
    transform: scale(0.95);
}

.stripe-overlay .animated-panel .back-button svg {
    width: 24px;
    height: 24px;
}

/* Content Area */
.stripe-overlay .animated-panel .panel-content {
    padding: 24px;
    flex: 1;
    overflow-y: auto;
}

/* Panel Content Animation */
.stripe-overlay.open .animated-panel .panel-content > * {
    animation: panelItemFadeIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) backwards;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(1) {
    animation-delay: 0.05s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(2) {
    animation-delay: 0.1s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(3) {
    animation-delay: 0.15s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(4) {
    animation-delay: 0.2s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(5) {
    animation-delay: 0.25s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(6) {
    animation-delay: 0.3s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(7) {
    animation-delay: 0.35s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(8) {
    animation-delay: 0.4s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(9) {
    animation-delay: 0.45s;
}

.stripe-overlay.open .animated-panel .panel-content > *:nth-child(10) {
    animation-delay: 0.5s;
}

@keyframes panelItemFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Main Actions */
.stripe-overlay .animated-panel .register,
.stripe-overlay .animated-panel .login {
    width: 100%;
    margin-bottom: 12px;
}

.stripe-overlay .animated-panel .register .registerbutton,
.stripe-overlay .animated-panel .login .loginbutton {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 16px;
    font-size: 1em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    letter-spacing: 0;
}

.stripe-overlay .animated-panel .register .registerbutton:hover,
.stripe-overlay .animated-panel .login .loginbutton:hover {
    background: #222;
}

.stripe-overlay .animated-panel .register .registerbutton:active,
.stripe-overlay .animated-panel .login .loginbutton:active {
    background: #111;
}

/* Account Section for logged-in users */
.stripe-overlay .animated-panel .account-section {
    width: 100%;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stripe-overlay .animated-panel .account-section .accountbutton,
.stripe-overlay .animated-panel .account-section .messagesbutton,
.stripe-overlay .animated-panel .account-section .ordersbutton,
.stripe-overlay .animated-panel .account-section .favouritesbutton {
    display: flex !important;
    align-items: center !important;
    width: 100% !important;
    background: #f8f9fa !important;
    color: #000 !important;
    border: none !important;
    border-radius: 25px !important;
    padding: 14px 16px !important;
    font-size: 0.95em !important;
    font-family: 'Poppins', sans-serif !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    transition: background 0.2s !important;
    letter-spacing: 0 !important;
    margin-bottom: 6px !important;
    text-align: left !important;
}

.stripe-overlay .animated-panel .account-section .accountbutton:hover,
.stripe-overlay .animated-panel .account-section .messagesbutton:hover,
.stripe-overlay .animated-panel .account-section .ordersbutton:hover,
.stripe-overlay .animated-panel .account-section .favouritesbutton:hover {
    background: #e9ecef;
}

.stripe-overlay .animated-panel .account-section .accountbutton:active,
.stripe-overlay .animated-panel .account-section .messagesbutton:active,
.stripe-overlay .animated-panel .account-section .ordersbutton:active,
.stripe-overlay .animated-panel .account-section .favouritesbutton:active {
    background: #dee2e6;
}

/* Business Buttons Section */
.stripe-overlay .animated-panel .business {
    width: 100%;
    margin: 20px 0;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.06);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.stripe-overlay .animated-panel .business .businessbutton,
.stripe-overlay .animated-panel .business .jobsbutton {
    width: 100%;
    height: 48px;
    border: none;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95em;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    margin-bottom: 8px;
    text-align: left;
    padding: 0 16px;
}

.stripe-overlay .animated-panel .business .businessbutton {
    background: #f8f9fa;
    color: #000;
}

.stripe-overlay .animated-panel .business .jobsbutton {
    background: #f8f9fa;
    color: #000;
    margin-bottom: 0;
}

.stripe-overlay .animated-panel .business .businessbutton:hover,
.stripe-overlay .animated-panel .business .jobsbutton:hover {
    background: #e9ecef;
}

/* Upgrade Section */
.stripe-overlay .animated-panel .upgrade-section {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.stripe-overlay .animated-panel .upgrade-section .upgradebutton {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 16px;
    font-size: 0.95em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.stripe-overlay .animated-panel .upgrade-section .upgradebutton:hover {
    background: #222;
}

.stripe-overlay .animated-panel .upgrade-section .upgradebutton:active {
    background: #111;
}

/* Footer Links */
.stripe-overlay .animated-panel .contact,
.stripe-overlay .animated-panel .socials {
    width: 100%;
    display: block;
    margin-bottom: 6px;
}

.stripe-overlay .animated-panel .contact .contactbutton,
.stripe-overlay .animated-panel .contact .aboutbutton,
.stripe-overlay .animated-panel .socials .helpbutton,
.stripe-overlay .animated-panel .socials .donatebutton {
    width: 100%;
    height: 44px;
    background: #f8f9fa;
    color: #000;
    border-radius: 25px;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    padding: 0 16px;
    text-align: left;
    margin-bottom: 4px;
}

.stripe-overlay .animated-panel .contact .contactbutton:hover,
.stripe-overlay .animated-panel .contact .aboutbutton:hover,
.stripe-overlay .animated-panel .socials .helpbutton:hover,
.stripe-overlay .animated-panel .socials .donatebutton:hover {
    background: #e9ecef;
}

.stripe-overlay .animated-panel .contact .contactbutton:active,
.stripe-overlay .animated-panel .contact .aboutbutton:active,
.stripe-overlay .animated-panel .socials .helpbutton:active,
.stripe-overlay .animated-panel .socials .donatebutton:active {
    background: #dee2e6;
}

/* Business Studio Section */
.stripe-overlay .animated-panel .business-studio-section {
    width: 100%;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.stripe-overlay .animated-panel .business-studio-section .business-studio-button {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 16px;
    font-size: 0.95em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    letter-spacing: 0;
}

.stripe-overlay .animated-panel .business-studio-section .business-studio-button:hover {
    background: #222;
}

.stripe-overlay .animated-panel .business-studio-section .business-studio-button:active {
    background: #111;
}

/* Logout Section */
.stripe-overlay .animated-panel .logout-section {
    width: 100%;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.stripe-overlay .animated-panel .logout-section .logoutbutton {
    width: 100%;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 25px;
    padding: 16px;
    font-size: 0.95em;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.stripe-overlay .animated-panel .logout-section .logoutbutton:hover {
    background: #222;
}

.stripe-overlay .animated-panel .logout-section .logoutbutton:active {
    background: #111;
}

/* Mobile responsive styles */

#productsGridWrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

#productsGrid {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Footer */
.site-footer {
    background: #fff;
    color: #000;
    padding: 48px 0 24px 0;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    margin-top: 48px;
    font-family: 'Poppins', sans-serif;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 24px;
}

.footer-links a {
    font-family: 'Poppins', sans-serif;
    color: rgba(0, 0, 0, 0.6);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #000;
}

.footer-links a::after {
    content: none;
}

.footer-lang {
    margin: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-lang label {
    font-family: 'Poppins', sans-serif;
    margin-right: 12px;
    font-weight: 500;
    color: #000;
    font-size: 0.875rem;
}

#lang-select {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 36px 8px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    background: #f5f5f5 url('data:image/svg+xml;utf8,<svg fill="black" height="16" viewBox="0 0 24 24" width="16" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 12px center/16px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    color: #000;
    cursor: pointer;
    min-width: 140px;
    transition: all 0.2s ease;
}

#lang-select:hover {
    background-color: #e0e0e0;
}

#lang-select:focus {
    border-color: #000;
    background-color: #fff;
}

#lang-select::-ms-expand {
    display: none;
}

#lang-select option {
    background: #fff;
    color: #000;
}

.footer-copy {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.4);
    margin-top: 24px;
}



.stripe-icon.rotated {
    transform: rotate(90deg) scale(1.03);
}
#panelStripeIcon {
    width: 30px;
    height: auto;
    margin: 10px;
    z-index: 1002;
    position: absolute;
}

.stripe-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.4);
    z-index: 10000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s;
    backdrop-filter: blur(12px);
}
.stripe-overlay.open {
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.18s;
}
.animated-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    z-index: 10001;
    transition: transform 0.18s cubic-bezier(0.4,0,0.2,1);
    z-index: 1001;
    border-radius: 0;
    backdrop-filter: blur(12px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.animated-panel.open {
    transform: translateX(0);
}

.transport-switch {
    position: relative;
    display: flex;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 4px;
    gap: 4px;
}
.switch-btn {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    padding: 0 20px;
    z-index: 2;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    color: #888;
    outline: none;
    height: 36px;
    border-radius: 25px;
    white-space: nowrap;
}
.switch-btn.active {
    color: #000;
    font-weight: 600;
}
.switch-btn:hover:not(.active) {
    color: #555;
}
.switch-slider {
    position: absolute;
    top: 4px;
    left: calc(100% / 3 * 2 + 4px);
    width: calc(100% / 3 - 8px);
    height: 36px;
    background: #ffffff;
    border-radius: 25px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}
.switch-btn#deliveryBtn.active ~ .switch-slider,
.switch-btn#deliveryBtn.active + .switch-slider {
    left: calc(50% + 4px);
}

.search-address-row {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: absolute;
    top: 24px;
    right: 40px;
    min-width: 35vw;
    z-index: 10;
    gap: 24px;
}

#userAddressBox {
    cursor: pointer;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 2px 8px #0001;
    padding: 10px 18px;
    font-family: 'Poppins',sans-serif;
    font-size: 1em;
    color: #222;
    min-width: 120px;
    max-width: 500px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: 6px;
    transition: box-shadow 0.2s, background 0.2s;
    backdrop-filter: blur(12px);
}

#userAddressBox:hover {
    background: #f3f3f3;
    border: 1px solid rgba(0,0,0,0.06);
}

#editCountryInput {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fafbfc url('data:image/svg+xml;utf8,<svg fill="black" height="18" viewBox="0 0 24 24" width="18" xmlns="http://www.w3.org/2000/svg"><path d="M7 10l5 5 5-5z"/></svg>') no-repeat right 10px center/18px 18px;
    border: 1.5px solid #bbb;
    border-radius: 25px;
    padding-right: 34px !important;
    font-family: 'Poppins', sans-serif;
    font-size: 1em;
    color: #222;
    transition: border 0.2s, box-shadow 0.2s, background 0.2s;
    backdrop-filter: blur(12px);
}

#editCountryInput:focus {
    border-color: #1a1a1a;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.1);
    background-color: #fafafa;
}

body.logged-in .settings {
    width: 16%;
    min-width: 220px;
    max-width: 350px;
}

/* ========================================
   HERO SECTION - Large Cultioo.com Design
   ======================================== */



.hero-container {
    max-width: 1400px; /* Mehr Breite nutzen */
    margin: 25px auto;
    padding: 0 64px !important;
}

.hero-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 80px;
}

/* Kleinerer Cultioo.com Brand Text */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.hero-brand:hover {
    transform: translateY(-1px);
}

.hero-brand-main {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem; /* Kleiner als 4rem */
    font-weight: 700;
    color: #000000;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.03em;
}

.hero-brand-suffix {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem; /* Kleiner als 4rem */
    font-weight: 400;
    color: rgba(0, 0, 0, 0.4);
    margin: 0;
    line-height: 1;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hero-icon-btn {
    width: 44px;
    height: 44px;
    background: #f5f5f5;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    position: relative;
}

.hero-icon-btn:hover {
    background: #e0e0e0;
    transform: translateY(-1px);
}

.hero-icon-btn:active {
    transform: translateY(0);
}

.hero-icon-btn svg {
    stroke: rgba(0, 0, 0, 0.7);
}

.cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #ff3b30;
    color: #ffffff;
    font-size: 0.75rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-cta-btn {
    background: #000000;
    color: #ffffff;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    min-width: 120px;
}

.hero-cta-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}

.hero-cta-btn:active {
    transform: translateY(0);
}

/* Welcome back state - wider button */
.hero-cta-btn.welcome-state {
    min-width: 200px;
    padding: 12px 32px;
    cursor: default;
    background: rgba(0, 0, 0, 0.05);
    color: rgba(0, 0, 0, 0.6);
}

.hero-cta-btn.welcome-state:hover {
    transform: none;
    background: rgba(0, 0, 0, 0.05);
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #000000;
    margin: 0 0 24px 0;
    line-height: 1.1;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 400;
    color: rgba(0, 0, 0, 0.6);
    margin: 0;
    line-height: 1.5;
    max-width: 600px;
}

/* ========================================
   SEARCH & FILTER CONTAINER
   ======================================== */

.search-filter-container {
    max-width: 1400px; /* Mehr Breite nutzen */
    margin: 32px auto;
    padding: 0 64px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    opacity: 0;
    animation: searchFadeInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes searchFadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.search-box {
    position: relative;
    width: 100%;
}

.search-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.4;
    pointer-events: none;
    z-index: 1;
}

.search-input {
    width: 100%;
    height: 52px;
    padding: 0 16px 0 48px;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    background: #ffffff;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #000000;
    outline: none;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.search-input:focus {
    border-color: #000000;
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.05);
}

.search-input::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.filter-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.transport-chip-group {
    display: flex;
    gap: 8px;
    background: #f5f5f5;
    border-radius: 25px;
    padding: 4px;
}

.filter-chip {
    background: transparent;
    border: none;
    border-radius: 25px;
    padding: 10px 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.6);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.filter-chip:hover {
    color: #000000;
}

.transport-chip-group .filter-chip.active {
    background: #ffffff;
    color: #000000;
    font-weight: 600;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.filter-chip svg {
    opacity: 0.6;
}

/* Search Suggestions */
.search-suggestions {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 1000;
    animation: slideDown 0.2s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: background 0.15s ease;
    border-bottom: 1px solid #f5f5f5;
    font-family: 'Poppins', sans-serif;
}

.suggestion-item:last-child {
    border-bottom: none;
}

.suggestion-item:hover {
    background: #f5f5f5;
}

.suggestion-image {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 25px;
    overflow: hidden;
    background: #f5f5f5;
}

.suggestion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suggestion-content {
    flex: 1;
    min-width: 0;
}

.suggestion-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.suggestion-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
}

.suggestion-price {
    font-weight: 600;
    color: #000;
}

.suggestion-seller {
    color: rgba(0, 0, 0, 0.5);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

.search-suggestion-item:last-child {
    border-bottom: none;
}

.search-suggestion-item:hover {
    background: #f8f8f8;
}

.search-suggestion-item img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 25px;
    flex-shrink: 0;
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

@media (max-width: 1024px) {
    .hero-container,
    .search-filter-container {
        padding: 0 24px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 1024px) {
    .hero-section {
        padding: 200px 0 60px !important; /* Keep desktop spacing on tablet too */
        margin-top: 80px !important;
    }
    
    .hero-container,
    .search-filter-container,
    .categories-container,
    .filters-container,
    .products-container {
        padding: 0 48px;
    }
    
    .hero-brand-main,
    .hero-brand-suffix {
        font-size: 2rem; /* Noch kleiner auf Tablet */
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 120px 0 48px !important;
        margin-top: 60px !important;
    }
    
    .hero-container,
    .search-filter-container,
    .categories-container,
    .filters-container,
    .products-container {
        padding: 0 20px;
    }
    
    .hero-header {
        margin-bottom: 48px;
    }
    
    .hero-brand-main,
    .hero-brand-suffix {
        font-size: 1.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .hero-actions {
        gap: 12px;
    }
    
    .hero-icon-btn {
        width: 40px;
        height: 40px;
    }
    
    .hero-cta-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 100px;
    }
    
    .search-input {
        height: 48px;
        font-size: 0.875rem;
        padding: 0 16px 0 44px;
    }
    
    .filter-chips {
        flex-direction: column;
        gap: 12px;
    }
    
    .transport-chip-group {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-chip {
        flex: 1;
        justify-content: center;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 20px;
    }
    
    .filter-group {
        flex-direction: column;
        gap: 8px;
    }
    
    .filter-item {
        width: 100%;
        padding: 12px 14px;
        background: #f8f9fa;
        border-radius: 25px;
    }
    
    .filter-item .filter-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    .filter-item .filter-select {
        font-size: 0.85rem;
        width: 100%;
        min-width: auto;
        font-weight: 500;
    }
    
    .filters-section {
        padding: 16px 0;
    }
    
    .filters-container {
        padding: 0 20px;
    }
    
    /* Mobile Product Grid - 2 Columns */
    #productsGrid,
    #mostViewedGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
        margin-top: 24px !important;
        width: 100% !important;
    }
    
    /* Mobile Product Cards */
    .product-card {
        border-radius: 25px !important;
        min-width: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
        overflow: hidden !important;
    }
    
    .product-card img,
    .product-card .product-image-placeholder {
        height: 160px !important;
        border-radius: 25px 12px 0 0 !important;
        width: 100% !important;
    }
    
    .product-card .product-content {
        padding: 12px !important;
        gap: 6px !important;
        min-height: auto !important;
    }
    
    .product-card .product-title {
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
        min-height: 2.3em !important;
        -webkit-line-clamp: 2 !important;
        margin-bottom: 6px !important;
    }
    
    .product-card .product-price {
        font-size: 1rem !important;
        margin: 4px 0 !important;
    }
    
    .product-card .product-shipping {
        font-size: 0.7rem !important;
        padding: 3px 6px !important;
        border-radius: 25px !important;
    }
    
    .product-card .fav-btn {
        width: 26px !important;
        height: 26px !important;
        top: 6px !important;
        right: 6px !important;
    }
    
    .product-card .fav-btn svg {
        width: 12px !important;
        height: 12px !important;
    }
    
    /* Stats icons */
    .product-stats .stat-icon {
        width: 10px !important;
        height: 10px !important;
    }
    
    /* Mobile Products Section */
    .products-section {
        padding: 40px 20px 32px 20px !important;
        background: #fafafa !important;
    }
    
    .products-container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    
    .products-container .section-title {
        font-size: 1.25rem !important;
        margin-bottom: 20px !important;
        padding: 0 !important;
    }
    
    /* Mobile Categories */
    .categories-section {
        padding: 20px 0 24px 0;
    }
    
    .categories-container {
        padding: 0 20px;
    }
    
    .categories-scroll {
        display: none; /* Hide scroll arrows on mobile */
    }
    
    .category-chips {
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        gap: 10px;
        padding: 4px 0;
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* IE/Edge */
    }
    
    .category-chips::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }
    
    .category-btn {
        font-size: 0.85rem;
        padding: 8px 16px;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .categories-section .section-title {
        font-size: 1.25rem;
        margin-bottom: 16px;
        padding: 0;
    }
    
    /* Mobile Search */
    .search-filter-container {
        padding: 20px;
    }
    
    .search-box {
        margin-bottom: 16px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 480px) {
    /* Keep 2 columns even on small screens for better layout */
    #productsGrid,
    #mostViewedGrid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .product-card {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
    }
    
    .product-card img,
    .product-card .product-image-placeholder {
        height: 150px !important;
    }
    
    /* Stats icons smaller on small mobile */
    .product-stats .stat-icon {
        width: 8px !important;
        height: 8px !important;
    }
    
    .product-card .product-content {
        padding: 10px !important;
    }
    
    .product-card .product-title {
        font-size: 0.8rem !important;
        min-height: 2.2em !important;
    }
    
    .product-card .product-price {
        font-size: 0.95rem !important;
    }
    
    .products-section {
        padding: 32px 16px 24px 16px !important;
    }
    
    .categories-container {
        padding: 0 16px !important;
    }
    
    .filters-container {
        padding: 0 16px !important;
    }
    
    .filter-item {
        padding: 10px 12px !important;
    }
    
    .filter-item .filter-select {
        font-size: 0.8rem !important;
    }
}

/* === MOBILE ANIMATED PANEL OPTIMIERUNG === */
@media (max-width: 768px) {
    /* Stripe Button - Desktop Style */
    .stripe {
        top: 12px;
        left: 12px;
        width: 56px;
        height: 56px;
        border-radius: 25px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .stripe .stripe-icon {
        width: 24px;
        height: 24px;
    }

    /* Animated Panel - Vollbreite auf Mobile */
    .stripe-overlay .animated-panel {
        width: 100vw !important;
        max-width: 100vw !important;
        background: #fafafa !important;
        box-shadow: none !important;
        padding-top: 0 !important;
    }

    /* Panel Header - Komplett verstecken oder minimal */
    .stripe-overlay .animated-panel .panel-header {
        padding: 8px 12px !important;
        background: #fafafa !important;
        border-bottom: none !important;
        min-height: auto !important;
        height: auto !important;
        margin: 0 !important;
    }

    .stripe-overlay .animated-panel .panel-header > div:last-child {
        display: none !important;
    }

    /* Back Button - Nur Icon sichtbar */
    .stripe-overlay .animated-panel .back-button {
        width: 44px !important;
        height: 44px !important;
        border-radius: 50% !important;
        padding: 0 !important;
        margin: 0 !important;
        background: #ffffff !important;
        box-shadow: 0 1px 3px rgba(0,0,0,0.1) !important;
    }

    .stripe-overlay .animated-panel .back-button:active {
        transform: scale(0.95) !important;
    }

    .stripe-overlay .animated-panel .back-button svg {
        width: 20px !important;
        height: 20px !important;
    }

    /* Content Area - Minimale Abstände */
    .stripe-overlay .animated-panel .panel-content {
        padding: 12px !important;
        background: #fafafa !important;
        padding-top: 0 !important;
        margin-top: 0 !important;
    }

    /* Register/Login Container */
    .stripe-overlay .animated-panel .register,
    .stripe-overlay .animated-panel .login {
        width: 100% !important;
        margin-bottom: 10px !important;
        margin-top: 0 !important;
        padding: 0 !important;
    }

    /* Main Action Buttons - Desktop Style */
    .stripe-overlay .animated-panel .register .registerbutton,
    .stripe-overlay .animated-panel .login .loginbutton {
        border-radius: 25px !important;
        padding: 16px !important;
        font-size: 1em !important;
        min-height: auto !important;
        font-weight: 600 !important;
        box-shadow: none !important;
        margin: 0 !important;
        background: #000 !important;
        color: #fff !important;
    }

    /* Account Section - Desktop Style */
    .stripe-overlay .animated-panel .account-section {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        padding-bottom: 20px !important;
        margin-bottom: 20px !important;
        margin-top: 0 !important;
        border: none !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        box-shadow: none !important;
    }

    .stripe-overlay .animated-panel .account-section .accountbutton,
    .stripe-overlay .animated-panel .account-section .messagesbutton,
    .stripe-overlay .animated-panel .account-section .ordersbutton,
    .stripe-overlay .animated-panel .account-section .favouritesbutton {
        border-radius: 25px !important;
        padding: 14px 16px !important;
        font-size: 0.95em !important;
        min-height: auto !important;
        height: auto !important;
        margin-bottom: 6px !important;
        background: #f8f9fa !important;
        border: none !important;
    }

    .stripe-overlay .animated-panel .account-section .accountbutton:last-child,
    .stripe-overlay .animated-panel .account-section .messagesbutton:last-child,
    .stripe-overlay .animated-panel .account-section .ordersbutton:last-child,
    .stripe-overlay .animated-panel .account-section .favouritesbutton:last-child {
        margin-bottom: 0 !important;
    }

    .stripe-overlay .animated-panel .account-section .accountbutton:active,
    .stripe-overlay .animated-panel .account-section .messagesbutton:active,
    .stripe-overlay .animated-panel .account-section .ordersbutton:active,
    .stripe-overlay .animated-panel .account-section .favouritesbutton:active {
        background: #dee2e6 !important;
        transform: none !important;
    }

    /* Business Section - Desktop Style */
    .stripe-overlay .animated-panel .business {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 20px 0 !important;
        margin: 20px 0 !important;
        border: none !important;
        border-top: 1px solid rgba(0,0,0,0.06) !important;
        border-bottom: 1px solid rgba(0,0,0,0.06) !important;
        box-shadow: none !important;
    }

    .stripe-overlay .animated-panel .business .businessbutton,
    .stripe-overlay .animated-panel .business .jobsbutton {
        height: 48px !important;
        border-radius: 25px !important;
        font-size: 0.95em !important;
        padding: 0 16px !important;
        margin-bottom: 8px !important;
        background: #f8f9fa !important;
        border: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
    }

    .stripe-overlay .animated-panel .business .jobsbutton {
        margin-bottom: 0 !important;
    }

    .stripe-overlay .animated-panel .business .businessbutton:active,
    .stripe-overlay .animated-panel .business .jobsbutton:active {
        background: #dee2e6 !important;
        transform: none !important;
    }

    /* Footer Links - Desktop Style */
    .stripe-overlay .animated-panel .contact,
    .stripe-overlay .animated-panel .socials {
        background: transparent !important;
        border-radius: 0 !important;
        padding: 0 !important;
        margin-bottom: 6px !important;
        margin-top: 0 !important;
        border: none !important;
        box-shadow: none !important;
    }

    .stripe-overlay .animated-panel .contact .contactbutton,
    .stripe-overlay .animated-panel .contact .aboutbutton,
    .stripe-overlay .animated-panel .socials .helpbutton,
    .stripe-overlay .animated-panel .socials .donatebutton {
        height: 44px !important;
        border-radius: 25px !important;
        font-size: 0.9rem !important;
        padding: 0 16px !important;
        margin-bottom: 4px !important;
        background: #f8f9fa !important;
        border: none !important;
    }

    .stripe-overlay .animated-panel .contact .aboutbutton,
    .stripe-overlay .animated-panel .socials .donatebutton {
        margin-bottom: 0 !important;
    }

    .stripe-overlay .animated-panel .contact .contactbutton:active,
    .stripe-overlay .animated-panel .contact .aboutbutton:active,
    .stripe-overlay .animated-panel .socials .helpbutton:active,
    .stripe-overlay .animated-panel .socials .donatebutton:active {
        background: #dee2e6 !important;
        transform: none !important;
    }

    /* Business Studio Section - Desktop Style */
    .stripe-overlay .animated-panel .business-studio-section {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(0,0,0,0.06) !important;
    }

    .stripe-overlay .animated-panel .business-studio-section .business-studio-button {
        border-radius: 25px !important;
        padding: 16px !important;
        font-size: 0.95em !important;
        min-height: auto !important;
        box-shadow: none !important;
        background: #000 !important;
        color: #fff !important;
    }

    .stripe-overlay .animated-panel .business-studio-section .business-studio-button:active {
        transform: none !important;
        background: #111 !important;
    }

    /* Logout Section - Desktop Style */
    .stripe-overlay .animated-panel .logout-section {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(0,0,0,0.06) !important;
    }

    .stripe-overlay .animated-panel .logout-section .logoutbutton {
        border-radius: 25px !important;
        padding: 16px !important;
        font-size: 0.95em !important;
        min-height: auto !important;
        box-shadow: none !important;
        background: #000 !important;
        color: #fff !important;
    }

    .stripe-overlay .animated-panel .logout-section .logoutbutton:active {
        transform: none !important;
        background: #111 !important;
    }

    /* Upgrade Section - Desktop Style */
    .stripe-overlay .animated-panel .upgrade-section {
        margin-top: 20px !important;
        margin-bottom: 0 !important;
        padding-top: 20px !important;
        border-top: 1px solid rgba(0,0,0,0.06) !important;
    }

    .stripe-overlay .animated-panel .upgrade-section .upgradebutton {
        border-radius: 25px !important;
        padding: 16px !important;
        font-size: 0.95em !important;
        min-height: auto !important;
        box-shadow: none !important;
        background: #000 !important;
        color: #fff !important;
    }

    .stripe-overlay .animated-panel .upgrade-section .upgradebutton:active {
        transform: none !important;
        background: #111 !important;
    }
}

/* ========================================
   ANIMATIONS & TRANSITIONS
   ======================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */

/* Typography */
.text-primary {
    color: #000000;
}

.text-secondary {
    color: rgba(0, 0, 0, 0.6);
}

.text-small {
    font-size: 0.875rem;
}

.text-medium {
    font-size: 0.9rem;
}

.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Spacing */
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }

.header, .settings, .transport, .search, #userAddressBox {
    position: static !important;
    margin: 0;
    transform: none !important;
    box-shadow: none;
}

.header {
    position: static;
    width: auto;
    background: transparent;
    color: #000;
    padding: 0;
    margin: 0;
    font-family: 'Poppins';
    display: flex;
    align-items: center;
    justify-content: flex-start;
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    border: none; 
    cursor: pointer;
    text-decoration: none;
    backdrop-filter: none;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.03em;
}

.header .big{
    font-family: 'Poppins';
}

.header .bite {
    opacity: 1;
    font-weight: 700;
}

.header:hover {
    opacity: 0.6;
}

.header:active {
    background-color: transparent;
    color: #000;
    transform: none;
}


/* Hide old search (now in search-transport-bar) */
.topbar .search {
    display: none;
}

/* Hide old settings (replaced by CTA button) */
.topbar .settings {
    display: none;
}

/* Hide old header class (replaced by .logo) */
.topbar .header {
    display: none;
}

/* Hide old notif-container and cart-container (replaced by icon-btn) */
.topbar .notif-container,
.topbar .cart-container {
    display: none;
}

/* Compatibility - styles now handled by .address-text class in topbar */

.addresses-container {
    max-width: 480px;
    margin: 40px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}
.address-box {
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 2px 12px #0001;
    padding: 18px 22px 14px 22px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1.5px solid #e0e0e0;
    backdrop-filter: blur(12px);
}

.add-address-btn:hover {
    background: #1a1a1a;
    transform: scale(1.08);
    border-radius: 25px;
    backdrop-filter: blur(12px);
}
.address-input-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}

.addresses-overlay {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.25);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: red;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}

.addresses-modal {
    background: #fff;
    border-radius: 25px;
    padding: 32px 28px 22px 28px;
    min-width: 340px;
    max-width: 95vw;
    max-height: 85vh;
    box-shadow: 0 8px 40px #0002;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    backdrop-filter: blur(12px);
    overflow: hidden;
}
.close-btn {
    position: absolute;
    top: 12px; right: 16px;
    background: none;
    border: none;
    font-size: 1.5em;
    color: #888;
    cursor: pointer;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}

#addressesList {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 18px 0 0 0;
    border-radius: 25px;
    backdrop-filter: blur(12px);
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

#addressesList::-webkit-scrollbar {
    width: 8px;
}

#addressesList::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 25px;
}

#addressesList::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 25px;
}

#addressesList::-webkit-scrollbar-thumb:hover {
    background: #555;
}
.address-box {
    background: #f8f8fa;
    border-radius: 25px;
    box-shadow: 0 2px 12px #0001;
    padding: 16px 18px 12px 18px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border: 1.5px solid #e0e0e0;
    backdrop-filter: blur(12px);
}

.add-address-btn:hover {
    background: #1a1a1a;
    transform: scale(1.08);
    border-radius: 25px;
    backdrop-filter: blur(12px);
}
.address-input-row {
    display: flex;
    gap: 10px;
    margin-top: 8px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}
.address-input-row select,
.address-input-row input {
    padding: 8px 12px;
    border-radius: 25px;
    border: 1.5px solid #bbb;
    font-size: 1em;
    background: #fafbfc;
    flex: 1;
    backdrop-filter: blur(12px);
}

.addresses-overlay.active {
    display: flex;
}

.address-btn, #userAddressBox {
    cursor: pointer;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 2px 8px #0001;
    padding: 10px 18px;
    font-family: 'Poppins',sans-serif;
    font-size: 1em;
    color: #222;
    min-width: 120px;
    max-width: 450px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin-left: 6px;
    border: none;
    transition: box-shadow 0.2s, background 0.2s;
    display: flex;
    align-items: center;
    gap: 8px;
    backdrop-filter: blur(12px);
}

.address-modal-modern {
    background: #fff;
    border-radius: 25px;
    min-width: 340px;
    max-width: 95vw;
    box-shadow: 0 16px 48px #0004, 0 2px 8px #2222;
    position: relative;
    overflow: hidden;
    animation: slideUpModal 0.35s cubic-bezier(.4,0,.2,1);
    transform: translateY(40px);
    opacity: 0;
    transition: opacity 0.2s, transform 0.2s;
    border: 1.5px solid #e0e0e0;
    backdrop-filter: blur(12px);
}
#addressOverlay.show .address-modal-modern {
    opacity: 1;
    transform: translateY(0);
}
.address-modal-header {
    background: #1a1a1a;
    color: #fff;
    padding: 28px 36px 18px 36px;
    border-radius: 25px 25px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1.5px solid #e0e0e0;
    box-shadow: 0 2px 8px #0001;
    backdrop-filter: blur(12px);
}
.address-modal-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.28em;
    margin: 0;
    letter-spacing: 0.5px;
    color: #fff;
}
.address-modal-close {
    background: none;
    border: none;
    font-size: 1.7em;
    color: #fff;
    cursor: pointer;
    transition: color 0.15s;
    margin-left: 12px;
    padding: 0 8px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}
.address-modal-close:hover {
    color: #bbb;
}
.address-modal-content {
    padding: 28px 36px 24px 36px;
    background: #fafbfc;
    display: flex;
    flex-direction: column;
    gap: 22px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}
.address-row {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 25px;
    box-shadow: 0 1px 6px #0001;
    padding: 18px 18px 12px 18px;
    transition: background 0.18s;
    backdrop-filter: blur(12px);
}
.address-row:hover {
    background: #e3f2fd;
}
.address-info-block {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-radius: 25px;
    backdrop-filter: blur(12px);
}
.address-label {
    font-size: 0.98em;
    color: #888;
    font-weight: 500;
    margin-bottom: 2px;
    letter-spacing: 0.1px;
}
.address-value {
    font-size: 1.08em;
    color: #111;
    font-weight: 600;
    letter-spacing: 0.1px;
    background: #f4f4f6;
    border-radius: 25px;
    padding: 7px 12px;
    margin-bottom: 2px;
    border: 1px solid #ededed;
    backdrop-filter: blur(12px);
}
.address-add-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0 auto;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-size: 2.2em;
    font-weight: bold;
    border: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: background 0.18s, transform 0.12s, box-shadow 0.18s;
    outline: none;
    backdrop-filter: blur(12px);
}
.address-add-btn:hover {
    background: #333333;
    transform: scale(1.12) rotate(8deg);
    box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.address-add-btn:active {
    background: #000000;
    transform: scale(0.98);
}
.address-map-modern {
    width: 100%;
    min-width: 260px;
    max-width: 420px;
    height: 220px;
    border-radius: 25px;
    overflow: hidden;
    background: #f4f4f6;
    box-shadow: 0 2px 12px #0001;
    margin-top: 8px;
    margin-bottom: 8px;
    animation: fadeInMap 0.4s cubic-bezier(.4,0,.2,1);
    border: 1.5px solid #e0e0e0;
    backdrop-filter: blur(12px);
}
.address-modal-footer {
    background: #f4f4f6;
    border-radius: 0 0 25px 25px;
    padding: 16px 36px 12px 36px;
    text-align: right;
    border-top: 1.5px solid #e0e0e0;
    font-size: 0.97em;
    color: #888;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.1px;
    backdrop-filter: blur(12px);
}

/* Categories Section */
.categories-section {
    background: transparent;
    padding: 20px 0;
    border-bottom: none;
    position: relative;
    z-index: 1;
    overflow: visible;
}

.category-chips {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    padding: 4px 0px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
    flex-wrap: nowrap;
    white-space: nowrap;
    flex: 1;
}

.category-chips::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.cat-scroll-arrow {
    transition: background 0.2s, transform 0.1s;
}

.cat-scroll-arrow:hover {
    background: #e9ecef !important;
}

.cat-scroll-arrow:active {
    background: #dee2e6 !important;
    transform: scale(0.95) !important;
}

.category-chips::-webkit-scrollbar {
    display: none;
}

.category-btn {
    flex: 0 0 auto;
    padding: 8px 18px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    font-size: 0.825rem;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.7);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.category-btn:hover {
    background: #f5f5f5;
    border-color: #000;
    color: #000;
}

.category-btn.active {
    background: #000;
    color: #fff;
    border-color: #000;
    font-weight: 600;
}

/* Filters Section */
.filters-section {
    background: #fff;
    padding: 24px 0;
    border-bottom: 1px solid #f0f0f0;
}

.filters-container {
    max-width: 1400px; /* Mehr Breite nutzen */
    margin: 0 auto;
    padding: 0 64px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.filter-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    background: #f5f5f5;
    border: 1px solid transparent;
    border-radius: 25px;
    transition: all 0.2s ease;
}

.filter-item:hover {
    background: #e0e0e0;
}

.filter-item:focus-within {
    border-color: #000;
    background: #fff;
}

.filter-icon {
    flex-shrink: 0;
    color: rgba(0, 0, 0, 0.6);
}

.filter-select {
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: #000;
    cursor: pointer;
    outline: none;
    min-width: 120px;
}

.filter-select:hover {
    opacity: 0.7;
}

.filter-select option {
    background: #fff;
    color: #000;
    padding: 8px;
}

.notif-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 18px;
    height: 18px;
    background: #e53935;
    color: #fff;
    border-radius: 25px;
    font-size: 0.95em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    z-index: 2;
    font-family: 'Poppins', sans-serif;
    backdrop-filter: blur(12px);
}

/* Force products directly under filter - no spacing */
#mainContent > div:last-of-type {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Products Section */
.products-section {
    background: #fafafa;
    padding: 60px 0 48px 0;
    border-bottom: none;
}

.products-section:last-of-type {
    border-bottom: none;
    padding-bottom: 48px;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 64px;
}

.products-container .section-title {
    margin: 0 0 32px 0;
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.02em;
}

/* Product Grid */
#productsGrid,
#mostViewedGrid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 0;
    padding: 0;
}

@media (min-width: 1400px) {
    #productsGrid,
    #mostViewedGrid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 24px;
    }
}

/* Modern Product Card */
.product-card {
    background: #f8f9fa;
    border: none;
    border-radius: 25px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    position: relative;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Poppins', sans-serif;
    opacity: 0;
    animation: productFadeInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Staggered animation delays */
.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.1s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.2s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.3s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.4s; }
.product-card:nth-child(9) { animation-delay: 0.45s; }
.product-card:nth-child(10) { animation-delay: 0.5s; }
.product-card:nth-child(11) { animation-delay: 0.55s; }
.product-card:nth-child(12) { animation-delay: 0.6s; }

@keyframes productFadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card:hover {
    transform: translateY(-2px);
    background: #ffffff;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.product-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: #e8eaed;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-card .product-image-placeholder {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, #e8eaed 0%, #dadce0 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(0, 0, 0, 0.3);
    font-size: 0.9em;
    font-weight: 500;
}

.product-card .product-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
    background: inherit;
    min-height: 130px;
}

.product-card .product-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #000;
    line-height: 1.5;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    margin: 0;
    min-height: 2.8em;
    letter-spacing: -0.01em;
}

.product-card .product-price {
    font-family: 'Poppins', sans-serif;
    color: #000;
    font-weight: 700;
    font-size: 1.15rem;
    margin: 6px 0;
    letter-spacing: -0.02em;
}

.product-card .product-shipping {
    font-family: 'Poppins', sans-serif;
    color: #16a34a;
    font-size: 0.8rem;
    font-weight: 600;
    margin: 0;
    background: rgba(22, 163, 74, 0.08);
    padding: 4px 10px;
    border-radius: 25px;
    width: fit-content;
    letter-spacing: 0.01em;
}

.product-card .fav-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.98);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(12px);
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.85);
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Mobile: Show fav button always (not just on hover) */
@media (max-width: 768px) {
    .product-card .fav-btn {
        opacity: 1 !important;
        transform: scale(1) !important;
        width: 24px !important;
        height: 24px !important;
        top: 5px !important;
        right: 5px !important;
        min-width: 24px !important;
        max-width: 24px !important;
    }
    
    .product-card .fav-btn svg,
    svg.fav-heart,
    .fav-heart,
    [class*="fav"] svg {
        width: 11px !important;
        height: 11px !important;
        max-width: 11px !important;
        max-height: 11px !important;
    }
}

@media (max-width: 480px) {
    .product-card .fav-btn {
        width: 22px !important;
        height: 22px !important;
        top: 4px !important;
        right: 4px !important;
        min-width: 22px !important;
        max-width: 22px !important;
    }
    
    .product-card .fav-btn svg,
    svg.fav-heart,
    .fav-heart,
    [class*="fav"] svg {
        width: 10px !important;
        height: 10px !important;
        max-width: 10px !important;
        max-height: 10px !important;
    }
}

.product-card:hover .fav-btn {
    opacity: 1;
    transform: scale(1);
}

.product-card .fav-btn:hover {
    background: #fff;
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.product-card .fav-btn:active {
    transform: scale(0.92);
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.product-card .fav-heart {
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card .fav-btn:hover .fav-heart {
    transform: scale(1.1);
}

.product-card .fav-heart path {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Product Stats */
.product-rating {
    margin: 4px 0;
}

.product-stats {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    font-family: 'Poppins', sans-serif;
}

.product-stats .stat-icon {
    width: 14px;
    height: 14px;
    opacity: 0.5;
}

.product-stats .stat-value {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: rgba(0, 0, 0, 0.6);
    font-weight: 500;
}

/* Hover effects for dynamically generated cards */
.product-card:hover {
    background: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.product-card:hover .fav-btn {
    opacity: 1 !important;
    transform: scale(1) !important;
}

.product-card:hover img {
    transform: scale(1.03);
}

.product-card .fav-btn:hover {
    background: #fff !important;
    transform: scale(1.08) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12) !important;
}

.product-card .fav-btn:active {
    transform: scale(0.92) !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08) !important;
}

/* Mobile overrides for inline styles */
@media (max-width: 768px) {
    /* Force 2-column grid */
    .product-card {
        max-width: 100% !important;
        width: 100% !important;
        min-width: 0 !important;
        border-radius: 25px !important;
        overflow: hidden !important;
    }
    
    .product-card img {
        height: 160px !important;
        border-radius: 25px 12px 0 0 !important;
        margin-bottom: 0 !important;
        width: 100% !important;
        object-fit: cover !important;
    }
    
    .product-card > div[style*="padding"] {
        padding: 12px !important;
    }
    
    .product-card h3 {
        font-size: 0.85rem !important;
        line-height: 1.35 !important;
        min-height: 2.3em !important;
        margin-bottom: 6px !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: -webkit-box !important;
        -webkit-line-clamp: 2 !important;
        -webkit-box-orient: vertical !important;
    }
    
    /* Force smaller fav button on mobile - override inline styles */
    .product-card button.fav-btn,
    .product-card .fav-btn,
    button[data-productid].fav-btn,
    .product-card button[class*="fav"] {
        width: 24px !important;
        height: 24px !important;
        top: 5px !important;
        right: 5px !important;
        opacity: 1 !important;
        transform: scale(1) !important;
        padding: 0 !important;
        min-width: 24px !important;
        max-width: 24px !important;
        min-height: 24px !important;
        max-height: 24px !important;
    }
    
    .product-card button.fav-btn svg,
    .product-card .fav-btn svg,
    .product-card .fav-heart,
    button[data-productid].fav-btn svg,
    svg.fav-heart,
    .product-card svg[class*="fav"],
    .product-card button svg,
    .product-card button[data-productid] svg {
        width: 11px !important;
        height: 11px !important;
        max-width: 11px !important;
        max-height: 11px !important;
        stroke-width: 2.5 !important;
    }
    
    /* Override dynamic inline styles for price and shipping */
    .product-card span[style*="font-size"][style*="1.15rem"],
    .product-card span[style*="font-size"][style*="1.3em"] {
        font-size: 1rem !important;
    }
    
    .product-card span[style*="font-size"][style*="0.8rem"],
    .product-card span[style*="background"][style*="rgba(22, 163, 74"] {
        font-size: 0.7rem !important;
        padding: 3px 6px !important;
    }
    
    /* Ensure products section has proper padding */
    .products-section {
        padding: 40px 20px 32px 20px !important;
    }
    
    .products-container {
        padding: 0 !important;
        max-width: 100% !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    .hero-container,
    .search-filter-container,
    .categories-container,
    .products-container {
        padding: 0 16px !important;
    }
    
    #productsGrid,
    #mostViewedGrid {
        gap: 10px !important;
    }
    
    .product-card img {
        height: 150px !important;
    }
    
    .product-card > div[style*="padding"] {
        padding: 10px !important;
    }
    
    .product-card h3 {
        font-size: 0.8rem !important;
        min-height: 2.2em !important;
    }
    
    .product-card span[style*="font-size"][style*="1.15rem"],
    .product-card span[style*="font-size"][style*="1.3em"] {
        font-size: 0.95rem !important;
    }
    
    /* Even smaller on very small screens */
    .product-card button.fav-btn,
    .product-card .fav-btn,
    button[data-productid].fav-btn {
        width: 22px !important;
        height: 22px !important;
        top: 4px !important;
        right: 4px !important;
    }
    
    .product-card button.fav-btn svg,
    .product-card .fav-btn svg,
    .product-card .fav-heart,
    button[data-productid].fav-btn svg,
    svg.fav-heart {
        width: 10px !important;
        height: 10px !important;
    }
    
    .products-section {
        padding: 32px 16px 24px 16px !important;
    }
}

/* Mobile Scroll Header - Horizontal Scrollable */
@media (max-width: 900px) {
    .scroll-header {
        padding: 8px 0 !important;
        gap: 0 !important;
        height: auto !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        -webkit-overflow-scrolling: touch !important;
        scrollbar-width: none !important;
        -ms-overflow-style: none !important;
        justify-content: flex-start !important;
    }

    .scroll-header.visible {
        display: flex !important;
        overflow-x: auto !important;
    }

    .scroll-header::-webkit-scrollbar {
        display: none !important;
    }

    /* Container für scrollbaren Inhalt */
    .scroll-header > * {
        flex-shrink: 0 !important;
    }
    
    /* Verstecke Pickup, Delivery und All Buttons auf Mobile */
    .scroll-header .filter-chips,
    .scroll-header .scroll-pickup,
    .scroll-header .scroll-delivery,
    .scroll-header .scroll-all {
        display: none !important;
    }
    
    /* Address Button scrollable */
    .scroll-header #scrollAddressBox {
        display: flex !important;
        padding: 6px 12px !important;
        font-size: 0.8rem !important;
        height: 36px !important;
        min-width: 120px !important;
        max-width: 160px !important;
        overflow: hidden !important;
        margin-left: 12px !important;
        flex-shrink: 0 !important;
    }
    
    .scroll-header #scrollAddressBox .scroll-address-text {
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        white-space: nowrap !important;
    }
    
    /* Search Box scrollable */
    .scroll-header .search-box {
        flex: 0 0 auto !important;
        min-width: 200px !important;
        max-width: 300px !important;
        margin: 0 8px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }
    
    .scroll-header .search-input {
        height: 36px !important;
        font-size: 0.85rem !important;
        padding: 8px 12px 8px 36px !important;
    }

    .scroll-header .search-icon {
        width: 16px !important;
        height: 16px !important;
        left: 12px !important;
    }
    
    /* Actions scrollable */
    .scroll-header .hero-actions {
        gap: 6px !important;
        margin: 0 !important;
        margin-right: 12px !important;
        display: flex !important;
        flex-shrink: 0 !important;
    }
    
    .scroll-header .hero-icon-btn {
        width: 36px !important;
        height: 36px !important;
        flex-shrink: 0 !important;
    }
    
    .scroll-header .hero-icon-btn svg {
        width: 18px !important;
        height: 18px !important;
    }

    .scroll-header .cart-badge {
        font-size: 0.6rem !important;
        padding: 2px 4px !important;
        min-width: 14px !important;
        height: 14px !important;
    }
}
