
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


button, input, textarea, select, a, label {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

:root {
    
    --primary-black: #1d1d1f;
    --secondary-black: #424245;
    --tertiary-black: #6e6e73;
    --quaternary-black: #8e8e93;
    --primary-white: #ffffff;
    --secondary-white: #f5f5f7;
    --tertiary-white: #f2f2f7;
    
    --visitor-menu-bg: var(--secondary-white);
    --visitor-surface: var(--primary-white);
    --visitor-surface-2: var(--tertiary-white);
    --visitor-divider: rgba(0, 0, 0, 0.12);
    --accent-blue: #007aff;
    --accent-green: #34c759;
    --accent-orange: #ff9500;
    --accent-red: #ff3b30;
    --accent-purple: #af52de;
    --accent-pink: #ff2d92;
    --accent-yellow: #ffcc00;
    
    
    --font-display: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-text: 'SF Pro Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 16px;
    --spacing-lg: 24px;
    --spacing-xl: 32px;
    --spacing-2xl: 48px;
    
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 50%;
    
    
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
}

html {
    margin: 0;
    background-color: var(--visitor-menu-bg);
}


.notch-fill {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: env(safe-area-inset-top, 0);
    background-color: var(--visitor-menu-bg);
    z-index: 10001;
    pointer-events: none;
}

html, body {
    margin: 0;
    font-family: var(--font-text);
    background-color: var(--visitor-menu-bg);
    color: var(--primary-black);
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overscroll-behavior: auto;
    touch-action: manipulation; 
}


body {
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
    overflow-y: auto;
}


.view {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    height: 100vh;
    background-color: var(--visitor-surface);
    overflow-x: hidden;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0.35s;
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
    
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

.view.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1),
                visibility 0s 0s;
}


#menuView {
    transform: translateX(0) !important;
    padding-bottom: env(safe-area-inset-bottom, 0);
    overscroll-behavior: auto;
    -webkit-overflow-scrolling: touch;
}

#menuView.active {
    transform: translateX(0) !important;
}

#menuView.leaving {
    opacity: 0;
    transition: opacity 0.2s ease;
}


#menuView.no-transition {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}

#menuView.no-transition.active {
    transition: none !important;
    animation: none !important;
    transform: none !important;
}


@media (max-width: 600px) {
    #menuView.no-transition {
        transition: none !important;
        animation: none !important;
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    #menuView.no-transition.active {
        transition: none !important;
        animation: none !important;
        transform: translateX(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
}


#productView {
    position: fixed;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

#productView.active {
    position: fixed;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}


.modal-close-btn {
    display: none;
}


.product-modal-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 100%;
    min-height: 100vh;
    overflow-y: auto;
    overflow-x: hidden;
    overscroll-behavior: none;
    
    will-change: height;
    
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}


.product-modal-left,
.product-modal-right {
    width: 100%;
    max-width: 100%;
}

.product-modal-left {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: block;
    line-height: 0;
    overflow: hidden;
    
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.product-modal-right {
    position: relative;
    margin: 0;
    padding: 0;
}


.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-md) var(--spacing-lg);
    background-color: var(--visitor-menu-bg);
    border-bottom: none;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    height: 62px;
    min-height: 62px;
    max-height: 62px;
}


#menuView .header {
    position: sticky;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
}

#menuView .header::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 1;
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


#productView .header,
#productView header.header {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.5) 25%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.3) 75%,
        rgba(255, 255, 255, 0.2) 100%) !important;
    background-color: transparent !important;
    backdrop-filter: blur(50px) saturate(250%) brightness(1.3) contrast(1.3) hue-rotate(20deg) !important;
    -webkit-backdrop-filter: blur(50px) saturate(250%) brightness(1.3) contrast(1.3) hue-rotate(20deg) !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4) !important;
    box-shadow: 
        0 16px 64px rgba(0, 0, 0, 0.2),
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.95),
        inset 0 -1px 0 rgba(255, 255, 255, 0.4) !important;
    position: sticky !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 9999 !important;
    overflow: hidden;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease !important;
    width: 100% !important;
    
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: var(--spacing-md) var(--spacing-lg) !important;
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
    
    contain: layout style !important;
    will-change: transform !important;
}


#productView .header:hover,
#productView header.header:hover {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.7) 0%,
        rgba(255, 255, 255, 0.6) 25%,
        rgba(255, 255, 255, 0.5) 50%,
        rgba(255, 255, 255, 0.4) 75%,
        rgba(255, 255, 255, 0.3) 100%) !important;
    background-color: transparent !important;
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.25),
        0 12px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -1px 0 rgba(255, 255, 255, 0.5) !important;
}

#productView .header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.3) 0%, 
        rgba(255, 255, 255, 0.2) 20%,
        rgba(255, 255, 255, 0.1) 40%,
        rgba(255, 255, 255, 0.05) 60%,
        rgba(255, 255, 255, 0.02) 80%,
        transparent 100%);
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: overlay;
}

#productView .header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.6) 0%,
        rgba(255, 255, 255, 0.3) 50%,
        rgba(255, 255, 255, 0.1) 100%);
    border-radius: inherit;
    pointer-events: none;
    mix-blend-mode: soft-light;
}


#productView .header.scrolled,
#productView header.header.scrolled {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.85) 0%,
        rgba(255, 255, 255, 0.8) 25%,
        rgba(255, 255, 255, 0.75) 50%,
        rgba(255, 255, 255, 0.7) 75%,
        rgba(255, 255, 255, 0.65) 100%) !important;
    background-color: transparent !important;
    backdrop-filter: blur(70px) saturate(300%) brightness(1.4) contrast(1.4) hue-rotate(25deg) !important;
    -webkit-backdrop-filter: blur(70px) saturate(300%) brightness(1.4) contrast(1.4) hue-rotate(25deg) !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.6) !important;
    box-shadow: 
        0 20px 80px rgba(0, 0, 0, 0.25),
        0 12px 48px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.98),
        inset 0 -1px 0 rgba(255, 255, 255, 0.5) !important;
}

#productView .header.intense-scroll,
#productView header.header.intense-scroll {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95) 0%,
        rgba(255, 255, 255, 0.9) 25%,
        rgba(255, 255, 255, 0.85) 50%,
        rgba(255, 255, 255, 0.8) 75%,
        rgba(255, 255, 255, 0.75) 100%) !important;
    background-color: transparent !important;
    backdrop-filter: blur(90px) saturate(350%) brightness(1.5) contrast(1.5) hue-rotate(30deg) !important;
    -webkit-backdrop-filter: blur(90px) saturate(350%) brightness(1.5) contrast(1.5) hue-rotate(30deg) !important;
    border: 1px solid rgba(255, 255, 255, 0.9) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7) !important;
    box-shadow: 
        0 24px 96px rgba(0, 0, 0, 0.3),
        0 16px 64px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.99),
        inset 0 -1px 0 rgba(255, 255, 255, 0.6) !important;
}

.back-btn {
    background: none;
    border: none;
    padding: var(--spacing-sm);
    cursor: pointer;
    color: var(--primary-black);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-btn:hover {
    transform: translateX(-2px);
}

.back-btn svg {
    width: 32px;
    height: 32px;
    stroke-width: 3.5;
    color: var(--primary-black);
}


#productView .back-btn {
    background: none;
    border: none;
    color: var(--primary-black);
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: var(--spacing-md);
}

#productView .cart-btn {
    display: none !important;
}

#productView .cart-btn::before {
    display: none;
}

#productView .cart-btn:hover::before {
    display: none;
}

#productView .cart-btn:hover {
    display: none !important;
}

.header-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
    letter-spacing: -0.01em;
}


#productView .header-title {
    color: var(--primary-black);
    text-shadow: 
        0 1px 2px rgba(255, 255, 255, 0.8),
        0 2px 4px rgba(255, 255, 255, 0.4);
    font-weight: 600;
    position: relative;
    z-index: 2;
    background: linear-gradient(to bottom, 
        rgba(255, 255, 255, 0.1) 0%,
        rgba(255, 255, 255, 0.05) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    
    text-align: left;
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}


#productView .cart-count {
    display: none !important;
}

.cart-btn {
    display: none;
}

.cart-count {
    display: none;
}


.header-music-info {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    flex: 1;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
}

.header-music-info:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: translateY(-1px);
}


#menuView .header-music-info {
    cursor: default;
}

#menuView .header-music-info:hover {
    background: transparent;
    transform: none;
}

.music-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 0;
    flex: 1;
    max-width: 300px;
    height: 40px;
    min-height: 40px;
    max-height: 40px;
    justify-content: center;
}


.music-text.shop-mode {
    flex-direction: row;
    align-items: center;
}

.music-track {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-width: 100%;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    opacity: 1;
    min-height: 20px;
    display: flex;
    align-items: center;
}

.music-artist {
    font-size: 12px;
    color: var(--tertiary-black);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.2;
    max-width: 100%;
    opacity: 0.8;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    min-height: 16px;
    display: flex;
    align-items: center;
}


.music-track.shop-name {
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-black);
    letter-spacing: -0.01em;
}

.music-artist.shop-name {
    font-weight: 500;
    color: var(--primary-black);
    opacity: 0.9;
}


.music-track.transitioning {
    transform: translateY(-5px);
    opacity: 0;
}

.music-artist.transitioning {
    transform: translateY(-5px);
    opacity: 0;
}

.music-track.entering {
    transform: translateY(5px);
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.music-artist.entering {
    transform: translateY(5px);
    opacity: 0;
    animation: fadeInUp 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s forwards;
}

@keyframes fadeInUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}


.music-animation {
    display: none;
    align-items: center;
    gap: 2px;
    height: 16px;
    flex-shrink: 0;
    padding: 2px 0;
}

.music-line {
    width: 4px;
    background: linear-gradient(to bottom, var(--primary-black), var(--secondary-black));
    border-radius: 2px;
    box-shadow: 
        0 0 4px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.music-line:nth-child(1) {
    height: 12px;
}

.music-line:nth-child(2) {
    height: 17px;
}

.music-line:nth-child(3) {
    height: 10px;
}

@keyframes musicBeat1 {
    0%, 20% { 
        transform: scaleY(0.6);
        opacity: 0.8;
    }
    40% { 
        transform: scaleY(1);
        opacity: 1;
    }
    60% { 
        transform: scaleY(0.8);
        opacity: 0.9;
    }
    80%, 100% { 
        transform: scaleY(0.5);
        opacity: 0.8;
    }
}

@keyframes musicBeat2 {
    0%, 30% { 
        transform: scaleY(0.5);
        opacity: 0.8;
    }
    50% { 
        transform: scaleY(0.9);
        opacity: 0.9;
    }
    70% { 
        transform: scaleY(1);
        opacity: 1;
    }
    90%, 100% { 
        transform: scaleY(0.6);
        opacity: 0.8;
    }
}

@keyframes musicBeat3 {
    0%, 15% { 
        transform: scaleY(0.6);
        opacity: 0.8;
    }
    35% { 
        transform: scaleY(0.8);
        opacity: 0.9;
    }
    55% { 
        transform: scaleY(1);
        opacity: 1;
    }
    75% { 
        transform: scaleY(0.7);
        opacity: 0.9;
    }
    90%, 100% { 
        transform: scaleY(0.5);
        opacity: 0.8;
    }
}

.music-animation.playing {
    display: flex !important;
}


.music-animation.playing .music-line:nth-child(1) {
    animation: musicBeat1 1.4s ease-in-out infinite;
    animation-delay: 0s;
}

.music-animation.playing .music-line:nth-child(2) {
    animation: musicBeat2 1.6s ease-in-out infinite;
    animation-delay: 0.2s;
}

.music-animation.playing .music-line:nth-child(3) {
    animation: musicBeat3 1.2s ease-in-out infinite;
    animation-delay: 0.4s;
}


.music-animation:not(.playing) .music-line {
    animation: none;
    transform: scaleY(0.6);
    opacity: 0.8;
}


.category-btn .info-icon {
    width: 20px;
    height: 20px;
    color: currentColor;
}


.item-card.shop-info-card,
.item-card.shop-social-card,
.item-card.shop-info-useful-card,
.item-card.shop-info-card {
    display: flex;
    flex-direction: column;
    background: var(--visitor-menu-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--visitor-surface-2);
    width: 100%;
    gap: var(--spacing-lg);
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.6s ease-out forwards;
    outline: none;
    overflow: visible;
}

.item-card.shop-info-card:focus,
.item-card.shop-social-card:focus,
.item-card.shop-info-useful-card:focus,
.item-card.shop-info-card:active,
.item-card.shop-social-card:active,
.item-card.shop-info-useful-card:active {
    outline: none;
    border: 1px solid var(--visitor-surface-2);
}

.item-card.shop-info-card {
    animation-delay: 0.1s;
}

.item-card.shop-social-card {
    animation-delay: 0.2s;
}

.item-card.shop-info-useful-card {
    animation-delay: 0.3s;
}


.shop-header {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.shop-profile-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.shop-profile-image:hover {
    transform: scale(1.05);
}

.profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--tertiary-white);
    border-radius: var(--radius-lg);
    font-size: 48px;
    font-weight: 600;
    color: var(--secondary-black);
    font-family: var(--font-display);
}

.shop-title-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.shop-name {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.shop-tagline {
    font-family: var(--font-text);
    font-size: 14px;
    color: var(--tertiary-black);
    margin: 0;
    line-height: 1.4;
}


.shop-details {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    width: 100%;
    margin-bottom: var(--spacing-md);
    position: relative;
    overflow: visible;
}

.shop-detail-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-family: var(--font-text);
    font-size: 14px;
    color: var(--secondary-black);
    position: relative;
}

.detail-icon {
    flex-shrink: 0;
    color: var(--primary-black);
}

.phone-number-clickable {
    cursor: pointer;
    transition: color 0.2s ease;
}

.phone-number-clickable:hover {
    color: var(--accent-blue);
    text-decoration: underline;
}

.address-clickable {
    cursor: pointer;
    transition: background 0.2s ease, transform 0.1s ease;
}

.address-clickable:hover {
    
    background: transparent;
    transform: none;
}

.address-unclickable {
    cursor: default;
}


.working-hours-item {
    cursor: pointer;
    position: relative;
}

.working-hours-text {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    flex: 1;
}

.today-hours {
    font-weight: 500;
}

.hours-arrow {
    transition: transform 0.3s ease;
    color: var(--tertiary-black);
}


.working-hours-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: var(--spacing-md);
}

.working-hours-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.working-hours-modal {
    background: var(--primary-white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.working-hours-modal-overlay.active .working-hours-modal {
    transform: scale(1);
}

.working-hours-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--tertiary-white);
}

.working-hours-modal-header h3 {
    margin: 0;
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
}

.working-hours-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--spacing-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-black);
    transition: color 0.2s ease, background 0.2s ease;
    border-radius: var(--radius-sm);
    width: 32px;
    height: 32px;
}

.working-hours-modal-close:hover {
    background: var(--tertiary-white);
    color: var(--primary-black);
}

.working-hours-address {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid var(--tertiary-white);
    color: var(--secondary-black);
    font-size: 14px;
}

.working-hours-address .address-icon {
    flex-shrink: 0;
    color: var(--primary-black);
}

.working-hours-modal-content {
    padding: var(--spacing-lg);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.hours-day {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm);
    font-size: 15px;
    color: var(--secondary-black);
    border-radius: var(--radius-sm);
    transition: background 0.2s ease;
}

.hours-day:hover {
    background: var(--tertiary-white);
}

.hours-day-today {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.02) 100%);
    border: 1px solid rgba(0, 0, 0, 0.1);
    font-weight: 600;
    color: var(--primary-black);
}

.hours-day-today:hover {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.08) 0%, rgba(0, 0, 0, 0.04) 100%);
}


.shop-action-buttons {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    width: 100%;
}

.review-us-btn,
.reservation-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-lg);
    background: var(--primary-black);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--primary-white);
    font-family: var(--font-display);
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.review-us-btn {
    width: auto;
    align-self: flex-start;
    margin-top: var(--spacing-sm);
}

.reservation-btn {
    width: 100%;
}

.reservation-btn {
    background: var(--primary-black);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.review-us-btn:active,
.reservation-btn:active {
    transform: scale(0.98);
}

.review-us-btn:focus,
.reservation-btn:focus,
.review-us-btn:focus-visible,
.reservation-btn:focus-visible {
    outline: none;
}

.review-icon,
.reservation-icon {
    width: 18px;
    height: 18px;
}


.shop-social-card {
    align-items: center;
    text-align: center;
}

.card-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 var(--spacing-md) 0;
    letter-spacing: -0.01em;
}

.shop-social-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-lg);
    background: var(--tertiary-white);
    color: var(--tertiary-black);
    text-decoration: none;
    transition: all 0.3s ease;
    outline: none;
    border: none;
}

.social-link:hover {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.social-link:active,
.social-link:focus,
.social-link:focus-visible {
    transform: translateY(0);
    outline: none;
}


.shop-info-useful-card {
    gap: var(--spacing-md);
}

.useful-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.language-selector-container {
    display: flex;
    align-items: center;
}

.language-selector {
    padding: var(--spacing-xs) var(--spacing-sm);
    background: var(--visitor-surface);
    border: 1px solid var(--quaternary-black);
    border-radius: var(--radius-md);
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 500;
    color: var(--primary-black);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: all 0.2s ease;
    min-width: 100px;
    padding-right: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 8px center;
}

.language-selector:hover {
    background-color: var(--visitor-surface-2);
    border-color: var(--secondary-black);
}

.language-selector:focus {
    background-color: var(--visitor-surface-2);
    border-color: var(--accent-blue);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.1);
}

.useful-info-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
}

.useful-info-item {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
}

.info-label {
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 500;
    color: var(--tertiary-black);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.language-selector-wrapper {
    position: relative;
    width: 100%;
}

.language-selector-icon {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    object-fit: contain;
    z-index: 1;
    opacity: 0.8;
    transition: opacity 0.2s ease;
    pointer-events: none;
}

.language-selector-wrapper:hover .language-selector-icon {
    opacity: 1;
}

.language-selector {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-md);
    padding-right: 40px;
    padding-left: 44px;
    background: var(--visitor-surface);
    border: none;
    border-radius: var(--radius-md);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    letter-spacing: 0.5px;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    outline: none;
    transition: all 0.2s ease;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}

.language-selector:hover {
    background: var(--visitor-surface-2);
}

.language-selector:focus {
    background: var(--visitor-surface-2);
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}


.useful-info-item .language-selector-wrapper .language-selector {
    transition: none;
}
.useful-info-item .language-selector:hover {
    background-color: var(--visitor-surface-2);
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.useful-info-item .language-selector-wrapper:hover .language-selector-icon {
    opacity: 0.8;
}


.useful-info-item .language-selector-wrapper {
    width: 100%;
}

.wifi-password-row {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.info-value-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--visitor-surface);
    border-radius: var(--radius-md);
    flex: 1;
}

.info-value {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    letter-spacing: 0.5px;
    flex: 1;
}

.copy-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--tertiary-black);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    outline: none;
}

.copy-btn:hover {
    background: var(--visitor-surface-2);
    color: var(--primary-black);
}

.copy-btn:focus,
.copy-btn:focus-visible,
.copy-btn:active {
    outline: none;
}

.copy-btn:active {
    transform: scale(0.95);
}

.toggle-password-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary-black);
    transition: color 0.2s ease;
    margin-right: 8px;
}

.toggle-password-btn:hover {
    color: var(--accent-blue);
}

.wifi-password-hidden {
    font-family: monospace;
    letter-spacing: 2px;
}

.qr-code-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: var(--radius-sm);
    color: var(--tertiary-black);
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    outline: none;
    margin-right: 8px;
}

.qr-code-btn:hover {
    background: var(--secondary-white);
    color: var(--primary-black);
}

.qr-code-btn:focus,
.qr-code-btn:focus-visible,
.qr-code-btn:active {
    outline: none;
}

.qr-code-btn:active {
    transform: scale(0.95);
}


.wifi-qr-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.wifi-qr-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wifi-qr-modal {
    background: var(--primary-white);
    border-radius: 20px;
    max-width: 400px;
    width: 90%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.wifi-qr-modal-overlay.active .wifi-qr-modal {
    transform: scale(1);
}

.wifi-qr-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-lg);
    border-bottom: 1px solid var(--secondary-white);
}

.wifi-qr-modal-header h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
}

.wifi-qr-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--tertiary-black);
    transition: color 0.2s ease;
    border-radius: var(--radius-sm);
}

.wifi-qr-modal-close:hover {
    color: var(--primary-black);
    background: var(--secondary-white);
}

.wifi-qr-modal-content {
    padding: var(--spacing-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wifi-qr-code-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    border-radius: 16px;
    overflow: hidden;
}

.wifi-qr-code-container canvas {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
}


@media (max-width: 600px) {
    .shop-header {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
    }
    
    .shop-profile-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }
    
    .shop-name {
        font-size: 20px;
    }
    
    .shop-detail-item {
        font-size: 13px;
    }
    
    .shop-action-buttons {
        gap: var(--spacing-xs);
    }
    
    .review-us-btn,
    .reservation-btn {
        padding: 16px var(--spacing-md);
        font-size: 14px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
    }
    
    .info-value {
        font-size: 15px;
    }
}

@media (min-width: 601px) and (max-width: 1000px) {
    .shop-profile-image {
        width: 120px;
        height: 120px;
        border-radius: 50%;
    }
    
    .shop-name {
        font-size: 24px;
    }
    
    .shop-social-links {
        gap: var(--spacing-lg);
    }
    
    .social-link {
        width: 64px;
        height: 64px;
    }
}


.shop-image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-image-viewer.active {
    opacity: 1;
    visibility: visible;
}

.shop-image-viewer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-lg);
    padding: var(--spacing-xl);
    transform: scale(0.9);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.shop-image-viewer.active .shop-image-viewer-content {
    transform: scale(1);
}

.shop-image-viewer-image {
    width: 80vw;
    max-width: 600px;
    height: 80vw;
    max-height: 600px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 8px 24px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.8);
    animation: imageZoomIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

@keyframes imageZoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.shop-image-viewer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.shop-image-back-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-sm) var(--spacing-lg);
    background: var(--primary-white);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--primary-black);
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(10px);
    animation: buttonSlideUp 0.3s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}

@keyframes buttonSlideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.shop-image-back-btn:active {
    transform: scale(0.95);
}

.shop-image-back-btn svg {
    width: 20px;
    height: 20px;
}


@media (max-width: 600px) {
    .shop-image-viewer-image {
        width: 85vw;
        height: 85vw;
        max-width: 450px;
        max-height: 450px;
    }
    
    .shop-image-back-btn {
        font-size: 15px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
}

@media (max-width: 480px) {
    .shop-image-viewer-image {
        width: 90vw;
        height: 90vw;
        max-width: 400px;
        max-height: 400px;
    }
}


.categories-section {
    padding: var(--spacing-md) var(--spacing-lg);
    position: relative;
    z-index: 2;
    pointer-events: none;
}

.menu-top-bar {
    position: relative;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    overflow: hidden;
}


.menu-top-bar::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -12px;
    height: 12px;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0));
    pointer-events: none;
    z-index: 2;
}


.menu-top-bar.sticky-pills::after {
    opacity: calc(1 - var(--sticky-collapse-progress, 0));
}

.categories-section * {
    pointer-events: auto;
}

.categories-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    transition: margin 0.3s ease;
}


.categories-section.search-active .categories-header {
    margin-bottom: var(--spacing-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

.view-all-link {
    color: var(--accent-blue);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: opacity 0.2s ease;
}

.view-all-link:hover {
    opacity: 0.7;
}

.categories-list {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding-bottom: var(--spacing-sm);
    -webkit-overflow-scrolling: touch;
    width: 100%;
    max-width: 100%;
}

.categories-list::-webkit-scrollbar {
    display: none;
}

.category-btn {
    background: var(--visitor-menu-bg);
    border: none;
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-xl);
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-black);
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.category-btn.active {
    background: var(--primary-black);
    color: var(--primary-white);
    transform: scale(1.02);
}


.search-section {
    padding: 0 var(--spacing-lg) var(--spacing-md);
    position: relative;
    z-index: 3;
    pointer-events: auto;
}


.menu-top-bar.about-us-active .search-section {
    display: none;
}


.menu-top-bar.about-us-active + .items-section #currentCategoryTitle {
    display: block !important;
}

.search-container {
    position: relative;
    display: flex;
    align-items: center;
    background: var(--visitor-menu-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-sm) var(--spacing-md);
    transition: all 0.2s ease;
    box-sizing: border-box;
    pointer-events: auto !important;
    z-index: 1;
    isolation: isolate;
}


body.white-theme-contrast .category-btn:not(.active),
body.white-theme-contrast .search-container {
    background: #f2f2f7;
}

body.white-theme-contrast {
    --shadow-sm: 0 1px 3px rgba(120, 120, 128, 0.2);
    --shadow-md: 0 4px 12px rgba(120, 120, 128, 0.25);
    --shadow-lg: 0 8px 24px rgba(120, 120, 128, 0.28);
}

body.black-theme-contrast {
    --primary-black: #f7f7f9;
    --secondary-black: #e5e5ea;
    --tertiary-black: #b8b8bf;
    --quaternary-black: #9a9aa3;
    --visitor-divider: rgba(255, 255, 255, 0.14);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.45);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.55);
}

body.black-theme-contrast .category-btn:not(.active),
body.black-theme-contrast .search-container,
body.black-theme-contrast .item-card,
body.black-theme-contrast .shop-info-useful-card .info-value-wrapper,
body.black-theme-contrast .shop-info-useful-card .language-selector {
    background: var(--visitor-surface);
}

body.black-theme-contrast .category-btn.active,
body.black-theme-contrast .review-us-btn,
body.black-theme-contrast .reservation-btn {
    background: #2a2a30;
    color: #ffffff;
    border: 1px solid #3a3a42;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.38);
}

body.black-theme-contrast #menuView .header,
body.black-theme-contrast .notch-fill {
    background-color: var(--visitor-surface-2);
}

body.black-theme-contrast .social-link {
    background: var(--visitor-surface-2);
    color: var(--secondary-black);
}

body.black-theme-contrast .social-link:hover {
    background: #303038;
    color: #ffffff;
}

body.black-theme-contrast .all-categories-header {
    border-bottom-color: var(--visitor-divider);
}

body.black-theme-contrast .all-categories-close:hover {
    background: #303038;
    color: #ffffff;
}

body.black-theme-contrast .working-hours-modal-close:hover,
body.black-theme-contrast .wifi-qr-modal-close:hover,
body.black-theme-contrast .music-popup-close:hover,
body.black-theme-contrast .modal-close-btn:hover {
    background: #303038;
    color: #ffffff;
    border-color: #3f3f49;
}

body.black-theme-contrast .all-category-card.active {
    background: #2a2a30;
    border-color: #3a3a42;
    color: #ffffff;
}

body.black-theme-contrast .all-category-card.active:hover {
    background: #303038;
    border-color: #3f3f49;
}

body.black-theme-contrast .all-category-card.active .all-category-name {
    color: #ffffff;
}

body.black-theme-contrast .all-categories-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
}

body.black-theme-contrast .all-categories-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
}

body.black-theme-contrast .all-categories-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.28);
}

body.white-theme-contrast .search-container:focus-within {
    background: #f5f5f7;
}

body.white-theme-contrast .item-card {
    background: #ffffff;
    border-color: #f2f2f7;
}


body.white-theme-contrast .shop-info-useful-card .info-value-wrapper,
body.white-theme-contrast .shop-info-useful-card .language-selector {
    background: #f2f2f7;
}

body.white-theme-contrast .shop-info-useful-card .language-selector:hover,
body.white-theme-contrast .shop-info-useful-card .language-selector:focus {
    background: #f2f2f7;
}


body.white-theme-contrast #menuView .header {
    background-color: #f2f2f7;
}

body.white-theme-contrast #menuView .header::after {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0));
}


body.white-theme-contrast .notch-fill {
    background-color: #f2f2f7;
}


.search-section.search-active .search-container {
    border-radius: var(--radius-xl);
    padding: var(--spacing-sm) var(--spacing-md);
}

.search-container:focus-within {
    background: var(--visitor-surface-2);
}

.search-icon {
    color: var(--quaternary-black);
    margin-right: var(--spacing-sm);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.search-input {
    flex: 1;
    border: none;
    background: none;
    outline: none;
    font-family: var(--font-text);
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-black);
    padding: 0;
    line-height: 1.2;
    height: auto;
    pointer-events: auto !important;
    z-index: 2;
    position: relative;
}

.search-input::placeholder {
    color: var(--quaternary-black);
}

.filter-btn {
    display: none;
}


.clear-search-btn {
    background: none;
    border: none;
    padding: 4px;
    cursor: pointer;
    color: var(--quaternary-black);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8);
    pointer-events: none;
    margin-left: 4px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    position: relative;
    z-index: 10;
}

.clear-search-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto !important;
    z-index: 3;
    position: relative;
}

.clear-search-btn:hover {
    background: var(--visitor-surface-2);
    color: var(--primary-black);
}

.clear-search-btn:active {
    transform: scale(0.9);
}


.categories-list.search-mode {
    
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all 0.3s ease;
}

.category-btn.hidden-on-search {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    width: 0 !important;
    max-width: 0 !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    overflow: hidden;
    flex-shrink: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-btn.search-active-info {
    animation: pulseInfo 0.4s ease;
    
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100 !important;
    opacity: 1 !important;
    transform: scale(1) !important;
    pointer-events: auto !important;
    cursor: pointer !important;
    width: auto !important;
    max-width: none !important;
    min-width: auto !important;
    margin: 0 !important;
    padding: var(--spacing-sm) var(--spacing-md) !important;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes pulseInfo {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}


.search-section.search-active {
    
    transform: translateY(-60px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 45;
    pointer-events: auto !important;
}

.search-section.search-active * {
    pointer-events: auto !important;
}


.search-section.search-active .search-container {
    margin-left: 60px;
    margin-right: 0;
    width: calc(100% - 60px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: auto !important;
    z-index: 1;
}


.categories-section.search-active {
    
    position: relative;
    
    z-index: 50;
    
    padding-bottom: var(--spacing-md);
    transition: padding 0.3s ease;
    pointer-events: none !important;
}

.categories-section.search-active .category-btn.search-active-info {
    pointer-events: auto !important;
}

.categories-section.search-active .categories-header * {
    pointer-events: auto;
}

.categories-section.search-active .categories-list {
    
    height: 48px;
    min-height: 48px;
    padding: 0;
    margin: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    position: relative;
    display: flex;
    align-items: center;
    pointer-events: none !important;
}


.search-category-header {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--visitor-divider);
    opacity: 0;
    animation: fadeSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    width: 100%;
    clear: both;
}

.search-category-header:first-child {
    margin-top: 0;
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.search-category-items {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-2xl);
    width: 100%;
}


.search-result-item {
    opacity: 0;
    animation: fadeSlideInItem 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes fadeSlideInItem {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


.items-section.search-mode {
    animation: fadeIn 0.4s ease;
    
    transform: translateY(-60px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.items-section.search-mode #currentCategoryTitle {
    display: block !important;
    visibility: visible !important;
}


.items-section {
    padding: 0 var(--spacing-lg) var(--spacing-2xl);
    padding-bottom: calc(var(--spacing-2xl) + var(--spacing-xl));
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.items-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    padding-bottom: var(--spacing-xl);
}


.items-section.search-mode .items-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.item-card {
    display: flex;
    align-items: center;
    background: var(--visitor-menu-bg);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 1px solid var(--visitor-surface-2);
    position: relative;
}

.item-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    border-color: var(--quaternary-black);
}


.item-card.shop-info-card:hover,
.item-card.shop-social-card:hover,
.item-card.shop-info-useful-card:hover {
    transform: none;
    box-shadow: var(--shadow-md);
    border-color: var(--visitor-surface-2);
}

.item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    object-fit: cover;
    margin-right: var(--spacing-md);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
    transition: all 0.2s ease;
}

.item-image:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-md);
}

.item-details {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.item-price-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-sm);
    width: 100%;
}

.item-tag-emojis {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    gap: 4px;
    font-size: 18px;
    line-height: 1;
}

.item-tag-emoji {
    display: inline-block;
    user-select: none;
}

.item-name {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.item-description {
    font-size: 14px;
    color: var(--tertiary-black);
    line-height: 1.4;
    margin-bottom: var(--spacing-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.item-price {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    flex-shrink: 0;
    min-width: 0;
}



.product-image-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 60vh;
    min-height: 400px;
    max-height: 600px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    contain: layout;
    background: #f8f8f8;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: block;
    flex-shrink: 0;
    line-height: 0;
    font-size: 0;
    
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(1.05) contrast(1.1) saturate(1.1);
    opacity: 0;
    display: block;
    position: absolute;
    inset: -0.5px;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    will-change: opacity;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: opacity 0.3s ease-out;
    border-radius: inherit;
    margin: 0;
    padding: 0;
}


@keyframes imageFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}


.product-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0, 0, 0, 0.1) 0%,
        transparent 30%,
        transparent 70%,
        rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
    z-index: 1;
}

.product-image-container.no-product-image::before {
    opacity: 0;
}


.product-image-container.no-product-image {
    background: linear-gradient(165deg, var(--tertiary-white) 0%, var(--secondary-white) 100%);
}

.product-image-container.no-product-image .product-image {
    opacity: 0 !important;
    visibility: hidden;
}


@keyframes allergenItemEnter {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


@keyframes tagItemEnter {
    from {
        opacity: 0;
        transform: scale(0.8) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}


#productView {
    position: relative;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.2) 0%, 
        rgba(255, 255, 255, 0.1) 50%, 
        rgba(255, 255, 255, 0.2) 100%);
}

@keyframes liquidGlass {
    0%, 100% {
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    25% {
        transform: translateX(-10px) translateY(-5px) rotate(1deg);
        opacity: 0.8;
    }
    50% {
        transform: translateX(5px) translateY(-10px) rotate(-1deg);
        opacity: 0.6;
    }
    75% {
        transform: translateX(-5px) translateY(5px) rotate(0.5deg);
        opacity: 0.9;
    }
}

.product-details-card {
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(25px) saturate(200%);
    -webkit-backdrop-filter: blur(25px) saturate(200%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
    padding: var(--spacing-xl);
    margin-top: -30px;
    position: relative;
    z-index: 10;
    box-shadow: 
        0 12px 48px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(255, 255, 255, 0.2);
    min-height: calc(100vh - 300px);
    padding-bottom: 180px;
    opacity: 0;
    animation: cardFadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}


@keyframes cardFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-title {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
    line-height: 1.2;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.1s forwards;
}

.product-description {
    font-size: 16px;
    color: var(--tertiary-black);
    line-height: 1.5;
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

.product-price-display {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: var(--spacing-xl);
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    position: relative;
}

.product-price-display::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%,
        var(--tertiary-black) 20%,
        var(--tertiary-black) 80%,
        transparent 100%);
    opacity: 0.3;
}

.price-currency {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 500;
    color: var(--secondary-black);
    line-height: 1;
}

.price-amount {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-black);
    line-height: 1;
    letter-spacing: -0.01em;
}


@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.subsection-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}


.allergens-section {
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
}


.nutritional-section {
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
}

.nutritional-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nutritional-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid var(--tertiary-white);
}

.nutritional-item:last-child {
    border-bottom: none;
}

.nutritional-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-black);
}

.nutritional-value {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-black);
}


.tags-section {
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.tag-item {
    display: inline-flex;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-md);
    background: var(--primary-white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--tertiary-white);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    animation: tagItemEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    cursor: default;
    position: relative;
    overflow: hidden;
}

.tag-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.tag-item:hover::before {
    left: 100%;
}


.tag-item:nth-child(1) { animation-delay: 0.6s; }
.tag-item:nth-child(2) { animation-delay: 0.65s; }
.tag-item:nth-child(3) { animation-delay: 0.7s; }
.tag-item:nth-child(4) { animation-delay: 0.75s; }
.tag-item:nth-child(5) { animation-delay: 0.8s; }
.tag-item:nth-child(6) { animation-delay: 0.85s; }
.tag-item:nth-child(n+7) { animation-delay: 0.9s; }

.tag-item:hover {
    background: var(--secondary-white);
    border-color: var(--quaternary-black);
    transform: translateY(-1px);
    box-shadow: var(--shadow-sm);
}

.tag-icon {
    width: 16px;
    height: 16px;
    margin-right: var(--spacing-xs);
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tag-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--secondary-black);
    text-transform: capitalize;
}


.tag-item.vegan {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.tag-item.vegetarian {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.tag-item.spicy {
    background: linear-gradient(135deg, #fff5f5, #ffe8e8);
    border-color: var(--accent-red);
    color: var(--accent-red);
}

.tag-item.gluten-free {
    background: linear-gradient(135deg, #f5f8ff, #e8f0ff);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.tag-item.dairy-free {
    background: linear-gradient(135deg, #fff8f5, #ffe8e0);
    border-color: var(--accent-orange);
    color: var(--accent-orange);
}

.tag-item.organic {
    background: linear-gradient(135deg, #f0f8f0, #e8f5e8);
    border-color: var(--accent-green);
    color: var(--accent-green);
}

.tag-item.low-carb {
    background: linear-gradient(135deg, #f8f5ff, #f0e8ff);
    border-color: var(--accent-purple);
    color: var(--accent-purple);
}

.tag-item.high-protein {
    background: linear-gradient(135deg, #f5f8ff, #e8f0ff);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

.allergens-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-xs);
}

.allergen-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--spacing-sm) var(--spacing-xs);
    background: transparent;
    border-radius: var(--radius-md);
    min-width: 64px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.8) translateY(10px);
    cursor: pointer;
    animation: allergenItemEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}


.allergen-item:nth-child(1) { animation-delay: 0.6s; }
.allergen-item:nth-child(2) { animation-delay: 0.65s; }
.allergen-item:nth-child(3) { animation-delay: 0.7s; }
.allergen-item:nth-child(4) { animation-delay: 0.75s; }
.allergen-item:nth-child(5) { animation-delay: 0.8s; }
.allergen-item:nth-child(6) { animation-delay: 0.85s; }
.allergen-item:nth-child(7) { animation-delay: 0.9s; }
.allergen-item:nth-child(n+8) { animation-delay: 0.95s; }

.allergen-item:hover {
    background: transparent;
}

.allergen-icon {
    width: 32px;
    height: 32px;
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.allergen-icon-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.allergen-name {
    font-size: 10px;
    font-weight: 500;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--secondary-black);
}


.extras-section {
    margin-bottom: var(--spacing-xl);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
}

.extras-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.extra-list-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--tertiary-white);
}

.extra-list-item:last-child {
    border-bottom: none;
}

.extra-name {
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-black);
}

.extra-price {
    font-size: 15px;
    font-weight: 600;
    color: var(--accent-blue);
    font-family: var(--font-display);
}

.no-extras {
    font-size: 14px;
    color: var(--tertiary-black);
    font-style: italic;
}


.loading {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: var(--spacing-2xl);
}

.spinner {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 0 auto;
}

.spinner div {
    width: 6%;
    height: 20%;
    background: #808080;
    position: absolute;
    left: 49%;
    top: 43%;
    opacity: 0;
    border-radius: 50px;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    animation: fade 1s linear infinite;
}

@keyframes fade {
    from { opacity: 1; }
    to { opacity: 0.25; }
}

.spinner div.bar1 {
    transform: rotate(0deg) translate(0, -130%);
    animation-delay: 0s;
}

.spinner div.bar2 {
    transform: rotate(30deg) translate(0, -130%);
    animation-delay: -0.9167s;
}

.spinner div.bar3 {
    transform: rotate(60deg) translate(0, -130%);
    animation-delay: -0.833s;
}

.spinner div.bar4 {
    transform: rotate(90deg) translate(0, -130%);
    animation-delay: -0.7497s;
}

.spinner div.bar5 {
    transform: rotate(120deg) translate(0, -130%);
    animation-delay: -0.667s;
}

.spinner div.bar6 {
    transform: rotate(150deg) translate(0, -130%);
    animation-delay: -0.5837s;
}

.spinner div.bar7 {
    transform: rotate(180deg) translate(0, -130%);
    animation-delay: -0.5s;
}

.spinner div.bar8 {
    transform: rotate(210deg) translate(0, -130%);
    animation-delay: -0.4167s;
}

.spinner div.bar9 {
    transform: rotate(240deg) translate(0, -130%);
    animation-delay: -0.333s;
}

.spinner div.bar10 {
    transform: rotate(270deg) translate(0, -130%);
    animation-delay: -0.2497s;
}

.spinner div.bar11 {
    transform: rotate(300deg) translate(0, -130%);
    animation-delay: -0.167s;
}

.spinner div.bar12 {
    transform: rotate(330deg) translate(0, -130%);
    animation-delay: -0.0833s;
}


@keyframes item-card-skeleton-shimmer {
    0% {
        transform: translate3d(0, 0, 0);
    }
    100% {
        transform: translate3d(-50%, 0, 0);
    }
}

.items-list--skeleton-loading {
    pointer-events: none;
}

.item-card.item-card--skeleton {
    cursor: default;
    animation: none;
    transform: none;
}

.item-card.item-card--skeleton:hover {
    transform: none;
    box-shadow: var(--shadow-sm);
    border-color: var(--visitor-surface-2);
}

.item-card-skeleton-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    margin-right: var(--spacing-md);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background-color: var(--tertiary-white);
}

.item-card-skeleton-image::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.12) 22%,
        rgba(255, 255, 255, 0.78) 25%,
        rgba(255, 255, 255, 0.12) 28%,
        transparent 50%,
        rgba(255, 255, 255, 0.12) 72%,
        rgba(255, 255, 255, 0.78) 75%,
        rgba(255, 255, 255, 0.12) 78%,
        transparent 100%
    );
    transform: translate3d(0, 0, 0);
    animation: item-card-skeleton-shimmer 1.75s linear infinite;
}

.item-card-skeleton-details {
    gap: 10px;
    justify-content: center;
}

.item-card-skeleton-line {
    height: 12px;
    border-radius: 6px;
    max-width: 100%;
    position: relative;
    overflow: hidden;
    background-color: var(--tertiary-white);
}

.item-card-skeleton-line::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 22%,
        rgba(255, 255, 255, 0.72) 25%,
        rgba(255, 255, 255, 0.1) 28%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 72%,
        rgba(255, 255, 255, 0.72) 75%,
        rgba(255, 255, 255, 0.1) 78%,
        transparent 100%
    );
    transform: translate3d(0, 0, 0);
    animation: item-card-skeleton-shimmer 1.75s linear infinite;
}

.item-card-skeleton-line--title {
    height: 16px;
    width: 72%;
    margin-bottom: 2px;
}

.item-card-skeleton-line--text {
    width: 100%;
}

.item-card-skeleton-line--short {
    width: 58%;
}

.item-card-skeleton-price-row {
    margin-top: auto;
    padding-top: 4px;
}

.item-card-skeleton-line--price {
    width: 56px;
    height: 14px;
}

body.white-theme-contrast .item-card-skeleton-image,
body.white-theme-contrast .item-card-skeleton-line {
    background-color: #ececf0;
}

body.white-theme-contrast .item-card-skeleton-image::after,
body.white-theme-contrast .item-card-skeleton-line::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.14) 22%,
        rgba(255, 255, 255, 0.92) 25%,
        rgba(255, 255, 255, 0.14) 28%,
        transparent 50%,
        rgba(255, 255, 255, 0.14) 72%,
        rgba(255, 255, 255, 0.92) 75%,
        rgba(255, 255, 255, 0.14) 78%,
        transparent 100%
    );
}

body.black-theme-contrast .item-card-skeleton-image,
body.black-theme-contrast .item-card-skeleton-line {
    background-color: #2a2a30;
}

body.black-theme-contrast .item-card-skeleton-image::after,
body.black-theme-contrast .item-card-skeleton-line::after {
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.06) 22%,
        rgba(255, 255, 255, 0.3) 25%,
        rgba(255, 255, 255, 0.06) 28%,
        transparent 50%,
        rgba(255, 255, 255, 0.06) 72%,
        rgba(255, 255, 255, 0.3) 75%,
        rgba(255, 255, 255, 0.06) 78%,
        transparent 100%
    );
}

@media (max-width: 480px) {
    .item-card-skeleton-image {
        width: 100px;
        height: 100px;
        border-radius: var(--radius-sm);
    }
}

@media (prefers-reduced-motion: reduce) {
    .item-card-skeleton-image::after,
    .item-card-skeleton-line::after {
        animation: none;
    }

    .item-card-skeleton-image,
    .item-card-skeleton-line {
        opacity: 0.88;
    }
}


.notification {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translate(-50%, -14px) scale(0.96);
    background: rgba(29, 29, 31, 0.94);
    color: var(--primary-white);
    padding: 10px 20px;
    border-radius: 999px;
    font-family: var(--font-text);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    opacity: 0;
    pointer-events: none;
    z-index: 11000;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: opacity 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.notification.notification-show {
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
}

.notification.notification-hide {
    opacity: 0;
    transform: translate(-50%, -20px) scale(0.95);
}


.music-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.music-popup-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


body.popup-open {
    overflow: hidden;
    height: 100vh;
}


body.service-actions-open {
    overflow: hidden;
    height: 100vh;
}


body.image-viewer-open {
    overflow: hidden;
    height: 100vh;
}


body.categories-modal-open {
    overflow: hidden;
    height: 100vh;
}

.music-popup {
    background: var(--visitor-menu-bg);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: all 0.3s ease;
}

.music-popup-overlay.active .music-popup {
    transform: scale(1) translateY(0);
}

.music-popup-header {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--spacing-md);
    position: relative;
    padding: var(--spacing-md) var(--spacing-lg);
    height: 70px;
    min-height: 70px;
    max-height: 70px;
}

.music-popup-title-container {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.music-popup-title {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
}

.soundtrack-logo-header {
    display: flex;
    align-items: center;
    opacity: 0.6;
}

.soundtrack-logo-header svg {
    width: 80px;
    height: 15px;
}

.music-popup-close {
    background: none;
    border: none;
    color: var(--tertiary-black);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-md);
    transition: all 0.2s ease;
    position: absolute;
    right: var(--spacing-sm);
    top: 50%;
    transform: translateY(-50%);
}

.music-popup-close:hover {
    background: var(--tertiary-white);
    color: var(--primary-black);
}

.music-popup-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md);
    position: relative;
}

.artwork-container {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    position: relative;
}

.album-cover {
    width: 200px;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.album-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vinyl-container {
    position: relative;
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -80px;
    z-index: 1;
}

.vinyl {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    position: relative;
    box-shadow: 
        0 0 0 2px #333,
        0 0 0 4px #1a1a1a,
        0 10px 30px rgba(0, 0, 0, 0.5);
    animation: vinylSpin 6s linear infinite;
    animation-play-state: paused;
}


.vinyl::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.vinyl::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
}


.vinyl {
    background-image: 
        radial-gradient(circle at 50% 50%, transparent 30px, rgba(255, 255, 255, 0.03) 30px, rgba(255, 255, 255, 0.03) 32px, transparent 32px),
        radial-gradient(circle at 50% 50%, transparent 50px, rgba(255, 255, 255, 0.02) 50px, rgba(255, 255, 255, 0.02) 52px, transparent 52px),
        radial-gradient(circle at 50% 50%, transparent 70px, rgba(255, 255, 255, 0.02) 70px, rgba(255, 255, 255, 0.02) 72px, transparent 72px),
        radial-gradient(circle at 50% 50%, transparent 90px, rgba(255, 255, 255, 0.01) 90px, rgba(255, 255, 255, 0.01) 92px, transparent 92px),
        linear-gradient(45deg, #1a1a1a, #2a2a2a);
}

.vinyl.playing {
    animation-play-state: running;
}

.vinyl-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vinyl-hole {
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
}

.vinyl-artwork {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: linear-gradient(135deg, #888888, #666666);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.vinyl-artwork img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.vinyl-artwork .music-note {
    color: var(--primary-white);
    font-size: 48px;
    font-weight: 600;
}

@keyframes vinylSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.music-popup-info {
    text-align: center;
    margin-top: var(--spacing-xs);
    padding: var(--spacing-md);
    background: transparent;
    border-radius: 0;
    backdrop-filter: none;
    border: none;
    margin-bottom: 0;
}

.music-popup-track {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-black);
    margin: 0 0 var(--spacing-sm) 0;
    line-height: 1.2;
    transition: all 0.5s ease-in-out;
}

.music-popup-artist {
    font-size: 16px;
    color: var(--tertiary-black);
    margin: 0 0 0 0;
    font-weight: 500;
    transition: all 0.5s ease-in-out;
    padding-bottom: var(--spacing-md);
}


.music-popup-track.shop-name {
    font-weight: 600;
    color: var(--primary-black);
}

.music-popup-artist.shop-name {
    font-weight: 500;
    color: var(--primary-black);
    opacity: 0.9;
}


.music-platform-buttons {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--spacing-xs);
    width: 100%;
    margin-top: 0;
    padding: 0 var(--spacing-sm) 0 var(--spacing-sm);
}

.soundtrack-logo-bottom {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-bottom: var(--spacing-xs);
    opacity: 0.6;
    width: 100%;
}

.soundtrack-logo-bottom svg {
    width: 80px;
    height: 15px;
}

.music-platform-separator {
    width: 100%;
    height: 1px;
    background: var(--tertiary-black);
    opacity: 0.2;
    margin-bottom: var(--spacing-sm);
    margin-top: 0;
}

.platform-label {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 500;
    color: var(--tertiary-black);
    margin-bottom: var(--spacing-xs);
    margin-top: 0;
}

.platform-buttons-row {
    display: flex;
    gap: var(--spacing-md);
    justify-content: flex-start;
    align-items: center;
}

.platform-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm);
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    width: 100px;
    height: 40px;
}

.platform-logo {
    width: 70%;
    height: 70%;
    object-fit: contain;
}


.apple-music-btn {
    background: rgb(250, 88, 106);
}

.apple-music-btn .platform-logo {
    width: 60%;
    height: 60%;
    object-fit: contain;
}


.spotify-btn {
    background: #1db954;
}


@media (max-width: 600px) {
    .menu-top-bar.sticky-pills {
        position: sticky;
        top: 62px;
        z-index: 50;
        background: var(--visitor-surface);
        
        padding-bottom: calc(2px + (var(--spacing-sm) - 2px) * (1 - var(--sticky-collapse-progress)));
        --sticky-collapse-progress: 0;
    }
    .menu-top-bar.sticky-pills .categories-section {
        position: relative;
        
        padding-top: calc(var(--spacing-xs) + (var(--spacing-md) - var(--spacing-xs)) * (1 - var(--sticky-collapse-progress)));
        padding-bottom: calc(var(--spacing-xs) + (var(--spacing-md) - var(--spacing-xs)) * (1 - var(--sticky-collapse-progress)));
    }
    .menu-top-bar.sticky-pills .categories-list {
        padding-bottom: calc(var(--spacing-sm) * (1 - var(--sticky-collapse-progress)));
    }
    .menu-top-bar.sticky-pills .categories-header {
        transition: max-height 0.25s ease, opacity 0.2s ease, margin 0.2s ease, padding 0.2s ease;
        max-height: 64px;
        overflow: hidden;
    }
    .menu-top-bar.sticky-pills .search-section {
        padding-top: 0;
        padding-bottom: var(--spacing-sm);
        transition: max-height 0.25s ease, opacity 0.2s ease, padding 0.2s ease;
        max-height: 56px;
        overflow: hidden;
    }

    
    .menu-top-bar.sticky-pills .categories-header {
        max-height: calc(64px * (1 - var(--sticky-collapse-progress)));
        opacity: calc(1 - var(--sticky-collapse-progress));
        margin-bottom: calc(var(--spacing-md) * (1 - var(--sticky-collapse-progress)));
    }

    .menu-top-bar.sticky-pills .search-section {
        max-height: calc(56px * (1 - var(--sticky-collapse-progress)));
        opacity: calc(1 - var(--sticky-collapse-progress));
        padding-bottom: calc(var(--spacing-sm) * (1 - var(--sticky-collapse-progress)));
    }
    .menu-top-bar.sticky-pills.collapsed .categories-header {
        max-height: 0;
        opacity: 0;
        margin: 0;
        padding-top: 0;
        padding-bottom: 0;
    }
    .menu-top-bar.sticky-pills.collapsed .search-section {
        max-height: 0;
        opacity: 0;
        padding: 0;
        margin: 0;
    }
    .menu-top-bar.sticky-pills.collapsed {
        padding-bottom: 2px;
    }
    .menu-top-bar.sticky-pills.collapsed .categories-section {
        padding-top: var(--spacing-xs);
        padding-bottom: var(--spacing-xs);
    }
    .menu-top-bar.sticky-pills.collapsed .categories-list {
        padding-bottom: 2px;
    }
    .menu-top-bar.sticky-pills .search-container {
        border-radius: var(--radius-lg);
        padding: var(--spacing-sm) var(--spacing-md);
    }
    .items-section.mobile-all-products .section-title#currentCategoryTitle {
        display: none;
    }
    
    .items-section.mobile-all-products.search-mode .section-title#currentCategoryTitle {
        display: block;
        margin-bottom: var(--spacing-md);
    }
    .items-section.mobile-all-products .items-list {
        gap: var(--spacing-md);
    }
    .category-section-mobile {
        scroll-margin-top: 140px;
        min-height: 0;
    }
    .category-section-mobile .search-category-header {
        margin: var(--spacing-lg) 0 var(--spacing-lg) 0;
        padding-bottom: var(--spacing-sm);
        font-size: 20px;
    }
    .category-section-mobile .search-category-items {
        margin-top: 0;
        padding-top: var(--spacing-sm);
        gap: var(--spacing-md);
        min-height: 0;
    }
    .category-section-mobile .search-category-header:first-child {
        margin-top: var(--spacing-sm);
    }
}


@media (max-width: 600px) {
    .header {
        padding: var(--spacing-md);
    }
    
    .shop-info-section,
    .categories-section,
    .search-section,
    .items-section {
        padding-left: var(--spacing-md);
        padding-right: var(--spacing-md);
    }
    
    .item-card.shop-info-card {
        padding: var(--spacing-xl) var(--spacing-md);
    }
    
    .shop-profile-image {
        width: 130px;
        height: 130px;
        border-radius: 50%;
    }
    
    .shop-name {
        font-size: 22px;
    }
    
    .shop-tagline {
        font-size: 13px;
    }
    
    .shop-detail-item {
        font-size: 13px;
    }
    
    .review-us-btn {
        font-size: 14px;
        padding: var(--spacing-sm) var(--spacing-md);
    }
    
    
    .search-section.search-active {
        transform: translateY(-56px);
        
        margin-bottom: -56px;
    }
    
    .search-section.search-active .search-container {
        margin-left: 56px;
        width: calc(100% - 56px);
    }
    
    .categories-section.search-active {
        padding-bottom: var(--spacing-sm);
        z-index: 50;
    }
    
    .items-section.search-mode {
        transform: translateY(-56px);
        
        padding-top: 120px;
    }
    .items-section.search-mode .search-category-header {
        margin-top: var(--spacing-lg);
        margin-bottom: var(--spacing-md);
    }
    .items-section.search-mode .search-category-header:first-child {
        margin-top: var(--spacing-md);
    }
    .items-section.search-mode .search-category-items {
        margin-top: 0;
        padding-top: var(--spacing-sm);
        gap: var(--spacing-md) !important;
        min-height: 0;
    }
    
    .product-details-card {
        padding: var(--spacing-lg);
        padding-bottom: 200px;
    }
    
    
    #productView {
        width: 100%;
        max-width: 100%;
    }
    
    .product-modal-container {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        
        scrollbar-width: none; 
        -ms-overflow-style: none; 
    }
    
    .product-modal-container::-webkit-scrollbar {
        display: none; 
        width: 0;
        height: 0;
        background: transparent;
    }
    
    .product-modal-left {
        margin: 0;
        padding: 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        position: relative;
    }
    
    .product-image-container {
        height: 50vh;
        min-height: 300px;
        max-height: 500px;
        margin: 0;
        padding: 0;
        overflow: hidden;
        width: 100%;
        position: relative;
    }

    .product-image-container.no-product-image {
        height: 38vh;
        min-height: 200px;
        max-height: 360px;
    }
    
    .product-image {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        height: 100%;
        
        width: 100vw;
        object-fit: cover;
        object-position: center;
        transform: translateZ(0);
        margin: 0;
        padding: 0;
        max-width: none;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price-display {
        margin-top: var(--spacing-lg);
        margin-bottom: 0;
    }
    
    .price-currency {
        font-size: 18px;
    }
    
    .price-amount {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .item-card {
        padding: var(--spacing-sm);
    }
    
    .item-image {
        width: 100px;
        height: 100px;
        border-radius: var(--radius-sm);
    }
    
    .item-name {
        font-size: 14px;
    }
    
    .item-description {
        font-size: 13px;
    }
    
    .music-platform-buttons {
        padding: var(--spacing-sm);
        gap: var(--spacing-xs);
    }
    
    .platform-buttons-row {
        gap: var(--spacing-sm);
    }
    
    .platform-btn {
        width: 90px;
        height: 35px;
        padding: var(--spacing-xs);
    }
    
    .platform-label {
        font-size: 13px;
    }
}


.item-card {
    animation: slideInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.item-card:nth-child(1) { animation-delay: 0.1s; }
.item-card:nth-child(2) { animation-delay: 0.2s; }
.item-card:nth-child(3) { animation-delay: 0.3s; }
.item-card:nth-child(4) { animation-delay: 0.4s; }
.item-card:nth-child(5) { animation-delay: 0.5s; }
.item-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.category-btn {
    animation: slideInLeft 0.5s ease-out;
    animation-fill-mode: both;
}

.category-btn:nth-child(1) { animation-delay: 0.1s; }
.category-btn:nth-child(2) { animation-delay: 0.15s; }
.category-btn:nth-child(3) { animation-delay: 0.2s; }
.category-btn:nth-child(4) { animation-delay: 0.25s; }
.category-btn:nth-child(5) { animation-delay: 0.3s; }
.category-btn:nth-child(6) { animation-delay: 0.35s; }

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: var(--tertiary-white);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb {
    background: var(--quaternary-black);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--tertiary-black);
}


@media (min-width: 601px) and (max-width: 1000px) {
    
    .shop-info-section,
    .categories-section,
    .search-section,
    .items-section {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }

    
    .header {
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--spacing-lg);
        padding-right: var(--spacing-lg);
    }

    
    .items-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-md);
    }
    
    
    .items-section.search-mode .items-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    
    .item-card {
        padding: var(--spacing-md);
    }

    .item-image {
        width: 120px;
        height: 120px;
    }

    
    .categories-list {
        gap: var(--spacing-sm);
    }
    
    
    .search-category-items {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-xl);
    }
    
    .search-category-header {
        font-size: 20px;
        margin: var(--spacing-xl) 0 var(--spacing-md) 0;
    }
    
    
    .search-section.search-active {
        transform: translateY(-60px);
    }
    
    .search-section.search-active .search-container {
        margin-left: 60px;
        width: calc(100% - 60px);
    }
    
    .categories-section.search-active {
        padding-bottom: var(--spacing-md);
        z-index: 50;
    }
    
    .items-section.search-mode {
        transform: translateY(-60px);
    }

    
    #productView {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--primary-white);
        z-index: 10000;
    }

    
    .product-modal-container {
        position: relative;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        display: flex;
        flex-direction: column;
    }

    
    .product-modal-left {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    
    .product-image-container {
        height: 45vh;
        min-height: 350px;
        max-height: 450px;
        width: 100%;
    }

    .product-image-container.no-product-image {
        min-height: 220px;
        height: 36vh;
        max-height: 380px;
    }

    
    .product-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    
    .product-modal-right {
        width: 100%;
        flex: 1;
        overflow-y: auto;
    }

    
    .product-details-card {
        padding: var(--spacing-xl);
        padding-bottom: 100px;
    }

    .product-title {
        font-size: 26px;
    }

    .product-price-display {
        margin-top: var(--spacing-lg);
    }

    .price-currency {
        font-size: 20px;
    }

    .price-amount {
        font-size: 28px;
    }
}


@media (min-width: 1001px) {
    
    .shop-info-section,
    .categories-section,
    .search-section,
    .items-section {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--spacing-xl);
        padding-right: var(--spacing-xl);
    }

    
    .header {
        max-width: 1400px;
        margin-left: auto;
        margin-right: auto;
        padding-left: var(--spacing-xl);
        padding-right: var(--spacing-xl);
    }

    
    .items-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
    }
    
    
    .items-section.search-mode .items-list {
        display: flex;
        flex-direction: column;
        gap: 0;
    }

    
    .item-card {
        padding: var(--spacing-lg);
    }

    .item-image {
        width: 140px;
        height: 140px;
    }

    
    .categories-list {
        gap: var(--spacing-md);
    }
    
    
    .search-category-items {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-lg);
        margin-bottom: var(--spacing-2xl);
    }
    
    .search-category-header {
        font-size: 22px;
        margin: var(--spacing-2xl) 0 var(--spacing-lg) 0;
        padding-bottom: var(--spacing-md);
    }
    
    .search-category-header:first-child {
        margin-top: var(--spacing-md);
    }
    
    
    .search-section.search-active {
        transform: translateY(-64px);
    }
    
    .search-section.search-active .search-container {
        margin-left: 64px;
        width: calc(100% - 64px);
    }
    
    .categories-section.search-active {
        padding-bottom: var(--spacing-md);
        z-index: 50;
    }
    
    .items-section.search-mode {
        transform: translateY(-64px);
    }

    
    .review-us-btn {
        padding: 10px var(--spacing-lg);
    }

    
    #productView {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.8);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 10000;
        padding: 60px 40px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.2s ease, visibility 0s 0.2s;
        overflow-y: auto;
    }

    #productView.active {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.2s ease, visibility 0s 0s;
    }

    
    .product-modal-container {
        position: relative;
        background: var(--primary-white);
        border-radius: 20px;
        max-width: 900px;
        width: 100%;
        height: 500px !important;
        min-height: 500px !important;
        max-height: 500px !important;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
        display: flex;
        flex-direction: row;
        flex-shrink: 0;
        margin: auto;
        transform: none;
        will-change: unset;
    }

    
    #productView .header,
    #productView header.header {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        height: 0 !important;
        min-height: 0 !important;
        max-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        border: none !important;
        overflow: hidden !important;
    }

    
    .product-modal-left {
        flex: 0 0 500px;
        width: 500px;
        height: 500px;
        position: relative;
        overflow: hidden;
        background: #f8f8f8;
        border-radius: 20px 0 0 20px;
    }

    .product-image-container {
        height: 100%;
        width: 100%;
        margin: 0;
        padding: 0;
        box-shadow: none;
        position: relative;
        overflow: hidden;
        border-radius: 20px 0 0 20px;
    }

    .product-image-container.no-product-image {
        height: 100%;
        min-height: 0;
        max-height: none;
    }

    .product-image {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover;
        display: block;
        border-radius: 20px 0 0 20px;
        position: absolute !important;
        margin: 0;
        padding: 0;
        inset: 0 !important;
    }

    
    .product-modal-right {
        flex: 1;
        height: 500px;
        overflow-y: auto;
        position: relative;
        background: var(--primary-white);
        display: flex;
        flex-direction: column;
    }

    
    .product-modal-right::-webkit-scrollbar {
        width: 8px;
    }

    .product-modal-right::-webkit-scrollbar-track {
        background: transparent;
    }

    .product-modal-right::-webkit-scrollbar-thumb {
        background: rgba(0, 0, 0, 0.2);
        border-radius: 4px;
    }

    .product-modal-right::-webkit-scrollbar-thumb:hover {
        background: rgba(0, 0, 0, 0.3);
    }

    .product-details-card {
        margin-top: 0;
        padding: 48px 40px 100px 40px;
        background: var(--primary-white);
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0 20px 20px 0;
        min-height: 100%;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 24px;
    }

    
    #productView .product-image,
    #productView .product-details-card,
    #productView .product-title,
    #productView .product-description {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    
    #productView .allergens-section {
        opacity: 0;
        transform: translateY(20px);
        animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.3s forwards;
    }

    
    #productView .product-title {
        font-size: 32px;
        font-weight: 700;
        line-height: 1.2;
        color: var(--primary-black);
        margin: 0;
    }

    #productView .product-description {
        font-size: 17px;
        line-height: 1.6;
        color: var(--secondary-black);
        margin: 0;
    }
    
    #productView .product-price-display {
        margin: 24px 0 0 0;
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
    
    #productView .price-currency {
        font-size: 24px;
    }
    
    #productView .price-amount {
        font-size: 36px;
    }

    #productView .allergens-section {
        margin: 0;
    }

    #productView .subsection-title {
        font-size: 14px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--tertiary-black);
        margin-bottom: 16px;
    }

    #productView .allergens-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    #productView .allergen-item {
        padding: 10px 12px;
        background: transparent;
        border-radius: 10px;
        border: none;
        transition: all 0.2s ease;
        opacity: 0;
        transform: scale(0.8) translateY(10px);
        animation: allergenItemEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }
    
    
    #productView .allergen-item:nth-child(1) { animation-delay: 0.6s; }
    #productView .allergen-item:nth-child(2) { animation-delay: 0.65s; }
    #productView .allergen-item:nth-child(3) { animation-delay: 0.7s; }
    #productView .allergen-item:nth-child(4) { animation-delay: 0.75s; }
    #productView .allergen-item:nth-child(5) { animation-delay: 0.8s; }
    #productView .allergen-item:nth-child(6) { animation-delay: 0.85s; }
    #productView .allergen-item:nth-child(7) { animation-delay: 0.9s; }
    #productView .allergen-item:nth-child(n+8) { animation-delay: 0.95s; }

    #productView .allergen-item:hover {
        background: transparent;
    }

    #productView .allergen-icon {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }

    
    #productView .nutritional-section {
        margin: 0 0 24px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.4s forwards;
    }

    #productView .nutritional-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    #productView .nutritional-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid var(--tertiary-white);
    }

    #productView .nutritional-item:last-child {
        border-bottom: none;
    }

    #productView .nutritional-label {
        font-size: 13px;
        font-weight: 500;
        color: var(--secondary-black);
    }

    #productView .nutritional-value {
        font-size: 13px;
        font-weight: 600;
        color: var(--primary-black);
    }

    
    #productView .tags-section {
        margin: 0 0 24px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.5s forwards;
    }

    #productView .tags-list {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
    }

    #productView .tag-item {
        padding: 8px 12px;
        background: var(--secondary-white);
        border-radius: 20px;
        border: 1px solid var(--tertiary-white);
        transition: all 0.2s ease;
        opacity: 0;
        transform: scale(0.8) translateY(10px);
        animation: tagItemEnter 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    }

    #productView .tag-item:nth-child(1) { animation-delay: 0.6s; }
    #productView .tag-item:nth-child(2) { animation-delay: 0.65s; }
    #productView .tag-item:nth-child(3) { animation-delay: 0.7s; }
    #productView .tag-item:nth-child(4) { animation-delay: 0.75s; }
    #productView .tag-item:nth-child(5) { animation-delay: 0.8s; }
    #productView .tag-item:nth-child(6) { animation-delay: 0.85s; }
    #productView .tag-item:nth-child(n+7) { animation-delay: 0.9s; }

    #productView .tag-item:hover {
        background: var(--tertiary-white);
        border-color: var(--quaternary-black);
        transform: translateY(-1px);
        box-shadow: var(--shadow-sm);
    }

    #productView .tag-icon {
        width: 14px;
        height: 14px;
        margin-right: 6px;
        font-size: 11px;
    }

    #productView .tag-text {
        font-size: 13px;
    }
    
    
    #productView .extras-section {
        margin: 0 0 24px 0;
        opacity: 0;
        transform: translateY(20px);
        animation: fadeSlideUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) 0.6s forwards;
    }
    
    #productView .extras-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    #productView .extra-list-item {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
        border-bottom: 1px solid var(--tertiary-white);
    }
    
    #productView .extra-list-item:last-child {
        border-bottom: none;
    }
    
    #productView .extra-name {
        font-size: 14px;
        font-weight: 500;
        color: var(--primary-black);
    }
    
    #productView .extra-price {
        font-size: 14px;
        font-weight: 600;
        color: var(--accent-blue);
        font-family: var(--font-display);
    }
    
    #productView .allergen-icon-img {
        width: 32px;
        height: 32px;
        object-fit: contain;
        border-radius: var(--radius-sm);
    }

    #productView .allergen-name {
        font-size: 13px;
        font-weight: 500;
        color: var(--secondary-black);
    }

    
    .modal-close-btn {
        display: flex !important;
        position: absolute;
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.95);
        border: none;
        cursor: pointer;
        align-items: center;
        justify-content: center;
        transition: all 0.2s ease;
        z-index: 101;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    }

    .modal-close-btn:hover {
        background: rgba(255, 255, 255, 1);
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    }

    .modal-close-btn svg {
        width: 20px;
        height: 20px;
        stroke: var(--primary-black);
        stroke-width: 2;
        transition: stroke 0.2s ease;
    }

    .modal-close-btn:hover svg {
        stroke: var(--primary-black);
    }

    
    body.modal-open {
        overflow: hidden;
    }
}


@media (min-width: 1440px) {
    .items-list {
        grid-template-columns: repeat(3, 1fr);
    }

    .shop-info-section,
    .categories-section,
    .search-section,
    .items-section,
    .header {
        max-width: 1600px;
    }

    .product-modal-container {
        max-width: 1100px;
        height: 650px;
    }

    .product-modal-left {
        flex: 0 0 550px;
    }
    
    
    .search-category-items {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-xl);
    }
    
    .search-category-header {
        font-size: 24px;
    }
}


@media (min-width: 1920px) {
    .items-list {
        grid-template-columns: repeat(4, 1fr);
    }

    .shop-info-section,
    .categories-section,
    .search-section,
    .items-section,
    .header {
        max-width: 1800px;
    }
    
    
    .search-category-items {
        grid-template-columns: repeat(4, 1fr);
        gap: var(--spacing-xl);
    }
}


.allergen-info-panel {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-white);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    box-shadow: var(--shadow-xl);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    z-index: 10001;
    max-height: 60vh;
    overflow: hidden;
}

.allergen-info-panel.show {
    transform: translateY(0);
}

.allergen-info-content {
    padding: var(--spacing-lg);
    max-height: 60vh;
    overflow-y: auto;
}

.allergen-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid var(--tertiary-white);
}

.allergen-info-header h3 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    color: var(--tertiary-black);
    cursor: pointer;
    padding: var(--spacing-xs);
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-btn:hover {
    background: var(--tertiary-white);
    color: var(--primary-black);
}

.allergen-info-body {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-lg);
}

.allergen-info-icon {
    flex-shrink: 0;
}

.allergen-info-icon .allergen-icon-img {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: var(--radius-sm);
}

.allergen-info-text {
    flex: 1;
}

.allergen-info-text h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 var(--spacing-sm) 0;
}

.allergen-info-text p {
    font-family: var(--font-text);
    font-size: 16px;
    line-height: 1.5;
    color: var(--secondary-black);
    margin: 0 0 var(--spacing-sm) 0;
}

.allergen-info-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-black);
    text-decoration: underline;
    margin: 0;
    transition: opacity 0.2s ease;
}

.allergen-info-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}


@media (min-width: 601px) {
    .allergen-info-panel {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        max-height: 60vh;
        max-width: 500px;
        width: 90%;
        transform: translate(-50%, -50%) scale(0.9);
        border-radius: var(--radius-lg);
        box-shadow: var(--shadow-xl);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    }
    
    .allergen-info-panel.show {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
    }
    
    .allergen-info-content {
        max-height: 60vh;
        padding: var(--spacing-xl);
        overflow-y: auto;
    }
    
    .allergen-info-header h3 {
        font-size: 22px;
    }
    
    .allergen-info-icon .allergen-icon-img {
        width: 56px;
        height: 56px;
    }
    
    .allergen-info-text h4 {
        font-size: 20px;
    }
    
    .allergen-info-text p {
        font-size: 17px;
    }
}


.allergen-info-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000;
}

.allergen-info-backdrop.show {
    opacity: 1;
    visibility: visible;
}


.floating-bell-btn {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 72px;
    height: 72px;
    background: var(--primary-black);
    border: none;
    border-radius: 50%;
    color: var(--primary-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.3),
        0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    overflow: visible;
    transform: scale(0.8);
}


@media (min-width: 1024px) {
    .floating-bell-btn {
        display: none !important;
    }
}


.bell-icon-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}


.bell-text-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    white-space: nowrap;
}

.bell-text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-white);
    letter-spacing: -0.01em;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}


.floating-bell-btn.showing-text {
    width: 200px;
    border-radius: 36px;
}

.floating-bell-btn.showing-text .bell-icon-container {
    opacity: 0;
    visibility: hidden;
    transform: translate(-50%, -50%) scale(0.8);
}

.floating-bell-btn.showing-text .bell-text-container {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}


.floating-bell-btn.showing-text .bell-text {
    animation: slideInText 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideInText {
    0% {
        transform: translateX(20px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}


.floating-bell-btn.hiding-text .bell-text {
    animation: slideOutText 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes slideOutText {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    100% {
        transform: translateX(20px);
        opacity: 0;
    }
}

.floating-bell-btn.show {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.floating-bell-btn:hover {
    transform: scale(1.1);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.4),
        0 6px 16px rgba(0, 0, 0, 0.3);
}

.floating-bell-btn:active {
    transform: scale(0.95);
}

.floating-bell-btn svg {
    transition: transform 0.2s ease;
}

.floating-bell-btn:hover svg {
    transform: rotate(10deg);
}



.floating-bell-btn::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    width: calc(100% + 12px);
    height: calc(100% + 12px);
    border-radius: 50%;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.3s ease;
    box-sizing: border-box;
    border: 5px solid transparent;
    border-top-color: #22c55e;
    transform: rotate(0deg);
    filter: drop-shadow(0 0 2px rgba(34, 197, 94, 0.5));
}

.floating-bell-btn.bell-counting-down::before {
    opacity: 1;
    animation: bellCountdownRing 5s linear forwards;
}

.floating-bell-btn.bell-countdown-canceled::before,
.floating-bell-btn.bell-counting-down.bell-countdown-canceled::before {
    animation: bellCountdownFadeOut 1.5s ease-out forwards !important;
    transform: rotate(var(--cancel-rotate, 0deg)) !important;
    border-top-color: var(--cancel-border-top, transparent) !important;
    border-right-color: var(--cancel-border-right, transparent) !important;
    border-bottom-color: var(--cancel-border-bottom, transparent) !important;
    border-left-color: var(--cancel-border-left, transparent) !important;
    filter: drop-shadow(0 0 2px rgba(239, 68, 68, 0.5)) !important;
    opacity: 1;
}

@keyframes bellCountdownRing {
    0% {
        transform: rotate(0deg);
        border-top-color: #22c55e;
        border-right-color: transparent;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    25% {
        transform: rotate(90deg);
        border-top-color: #22c55e;
        border-right-color: #22c55e;
        border-bottom-color: transparent;
        border-left-color: transparent;
    }
    50% {
        transform: rotate(180deg);
        border-top-color: #22c55e;
        border-right-color: #22c55e;
        border-bottom-color: #22c55e;
        border-left-color: transparent;
    }
    75% {
        transform: rotate(270deg);
        border-top-color: #22c55e;
        border-right-color: #22c55e;
        border-bottom-color: #22c55e;
        border-left-color: #22c55e;
    }
    100% {
        transform: rotate(360deg);
        border-top-color: #22c55e;
        border-right-color: #22c55e;
        border-bottom-color: #22c55e;
        border-left-color: #22c55e;
    }
}

@keyframes bellCountdownFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}


.floating-bell-btn.bell-ringing .bell-icon-container {
    animation: bellRing 1.2s ease-in-out 3;
}

@keyframes bellRing {
    0%, 100% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    25% {
        transform: translate(-50%, -50%) rotate(-8deg);
    }
    50% {
        transform: translate(-50%, -50%) rotate(8deg);
    }
    75% {
        transform: translate(-50%, -50%) rotate(-4deg);
    }
}


.all-categories-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10002;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.all-categories-overlay.show {
    opacity: 1;
    visibility: visible;
}

.all-categories-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--visitor-surface);
    border-radius: 24px 24px 0 0;
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.2),
        0 -4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 85vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    will-change: transform;
}

.all-categories-overlay.show .all-categories-panel {
    transform: translateY(0);
}

.all-categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid var(--tertiary-white);
    flex-shrink: 0;
}

.all-categories-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: -0.01em;
}

.all-categories-close {
    background: none;
    border: none;
    color: var(--tertiary-black);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.all-categories-close:hover {
    background: var(--tertiary-white);
    color: var(--primary-black);
    transform: none;
}

.all-categories-close svg {
    width: 24px;
    height: 24px;
}

.all-categories-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 24px;
    overflow-y: auto;
    flex: 1;
}

.all-categories-grid::-webkit-scrollbar {
    width: 6px;
}

.all-categories-grid::-webkit-scrollbar-track {
    background: transparent;
}

.all-categories-grid::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 3px;
}

.all-categories-grid::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.all-category-card {
    background: var(--visitor-menu-bg);
    border: 2px solid var(--visitor-surface-2);
    border-radius: 16px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: categoryCardEnter 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    width: 100%;
    min-height: 100px;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
}

.all-category-card:active {
    transform: translateX(2px);
}

.all-category-card.active {
    background: var(--primary-black);
    border-color: var(--primary-black);
    color: var(--primary-white);
    transform: translateY(0);
}

.all-category-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

.all-category-card.active .all-category-icon {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.all-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
    position: relative;
    z-index: 2;
}

@media (hover: hover) and (pointer: fine) {
    .all-category-card:hover {
        background: var(--visitor-surface-2);
        border-color: var(--primary-black);
        transform: translateX(4px);
        box-shadow: 
            0 4px 16px rgba(0, 0, 0, 0.1),
            0 2px 8px rgba(0, 0, 0, 0.06);
    }

    .all-category-card.active:hover {
        background: var(--secondary-black);
        border-color: var(--secondary-black);
        transform: translateY(0);
    }

    .all-category-card:hover .all-category-icon {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    }

    .all-category-card.active:hover .all-category-icon {
        transform: scale(1.05);
    }

    .all-category-card:hover .all-category-icon img {
        transform: scale(1.15);
    }
}

.all-category-name {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
    flex: 1;
    text-align: left;
}

.all-category-card.active .all-category-name {
    color: var(--primary-white);
}

@keyframes categoryCardEnter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.all-category-card:nth-child(1) { animation-delay: 0.05s; }
.all-category-card:nth-child(2) { animation-delay: 0.1s; }
.all-category-card:nth-child(3) { animation-delay: 0.15s; }
.all-category-card:nth-child(4) { animation-delay: 0.2s; }
.all-category-card:nth-child(5) { animation-delay: 0.25s; }
.all-category-card:nth-child(6) { animation-delay: 0.3s; }
.all-category-card:nth-child(7) { animation-delay: 0.35s; }
.all-category-card:nth-child(8) { animation-delay: 0.4s; }
.all-category-card:nth-child(n+9) { animation-delay: 0.45s; }


@media (min-width: 601px) {
    .all-categories-panel {
        position: fixed;
        top: 50%;
        left: 50%;
        right: auto;
        bottom: auto;
        max-height: 80vh;
        max-width: 800px;
        width: 90%;
        transform: translate(-50%, -50%) scale(0.9);
        border-radius: 24px;
        box-shadow: 
            0 20px 60px rgba(0, 0, 0, 0.3),
            0 8px 24px rgba(0, 0, 0, 0.2);
        opacity: 0;
        visibility: hidden;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    visibility 0s 0.3s;
        will-change: transform, opacity;
    }
    
    .all-categories-overlay.show .all-categories-panel {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
        visibility: visible;
        transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                    visibility 0s 0s;
    }
    
    .all-categories-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
        padding: 32px;
    }
}


@media (min-width: 601px) and (max-width: 1000px) {
    .all-categories-panel {
        max-width: 700px;
    }
    
    .all-categories-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px;
    }
    
    .all-category-card {
        flex-direction: column;
        text-align: center;
        padding: 24px 20px;
        min-height: auto;
        gap: 16px;
    }
    
    .all-category-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto 0;
        border-radius: 18px;
    }
    
    .all-category-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .all-category-name {
        font-size: 18px;
        text-align: center;
        margin-top: 4px;
    }
}


@media (min-width: 1440px) {
    .all-categories-panel {
        max-width: 1000px;
    }
    
    .all-categories-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}


.service-actions-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 10001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-actions-overlay.show {
    opacity: 1;
    visibility: visible;
}

.service-actions-panel {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--visitor-surface) !important;
    background: var(--visitor-surface) !important;
    border-radius: 24px 24px 0 0;
    box-shadow: 
        0 -8px 32px rgba(0, 0, 0, 0.2),
        0 -4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    max-height: 50vh;
    overflow: hidden;
}

.service-actions-overlay.show .service-actions-panel {
    transform: translateY(0);
}

.service-actions-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 24px 16px 24px;
    border-bottom: 1px solid var(--visitor-surface-2);
}

.service-actions-title {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    letter-spacing: -0.01em;
}

.service-close-btn {
    background: none;
    border: none;
    color: var(--tertiary-black);
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-close-btn:hover {
    background: var(--visitor-surface-2);
    color: var(--primary-black);
}

.service-actions-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-actions-disclaimer {
    padding: 0 24px 24px 24px;
    font-size: 12px;
    color: var(--tertiary-black);
    line-height: 1.4;
    text-align: center;
}

.service-actions-disclaimer strong {
    color: var(--primary-black);
    font-weight: 600;
}

.service-actions-terms-link {
    color: var(--primary-black);
    text-decoration: underline;
    font-weight: 600;
}

.service-actions-terms-link:hover {
    text-decoration: underline;
}

.service-actions-terms-link:focus,
.service-actions-terms-link:active {
    text-decoration: underline;
}

.service-action-wrapper {
    position: relative;
    width: 100%;
}

.service-action-btn {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    padding-right: 20px;
    background: var(--visitor-menu-bg);
    border: 1px solid var(--visitor-surface-2);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: left;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.service-action-btn.counting-down {
    cursor: default;
}

.service-action-btn:active {
    transform: none;
}

.service-action-icon {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-black);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.service-action-btn .service-action-text h4 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 4px 0;
    letter-spacing: -0.01em;
}

.service-action-btn .service-action-text p {
    font-size: 14px;
    color: var(--tertiary-black);
    margin: 0;
    line-height: 1.4;
}


.service-action-countdown {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(128, 128, 128, 0.2) 0%, rgba(160, 160, 160, 0.2) 100%);
    pointer-events: none;
    z-index: 0;
    border-radius: 14px;
    overflow: hidden;
    transition: opacity 1.5s ease;
}

.service-action-btn.counting-down .service-action-countdown {
    animation: fillCountdown 5s linear forwards;
}

.service-action-countdown.fade-out {
    animation: none;
    opacity: 0;
}

@keyframes fillCountdown {
    from {
        width: 0%;
    }
    to {
        width: 100%;
    }
}


.service-cancel-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #ff4757;
    border: none;
    outline: none;
    border-radius: 0;
    padding: 0;
    font-size: 18px;
    font-weight: 300;
    cursor: pointer;
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    box-shadow: none;
    display: inline-block;
    white-space: nowrap;
}

.service-action-wrapper:has(.service-action-btn.counting-down) .service-cancel-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.service-action-wrapper:has(.service-action-btn.canceled) .service-cancel-btn {
    opacity: 1;
    visibility: visible;
    pointer-events: none;
}


.service-cancel-btn:active {
    transform: translateY(-50%) scale(0.95);
}


.service-action-icon,
.service-action-text {
    position: relative;
    z-index: 10;
}








@media (max-width: 600px) {
    .floating-bell-btn {
        bottom: 20px;
        right: 20px;
        width: 64px;
        height: 64px;
    }
    
    .floating-bell-btn.showing-text {
        width: 180px;
        border-radius: 32px;
    }
    
    .bell-text {
        font-size: 13px;
    }
    
    .service-actions-panel {
        background-color: var(--visitor-surface) !important;
        border-radius: 20px 20px 0 0;
        max-height: 60vh;
    }
    
    .service-actions-header {
        padding: 20px 20px 16px 20px;
    }
    
    .service-actions-title {
        font-size: 18px;
    }
    
    .service-actions-content {
        padding: 20px;
        gap: 12px;
    }

    .service-actions-disclaimer {
        padding: 0 20px 20px 20px;
        font-size: 12px;
    }
    
    .service-action-btn {
        padding: 16px;
        gap: 12px;
    }
    
    .service-action-icon {
        width: 44px;
        height: 44px;
    }
    
    .service-action-text h4 {
        font-size: 16px;
    }
    
    .service-action-text p {
        font-size: 13px;
    }
    
    .service-cancel-btn {
        right: 16px;
        padding: 0;
        font-size: 16px;
        font-weight: 300;
    }
}

@media (max-width: 480px) {
    .floating-bell-btn {
        bottom: 16px;
        right: 16px;
        width: 56px;
        height: 56px;
    }
    
    .floating-bell-btn.showing-text {
        width: 160px;
        border-radius: 28px;
    }
    
    .bell-text {
        font-size: 12px;
    }
    
    .service-actions-panel {
        background-color: var(--visitor-surface) !important;
        border-radius: 16px 16px 0 0;
    }
    
    .service-actions-header {
        padding: 16px 16px 12px 16px;
    }
    
    .service-actions-content {
        padding: 16px;
    }

    .service-actions-disclaimer {
        padding: 0 16px 16px 16px;
        font-size: 11px;
    }
    
    .service-action-btn {
        padding: 14px;
        gap: 10px;
    }
    
    .service-action-icon {
        width: 40px;
        height: 40px;
    }
    
    .service-cancel-btn {
        right: 10px;
        padding: 0;
        font-size: 15px;
        font-weight: 300;
    }
}


#allergenInfoView {
    display: none;
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-white);
}

#allergenInfoView.active {
    display: block;
}

.allergen-info-page {
    width: 100%;
    min-height: 100vh;
    padding: var(--spacing-lg);
    max-width: 800px;
    margin: 0 auto;
    background: var(--primary-white);
}

.allergen-info-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-lg);
    border-bottom: 1px solid var(--tertiary-white);
    position: relative;
}

.allergen-info-page-header h1 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0;
    flex: 1;
    text-align: center;
}

.back-to-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: 1px solid var(--tertiary-white);
    border-radius: var(--radius-md);
    color: var(--primary-black);
    cursor: pointer;
    transition: all 0.2s ease;
}

.back-to-menu-btn:hover {
    background: var(--tertiary-white);
    border-color: var(--secondary-black);
}

.back-to-menu-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.allergen-info-page-content {
    width: 100%;
}

.legal-allergen-info {
    width: 100%;
}

.legal-allergen-info h2 {
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 var(--spacing-lg) 0;
}

.intro-text {
    font-family: var(--font-text);
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary-black);
    margin-bottom: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--tertiary-white);
    border-radius: var(--radius-md);
}

.allergen-list-legal {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.allergen-item-legal {
    padding: var(--spacing-md);
    background: var(--primary-white);
    border: 1px solid var(--tertiary-white);
    border-radius: var(--radius-md);
    transition: box-shadow 0.2s ease;
}

.allergen-item-legal:hover {
    box-shadow: var(--shadow-sm);
}

.allergen-item-legal h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 var(--spacing-sm) 0;
}

.allergen-item-legal p {
    font-family: var(--font-text);
    font-size: 14px;
    line-height: 1.5;
    color: var(--secondary-black);
    margin: 0;
}

.legal-disclaimer {
    margin-top: var(--spacing-xl);
    padding: var(--spacing-lg);
    background: var(--tertiary-white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--primary-black);
}

.legal-disclaimer h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-black);
    margin: 0 0 var(--spacing-md) 0;
}

.legal-disclaimer p {
    font-family: var(--font-text);
    font-size: 14px;
    line-height: 1.6;
    color: var(--secondary-black);
    margin: 0 0 var(--spacing-sm) 0;
}

.legal-disclaimer p:last-child {
    margin-bottom: 0;
    font-size: 13px;
    color: var(--tertiary-black);
    font-style: italic;
}

.allergen-info-footer {
    margin-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    align-items: center;
}

.allergen-info-disclaimer {
    font-family: var(--font-text);
    font-size: 12px;
    line-height: 1.4;
    color: var(--tertiary-black);
    margin: 0;
    text-align: center;
}

.allergen-info-link {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-black);
    text-decoration: underline;
    margin: 0;
    transition: opacity 0.2s ease;
}

.allergen-info-link:hover {
    opacity: 0.7;
    text-decoration: underline;
}

@media (min-width: 601px) {
    #allergenInfoView {
        padding: var(--spacing-xl);
    }
    
    .allergen-info-page-header h1 {
        font-size: 32px;
    }
    
    .legal-allergen-info h2 {
        font-size: 28px;
    }
}
