/* Custom CSS for KATANA Sushi */

/* Global Styles */
html, body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    --bgColorMenu : #434343;
    --duration: .7s;    
}

/* Apply Inter font to all elements */
* {
    font-family: 'Inter', sans-serif;
}

/* Font family */
.font-inter {
    font-family: 'Inter', sans-serif;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header Styles */
:root {
    --bar-bg: #3e3e3e;
    --bar-text: #ffffff;
    --accent: #ff4664;
    --light: #ffffff;
    --shadow: rgba(0,0,0,.18);
}

/* ===== NEW SIMPLE HEADER STYLES ===== */
.simple-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Logo */
.header-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

/* Header Navigation */
.header-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-list li a {
    text-decoration: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #ff4664;
}

/* Header Cart */
.header-cart {
    display: flex;
    align-items: center;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.cart-link:hover {
    background: #e9ecef;
    color: #ff4664;
}

.cart-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff4664;
}

.cart-badge {
    background: #ff4664;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.25rem;
    text-align: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav {
    padding: 1rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-list li a {
    text-decoration: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-nav-list li a:hover {
    color: #ff4664;
}

.mobile-cart-section {
    padding: 1rem;
    border-top: 1px solid #f8f9fa;
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #000;
}

.mobile-cart-badge {
    background: #ff4664;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.25rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .cart-text {
        display: none;
    }
    
    .cart-link {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }
    
    .logo-img {
        width: 2rem;
        height: 2rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .cart-link {
        padding: 0.375rem;
    }
    
    .cart-price {
        font-size: 0.8rem;
    }
}


.logo-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-text {
    text-align: center;
    z-index: 3;
}

.logo-main {
    font-size: 1rem;
    font-weight: bold;
    color: #ff4664;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.logo-sub {
    font-size: 0.5rem;
    color: #333;
    line-height: 1;
    margin-bottom: 0.0625rem;
}

.logo-delivery {
    font-size: 0.375rem;
    color: #666;
    line-height: 1;
}

.logo-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}
.body-bg::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.5;
    mix-blend-mode: lighten;
    pointer-events: none;
    z-index: 0;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Sushi items */
.sushi-items {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.sushi-roll {
    width: 0.75rem;
    height: 0.375rem;
    border-radius: 0.1875rem;
}

.sushi-roll.orange {
    background: #ff6b35;
}

.sushi-roll.black {
    background: #2c2c2c;
}

.sashimi {
    width: 0.5rem;
    height: 0.25rem;
    background: #ff6b35;
    border-radius: 0.125rem;
}

.container-width-100 {
    width: 100%;
}

/* Katana sword */
.katana-sword {
    position: absolute;
    left: 50%;
    top: 1.25rem;
    transform: translateX(-50%);
    width: 0.125rem;
    height: 1.25rem;
    background: #ff4664;
    border-radius: 0.0625rem;
}

.katana-sword::before {
    content: "";
    position: absolute;
    bottom: -0.125rem;
    left: -0.0625rem;
    width: 0.25rem;
    height: 0.25rem;
    background: #8b4513;
    border-radius: 50%;
}

/* Sakura branch */
.sakura-branch {
    position: absolute;
    right: 0.5rem;
    top: 0.9375rem;
    width: 0.9375rem;
    height: 0.9375rem;
}

.sakura-branch::before {
    content: "🌸";
    font-size: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
}

.sakura-branch::after {
    content: "🌸";
    font-size: 0.375rem;
    position: absolute;
    top: 0.1875rem;
    right: 0;
}

/* Ліве та праве меню */
.nav-left,
.nav-right {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0 0.5rem;
}

.nav-left a,
.nav-right a,
.menu {
    color: var(--bar-text);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--accent);
}

/* Кошик із бейджем */
.cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--light);
    color: #111;
    border-radius: 999px;
    padding: 0.625rem 0.875rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.3s ease;
}

  .cart:hover {
      transform: translateY(-1px);
      color: #ff4664;
  }

  .cart:active {
      color: #ff4664;
  }

  .cart span {
      color: #000;
      font-family: Inter;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }

.badge {
    position: absolute;
    right: -0.375rem;
    top: -0.5rem;
    min-width: 1.375rem;
    height: 1.375rem;
    padding: 0 0.375rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    display: grid;
    place-items: center;
    border: 0.125rem solid var(--bar-bg);
    font-weight: bold;
}

/* Burger Menu Styles */
.burger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
}

.burger-line {
    width: 1.5rem;
    height: 0.2rem;
    background-color: var(--bar-text);
    margin: 0.2rem 0;
    transition: all 0.3s ease;
    border-radius: 0.1rem;
}

.burger-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.burger-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 20rem;
    max-width: 90vw;
    background: var(--light);
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    z-index: 55;
    transform: translateY(-1rem);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    padding: 1rem;
}

.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
}

.dropdown-nav-list,
.dropdown-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-nav-list li,
.dropdown-categories-list li {
    margin-bottom: 0.5rem;
}

.dropdown-nav-list li:last-child,
.dropdown-categories-list li:last-child {
    margin-bottom: 0;
}

.dropdown-nav-list a,
.dropdown-categories-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.dropdown-nav-list a:hover,
.dropdown-categories-list a:hover {
    background: var(--accent);
    color: var(--light);
    border-color: var(--accent);
    transform: translateX(0.25rem);
}

.mobile-cart {
    background: var(--accent);
    color: var(--light);
    padding: 0.875rem 1.25rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.mobile-cart:hover {
    background: var(--light);
    color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 0.25rem 1rem rgba(255, 70, 100, 0.3);
}

/* Адаптивність */
@media (max-width: 880px) {
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .burger-menu-toggle {
        display: flex;
    }
    
    .logo {
        width: 6rem;
        height: 6rem;
    }
    .nav-bar {
        height: 4rem;
        background-size: contain;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .burger-menu-toggle {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 640px) {
    .nav-bar {
        background-size: cover;
        background-position: center top;
        padding: 0 0.75rem;
    }
    
    .burger-menu-toggle {
        right: 0.75rem;
    }
    
    .mobile-dropdown {
        width: 18rem;
        right: -0.5rem;
    }
    
    .dropdown-nav-list a,
    .dropdown-categories-list a {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Додаткові адаптивні стилі для SVG */
@media (max-width: 480px) {
    .nav-bar {
        height: 3.5rem;
        padding: 0 0.5rem;
    }
    .logo {
        width: 5rem;
        height: 5rem;
    }
    
    .burger-menu-toggle {
        right: 0.5rem;
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .burger-line {
        width: 1.25rem;
        height: 0.15rem;
    }
    
    .mobile-dropdown {
        width: 16rem;
        right: -0.75rem;
    }
    
    .dropdown-content {
        padding: 0.875rem;
    }
    
    .dropdown-nav-list a,
    .dropdown-categories-list a {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Banner Styles */
.banner {
    height: 30rem;
    position: relative;
    overflow: hidden;
    margin: 2.5rem auto;
    max-width: 1500px;
    border-radius: 1rem;
    background: #0f172a;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    z-index: 0;
    transition: opacity 0.6s ease-in-out;
    overflow: hidden;
}

.banner-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 2;
}

.banner-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.65) 0%, rgba(15, 52, 96, 0.45) 50%, rgba(0, 0, 0, 0.65) 100%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s ease-in-out;
}

.banner-slide.active::before {
    opacity: 1;
}

.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    transform: scale(1.05);
    transition: transform 5s ease;
}

.banner-slide.active .banner-image {
    transform: scale(1);
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(0.5rem);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

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

.slider-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.slider-prev {
    left: 1.5rem;
}

.slider-next {
    right: 1.5rem;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 1rem rgba(255, 70, 100, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    max-width: 800px;
    padding: 0 2rem;
}

.banner-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.5);
}

.banner-cta {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--light);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 1rem 2rem rgba(255, 70, 100, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 1.2rem 2.5rem rgba(255, 70, 100, 0.45);
}

/* Banner Responsive Styles */
@media (max-width: 768px) {
    .banner {
        height: 25rem;
        margin: 2rem auto;
        max-width: calc(100vw - 4rem);
    }
    
    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .slider-btn svg {
        width: 1rem;
        height: 1rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 0.625rem;
        height: 0.625rem;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1.25rem;
    }
    
    .banner-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .banner {
        height: 20rem;
        margin: 1.5rem auto;
        max-width: calc(100vw - 3rem);
    }
    
    .slider-btn {
        width: 2rem;
        height: 2rem;
    }
    
    .slider-btn svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .slider-prev {
        left: 0.75rem;
    }
    
    .slider-next {
        right: 0.75rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        gap: 0.375rem;
    }
    
    .indicator {
        width: 0.5rem;
        height: 0.5rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.125rem;
    }
    
    .banner-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 18rem;
        margin: 1rem auto;
        max-width: calc(100vw - 2rem);
    }
    
    .slider-btn {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .slider-btn svg {
        width: 0.75rem;
        height: 0.75rem;
    }
    
    .slider-prev {
        left: 0.5rem;
    }
    
    .slider-next {
        right: 0.5rem;
    }
    
    .slider-indicators {
        bottom: 0.75rem;
        gap: 0.25rem;
    }
    
    .indicator {
        width: 0.375rem;
        height: 0.375rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}

/* Navigation Bar Styles */
.navigation-bar {
    background: #434343;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1500px;
    border-radius: 1000px;
    overflow: hidden;
    height: 5rem;
    display: flex;
    align-items: center;
}

.nav-container {
    padding: 1.2rem 2.5rem;
    width: 100%;
}

.category-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    text-decoration: none;
    color: var(--light);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent), #ff4757);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-item:hover::before {
    opacity: 0.2;
}

.nav-item:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 1rem rgba(255, 70, 100, 0.2);
}

.nav-item:active {
    transform: translateY(0);
}

.nav-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-text {
    transform: scale(1.05);
}

.nav-item.active {
    background: #E31E25;
    border-radius: 50%;
}

.nav-item.active .nav-text {
    font-weight: bold;
}

/* Navigation Bar Scroll Styles */
.navigation-bar::-webkit-scrollbar {
    height: 4px;
}

.navigation-bar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.navigation-bar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.navigation-bar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Navigation Bar Responsive Styles */
@media (max-width: 1200px) {
    .navigation-bar {
        height: 4.5rem;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .nav-container {
        padding: 1rem 2rem;
        min-width: max-content;
    }
    
    .category-nav {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .nav-item {
        min-width: 90px;
        padding: 0.875rem 0.5rem;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .navigation-bar {
        border-radius: 0;
        height: 4rem;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 1.5rem 0;
    }
    
    .nav-container {
        padding: 0.8rem 1.5rem;
        min-width: max-content;
    }
    
    .category-nav {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .nav-item {
        min-width: 80px;
        padding: 0.75rem 0.375rem;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .navigation-bar {
        height: 3.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 1rem 0;
    }
    
    .nav-container {
        padding: 0.6rem 1rem;
        min-width: max-content;
    }
    
    .category-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .nav-item {
        max-width: none;
        padding: 0.625rem 0.25rem;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .navigation-bar {
        height: 3rem;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 1rem 0;
    }
    
    .nav-container {
        padding: 0.5rem 0.75rem;
        min-width: max-content;
    }
    
    .nav-item {
        padding: 0.5rem 0.125rem;
        min-width: 70px;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 0.75rem;
    }
}

/* Product Cards Styles */
.products-section {
    padding: 3rem 0;
    background: transparent !important;
}

.products-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    justify-items: center;
}

.product-card {
    width: 22rem;
    height: 36rem;
    background: transparent;
    border: none;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--light);
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: all 0.3s ease;
}

.product-card:hover::before {
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.25rem);
}

.product-card:hover {
    transform: translateY(-0.125rem);
    cursor: pointer;
}

.product-image {
    height: 15rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #e9ecef;
}

.placeholder-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.2));
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.product-weight {
    color: #FF757A;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    display: inline-block;
}

.product-description {
    color: #000;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.product-ingredients {
    margin: 0 0 1rem 0;
    font-size: 13px;
    line-height: 1.4;
    color: #666;
}

.ingredients-label {
    font-weight: 600;
    color: #444;
    margin-right: 0.25rem;
}

.product-ingredients .ingredients-list {
    color: #666;
    font-weight: 400;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent !important;
    border-radius: 0.5rem;
    padding: 0.25rem;
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: default;
}

.quantity-btn {
    width: 1.8rem;
    height: 1.8rem;
    border: none;
    background: #B3AEAE63 !important;
    color: var(--light);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.quantity-btn:hover {
    background: #999;
    transform: scale(1.05);
}

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

.quantity-btn:focus {
    outline: none;
    box-shadow: none !important;
}

.quantity-display {
    min-width: 2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0 0.5rem;
}

.product-price {
    color: #000;
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* Product Cards Responsive Styles */
@media (max-width: 1200px) {
    .product-ingredients .ingredients-list {
        height: 5rem;
    }
    .products-container {
        padding: 0 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        width: 20rem;
        height: 35.5rem;
    }
    
    .quantity-controls {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 2rem 0;
    }
    
    .products-container {
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
        gap: 1.25rem;
    }
    
    .product-card {
        width: 18rem;
        height: 34rem;
        padding: 1rem;
    }
    
    .quantity-controls {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .product-image {
        height: 12rem;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        width: 100%;
        max-width: 22rem;
        height: 33rem;
    }
    
    .quantity-controls {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-detail-card {
        gap: 1.75rem;
        padding: 1.25rem;
    }
    
    .product-detail-image {
        min-height: 15rem;
        max-height: 20rem;
    }
    
    .product-detail-name {
        font-size: 1.625rem;
    }
    
    .product-detail-weight {
        font-size: 1rem;
    }
    
    .product-detail-price {
        font-size: 1.625rem;
    }
    
    .ingredients-header {
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }
    
    .ingredients-header h3 {
        font-size: 1.1875rem;
        min-width: 110px;
    }
    
    .ingredients-nav {
        gap: 0.4375rem;
    }
    
    .ingredients-nav-btn {
        width: 1.875rem;
        height: 1.875rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 1.5rem 0;
    }
    
    .products-container {
        padding: 0 0.75rem;
    }
    
    .product-card {
        height: 36.5rem;
        padding: 0.875rem;
    }
    
    .quantity-controls {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-image {
        height: 17rem;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .product-name {
        font-size: 1.125rem;
    }
    
    .product-weight {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 28px;
    }
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 0.25rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Smooth transitions */
* {
    transition: all 0.2s ease-in-out;
}

/* Button hover effects */
.btn-primary {
    @apply bg-red-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-red-700 transition-colors;
}

.btn-secondary {
    @apply border-2 border-red-600 text-red-600 px-6 py-3 rounded-lg font-semibold hover:bg-red-600 hover:text-white transition-colors;
}

/* Card hover effects */
.card-hover {
    @apply transform hover:scale-105 transition-transform duration-200;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 0.1875rem solid #f3f3f3;
    border-top: 0.1875rem solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(1.25rem); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slide in animation */
.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Pulse animation for new items */
.pulse-new {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Custom focus styles */
input:focus, textarea:focus, select:focus {
    @apply ring-2 ring-red-500 ring-opacity-50 border-red-500;
}

/* Error states */
.error {
    @apply border-red-500 bg-red-50;
}

.error-message {
    @apply text-red-600 text-sm mt-1;
}

/* Success states */
.success {
    @apply border-green-500 bg-green-50;
}

/* Custom checkbox styles */
.custom-checkbox {
    @apply relative inline-flex items-center;
}

.custom-checkbox input[type="checkbox"] {
    @apply sr-only;
}

.custom-checkbox .checkmark {
    @apply w-5 h-5 border-2 border-gray-300 rounded bg-white;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    @apply bg-red-600 border-red-600;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0.375rem;
    top: 0.125rem;
    width: 0.375rem;
    height: 0.625rem;
    border: solid white;
    border-width: 0 0.125rem 0.125rem 0;
    transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}

/* Delivery Information Section */
.delivery-section {
    background: transparent !important;
    padding: 2rem 0;
    margin: 2rem 0;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.delivery-title {
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 3rem;
}

.delivery-content {
    max-width: 800px;
    margin: 0 auto;
    color: #000;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.delivery-content p {
    margin-bottom: 1.5rem;
}

.delivery-content strong {
    color: #e74c3c;
    font-weight: 600;
}

.delivery-signature {
    text-align: center;
    font-style: italic;
    font-size: 1.25rem;
    margin-top: 2rem;
    color: white;
}

/* Footer */
.site-footer {
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        padding: 0 1.5rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-container {
        align-items: center;
    }
}

/* Small tablet styles */
@media (max-width: 768px) {
    .site-footer {
        width: 100%;
        bottom: -30rem;
        padding: 3rem 0 2rem;
        margin-top: 3rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    opacity: 0.7;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Logo Column */
.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: auto;
    height: 10rem;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 90px;
    background-color: #fff;
}

.footer-logo-text {
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Navigation Column */
.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.footer-nav-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    opacity: 0.8;
}

/* Contact Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-text {
    color: inherit;
}

/* Working Hours Column */
.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    align-items: center;
}

.hours-time {
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

/* Social Media Column */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    padding-left: 1rem;
    padding-right: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
}

.social-link:hover {
    opacity: 0.8;
}

.social-text {
    color: inherit;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .mobile-padding {
        @apply px-4;
    }
    
    .mobile-text {
        @apply text-sm;
    }
    
    .mobile-button {
        @apply py-2 px-4 text-sm;
    }
    
    .cart span {
        font-size: 20px;
    }
    
    .delivery-section {
        padding: 2.5rem 0;
        margin: 1.5rem 0;
    }
    
    .delivery-container {
        padding: 0 1rem;
    }
    
    .delivery-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .delivery-content {
        font-size: 16px;
    }
    
    .delivery-signature {
        font-size: 1.125rem;
    }
    
    .site-footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 2rem;
        margin-left: -1rem;
        margin-right: -1rem
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-container {
        align-items: center;
    }
    
    .footer-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 1rem;
    }
    
    .footer-logo-img {
        width: 8rem;
        height: 8rem;
    }
    
    .footer-logo-text {
        font-size: 1.25rem;
    }
    
    .footer-nav-list {
        gap: 0.5rem;
        font-size: 14px;
        line-height: 20px;
    }
    
    
    .contact-info {
        font-size: 14px;
        line-height: 20px;
    }
    
    .hours-time {
        font-size: 0.9rem;
    }
    
    .social-links {
        font-size: 14px;
        line-height: 20px;
    }
    
    .social-link {
        padding: 0.25rem 0;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-img {
        width: 6rem;
        height: 6rem;
    }
    
    .footer-logo-text {
        font-size: 1.125rem;
    }
    
    .footer-title {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 0.5rem;
    }
    
    .footer-nav-list {
        gap: 0.25rem;
        font-size: 12px;
        line-height: 16px;
    }
    
    .contact-info {
        font-size: 12px;
        line-height: 16px;
    }
    
    .hours-time {
        font-size: 12px;
    }
    
    .social-links {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 2rem 0;
    background: #fff;
    min-height: 100vh;
}

/* Breadcrumbs */
.breadcrumbs-container {
    margin-bottom: 1.5rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #E31E25;
}

.breadcrumb-separator {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-current {
    color: #6c757d;
    font-weight: 500;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
}

/* Product Navigation */
.product-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.product-nav-btn {
    width: 3.5rem;
    height: 32rem;
    background: #F5F5F5;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.product-nav-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.product-nav-prev {
    margin-left: 0.5rem;
    border-radius: 5px;
}

.product-nav-next {
    margin-right: 0.5rem;
    border-radius: 5px;
}

.nav-arrow {
    font-size: 2rem;
    color: #495057;
    font-weight: 600;
    transition: color 0.2s ease;
}

.product-nav-btn:hover .nav-arrow {
    color: #343a40;
}

.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.5rem;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    color: #495057;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #fff;
    border-color: #dee2e6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-icon {
    font-size: 1.25rem;
}

.product-detail-card {
    background: #fff;
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Адаптивність для product-detail-card */
@media (max-width: 1200px) {
    .product-detail-card {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 1.75rem;
    }
    
    .product-detail-image {
        min-height: 18rem;
        max-height: 25rem;
        order: 1;
    }
    
    .product-detail-info {
        order: 2;
    }
}

@media (max-width: 1024px) {
    .product-detail-card {
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .product-detail-image {
        min-height: 16rem;
        max-height: 22rem;
    }
    
    .product-detail-name {
        font-size: 1.75rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
}

.product-detail-image {
    width: 15rem;
    height: 22rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    object-fit: cover;
}

.product-detail-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e9ecef;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.product-detail-image .placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 41rem;
}

.product-detail-header {
    padding-bottom: 1rem;
}

.product-detail-name {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 0.5rem 0;
}

.product-detail-weight {
    color: #FF757A;
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.product-detail-description {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.product-detail-ingredients {
    margin: 1.5rem 0;
}

.ingredients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ingredients-header h3 {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.ingredients-nav {
    display: flex;
    gap: 0.5rem;
}

.ingredients-nav-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(179, 174, 174, 0.39);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #6c757d;
    font-size: 1rem;
}

.ingredients-nav-btn:hover {
    background: rgba(179, 174, 174, 0.5);
    color: #495057;
}

.ingredients-scroll-container {
    overflow: hidden;
    position: relative;
}

.ingredients-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.ingredients-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.ingredient-card {
    flex-shrink: 0;
    width: 6rem;
    background: rgba(174, 174, 174, 0.39);
    border-radius: 10px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.ingredient-card:hover {
    transform: translateY(-2px);
    background: rgba(179, 174, 174, 0.5);
}

.ingredient-image {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    font-size: 1.5rem;
}

.ingredient-name {
    color: #495057;
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

.product-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-detail-price {
    color: #000;
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.add-to-cart-detail-btn {
    background: #E31E25;
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.add-to-cart-detail-btn:hover {
    background: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(227, 30, 37, 0.3) !important;
}

.add-to-cart-detail-btn:focus,
.add-to-cart-detail-btn:active {
    outline: none;
}

@media (max-width: 480px) {
    .product-detail-card {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .product-detail-name {
        font-size: 1.5rem;
    }
    
    .product-detail-weight {
        font-size: 1rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
    
    .add-to-cart-detail-btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    .product-nav-btn {
        width: 2.5rem;
        height: 12rem;
    }
    
    .product-nav-prev {
        margin-left: -1rem;
    }
    
    .product-nav-next {
        margin-right: -1rem;
    }
    
    .nav-arrow {
        font-size: 1.25rem;
    }
    
    .recommendations-section {
        padding: 1.5rem 0;
    }
    
    .recommendations-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        padding: 0.75rem;
    }
    
    .recommendation-image {
        height: 8rem;
    }
    
    .recommendation-name {
        font-size: 1rem;
    }
    
    .recommendation-weight {
        font-size: 0.875rem;
    }
    
    .recommendation-ingredients {
        font-size: 0.75rem;
    }
    
    .recommendation-price {
        font-size: 1.125rem;
    }
    
    .recommendations-nav-btn {
        width: 2rem;
        height: 4rem;
    }
    
    .recommendations-nav-btn span {
        font-size: 1.25rem;
    }
}

/* Recommendations Section */
.recommendations-section {
    padding: 3rem 0;
    background: #fff;
}

.recommendations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.recommendations-title {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.recommendations-carousel {
    position: relative;
    padding: 0;
}

.recommendations-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.recommendations-nav-btn {
    width: 3rem;
    height: 6rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.recommendations-nav-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.recommendations-prev {
    margin-left: -1.5rem;
}

.recommendations-next {
    margin-right: -1.5rem;
}

.recommendations-nav-btn span {
    font-size: 1.5rem;
    color: #6c757d;
    font-weight: 300;
}

.recommendations-scroll-container {
    overflow: hidden;
    position: relative;
}

.recommendations-list {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.recommendation-card {
    flex-shrink: 0;
    width: 22rem;
    max-width: 100%;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.recommendation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recommendation-image {
    width: 100%;
    max-width: 100%;
    height: 12rem;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    box-sizing: border-box;
}

.recommendation-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.recommendation-name {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.recommendation-weight {
    color: #FF757A;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.recommendation-ingredients {
    color: #6c757d;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.recommendation-price {
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Mobile styles for product detail */
@media (max-width: 820px) {
    .product-detail-section {
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .product-detail-container {
        padding: 0 1rem;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-image {
        width: 100%;
        min-height: 16rem;
        max-height: 22rem;
        order: 1;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }
    
    .product-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        max-width: 100%;
        max-height: 100%;
    }
    
    .product-detail-info {
        order: 2;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-name {
        font-size: 1.75rem;
    }
    
    .product-detail-weight {
        font-size: 1.125rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
    
    .product-detail-footer {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.875rem 0;
    }
    
    .product-detail-price {
        flex: 1;
        min-width: 120px;
    }
    
    .quantity-controls {
        flex-shrink: 0;
    }
    
    .ingredients-header {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .ingredients-header h3 {
        flex: 1;
        min-width: 120px;
    }
    
    .ingredients-nav {
        flex-shrink: 0;
    }
    
    .ingredient-card {
        width: 5rem;
        padding: 0.75rem 0.5rem;
    }
    
    .ingredient-image {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .ingredient-icon {
        font-size: 1.25rem;
    }
    
    .ingredient-name {
        font-size: 0.6rem;
    }

    .recommendation-footer {
        flex-direction: row;
    }
    
    .product-nav-btn {
        width: 3rem;
        height: 20rem;
    }
    
    .product-nav-prev {
        margin-left: 0.5rem;
    }
    
    .product-nav-next {
        margin-right: 0.5rem;
    }
    
    .nav-arrow {
        font-size: 1.5rem;
    }
    
    .recommendations-section {
        padding: 2rem 0;
    }
    
    .recommendations-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 10rem;
    }
    
    .recommendation-name {
        font-size: 1.125rem;
        height: 5rem;
    }
    
    .recommendation-ingredients {
        height: 11rem;
    }

    .recommendation-price {
        font-size: 0.93rem;
    }
    
    .recommendations-nav-btn {
        width: 2.5rem;
        height: 5rem;
    }
    
    .recommendations-prev {
        margin-left: -1rem;
    }
    
    .recommendations-next {
        margin-right: -1rem;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding: 0.5rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .product-detail-container {
        padding: 0 2.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-card {
        padding: 1rem;
        gap: 1.5rem;
        border-radius: 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .recommendation-footer {
        flex-direction: column;
    }
    
    .product-detail-image {
        width: 100%;
        min-height: 12rem;
        max-height: 18rem;
        border-radius: 0.5rem;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }
    
    .product-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        max-width: 100%;
        max-height: 100%;
    }
    
    .product-detail-info {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-name {
        font-size: 1.5rem;
    }
    
    .product-detail-weight {
        font-size: 0.9rem;
    }
    
    .product-detail-price {
        font-size: 1.5rem;
    }
    
    .product-detail-footer {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }
    
    .product-detail-price {
        flex: 1;
        min-width: 100px;
        font-size: 1.4rem;
    }
    
    .quantity-controls {
        flex-shrink: 0;
    }
    
    .ingredients-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .ingredients-header h3 {
        font-size: 1.125rem;
        min-width: 100px;
    }
    
    .ingredients-nav {
        gap: 0.375rem;
    }
    
    .ingredients-nav-btn {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0.75rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 0.625rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 15rem;
    }
    
    .recommendation-name {
        font-size: 0.875rem;
        height: 2rem;
    }
    
    .recommendation-weight {
        font-size: 0.75rem;
    }
    
    .recommendation-ingredients {
        font-size: 0.725rem;
        line-height: 1.2;
        height: 4.5rem;
    }
    
    .recommendation-price {
        font-size: 1rem;
    }
}

/* Extra small mobile styles */
@media (max-width: 360px) {
    .product-detail-section {
        padding: 0.25rem 0;
    }
    
    .product-detail-container {
        padding: 0 0.25rem;
    }
    
    .product-detail-card {
        padding: 2.5rem;
        gap: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .product-detail-image {
        min-height: 10rem;
        max-height: 14rem;
    }
    
    .product-detail-name {
        font-size: 1.25rem;
    }
    
    .product-detail-price {
        font-size: 1.25rem;
    }
}

@media (max-width: 320px) {
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 6rem;
    }
    
    .recommendation-name {
        font-size: 0.75rem;
    }
    
    .recommendation-weight {
        font-size: 0.625rem;
    }
    
    .recommendation-ingredients {
        font-size: 0.5rem;
        line-height: 1.1;
    }
    
    .recommendation-price {
        font-size: 0.875rem;
    }
}

/* ===== Wave Header (SVG background) ===== */
.wave-header {
    top: 0;
    z-index: 100;
    background: transparent;
    padding: 0.75rem 0;
}

.wave-header__inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    height: 220px;
}

.wave-header__bg { width: 100%; height: 100%; display: block; }
.wave-header__path { fill: #434343; filter: drop-shadow(0 0.3rem 1rem rgba(0,0,0,.25)); }

.wave-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 135px;
    height: 135px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wave-header__logo-inner {
    margin: 0 auto;
}

.wave-header__logo img { 
    width: 90%; 
    height: 90%; 
    margin: 0 auto;
}

.wave-header__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.wave-header__nav--left { 
    left: 0px; 
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wave-header__nav--right { 
    right: 0px; 
    padding-right: 0.5rem;
}

.nav-pill {
    color: #000;
    text-decoration: none;
    font-weight: 300;
    letter-spacing: 0px;
    padding: 14px 22px;
    border-radius: 999px;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-size: 1.5rem;
}
.nav-pill::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.08); border-radius: inherit; opacity: 0; transition: opacity .2s ease, transform .2s ease; }
.nav-pill:hover::after { opacity: 1; }
.nav-pill:active { transform: translateY(1px); }

.cart-pill { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 12px 18px; 
    border-radius: 999px; 
    background: #ffffff; 
    color: #111; 
    text-decoration: none; 
    position: relative;
}
.cart-pill__label { font-weight: 400; color: #000; font-size: 1rem; }
.cart-pill__price { font-weight: 400; color: #000; }
.cart-pill__badge { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; border: 3px solid #434343; }

.nav-pill, .cart-pill { transition: transform .18s ease, box-shadow .18s ease; }
.nav-pill:hover { transform: translateY(-1px); }
.cart-pill:hover { box-shadow: 0 10px 22px rgba(0,0,0,.18); transform: translateY(-1px); }

@media (max-width: 1180px) { .wave-header__inner { height: 160px; } .wave-header__logo { width: 110px; height: 110px; } }
@media (max-width: 960px) { .wave-header__inner { height: 140px; } .wave-header__logo { width: 90px; height: 90px; } .wave-header__nav { gap: 16px; } .nav-pill { padding: 10px 16px; } }
@media (max-width: 820px) { .wave-header__inner { height: 120px; } .wave-header__logo { width: 75px; height: 75px; } .wave-header__nav--left { left: 8px; } .wave-header__nav--right { right: 8px; padding-right: 0.1rem; } }
@media (max-width: 720px) { .wave-header { display: none; } }

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break {
        page-break-before: always;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-red-600 {
        background-color: #000 !important;
    }
    
    .text-red-600 {
        color: #000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .dark-mode {
        @apply bg-gray-900 text-white;
    }
}

/* Custom utility classes */
.text-shadow {
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(0.625rem);
}

/* Cart modal animations */
.cart-modal-enter {
    animation: modalEnter 0.3s ease-out;
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Notification styles */
.notification {
    @apply fixed top-4 right-4 p-4 rounded-lg shadow-lg z-50 transform transition-all duration-300;
}

.notification-enter {
    @apply translate-x-full opacity-0;
}

.notification-enter-active {
    @apply translate-x-0 opacity-100;
}

.notification-exit {
    @apply translate-x-0 opacity-100;
}

.notification-exit-active {
    @apply translate-x-full opacity-0;
}


@media (max-width: 1185px) {
    .nav-bar {
        height: 8rem;
    }
    .logo {
        width: 7.25rem;
        height: 7.25rem;
    }
    .nav-pill {
        font-size: 1.25rem;
    }
    .cart-pill__label {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .nav-bar {
        height: 7rem;
    }
    .logo {
        width: 6.25rem;
        height: 6.25rem;
    }
    .nav-pill {
        font-size: 1.125rem;
    }
    .cart-pill__label {
        font-size: 1rem;
    }
}

@media (max-width: 960px) {
    .nav-pill {
        font-size: 1rem;
    }
    .cart-pill__label {
        font-size: 0.875rem;
    }
}

@media (max-width: 870px) {
    .nav-pill {
        font-size: 0.875rem;
    }
    .cart-pill__label { 
        font-size: 0.875rem;
    }
}

@media (max-width: 800px) {
    .nav-pill {
        font-size: 0.75rem;
    }
    .cart-pill__label {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        height: 6rem;
    }
    .cart-pill__label {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .product-nav-btn {
        width: 2rem;
        height: 20rem;
    }
}

@media (max-width: 360px) {
    .product-nav-btn {
        width: 1.5rem;
        height: 10rem;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 0.375rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 5rem;
    }
    
    .recommendation-name {
        font-size: 0.875rem;
    }
    
    .recommendation-weight {
        font-size: 0.75rem;
    }
    
    .recommendation-price {
        font-size: 0.875rem;
    }
}

@media (max-width: 1028px) {
    .cart-pill {
        padding: 8px 8px;
    }
}

@media (max-width: 840px) {
    .cart-pill {
        padding: 6px 6px;
    }
}

html {

    box-sizing: border-box;
    --bgColorMenu : #1d1d27;
    --duration: .7s;    

}

html *,
html *::before,
html *::after {

    box-sizing: inherit;

}

.menu{
    z-index: 10;
    margin: 120px 0 0;
    display: flex;
    width: 100%;
    font-size: 1.5em;
    padding: 0 2.85em;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: #434343;
    border-radius: 1000px;
    
}

.menu__item {
    color: #292A2A;
    all: unset;
    flex-grow: 1;
    z-index: 100;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    align-items: center;
    will-change: transform;
    justify-content: center;
    padding: 0.6em 0 0.6em;
    transition: transform var(--timeOut , var(--duration));
    
}

.menu__item::before{
    
    content: "";
    z-index: -1;
    width: 5.4em;
    height: 5.4em;
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    transition: background-color var(--duration), transform var(--duration);
    
}


.menu__item.active {

}

.menu__item.active::before{
    
    transform: scale(1);
    background-color: var(--bgColorItem);

}

.icon{
    
    width: 2.6em;
    height: 2.6em;
    stroke: white;
    fill: transparent;
    stroke-width: 1pt;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    
}

.menu__item.active .icon {

    animation: strok 1.5s reverse;
    
}

@keyframes strok {

    100% {

        stroke-dashoffset: 400;

    }

}

.menu__border {
    left: 0;
    bottom: 99%;
    width: 10.9em;
    height: 2.4em;
    position: absolute;
    clip-path: url(#menu);
    will-change: transform;
    background-color: var(--bgColorMenu);
    transition: transform var(--timeOut, var(--duration));
    transform-origin: left center; /* ✅ фіксує точку */
  }
  
  /* Нижня перевернута хвиля */
  .menu__border-wrapper {
    position: absolute;
    bottom: -2.4em;
    width: 10.9em;
    height: 2.4em;
    transform: scaleY(-1) translateX(-2px); /* ✅ дзеркало + компенсація */
    transform-origin: left center; /* ✅ вирівняно */
    overflow: visible;
    z-index: 1;
    left: 0;
  }
  
  .menu__border--bottom {
    position: absolute;
    top: 1px;
    left: 2px;
    width: 100%;
    height: 100%;
    clip-path: url(#menu);
    background-color: var(--bgColorMenu);
  }
  
  
  
.menu__border.svg-container-rotate{
    transform:scaleX(-1); /* дзеркально */
  }

.svg-container {

    width: 0;
    height: 0;
}

.svg-container-rotate {
    transform: rotate(180deg);
    bottom: -55px;
}
.menu-label {
    font-size: 18px;
}


@media screen and (max-width: 50em) {
    .menu{
        font-size: .8em;
    }
}
@media (max-width: 1275px) {
    .menu__border, .menu__border-wrapper, .menu__item::before {
        display: none !important;
    }
    .menu-label {
        font-size: 1rem;
    }
    .active .menu-label {
        color: #ff4664;
    }
    .menu {
        gap: 10px;
        flex-wrap: nowrap;
        padding: 0.6em 0;
        margin-top: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ff4664 #f0f0f0;
        border-radius: 0;
        justify-content: flex-start;
        scroll-padding-inline: 2.85em;
    }
    .menu::before,
    .menu::after {
        content: '';
        flex-shrink: 0;
        width: 2.85em;
    }
    .menu__item:first-of-type {
        margin-left: 0;
    }
    .menu::-webkit-scrollbar {
        height: 6px;
    }
    .menu::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb {
        background: #ff4664;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb:hover {
        background: #d41621;
    }
    .menu__item {
        padding: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 800px) {
    .menu__border, .menu__border-wrapper, .menu__item::before {
        display: none !important;
    }
    .menu-label {
        font-size: 17px;
    }
    .active .menu-label {
        color: #ff4664;
    }
    .menu {
        gap: 18px;
        flex-wrap: nowrap;
        padding: 1.6em 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ff4664 #f0f0f0;
        border-radius: 0;
        justify-content: flex-start;
        scroll-padding-inline: 1.5em;
    }
    .menu::before,
    .menu::after {
        content: '';
        flex-shrink: 0;
        width: 1.5em;
    }
    .menu__item:first-of-type {
        margin-left: 0;
    }
    .menu::-webkit-scrollbar {
        height: 6px;
    }
    .menu::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb {
        background: #ff4664;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb:hover {
        background: #d41621;
    }
    .menu__item {
        padding: 0;
        flex-shrink: 0;
    }
}

/* ===== CART MODAL STYLES ===== */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal.hidden {
    display: none;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

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

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.cart-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-modal-close:hover {
    background: #ff4664;
    color: white;
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-empty-message {
    text-align: center;
    color: #999;
    padding: 2rem 0;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    gap: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-item-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #e0e0e0;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item-qty-btn:hover {
    background: #ff4664;
    color: white;
}

.cart-item-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    font-weight: 700;
    color: #ff4664;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #ff4664;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    color: #d41621;
    transform: scale(1.1);
}

.cart-modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
}

.cart-modal-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.cart-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4664;
}

.cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #ff4664;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: #d41621;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 70, 100, 0.3);
}

.cart-checkout-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cart-modal-header,
    .cart-modal-body,
    .cart-modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .cart-modal-title {
        font-size: 1.25rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
}
.body-bg {
    position: relative;
}
/* ===== MOBILE HEADER STYLES ===== */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    margin-left: -16px;
    margin-right: -16px;
    background: white;
}

.desktop-header {
    display: block;
}

.mobile-header__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem;
    max-width: 100%;
    position: relative;
}

/* Burger Menu Button */
.mobile-header__burger {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    justify-self: start;
}

.mobile-header__burger:focus,
.mobile-header__burger:active {
    outline: none;
    box-shadow: none !important;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-header__burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-header__burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-header__burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Logo */
.mobile-header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.mobile-header__logo img {
    height: 60px;
    width: 60px;
}

/* Mobile Cart Button */
.mobile-header__cart {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    color: #333;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    justify-self: end;
}

.mobile-header__cart:focus,
.mobile-header__cart:active {
    outline: none;
    box-shadow: none !important;
}

.mobile-header__cart svg {
    width: 24px;
    height: 24px;
}

.mobile-header__cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4664;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    z-index: 1;
    overflow: scroll;
    scrollbar-width: none;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: #ff4664;
    color: white;
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
    overflow: scroll;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: #f8f9fa;
    border-left-color: #ff4664;
    color: #ff4664;
}

.mobile-menu-link.active {
    background: #fff5f7;
    border-left-color: #ff4664;
    color: #ff4664;
    font-weight: 600;
}

.mobile-menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

.mobile-menu-section-title {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-category-link {
    position: relative;
}

/* Responsive - Show mobile header on small screens */
@media (max-width: 768px) {
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header {
        display: block;
    }
    .product-ingredients .ingredients-list {
        height: 6rem;
    }
}

/* ========================================
   CHECKOUT MODAL STYLES
   ======================================== */

/* Checkout Modal Base */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.checkout-modal.hidden {
    display: none;
}

.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.checkout-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    animation: slideInDown 0.3s ease;
}

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

/* Checkout Modal Header */
.checkout-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.checkout-modal-close {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkout-modal-close:hover {
    background: #ff4664;
    color: white;
    transform: rotate(90deg);
}

/* Checkout Modal Body */
.checkout-modal-body {
    padding: 2rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
    scrollbar-width: none;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff4664;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff4664;
    box-shadow: 0 0 0 3px rgba(255, 70, 100, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
}

/* Radio Buttons */
.form-radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.radio-label:hover {
    border-color: #ff4664;
    background: #fff5f7;
}

.radio-input {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    accent-color: #ff4664;
    cursor: pointer;
}

.radio-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.radio-input:checked + .radio-text {
    color: #ff4664;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    accent-color: #ff4664;
    cursor: pointer;
}

.checkbox-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 1rem;
    color: #555;
}

.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.summary-total {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 2px solid #ddd;
}

.summary-total .summary-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.summary-total .summary-value {
    font-size: 1.25rem;
    color: #ff4664;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #ff4664;
    color: white;
}

.btn-primary:hover {
    background: #e63956;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 70, 100, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-modal.hidden {
    display: none;
}

.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.success-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.success-icon svg {
    width: 50px;
    height: 50px;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.success-order-number {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-modal {
        padding: 0;
    }
    
    .checkout-modal-content {
        border-radius: 0;
        margin: 0;
        min-height: 100vh;
        max-width: 100%;
    }
    
    .checkout-modal-body {
        padding: 1rem;
        max-height: calc(100vh - 150px);
    }
    
    .checkout-modal-header {
        padding: 1rem;
    }
    
    .checkout-modal-title {
        font-size: 1.25rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-radio-group {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .order-summary {
        margin-top: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .checkout-modal-header {
        padding: 0.75rem;
    }
    
    .checkout-modal-title {
        font-size: 1.125rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .success-modal-content {
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .success-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 1126px) {
    .product-detail-info {
        max-width: 38rem;
    }
}

@media (max-width: 1074px) {
    .product-detail-info {
        max-width: 36rem;
    }
}

@media (max-width: 1040px) {
    .product-detail-info {
        max-width: 34rem;
    }
}   

@media (max-width: 999px) {
    .product-detail-info {
        max-width: 32rem;
    }
}

@media (max-width: 962px) {
    .product-detail-info {
        max-width: 30rem;
    }
}

@media (max-width: 933px) {
    .product-detail-info {
        max-width: 29rem;
    }
}

@media (max-width: 917px) {
    .product-detail-info {
        max-width: 27rem;
    }
}

@media (max-width: 862px) {
    .product-detail-info {
        max-width: 24rem;
    }
}

@media (max-width: 840px) {
    .product-detail-info {
        max-width: 23rem;
    }
}

@media (max-width: 1250px) {
    .product-card {
        height: 31rem;
    }
}
/* Custom CSS for KATANA Sushi */

/* Global Styles */
html, body {
    background: #fff;
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    --bgColorMenu : #434343;
    --duration: .7s;    
    padding-top: env(safe-area-inset-top); /* відступ для статус-бара */
}

/* Apply Inter font to all elements */
* {
    font-family: 'Inter', sans-serif;
}

/* Font family */
.font-inter {
    font-family: 'Inter', sans-serif;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* Header Styles */
:root {
    --bar-bg: #3e3e3e;
    --bar-text: #ffffff;
    --accent: #ff4664;
    --light: #ffffff;
    --shadow: rgba(0,0,0,.18);
}

/* ===== NEW SIMPLE HEADER STYLES ===== */
.simple-header {
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Logo */
.header-logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #000;
}

.logo-img {
    width: 2.5rem;
    height: 2.5rem;
    object-fit: contain;
}

.logo-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
}

/* Header Navigation */
.header-nav {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 2rem;
}

.nav-list li a {
    text-decoration: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: #ff4664;
}

/* Header Cart */
.header-cart {
    display: flex;
    align-items: center;
}

.cart-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #000;
    transition: all 0.3s ease;
}

.cart-link:hover {
    background: #e9ecef;
    color: #ff4664;
}

.cart-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
}

.cart-price {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #ff4664;
}

.cart-badge {
    background: #ff4664;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.25rem;
    text-align: center;
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 0.25rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    width: 1.5rem;
    height: 2px;
    background: #000;
    transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e9ecef;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.mobile-nav {
    padding: 1rem;
}

.mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-list li a {
    text-decoration: none;
    color: #000;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    padding: 0.5rem 0;
    display: block;
    border-bottom: 1px solid #f8f9fa;
}

.mobile-nav-list li a:hover {
    color: #ff4664;
}

.mobile-cart-section {
    padding: 1rem;
    border-top: 1px solid #f8f9fa;
}

.mobile-cart-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    background: #f8f9fa;
    border-radius: 0.5rem;
    text-decoration: none;
    color: #000;
}

.mobile-cart-badge {
    background: #ff4664;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    min-width: 1.25rem;
    text-align: center;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu.active {
        display: block;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .cart-text {
        display: none;
    }
    
    .cart-link {
        padding: 0.5rem;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 0.75rem;
    }
    
    .logo-img {
        width: 2rem;
        height: 2rem;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }
    
    .cart-link {
        padding: 0.375rem;
    }
    
    .cart-price {
        font-size: 0.8rem;
    }
}


.logo-content {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.logo-text {
    text-align: center;
    z-index: 3;
}

.logo-main {
    font-size: 1rem;
    font-weight: bold;
    color: #ff4664;
    line-height: 1;
    margin-bottom: 0.125rem;
}

.logo-sub {
    font-size: 0.5rem;
    color: #333;
    line-height: 1;
    margin-bottom: 0.0625rem;
}

.logo-delivery {
    font-size: 0.375rem;
    color: #666;
    line-height: 1;
}

.logo-graphics {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Sushi items */
.sushi-items {
    position: absolute;
    left: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.sushi-roll {
    width: 0.75rem;
    height: 0.375rem;
    border-radius: 0.1875rem;
}

.sushi-roll.orange {
    background: #ff6b35;
}

.sushi-roll.black {
    background: #2c2c2c;
}

.sashimi {
    width: 0.5rem;
    height: 0.25rem;
    background: #ff6b35;
    border-radius: 0.125rem;
}

.container-width-100 {
    width: 100%;
}

/* Katana sword */
.katana-sword {
    position: absolute;
    left: 50%;
    top: 1.25rem;
    transform: translateX(-50%);
    width: 0.125rem;
    height: 1.25rem;
    background: #ff4664;
    border-radius: 0.0625rem;
}

.katana-sword::before {
    content: "";
    position: absolute;
    bottom: -0.125rem;
    left: -0.0625rem;
    width: 0.25rem;
    height: 0.25rem;
    background: #8b4513;
    border-radius: 50%;
}

/* Sakura branch */
.sakura-branch {
    position: absolute;
    right: 0.5rem;
    top: 0.9375rem;
    width: 0.9375rem;
    height: 0.9375rem;
}

.sakura-branch::before {
    content: "🌸";
    font-size: 0.5rem;
    position: absolute;
    top: 0;
    left: 0;
}

.sakura-branch::after {
    content: "🌸";
    font-size: 0.375rem;
    position: absolute;
    top: 0.1875rem;
    right: 0;
}

/* Ліве та праве меню */
.nav-left,
.nav-right {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin: 0;
    padding: 0 0.5rem;
}

.nav-left a,
.nav-right a,
.menu {
    color: var(--bar-text);
    text-decoration: none;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.nav-left a:hover,
.nav-right a:hover {
    color: var(--accent);
}

/* Кошик із бейджем */
.cart {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: var(--light);
    color: #111;
    border-radius: 999px;
    padding: 0.625rem 0.875rem;
    line-height: 1;
    text-decoration: none;
    transition: transform 0.2s ease, color 0.3s ease;
}

  .cart:hover {
      transform: translateY(-1px);
      color: #ff4664;
  }

  .cart:active {
      color: #ff4664;
  }

  .cart span {
      color: #000;
      font-family: Inter;
      font-style: normal;
      font-weight: 500;
      line-height: normal;
  }

.badge {
    position: absolute;
    right: -0.375rem;
    top: -0.5rem;
    min-width: 1.375rem;
    height: 1.375rem;
    padding: 0 0.375rem;
    border-radius: 999px;
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    display: grid;
    place-items: center;
    border: 0.125rem solid var(--bar-bg);
    font-weight: bold;
}

/* Burger Menu Styles */
.burger-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 2rem;
    height: 2rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 60;
}

.burger-line {
    width: 1.5rem;
    height: 0.2rem;
    background-color: var(--bar-text);
    margin: 0.2rem 0;
    transition: all 0.3s ease;
    border-radius: 0.1rem;
}

.burger-menu-toggle.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(0.4rem, 0.4rem);
}

.burger-menu-toggle.active .burger-line:nth-child(2) {
    opacity: 0;
}

.burger-menu-toggle.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(0.4rem, -0.4rem);
}

/* Mobile Dropdown Menu */
.mobile-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    width: 20rem;
    max-width: 90vw;
    background: var(--light);
    border-radius: 0.75rem;
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    z-index: 55;
    transform: translateY(-1rem);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-dropdown.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    padding: 1rem;
}

.dropdown-section {
    margin-bottom: 1.5rem;
}

.dropdown-section:last-child {
    margin-bottom: 0;
}

.dropdown-title {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin: 0 0 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 0.5rem;
}

.dropdown-nav-list,
.dropdown-categories-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dropdown-nav-list li,
.dropdown-categories-list li {
    margin-bottom: 0.5rem;
}

.dropdown-nav-list li:last-child,
.dropdown-categories-list li:last-child {
    margin-bottom: 0;
}

.dropdown-nav-list a,
.dropdown-categories-list a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    display: block;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    border: 1px solid transparent;
}

.dropdown-nav-list a:hover,
.dropdown-categories-list a:hover {
    background: var(--accent);
    color: var(--light);
    border-color: var(--accent);
    transform: translateX(0.25rem);
}

.mobile-cart {
    background: var(--accent);
    color: var(--light);
    padding: 0.875rem 1.25rem;
    border-radius: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--accent);
}

.mobile-cart:hover {
    background: var(--light);
    color: var(--accent);
    transform: scale(1.02);
    box-shadow: 0 0.25rem 1rem rgba(255, 70, 100, 0.3);
}

/* Адаптивність */
@media (max-width: 880px) {
    .nav-left,
    .nav-right {
        display: none;
    }
    
    .burger-menu-toggle {
        display: flex;
    }
    
    .logo {
        width: 6rem;
        height: 6rem;
    }
    .nav-bar {
        height: 4rem;
        background-size: contain;
        justify-content: space-between;
        padding: 0 1rem;
    }
    
    .burger-menu-toggle {
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 640px) {
    .nav-bar {
        background-size: cover;
        background-position: center top;
        padding: 0 0.75rem;
    }
    
    .burger-menu-toggle {
        right: 0.75rem;
    }
    
    .mobile-dropdown {
        width: 18rem;
        right: -0.5rem;
    }
    
    .dropdown-nav-list a,
    .dropdown-categories-list a {
        font-size: 0.9rem;
        padding: 0.625rem 0.875rem;
    }
}

/* Додаткові адаптивні стилі для SVG */
@media (max-width: 480px) {
    .nav-bar {
        height: 3.5rem;
        padding: 0 0.5rem;
    }
    .logo {
        width: 5rem;
        height: 5rem;
    }
    
    .burger-menu-toggle {
        right: 0.5rem;
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .burger-line {
        width: 1.25rem;
        height: 0.15rem;
    }
    
    .mobile-dropdown {
        width: 16rem;
        right: -0.75rem;
    }
    
    .dropdown-content {
        padding: 0.875rem;
    }
    
    .dropdown-nav-list a,
    .dropdown-categories-list a {
        font-size: 0.85rem;
        padding: 0.5rem 0.75rem;
    }
}

/* Banner Styles */
.banner {
    height: 30rem;
    position: relative;
    overflow: hidden;
    margin: 2.5rem auto;
    max-width: 1500px;
    border-radius: 1rem;
    z-index: 3;
    background: #0f172a;
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
    overflow: hidden;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(0, 0, 0, 0.65) 0%, rgba(15, 52, 96, 0.45) 50%, rgba(0, 0, 0, 0.65) 100%);
    opacity: 1;
    transition: opacity 0.6s ease-in-out;
}

.banner-slide.active::before {
    opacity: 1;
}

.banner-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: white;
    transform: scale(1.05);
    transition: transform 5s ease;
}

.banner-slide.active .banner-image {
    transform: scale(1);
}

/* Navigation Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    color: var(--light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    backdrop-filter: blur(0.5rem);
}

.slider-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}

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

.slider-btn svg {
    width: 1.25rem;
    height: 1.25rem;
}

.slider-prev {
    left: 1.5rem;
}

.slider-next {
    right: 1.5rem;
}

/* Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 10;
}

.indicator {
    width: 0.75rem;
    height: 0.75rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--accent);
    border-color: var(--accent);
    box-shadow: 0 0 1rem rgba(255, 70, 100, 0.5);
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--light);
    max-width: 800px;
    padding: 0 2rem;
}

.banner-title {
    font-size: 4rem;
    font-weight: 900;
    margin: 0 0 1rem 0;
    text-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.5);
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    margin: 0;
    opacity: 0.9;
    text-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.5);
}

.banner-cta {
    display: inline-flex;
    margin-top: 1.5rem;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    background: var(--accent);
    color: var(--light);
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    box-shadow: 0 1rem 2rem rgba(255, 70, 100, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.banner-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 1.2rem 2.5rem rgba(255, 70, 100, 0.45);
}

/* Banner Responsive Styles */
@media (max-width: 768px) {
    .banner {
        height: 25rem;
        margin: 2rem auto;
        max-width: calc(100vw - 4rem);
    }
    
    .slider-btn {
        width: 2.5rem;
        height: 2.5rem;
    }
    
    .slider-btn svg {
        width: 1rem;
        height: 1rem;
    }
    
    .slider-prev {
        left: 1rem;
    }
    
    .slider-next {
        right: 1rem;
    }
    
    .slider-indicators {
        bottom: 1.5rem;
        gap: 0.5rem;
    }
    
    .indicator {
        width: 0.625rem;
        height: 0.625rem;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .banner-subtitle {
        font-size: 1.25rem;
    }
    
    .banner-content {
        padding: 0 1.5rem;
    }
}

@media (max-width: 640px) {
    .banner {
        height: 20rem;
        margin: 1.5rem auto;
        max-width: calc(100vw - 3rem);
    }
    
    .slider-btn {
        width: 2rem;
        height: 2rem;
    }
    
    .slider-btn svg {
        width: 0.875rem;
        height: 0.875rem;
    }
    
    .slider-prev {
        left: 0.75rem;
    }
    
    .slider-next {
        right: 0.75rem;
    }
    
    .slider-indicators {
        bottom: 1rem;
        gap: 0.375rem;
    }
    
    .indicator {
        width: 0.5rem;
        height: 0.5rem;
    }
    
    .banner-title {
        font-size: 2.5rem;
    }
    
    .banner-subtitle {
        font-size: 1.125rem;
    }
    
    .banner-content {
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .banner {
        height: 18rem;
        margin: 1rem auto;
        max-width: calc(100vw - 2rem);
    }
    
    .slider-btn {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .slider-btn svg {
        width: 0.75rem;
        height: 0.75rem;
    }
    
    .slider-prev {
        left: 0.5rem;
    }
    
    .slider-next {
        right: 0.5rem;
    }
    
    .slider-indicators {
        bottom: 0.75rem;
        gap: 0.25rem;
    }
    
    .indicator {
        width: 0.375rem;
        height: 0.375rem;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-subtitle {
        font-size: 1rem;
    }
}

/* Navigation Bar Styles */
.navigation-bar {
    background: #434343;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 0.125rem 0.5rem rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 1500px;
    border-radius: 1000px;
    overflow: hidden;
    height: 5rem;
    display: flex;
    align-items: center;
}

.nav-container {
    padding: 1.2rem 2.5rem;
    width: 100%;
}

.category-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 0.75rem;
    text-decoration: none;
    color: var(--light);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    min-width: 100px;
    position: relative;
    overflow: hidden;
}

.nav-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--accent), #ff4757);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.nav-item:hover::before {
    opacity: 0.2;
}

.nav-item:hover {
    transform: translateY(-0.125rem);
    box-shadow: 0 0.25rem 1rem rgba(255, 70, 100, 0.2);
}

.nav-item:active {
    transform: translateY(0);
}

.nav-text {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-text {
    transform: scale(1.05);
}

.nav-item.active {
    background: #E31E25;
    border-radius: 50%;
}

.nav-item.active .nav-text {
    font-weight: bold;
}

/* Navigation Bar Scroll Styles */
.navigation-bar::-webkit-scrollbar {
    height: 4px;
}

.navigation-bar::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
}

.navigation-bar::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.navigation-bar::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Navigation Bar Responsive Styles */
@media (max-width: 1200px) {
    .navigation-bar {
        height: 4.5rem;
        overflow-x: auto;
        overflow-y: hidden;
    }
    
    .nav-container {
        padding: 1rem 2rem;
        min-width: max-content;
    }
    
    .category-nav {
        gap: 0.75rem;
        flex-wrap: nowrap;
    }
    
    .nav-item {
        min-width: 90px;
        padding: 0.875rem 0.5rem;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 768px) {
    .navigation-bar {
        border-radius: 0;
        height: 4rem;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 1.5rem 0;
    }
    
    .nav-container {
        padding: 0.8rem 1.5rem;
        min-width: max-content;
    }
    
    .category-nav {
        gap: 0.5rem;
        flex-wrap: nowrap;
        justify-content: flex-start;
    }
    
    .nav-item {
        min-width: 80px;
        padding: 0.75rem 0.375rem;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .navigation-bar {
        height: 3.5rem;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 1rem 0;
    }
    
    .nav-container {
        padding: 0.6rem 1rem;
        min-width: max-content;
    }
    
    .category-nav {
        display: flex;
        flex-wrap: nowrap;
        gap: 0.5rem;
    }
    
    .nav-item {
        max-width: none;
        padding: 0.625rem 0.25rem;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .navigation-bar {
        height: 3rem;
        overflow-x: auto;
        overflow-y: hidden;
        margin: 1rem 0;
    }
    
    .nav-container {
        padding: 0.5rem 0.75rem;
        min-width: max-content;
    }
    
    .nav-item {
        padding: 0.5rem 0.125rem;
        min-width: 70px;
        flex-shrink: 0;
    }
    
    .nav-text {
        font-size: 0.75rem;
    }
}

/* Product Cards Styles */
.products-section {
    padding: 3rem 0;
    background: #fff;
}

.products-container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
    gap: 2rem;
    justify-items: center;
}

.product-card {
    width: 22rem;
    height: 35rem;
    background: transparent;
    border: none;
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1rem;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.1);
    z-index: -1;
    transition: all 0.3s ease;
}

.product-card:hover::before {
    box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.15);
    transform: translateY(-0.25rem);
}

.product-card:hover {
    transform: translateY(-0.125rem);
    cursor: pointer;
}

.product-image {
    height: 15rem;
    margin-bottom: 1rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: #fff;
    opacity: 1;
    border: 1px solid #e9ecef;
}

.placeholder-icon {
    font-size: 4rem;
    filter: drop-shadow(0 0.125rem 0.25rem rgba(0, 0, 0, 0.2));
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark);
    margin: 0 0 0.75rem 0;
    line-height: 1.3;
}

.product-weight {
    color: #FF757A;
    font-family: Inter;
    font-size: 20px;
    font-style: normal;
    font-weight: 500;
    margin: 0 0 0.75rem 0;
    display: inline-block;
}

.product-description {
    color: #fff;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin: 0 0 0.75rem 0;
    flex: 1;
}

.product-ingredients {
    margin: 0 0 1rem 0;
    font-size: 13px;
    line-height: 1.4;
    color: #fff;
}

.ingredients-label {
    font-weight: 600;
    margin-right: 0.25rem;
}

.product-ingredients .ingredients-list {
    font-weight: 400;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border-radius: 0.5rem;
    padding: 0.25rem;
    color: #000;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    cursor: default;
}

.quantity-btn {
    width: 1.8rem;
    height: 1.8rem;
    border: none;
    background: #ccc;
    color: var(--light);
    border-radius: 0.375rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.quantity-btn:hover {
    background: #999;
    transform: scale(1.05);
}

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

.quantity-btn:focus {
    outline: none;
    box-shadow: none !important;
}

.quantity-display {
    min-width: 2rem;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    padding: 0 0.5rem;
}

.product-price {
    font-family: Inter;
    font-size: 36px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}


/* Product Cards Responsive Styles */
@media (max-width: 1200px) {
    .product-ingredients .ingredients-list {
        height: 5rem;
    }
    .products-container {
        padding: 0 1.5rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
        gap: 1.5rem;
    }
    
    .product-card {
        width: 20rem;
        height: 35.5rem;
    }
    
    .quantity-controls {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
    }
}

@media (max-width: 768px) {
    .products-section {
        padding: 2rem 0;
    }
    
    .products-container {
        padding: 0 1rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(17rem, 1fr));
        gap: 1.25rem;
    }
    
    .product-card {
        width: 18rem;
        height: 34rem;
        padding: 1rem;
    }
    
    .quantity-controls {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
    
    .product-image {
        height: 12rem;
    }
    
    .placeholder-icon {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        width: 100%;
        max-width: 22rem;
        height: 33rem;
    }
    
    .quantity-controls {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .product-detail-card {
        gap: 1.75rem;
        padding: 1.25rem;
    }
    
    .product-detail-image {
        min-height: 15rem;
        max-height: 20rem;
    }
    
    .product-detail-name {
        font-size: 1.625rem;
    }
    
    .product-detail-weight {
        font-size: 1rem;
    }
    
    .product-detail-price {
        font-size: 1.625rem;
    }
    
    .ingredients-header {
        gap: 0.625rem;
        margin-bottom: 0.875rem;
    }
    
    .ingredients-header h3 {
        font-size: 1.1875rem;
        min-width: 110px;
    }
    
    .ingredients-nav {
        gap: 0.4375rem;
    }
    
    .ingredients-nav-btn {
        width: 1.875rem;
        height: 1.875rem;
    }
}

@media (max-width: 480px) {
    .products-section {
        padding: 1.5rem 0;
    }
    
    .products-container {
        padding: 0 0.75rem;
    }
    
    .product-card {
        height: 36.5rem;
        padding: 0.875rem;
    }
    
    .quantity-controls {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .product-image {
        height: 17rem;
    }
    
    .placeholder-icon {
        font-size: 2.5rem;
    }
    
    .product-name {
        font-size: 1.125rem;
    }
    
    .product-weight {
        font-size: 16px;
    }
    
    .product-price {
        font-size: 28px;
    }
}

/* Line clamp utility */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 0.5rem;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #dc2626;
    border-radius: 0.25rem;
}

::-webkit-scrollbar-thumb:hover {
    background: #b91c1c;
}

/* Smooth transitions */
* {
    transition: all 0.2s ease-in-out;
}

/* Button hover effects */
.btn-primary {
    @apply bg-red-600 text-white px-6 py-3 rounded-lg font-semibold hover:bg-red-700 transition-colors;
}

.btn-secondary {
    @apply border-2 border-red-600 text-red-600 px-6 py-3 rounded-lg font-semibold hover:bg-red-600 hover:text-white transition-colors;
}

/* Card hover effects */
.card-hover {
    @apply transform hover:scale-105 transition-transform duration-200;
}

/* Loading animation */
.loading {
    display: inline-block;
    width: 1.25rem;
    height: 1.25rem;
    border: 0.1875rem solid #f3f3f3;
    border-top: 0.1875rem solid #dc2626;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Fade in animation */
.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(1.25rem); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slide in animation */
.slide-in {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}

/* Pulse animation for new items */
.pulse-new {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

/* Custom focus styles */
input:focus, textarea:focus, select:focus {
    @apply ring-2 ring-red-500 ring-opacity-50 border-red-500;
}

/* Error states */
.error {
    @apply border-red-500 bg-red-50;
}

.error-message {
    @apply text-red-600 text-sm mt-1;
}

/* Success states */
.success {
    @apply border-green-500 bg-green-50;
}

/* Custom checkbox styles */
.custom-checkbox {
    @apply relative inline-flex items-center;
}

.custom-checkbox input[type="checkbox"] {
    @apply sr-only;
}

.custom-checkbox .checkmark {
    @apply w-5 h-5 border-2 border-gray-300 rounded bg-white;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    @apply bg-red-600 border-red-600;
}

.custom-checkbox .checkmark:after {
    content: "";
    position: absolute;
    display: none;
    left: 0.375rem;
    top: 0.125rem;
    width: 0.375rem;
    height: 0.625rem;
    border: solid white;
    border-width: 0 0.125rem 0.125rem 0;
    transform: rotate(45deg);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark:after {
    display: block;
}

/* Delivery Information Section */
.delivery-section {
    background: #fff;
    padding: 2rem 0;
    margin: 2rem 0;
}

.delivery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.delivery-title {
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-align: center;
    margin-bottom: 3rem;
}

.delivery-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-family: Inter;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.delivery-content p {
    margin-bottom: 1.5rem;
}

.delivery-content strong {
    color: #e74c3c;
    font-weight: 600;
}

.delivery-signature {
    text-align: center;
    font-style: italic;
    font-size: 1.25rem;
    margin-top: 2rem;
    color: white;
}

/* Footer */
.site-footer {
    position: absolute;
    bottom: -15rem;
    background: #000;
    color: #fff;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
    z-index: 100;
    margin-left: -16px;
    margin-right: 0;
}

.footer-container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    align-items: start;
}

/* Tablet styles */
@media (max-width: 1024px) {
    .footer-container {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
        padding: 0 1.5rem;
    }

    .site-footer {
        bottom: -26rem;
    }
    
    .footer-logo {
        grid-column: 1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-container {
        align-items: center;
    }
}

/* Small tablet styles */
@media (max-width: 768px) {
    .site-footer {
        padding: 3rem 0 2rem;
        margin-top: 3rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 2rem;
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-title {
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    line-height: 24px; /* 150% */
    opacity: 0.7;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Logo Column */
.footer-logo-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo-img {
    width: auto;
    height: 10rem;
    object-fit: contain;
    margin-bottom: 1rem;
    border-radius: 90px;
    background-color: #fff;
}

.footer-logo-text {
    font-family: Inter, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
}

/* Navigation Column */
.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.footer-nav-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-nav-link:hover {
    opacity: 0.8;
}

/* Contact Column */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.contact-link:hover {
    opacity: 0.8;
}

.contact-text {
    color: inherit;
}

/* Working Hours Column */
.hours-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hours-item {
    display: flex;
    align-items: center;
}

.hours-time {
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

/* Social Media Column */
.social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    color: #FFF;
    font-family: Inter;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 24px; /* 150% */
    padding-left: 1rem;
    padding-right: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
    padding: 0.5rem 0;
}

.social-link:hover {
    opacity: 0.8;
}

.social-text {
    color: inherit;
}

/* Mobile optimizations */
@media (max-width: 768px) {
    .mobile-padding {
        @apply px-4;
    }
    
    .mobile-text {
        @apply text-sm;
    }
    
    .mobile-button {
        @apply py-2 px-4 text-sm;
    }
    
    .cart span {
        font-size: 20px;
    }
    
    .delivery-section {
        padding: 3.5rem 0;
        margin: 1.5rem 0;
    }
    
    .delivery-container {
        padding: 0 1rem;
    }
    
    .delivery-title {
        font-size: 28px;
        margin-bottom: 2rem;
    }
    
    .delivery-content {
        font-size: 16px;
    }
    
    .delivery-signature {
        font-size: 1.125rem;
    }
    
    .site-footer {
        padding: 2.5rem 0 1.5rem;
        margin-top: 2rem;
        bottom: -30rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
        padding: 0 1rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-container {
        align-items: center;
    }
    
    .footer-title {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 1rem;
    }
    
    .footer-logo-img {
        width: 8rem;
        height: 8rem;
    }
    
    .footer-logo-text {
        font-size: 1.25rem;
    }
    
    .footer-nav-list {
        gap: 0.5rem;
        font-size: 14px;
        line-height: 20px;
    }
    
    
    .contact-info {
        font-size: 14px;
        line-height: 20px;
    }
    
    .hours-time {
        font-size: 0.9rem;
    }
    
    .social-links {
        font-size: 14px;
        line-height: 20px;
    }
    
    .social-link {
        padding: 0.25rem 0;
    }
}

/* Very small screens */
@media (max-width: 480px) {
    .site-footer {
        padding: 2rem 0 1rem;
        margin-top: 1.5rem;
    }
    
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 0.75rem;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .footer-logo-img {
        width: 6rem;
        height: 6rem;
    }
    
    .footer-logo-text {
        font-size: 1.125rem;
    }
    
    .footer-title {
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 0.5rem;
    }
    
    .footer-nav-list {
        gap: 0.25rem;
        font-size: 12px;
        line-height: 16px;
    }
    
    .contact-info {
        font-size: 12px;
        line-height: 16px;
    }
    
    .hours-time {
        font-size: 12px;
    }
    
    .social-links {
        font-size: 12px;
        line-height: 16px;
    }
}

/* Product Detail Page Styles */
.product-detail-section {
    padding: 2rem 0;
    background: transparent;
    min-height: 100vh;
}

/* Breadcrumbs */
.breadcrumbs-container {
    margin-bottom: 1.5rem;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
}

.breadcrumb-link {
    color: #6c757d;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb-link:hover {
    color: #E31E25;
}

.breadcrumb-separator {
    color: #6c757d;
    font-weight: 500;
}

.breadcrumb-current {
    color: #000;
    font-weight: 500;
}

.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 4rem;
    position: relative;
}

/* Product Navigation */
.product-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.product-nav-btn {
    width: 3rem;
    height: 32rem;
    background: #F5F5F5;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.product-nav-btn:hover {
    background: #f8f9fa;
    transform: scale(1.05);
}

.product-nav-prev {
    margin-left: 0.5rem;
    border-radius: 5px;
}

.product-nav-next {
    margin-right: 0.5rem;
    border-radius: 5px;
}

.nav-arrow {
    font-size: 2rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.back-button-container {
    margin-bottom: 2rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #B3AEAE63 !important;
    border: 1px solid #e9ecef;
    border-radius: 0.5rem;
    color: #fff !important;
    text-decoration: none;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-button:hover {
    background: #fff;
    border-color: #dee2e6;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.back-icon {
    font-size: 1.25rem;
}

.product-detail-card {
    background: transparent;
    border-radius: 1rem;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Адаптивність для product-detail-card */
@media (max-width: 1200px) {
    .product-detail-card {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        padding: 1.75rem;
    }
    
    .product-detail-image {
        min-height: 18rem;
        max-height: 25rem;
        order: 1;
    }
    
    .product-detail-info {
        order: 2;
    }
}

@media (max-width: 1024px) {
    .product-detail-card {
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .product-detail-image {
        min-height: 16rem;
        max-height: 22rem;
    }
    
    .product-detail-name {
        font-size: 1.75rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
}

.product-detail-image {
    width: 20rem;
    height: 22rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e9ecef;
    object-fit: cover;
}

.product-detail-image .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e9ecef;
}

.product-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: inherit;
}

.product-detail-image .placeholder-icon {
    font-size: 4rem;
    opacity: 0.5;
}

.product-detail-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 41rem;
}

.product-detail-header {
    padding-bottom: 1rem;
}

.product-detail-name {
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin: 0 0 0.5rem 0;
}

.product-detail-weight {
    color: #FF757A;
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.product-detail-description {
    color: #fff !important;
    font-family: Inter, sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.product-detail-ingredients {
    margin: 1.5rem 0;
}

.ingredients-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.ingredients-header h3 {
    font-family: Inter, sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.ingredients-nav {
    display: flex;
    gap: 0.5rem;
}

.ingredients-nav-btn {
    width: 2rem;
    height: 2rem;
    border: none;
    background: rgba(179, 174, 174, 0.39);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #fff;
    font-size: 1rem;
}

.ingredients-nav-btn:hover {
    background: rgba(179, 174, 174, 0.5);
    color: white;
}

.ingredients-scroll-container {
    overflow: hidden;
    position: relative;
}

.ingredients-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.ingredients-list::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.ingredient-card {
    flex-shrink: 0;
    width: 6rem;
    background: rgba(174, 174, 174, 0.39);
    border-radius: 10px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: transform 0.2s ease;
}

.ingredient-card:hover {
    transform: translateY(-2px);
    background: rgba(179, 174, 174, 0.5);
}

.ingredient-image {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    background: #fff;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.ingredient-icon {
    font-size: 1.5rem;
}

.ingredient-name {
    color: #fff;
    font-family: Inter, sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    line-height: 1.2;
    display: block;
}

.product-detail-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.product-detail-price {
    font-family: Inter, sans-serif;
    font-size: 2rem;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}

.add-to-cart-detail-btn {
    background: #E31E25;
    color: #fff;
    border: none;
    border-radius: 0.75rem;
    padding: 1rem 2rem;
    font-family: Inter, sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 1rem;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
}

.add-to-cart-detail-btn:hover {
    background: #c41e3a;
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(227, 30, 37, 0.3) !important;
}

.add-to-cart-detail-btn:focus,
.add-to-cart-detail-btn:active {
    outline: none;
}

@media (max-width: 480px) {
    .product-detail-card {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .product-detail-name {
        font-size: 1.5rem;
    }
    
    .product-detail-weight {
        font-size: 1rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
    
    .add-to-cart-detail-btn {
        width: 100%;
        margin-top: 1rem;
    }
    
    .product-nav-btn {
        width: 2.5rem;
        height: 12rem;
    }
    
    .product-nav-prev {
        margin-left: -1rem;
    }
    
    .product-nav-next {
        margin-right: -1rem;
    }
    
    .nav-arrow {
        font-size: 1.25rem;
    }
    
    .recommendations-section {
        padding: 1.5rem 0;
    }
    
    .recommendations-title {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 1rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        padding: 0.75rem;
    }
    
    .recommendation-image {
        height: 8rem;
    }
    
    .recommendation-name {
        font-size: 1rem;
    }
    
    .recommendation-weight {
        font-size: 0.875rem;
    }
    
    .recommendation-ingredients {
        font-size: 0.75rem;
    }
    
    .recommendation-price {
        font-size: 1.125rem;
    }
    
    .recommendations-nav-btn {
        width: 2rem;
        height: 4rem;
    }
    
    .recommendations-nav-btn span {
        font-size: 1.25rem;
    }
}

/* Recommendations Section */
.recommendations-section {
    padding: 3rem 0;
    background: transparent;
}

.recommendations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.recommendations-title {
    font-family: 'Inter', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
}

.recommendations-carousel {
    position: relative;
    padding: 0;
}

.recommendations-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.recommendations-nav-btn {
    width: 3rem;
    height: 6rem;
    background: #B3AEAE63 !important;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    backdrop-filter: blur(10px);
}

.recommendations-nav-btn:hover {
    background: rgba(255, 255, 255, 0.95);
    transform: scale(1.05);
}

.recommendations-prev {
    margin-left: -1.5rem;
}

.recommendations-next {
    margin-right: -1.5rem;
}

.recommendations-nav-btn span {
    font-size: 1.5rem;
    color: #fff;
    font-weight: 300;
}

.recommendations-scroll-container {
    overflow: hidden;
    position: relative;
}

.recommendations-list {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.recommendation-card {
    flex-shrink: 0;
    width: 22rem;
    max-width: 100%;
    background: rgba(0,0,0,0);
    border-radius: 1rem;
    padding: 1.5rem;
    transition: transform 0.3s ease;
    box-sizing: border-box;
    overflow: hidden;
}

.recommendation-card:hover {
    transform: translateY(-5px);
}

.recommendation-image {
    width: 100%;
    max-width: 100%;
    height: 12rem;
    border-radius: 0.75rem;
    overflow: hidden;
    margin-bottom: 1rem;
    background: #fff;
    border: 1px solid #e9ecef;
    box-sizing: border-box;
}

.recommendation-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.recommendation-name {
    font-family: 'Inter', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.recommendation-weight {
    color: #FF757A;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 500;
}

.recommendation-ingredients {
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.recommendation-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e9ecef;
}

.recommendation-price {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Mobile styles for product detail */
@media (max-width: 820px) {
    .product-detail-section {
        padding: 1rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .product-detail-container {
        padding: 0 1rem;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-card {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 3.5rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-image {
        width: 100%;
        min-height: 16rem;
        max-height: 22rem;
        order: 1;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }
    
    .product-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        max-width: 100%;
        max-height: 100%;
    }
    
    .product-detail-info {
        order: 2;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-name {
        font-size: 1.75rem;
    }
    
    .product-detail-weight {
        font-size: 1.125rem;
    }
    
    .product-detail-price {
        font-size: 1.75rem;
    }
    
    .product-detail-footer {
        flex-direction: row;
        gap: 1rem;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.875rem 0;
    }
    
    .product-detail-price {
        flex: 1;
        min-width: 120px;
    }
    
    .quantity-controls {
        flex-shrink: 0;
    }
    
    .ingredients-header {
        flex-direction: row;
        align-items: center;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .ingredients-header h3 {
        flex: 1;
        min-width: 120px;
    }
    
    .ingredients-nav {
        flex-shrink: 0;
    }
    
    .ingredient-card {
        width: 5rem;
        padding: 0.75rem 0.5rem;
    }
    
    .ingredient-image {
        width: 2.5rem;
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }
    
    .ingredient-icon {
        font-size: 1.25rem;
    }
    
    .ingredient-name {
        font-size: 0.7rem;
    }
    
    .product-nav-btn {
        width: 3rem;
        height: 20rem;
    }
    
    .product-nav-prev {
        margin-left: 0.5rem;
    }
    
    .product-nav-next {
        margin-right: 0.5rem;
    }
    
    .nav-arrow {
        font-size: 1.5rem;
    }
    
    .recommendations-section {
        padding: 2rem 0;
    }
    
    .recommendations-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 1rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 10rem;
    }
    
    .recommendation-name {
        font-size: 1.125rem;
    }
    
    .recommendation-price {
        font-size: 0.93rem;
    }
    
    .recommendations-nav-btn {
        width: 2.5rem;
        height: 5rem;
    }
    
    .recommendations-prev {
        margin-left: -1rem;
    }
    
    .recommendations-next {
        margin-right: -1rem;
    }
}

@media (max-width: 480px) {
    .product-detail-section {
        padding: 0.5rem 0;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }
    
    .product-detail-container {
        padding: 0 2.5rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-card {
        padding: 1rem;
        gap: 1.5rem;
        border-radius: 0.75rem;
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-image {
        width: 100%;
        min-height: 12rem;
        max-height: 18rem;
        border-radius: 0.5rem;
        overflow: hidden;
        position: relative;
        box-sizing: border-box;
    }
    
    .product-detail-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: center;
        max-width: 100%;
        max-height: 100%;
    }
    
    .product-detail-info {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        box-sizing: border-box;
    }
    
    .product-detail-name {
        font-size: 1.5rem;
    }
    
    .product-detail-weight {
        font-size: 0.9rem;
    }
    
    .product-detail-price {
        font-size: 1.5rem;
    }
    
    .product-detail-footer {
        flex-direction: row;
        gap: 0.75rem;
        align-items: center;
        flex-wrap: wrap;
        padding: 0.75rem 0;
    }
    
    .product-detail-price {
        flex: 1;
        min-width: 100px;
        font-size: 1.4rem;
    }
    
    .quantity-controls {
        flex-shrink: 0;
    }
    
    .ingredients-header {
        gap: 0.5rem;
        margin-bottom: 0.75rem;
    }
    
    .ingredients-header h3 {
        font-size: 1.125rem;
        min-width: 100px;
    }
    
    .ingredients-nav {
        gap: 0.375rem;
    }
    
    .ingredients-nav-btn {
        width: 1.75rem;
        height: 1.75rem;
    }
    
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(1, 1fr);
        gap: 0.75rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 0.625rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 14rem;
    }
    
    .recommendation-name {
        font-size: 0.875rem;
    }
    
    .recommendation-weight {
        font-size: 0.75rem;
    }
    
    .recommendation-ingredients {
        font-size: 0.76rem;
        line-height: 1.2;
    }
    
    .recommendation-price {
        font-size: 1rem;
    }
}

/* Extra small mobile styles */
@media (max-width: 360px) {
    .product-detail-section {
        padding: 0.25rem 0;
    }
    
    .product-detail-container {
        padding: 0 0.25rem;
    }
    
    .product-detail-card {
        padding: 2.5rem;
        gap: 1rem;
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }
    
    .product-detail-image {
        min-height: 10rem;
        max-height: 14rem;
    }
    
    .product-detail-name {
        font-size: 1.25rem;
    }
    
    .product-detail-price {
        font-size: 1.25rem;
    }
}

@media (max-width: 320px) {
    .recommendations-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
        overflow-x: visible;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 0.5rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 6rem;
    }
    
    .recommendation-name {
        font-size: 0.75rem;
    }
    
    .recommendation-weight {
        font-size: 0.625rem;
    }
    
    .recommendation-ingredients {
        font-size: 0.5rem;
        line-height: 1.1;
    }
    
    .recommendation-price {
        font-size: 0.875rem;
    }
}

/* ===== Wave Header (SVG background) ===== */
.wave-header {
    top: 0;
    z-index: 100;
    background: transparent;
    padding: 0.75rem 0;
}

.wave-header__inner {
    max-width: 1500px;
    margin: 0 auto;
    position: relative;
    height: 220px;
}

.wave-header__bg { width: 100%; height: 100%; display: block; }
.wave-header__path { fill: white; filter: drop-shadow(0 0.1rem 0.7rem rgba(0,0,0,.25)); }

.wave-header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 135px;
    height: 135px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wave-header__logo-inner {
    margin: 0 auto;
}

.wave-header__logo img { 
    width: 90%; 
    height: 90%; 
    margin: 0 auto;
}

.wave-header__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.wave-header__nav--left { 
    left: 0px; 
    width: 40%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.wave-header__nav--right { 
    right: 0px; 
    padding-right: 0.5rem;
}

.nav-pill {
    color: #000;
    text-decoration: none;
    font-weight: 400;
    letter-spacing: 0px;
    padding: 14px 22px;
    border-radius: 999px;
    background: transparent;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}
.nav-pill::after { content: ""; position: absolute; inset: 0; background: rgba(255,255,255,.08); border-radius: inherit; opacity: 0; transition: opacity .2s ease, transform .2s ease; }
.nav-pill:hover::after { opacity: 1; }
.nav-pill:active { transform: translateY(1px); }

.cart-pill { 
    display: inline-flex; 
    align-items: center; 
    gap: 10px; 
    padding: 12px 18px; 
    border-radius: 999px; 
    background: #2A2929; 
    color: #111; 
    text-decoration: none; 
    position: relative;
}
.cart-pill__label { font-weight: 400; color: #fff; font-size: 1rem; }
.cart-pill__price { font-weight: 400; color: #fff; }
.cart-pill__badge { position: absolute; top: -8px; right: -8px; min-width: 22px; height: 22px; border-radius: 999px; display: grid; place-items: center; background: var(--accent); color: #fff; font-size: 12px; font-weight: 700; border: 3px solid #434343; }

.nav-pill, .cart-pill { transition: transform .18s ease, box-shadow .18s ease; }
.nav-pill:hover { transform: translateY(-1px); }
.cart-pill:hover { box-shadow: 0 10px 22px rgba(0,0,0,.18); transform: translateY(-1px); }

@media (max-width: 1180px) { .wave-header__inner { height: 160px; } .wave-header__logo { width: 110px; height: 110px; } }
@media (max-width: 960px) { .wave-header__inner { height: 140px; } .wave-header__logo { width: 90px; height: 90px; } .wave-header__nav { gap: 16px; } .nav-pill { padding: 10px 16px; } }
@media (max-width: 820px) { .wave-header__inner { height: 120px; } .wave-header__logo { width: 75px; height: 75px; } .wave-header__nav--left { left: 8px; } .wave-header__nav--right { right: 8px; padding-right: 0.1rem; } }
@media (max-width: 720px) { .wave-header { display: none; } }

/* Print styles */
@media print {
    .no-print {
        display: none !important;
    }
    
    .print-break {
        page-break-before: always;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .bg-red-600 {
        background-color: #000 !important;
    }
    
    .text-red-600 {
        color: #000 !important;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (if needed in future) */
@media (prefers-color-scheme: dark) {
    .dark-mode {
        @apply bg-gray-900 text-white;
    }
}

/* Custom utility classes */
.text-shadow {
    text-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.1);
}

.backdrop-blur {
    backdrop-filter: blur(0.625rem);
}

/* Cart modal animations */
.cart-modal-enter {
    animation: modalEnter 0.3s ease-out;
}

@keyframes modalEnter {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Notification styles */
.notification {
    @apply fixed top-4 right-4 p-4 rounded-lg shadow-lg z-50 transform transition-all duration-300;
}

.notification-enter {
    @apply translate-x-full opacity-0;
}

.notification-enter-active {
    @apply translate-x-0 opacity-100;
}

.notification-exit {
    @apply translate-x-0 opacity-100;
}

.notification-exit-active {
    @apply translate-x-full opacity-0;
}


@media (max-width: 1185px) {
    .nav-bar {
        height: 8rem;
    }
    .logo {
        width: 7.25rem;
        height: 7.25rem;
    }
    .nav-pill {
        font-size: 1.25rem;
    }
    .cart-pill__label {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .nav-bar {
        height: 7rem;
    }
    .logo {
        width: 6.25rem;
        height: 6.25rem;
    }
    .nav-pill {
        font-size: 1.125rem;
    }
    .cart-pill__label {
        font-size: 1rem;
    }
}

@media (max-width: 960px) {
    .nav-pill {
        font-size: 1rem;
    }
    .cart-pill__label {
        font-size: 0.875rem;
    }
}

@media (max-width: 870px) {
    .nav-pill {
        font-size: 0.875rem;
    }
    .cart-pill__label { 
        font-size: 0.875rem;
    }
}

@media (max-width: 800px) {
    .nav-pill {
        font-size: 0.75rem;
    }
    .cart-pill__label {
        font-size: 0.875rem;
    }
}

@media (max-width: 768px) {
    .nav-bar {
        height: 6rem;
    }
    .cart-pill__label {
        font-size: 0.875rem;
    }
    .footer-column {
        padding: 0 2rem;
    }
    .social-links {
        padding-left: 0rem;
    }
}

@media (max-width: 480px) {
    .product-nav-btn {
        width: 2rem;
        height: 20rem;
    }
}

@media (max-width: 360px) {
    .product-nav-btn {
        width: 1.5rem;
        height: 10rem;
    }
    
    .recommendation-card {
        width: 100%;
        max-width: 100%;
        padding: 0.375rem;
        box-sizing: border-box;
        overflow: hidden;
    }
    
    .recommendation-image {
        height: 5rem;
    }
    
    .recommendation-name {
        font-size: 0.875rem;
    }
    
    .recommendation-weight {
        font-size: 0.75rem;
    }
    
    .recommendation-price {
        font-size: 0.875rem;
    }
}

@media (max-width: 1028px) {
    .cart-pill {
        padding: 8px 8px;
    }
}

@media (max-width: 840px) {
    .cart-pill {
        padding: 6px 6px;
    }
}

html {

    box-sizing: border-box;
    --bgColorMenu : #1d1d27;
    --duration: .7s;    

}

html *,
html *::before,
html *::after {

    box-sizing: inherit;

}

.menu{
    z-index: 10;
    margin: 120px 0 0;
    display: flex;
    width: 100%;
    font-size: 1.5em;
    padding: 1rem 2.85em;
    position: relative;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 0;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: -16px;
    width: calc(100% + 32px);
}

.menu__item{
    color: #292A2A;
    all: unset;
    flex-grow: 1;
    z-index: 100;
    display: flex;
    cursor: pointer;
    position: relative;
    border-radius: 50%;
    align-items: center;
    will-change: transform;
    justify-content: center;
    padding: 0.6em 0 0.6em;
    transition: transform var(--timeOut , var(--duration));
    
}

.menu__item::before{
    
    content: "";
    z-index: -1;
    width: 5.4em;
    height: 5.4em;
    border-radius: 50%;
    position: absolute;
    transform: scale(0);
    transition: background-color var(--duration), transform var(--duration);
    
}


.menu__item.active {

}

.menu__item.active::before{
    
    transform: scale(1);
    background-color: var(--bgColorItem);

}

.icon{
    
    width: 2.6em;
    height: 2.6em;
    stroke: white;
    fill: transparent;
    stroke-width: 1pt;
    stroke-miterlimit: 10;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 400;
    
}

.menu__item.active .icon {

    animation: strok 1.5s reverse;
    
}

@keyframes strok {

    100% {

        stroke-dashoffset: 400;

    }

}

.menu__border {
    left: 0;
    bottom: 99%;
    width: 10.9em;
    height: 2.4em;
    position: absolute;
    clip-path: url(#menu);
    will-change: transform;
    background-color: var(--bgColorMenu);
    transition: transform var(--timeOut, var(--duration));
    transform-origin: left center; /* ✅ фіксує точку */
  }
  
  /* Нижня перевернута хвиля */
  .menu__border-wrapper {
    position: absolute;
    bottom: -2.4em;
    width: 10.9em;
    height: 2.4em;
    transform: scaleY(-1) translateX(-2px); /* ✅ дзеркало + компенсація */
    transform-origin: left center; /* ✅ вирівняно */
    overflow: visible;
    z-index: 1;
    left: 0;
  }
  
  .menu__border--bottom {
    position: absolute;
    top: 1px;
    left: 2px;
    width: 100%;
    height: 100%;
    clip-path: url(#menu);
    background-color: var(--bgColorMenu);
  }
  
  
  
.menu__border.svg-container-rotate{
    transform:scaleX(-1); /* дзеркально */
  }

.svg-container {

    width: 0;
    height: 0;
}

.svg-container-rotate {
    transform: rotate(180deg);
    bottom: -55px;
}
.menu-label {
    font-size: 18px;
}


@media screen and (max-width: 50em) {
    .menu{
        font-size: .8em;
    }
}
@media (max-width: 1275px) {
    .menu__border, .menu__border-wrapper, .menu__item::before {
        display: none !important;
    }
    .menu-label {
        font-size: 1rem;
        color: #2A2929;
    }
    .active .menu-label {
        color: #ff4664;
    }
    .menu {
        margin-left: -16px;
        width: calc(100% + 32px) !important;
        gap: 10px;
        flex-wrap: nowrap;
        padding: 0.6em 0;
        margin-top: 2rem;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ff4664 #f0f0f0;
        border-radius: 0;
        justify-content: flex-start;
        scroll-padding-inline: 2.85em;
    }
    .menu::before,
    .menu::after {
        content: '';
        flex-shrink: 0;
        width: 0.5em;
    }
    .menu__item:first-of-type {
        margin-left: 0;
    }
    .menu::-webkit-scrollbar {
        height: 6px;
    }
    .menu::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb {
        background: #ff4664;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb:hover {
        background: #d41621;
    }
    .menu__item {
        padding: 0;
        flex-shrink: 0;
    }
}

@media (max-width: 800px) {
    .menu__border, .menu__border-wrapper, .menu__item::before {
        display: none !important;
    }
    .menu-label {
        font-size: 14px;
    }
    .active .menu-label {
        color: #ff4664;
    }
    .menu {
        gap: 10px;
        flex-wrap: nowrap;
        padding: 0.6em 0;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
        scrollbar-color: #ff4664 #f0f0f0;
        border-radius: 0;
        justify-content: flex-start;
        scroll-padding-inline: 1.5em;
    }
    .menu::before,
    .menu::after {
        content: '';
        flex-shrink: 0;
        width: 1.5em;
    }
    .menu__item:first-of-type {
        margin-left: 0;
    }
    .menu::-webkit-scrollbar {
        height: 6px;
    }
    .menu::-webkit-scrollbar-track {
        background: #f0f0f0;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb {
        background: #ff4664;
        border-radius: 3px;
    }
    .menu::-webkit-scrollbar-thumb:hover {
        background: #d41621;
    }
    .menu__item {
        padding: 0;
        flex-shrink: 0;
    }
}

/* ===== CART MODAL STYLES ===== */
.cart-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal.hidden {
    display: none;
}

.cart-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-modal-content {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideIn 0.3s ease-out;
}

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

.cart-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.cart-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}

.cart-modal-close {
    width: 36px;
    height: 36px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.cart-modal-close:hover {
    background: #ff4664;
    color: white;
}

.cart-modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem 2rem;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-empty-message {
    text-align: center;
    color: #999;
    padding: 2rem 0;
    font-size: 1.1rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    gap: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: #666;
    font-size: 0.9rem;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.cart-item-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #e0e0e0;
    border-radius: 50%;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item-qty-btn:hover {
    background: #ff4664;
    color: white;
}

.cart-item-qty {
    min-width: 30px;
    text-align: center;
    font-weight: 600;
}

.cart-item-total {
    font-weight: 700;
    color: #ff4664;
    min-width: 80px;
    text-align: right;
}

.cart-item-remove {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    color: #ff4664;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cart-item-remove:hover {
    color: #d41621;
    transform: scale(1.1);
}

.cart-modal-footer {
    border-top: 1px solid #e0e0e0;
    padding: 1.5rem 2rem;
}

.cart-modal-total {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.cart-total-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
}

.cart-total-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff4664;
}

.cart-checkout-btn {
    width: 100%;
    padding: 1rem;
    background: #ff4664;
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-checkout-btn:hover {
    background: #d41621;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 70, 100, 0.3);
}

.cart-checkout-btn:active {
    transform: translateY(0);
}

@media (max-width: 768px) {
    .cart-modal-content {
        width: 95%;
        max-height: 90vh;
    }
    
    .cart-modal-header,
    .cart-modal-body,
    .cart-modal-footer {
        padding: 1rem 1.5rem;
    }
    
    .cart-modal-title {
        font-size: 1.25rem;
    }
    
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cart-item-controls {
        width: 100%;
        justify-content: space-between;
    }
}

/* ===== MOBILE HEADER STYLES ===== */
.mobile-header {
    display: none;
    position: sticky;
    top: 0;
    z-index: 100;
    background: white;
    padding-top: env(safe-area-inset-top);
}

.desktop-header {
    display: block;
}

.mobile-header__container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem;
    max-width: 100%;
    position: relative;
}

/* Burger Menu Button */
.mobile-header__burger {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 0;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    justify-self: start;
}

.mobile-header__burger:focus,
.mobile-header__burger:active {
    outline: none;
    box-shadow: none !important;
}

.burger-line {
    width: 24px;
    height: 2px;
    background: #333;
    transition: all 0.3s ease;
}

.mobile-header__burger.active .burger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-header__burger.active .burger-line:nth-child(2) {
    opacity: 0;
}

.mobile-header__burger.active .burger-line:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Logo */
.mobile-header__logo {
    display: flex;
    justify-content: center;
    align-items: center;
    justify-self: center;
}

.mobile-header__logo img {
    height: 70px;
    width: 70px;
}

/* Mobile Cart Button */
.mobile-header__cart {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    color: #333;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    justify-self: end;
}

.mobile-header__cart:focus,
.mobile-header__cart:active {
    outline: none;
    box-shadow: none !important;
}

.mobile-header__cart svg {
    width: 24px;
    height: 24px;
}

.mobile-header__cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff4664;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 9999;
    transition: left 0.3s ease;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
}

.mobile-menu-overlay.active {
    left: 0;
}

.mobile-menu-overlay::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.mobile-menu-overlay.active::before {
    opacity: 1;
    pointer-events: auto;
}

.mobile-menu-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    background: white;
    position: relative;
    z-index: 1;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.mobile-menu-close:hover {
    background: #ff4664;
    color: white;
}

.mobile-menu-nav {
    flex: 1;
    padding: 1rem 0;
    overflow: scroll;
}

.mobile-menu-link {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: #f8f9fa;
    border-left-color: #ff4664;
    color: #ff4664;
}

.mobile-menu-link.active {
    background: #fff5f7;
    border-left-color: #ff4664;
    color: #ff4664;
    font-weight: 600;
}

.mobile-menu-divider {
    height: 1px;
    background: #e0e0e0;
    margin: 0.5rem 0;
}

.mobile-menu-section-title {
    padding: 1rem 1.5rem 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mobile-category-link {
    position: relative;
}

/* Responsive - Show mobile header on small screens */
@media (max-width: 768px) {
    .desktop-header {
        display: none !important;
    }
    
    .mobile-header {
        display: block;
    }
    .product-ingredients .ingredients-list {
        height: 6rem;
    }
}

/* ========================================
   CHECKOUT MODAL STYLES
   ======================================== */

/* Checkout Modal Base */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
    overflow-y: auto;
}

.checkout-modal.hidden {
    display: none;
}

.checkout-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.checkout-modal-content {
    background: white;
    border-radius: 16px;
    width: 100%;
    max-width: 700px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    animation: slideInDown 0.3s ease;
}

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

/* Checkout Modal Header */
.checkout-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.checkout-modal-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
    color: #333;
}

.checkout-modal-close {
    width: 36px;
    height: 36px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.checkout-modal-close:hover {
    background: #ff4664;
    color: white;
    transform: rotate(90deg);
}

/* Checkout Modal Body */
.checkout-modal-body {
    padding: 2rem;
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
}

.form-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ff4664;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: #ff4664;
    box-shadow: 0 0 0 3px rgba(255, 70, 100, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: #999;
}

.form-textarea {
    resize: vertical;
}

/* Radio Buttons */
.form-radio-group {
    display: flex;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex: 1;
}

.radio-label:hover {
    border-color: #ff4664;
    background: #fff5f7;
}

.radio-input {
    width: 20px;
    height: 20px;
    margin-right: 0.5rem;
    accent-color: #ff4664;
    cursor: pointer;
}

.radio-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

.radio-input:checked + .radio-text {
    color: #ff4664;
}

/* Checkbox */
.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 0.5rem 0;
}

.checkbox-input {
    width: 20px;
    height: 20px;
    margin-right: 0.75rem;
    accent-color: #ff4664;
    cursor: pointer;
}

.checkbox-text {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
}

/* Order Summary */
.order-summary {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.summary-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: 1rem;
    color: #555;
}

.summary-value {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

.summary-total {
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 2px solid #ddd;
}

.summary-total .summary-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: #333;
}

.summary-total .summary-value {
    font-size: 1.25rem;
    color: #ff4664;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #ff4664;
    color: white;
}

.btn-primary:hover {
    background: #e63956;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 70, 100, 0.3);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: #f5f5f5;
    color: #333;
}

.btn-secondary:hover {
    background: #e0e0e0;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.success-modal.hidden {
    display: none;
}

.success-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: -1;
}

.success-modal-content {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    max-width: 450px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.success-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: #28a745;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.success-icon svg {
    width: 50px;
    height: 50px;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.success-order-number {
    font-size: 1rem;
    color: #333;
    margin-bottom: 1.5rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .checkout-modal {
        padding: 0;
    }
    
    .checkout-modal-content {
        border-radius: 0;
        margin: 0;
        min-height: 100vh;
        max-width: 100%;
    }
    
    .checkout-modal-body {
        padding: 1rem;
        max-height: calc(100vh - 150px);
    }
    
    .checkout-modal-header {
        padding: 1rem;
    }
    
    .checkout-modal-title {
        font-size: 1.25rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-radio-group {
        flex-direction: column;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .order-summary {
        margin-top: 1rem;
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .checkout-modal-header {
        padding: 0.75rem;
    }
    
    .checkout-modal-title {
        font-size: 1.125rem;
    }
    
    .form-section-title {
        font-size: 1rem;
    }
    
    .success-modal-content {
        padding: 1.5rem;
    }
    
    .success-icon {
        width: 60px;
        height: 60px;
    }
    
    .success-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .success-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        bottom: -23rem;
    }
}

@media (max-width: 380px) {
    .site-footer {
        bottom: -24rem;
    }
}

@media (max-width: 352px) {
    .site-footer {
        bottom: -26rem;
    }
}

@media (max-width: 309px) {
    .site-footer {
        margin-left: -21px;
        width: calc(100% + 5px);
    }
}

@media (max-width: 1126px) {
    .product-detail-info {
        max-width: 38rem;
    }
}

@media (max-width: 1074px) {
    .product-detail-info {
        max-width: 36rem;
    }
}

@media (max-width: 1040px) {
    .product-detail-info {
        max-width: 34rem;
    }
}   

@media (max-width: 999px) {
    .product-detail-info {
        max-width: 32rem;
    }
}

@media (max-width: 962px) {
    .product-detail-info {
        max-width: 30rem;
    }
}

@media (max-width: 933px) {
    .product-detail-info {
        max-width: 28rem;
    }
}

@media (max-width: 917px) {
    .product-detail-info {
        max-width: 27rem;
    }
}

@media (max-width: 862px) {
    .product-detail-info {
        max-width: 24rem;
    }
}

@media (max-width: 840px) {
    .product-detail-info {
        max-width: 32rem;
    }
}

@media (max-width: 820px) {
    .product-detail-info {
        max-width: 40rem;
    }
}

@media (max-width: 1250px) {
    .product-card {
        height: 32rem;
    }
}

@media (max-width: 1200px) {
    .product-card {
        height: 34.5rem;
    }
}

@media (max-width: 730px) {
    .product-card {
        height: 33rem;
    }
}

@media (max-width: 600px) {
    .product-card {
        height: 31rem;
    }
}

@media (max-width: 480px) {
    .product-card {
        height: 35rem;
    }
}

@media (max-width: 430px) {
    .product-card {
        height: 35rem;
    }
}

@media (max-width: 380px) {
    .product-card {
        height: 35rem;
    }
}

/* Mobile sticky menu */
@media (max-width: 800px) {
    .menu {
        position: sticky;
        top: 92px;
        z-index: 100;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        margin-top: 0;
        padding: 0.8em 0;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .menu {
        padding: 0.6em 0;
    }
}

/* Mobile Header Actions Container */
.mobile-header__actions {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-self: end;
}

/* Mobile Phone Button */
.mobile-header__phone {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    color: #333;
    transition: color 0.3s ease;
    justify-self: end;
}

.mobile-header__phone:focus,
.mobile-header__phone:active {
    outline: none;
    box-shadow: none !important;
}

.mobile-header__phone:hover {
    color: #ff4664;
}

.mobile-header__phone svg {
    width: 24px;
    height: 24px;
}

/* Mobile Phone Dropdown */
.mobile-phone-dropdown {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.mobile-phone-dropdown.active {
    display: flex;
}

.mobile-phone-dropdown__content {
    background: white;
    border-radius: 12px;
    padding: 37px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 100%;
    position: relative;
}

.mobile-phone-dropdown__text {
    font-size: 16px;
    color: #333;
    margin-bottom: 16px;
    line-height: 1.4;
}

.mobile-phone-dropdown__text strong {
    color: #ff4664;
    font-weight: 600;
}

.mobile-phone-dropdown__number {
    display: inline-block;
    background: #ff4664;
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.mobile-phone-dropdown__number:hover {
    background: #e03d52;
    color: white;
    text-decoration: none;
}

/* Mobile Phone Dropdown Close Button */
.mobile-phone-dropdown__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.2s ease;
    z-index: 1;
}

.mobile-phone-dropdown__close:hover {
    background: #f5f5f5;
    color: #333;
}

.mobile-phone-dropdown__close:active {
    background: #e0e0e0;
    transform: scale(0.95);
}

.mobile-phone-dropdown__close svg {
    width: 16px;
    height: 16px;
}

/* ===== FAVORITES STYLES ===== */

/* Desktop Favorites Button */
.favorites-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    text-decoration: none;
    color: #333;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
    margin-right: 12px;
}

.favorites-pill__label {
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
}

.favorites-pill__label:hover {
    transform: translateY(-1px);
}

.favorites-pill__badge {
    background: #ff4664;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 20px;
}

/* Mobile Favorites Button */
.mobile-header__favorites {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    position: relative;
    cursor: pointer;
    color: #333;
    outline: none;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent;
    justify-self: end;
    transition: color 0.3s ease;
}

.mobile-header__favorites:focus,
.mobile-header__favorites:active {
    outline: none;
    box-shadow: none !important;
}

.mobile-header__favorites:hover {
    color: #ff4664;
}

.mobile-header__favorites svg {
    width: 24px;
    height: 24px;
}

.mobile-header__favorites-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #ff4664;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(25%, -25%);
}

/* Favorites Modal */
.favorites-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.favorites-modal:not(.hidden) {
    display: flex;
}

.favorites-modal-content {
    background: white;
    border-radius: 12px;
    width: 100%;
    max-width: 600px;
    max-height: 80vh;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.favorites-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.favorites-modal-title {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.favorites-modal-close {
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.favorites-modal-close:hover {
    background: #f3f4f6;
    color: #333;
}

.favorites-modal-body {
    padding: 20px 24px;
    max-height: 60vh;
    overflow-y: auto;
}

.favorites-items-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.favorites-empty-message {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin: 40px 0;
}

.favorites-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.favorites-item:hover {
    border-color: #ff4664;
    box-shadow: 0 2px 8px rgba(255, 70, 100, 0.1);
}

.favorites-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorites-item-image:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.favorites-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.favorites-item-image:hover img {
    transform: scale(1.1);
}

.favorites-item-info {
    flex: 1;
    min-width: 0;
}

.favorites-item-name {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.favorites-item-price {
    font-size: 14px;
    color: #ff4664;
    font-weight: 600;
    margin-bottom: 8px;
}

.favorites-item-ingredients {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
    margin-top: 4px;
    max-height: 40px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.favorites-item-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
}

.favorites-item-add-btn {
    background: #ff4664;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.favorites-item-add-btn:hover {
    background: #e03d52;
}

.favorites-item-remove-btn {
    background: #f3f4f6;
    color: #666;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.favorites-item-remove-btn:hover {
    background: #ef4444;
    color: white;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .favorites-modal-content {
        margin: 20px;
        max-height: 70vh;
    }
    
    .favorites-item {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    
    .favorites-item-image {
        width: 100%;
        height: 160px;
        margin: 0 auto;
    }
    
    .favorites-item-actions {
        flex-direction: row;
        justify-content: center;
    }
    
    .favorites-item-add-btn,
    .favorites-item-remove-btn {
        flex: 1;
    }
    
    .favorites-item-ingredients {
        max-height: none;
        -webkit-line-clamp: unset;
        margin-bottom: 12px;
    }
}

/* Product Favorite Button */
.product-favorite-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-favorite-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-favorite-btn svg {
    width: 20px;
    height: 20px;
    color: #666;
    transition: all 0.3s ease;
}

.product-favorite-btn.favorited svg {
    color: #ff4664;
    fill: #ff4664;
}

.product-favorite-btn:hover svg {
    color: #ff4664;
}

.product-favorite-btn.favorited:hover svg {
    color: #e03d52;
    fill: #e03d52;
}

/* Ensure product image container is relative for absolute positioning */
.product-image {
    position: relative;
}

/* ===== PRODUCT BADGES STYLES ===== */

/* Product badges container */
.product-badges {
    position: absolute;
    top: 8px;
    left: 8px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 5;
}

/* Base badge styles */
.product-badge {
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* New badge - light green */
.product-badge--new {
    background: linear-gradient(135deg, #4ade80, #22c55e);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Bestseller badge - orange/red gradient */
.product-badge--bestseller {
    background: linear-gradient(135deg, #f97316, #dc2626);
    color: white;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

/* Spicy badge - light orange with emoji */
.product-badge--spicy {
    background: linear-gradient(135deg, #fed7aa, #fb923c);
    color: #dc2626;
    font-size: 14px;
    padding: 4px 6px;
    min-width: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product detail page badges */
.product-detail-image {
    position: relative;
}

.product-detail-image .product-badges {
    top: 12px;
    left: 12px;
    gap: 8px;
}

.product-detail-image .product-badge {
    padding: 6px 12px;
    font-size: 12px;
    border-radius: 14px;
}

.product-detail-image .product-badge--spicy {
    font-size: 16px;
    padding: 6px 8px;
    min-width: 28px;
}

/* Recommendation cards badges */
.recommendation-image {
    position: relative;
}

.recommendation-image .product-badges {
    top: 6px;
    left: 6px;
    gap: 4px;
}

.recommendation-image .product-badge {
    padding: 3px 6px;
    font-size: 9px;
    border-radius: 8px;
}

.recommendation-image .product-badge--spicy {
    font-size: 11px;
    padding: 3px 5px;
    min-width: 18px;
}

/* Responsive adjustments for product cards */
@media (max-width: 768px) {
    .product-badges {
        top: 6px;
        left: 6px;
        gap: 4px;
    }
    
    .product-badge {
        padding: 3px 6px;
        font-size: 10px;
        border-radius: 8px;
    }
    
    .product-badge--spicy {
        font-size: 12px;
        padding: 3px 5px;
        min-width: 20px;
    }
    
    /* Mobile adjustments for detail page */
    .product-detail-image .product-badges {
        top: 8px;
        left: 8px;
        gap: 6px;
    }
    
    .product-detail-image .product-badge {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 10px;
    }
    
    .product-detail-image .product-badge--spicy {
        font-size: 14px;
        padding: 4px 6px;
        min-width: 24px;
    }
}

/* ===== NEW MENU BUTTON STYLES ===== */

/* Menu item icon */
.menu__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.menu__item-icon svg {
    width: 20px;
    height: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.menu__item-icon img {
    width: 35px;
    height: 35px;
    object-fit: cover;
    border-radius: 4px;
    transition: all 0.3s ease;
}

/* Active state for menu items */
.menu__item.active .menu__item-icon svg {
    color: white;
}

/* Hover state for menu items */
.menu__item:hover .menu__item-icon svg {
    color: #ff4664;
    transform: scale(1.1);
}

.menu__item:hover .menu__item-icon img {
    transform: scale(1.1);
    filter: brightness(1.1);
}

/* Updated menu item styles for button-like appearance - ALL SCREENS */
.menu__item {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    padding: 12px 20px;
    margin: 0 6px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
}

.menu__item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.menu__item.active {
    background: #ff4664;
    color: white;
    border-color: #ff4664;
}

.menu__item.active .menu__item-icon svg {
    color: white;
}

.menu__item.active .menu-label {
    color: white;
}

.menu__item:hover .menu__item-icon svg {
    color: #ff4664;
    transform: scale(1.1);
}

.menu__item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    transition: all 0.3s ease;
}

.menu__item-icon svg {
    width: 20px;
    height: 20px;
    color: #333;
    transition: all 0.3s ease;
}

.menu-label {
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

/* Hide old wave borders on all screens */
.menu__border, .menu__border-wrapper, .menu__item::before {
    display: none !important;
}

@media (max-width: 800px) {
    .menu__item {
        border-radius: 20px;
        padding: 10px 16px;
        margin: 0 4px;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    }
    
    .menu__item:hover {
        transform: translateY(-1px);
        box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
    }
    
    .menu-label {
        font-size: 13px;
    }
    
    .menu__item-icon {
        margin-right: 6px;
    }
    
    .menu__item-icon svg {
        width: 18px;
        height: 18px;
    }
    
    .menu__item-icon img {
        width: 18px;
        height: 18px;
    }
}

/* ===== NEW MOBILE MENU STYLES ===== */

/* Mobile Menu Selectors */
.mobile-menu-selectors {
    display: flex;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid #e0e0e0;
}

.mobile-menu-selector {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-selector:hover {
    background: #e9ecef;
}

.mobile-menu-selector span {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.mobile-menu-selector svg {
    color: #666;
    transition: transform 0.3s ease;
}

.mobile-menu-selector:hover svg {
    transform: translateY(2px);
}

/* Mobile Menu Categories */
.mobile-menu-categories {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
}

.mobile-menu-category {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.mobile-menu-category:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu-category.active {
    background: #ff4664;
    color: white;
}

.mobile-menu-category-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.mobile-menu-category-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mobile-menu-category-icon svg {
    width: 24px;
    height: 24px;
    color: #ff4664;
}

.mobile-menu-category.active .mobile-menu-category-icon svg {
    color: white;
}

.mobile-menu-category span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
}

/* Mobile Menu Navigation */
.mobile-menu-navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 0 20px 20px;
}

.mobile-menu-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 16px 12px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.mobile-menu-nav-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu-nav-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.mobile-menu-nav-icon svg {
    width: 24px;
    height: 24px;
    color: #666;
}

.mobile-menu-nav-item:hover .mobile-menu-nav-icon svg {
    color: #ff4664;
}

.mobile-menu-nav-item span {
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
    color: #333;
}

.mobile-menu-nav-item:hover span {
    color: #ff4664;
}

/* Mobile Menu Support */
.mobile-menu-support {
    padding: 0 20px 20px;
}

.mobile-menu-support-item {
    justify-content: center;
    display: flex;
    align-items: center;
    padding: 16px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.mobile-menu-support-item:hover {
    background: #e9ecef;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mobile-menu-support-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
}

.mobile-menu-support-icon svg {
    width: 24px;
    height: 24px;
    color: #ff4664;
}

.mobile-menu-support-item span {
    font-size: 16px;
    font-weight: 600;
    color: #ff4664;
}

/* Hide old mobile menu styles */
.mobile-menu-nav {
    display: none;
}

.mobile-menu-link {
    display: none;
}

.mobile-menu-divider {
    display: none;
}

.mobile-menu-section-title {
    display: none;
}

/* ===== NEW CHECKOUT FORM STYLES ===== */

/* City Selector */
.city-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
}

.city-btn {
    flex: 1;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 2px solid transparent;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.city-btn:hover {
    background: #e9ecef;
}

.city-btn.active {
    background: #ff4664;
    color: white;
    border-color: #ff4664;
}

/* Courier Options */
.courier-options {
    margin-top: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.courier-options.hidden {
    display: none;
}

/* Delivery Time Section */
.delivery-time-section {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.delivery-time-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin: 0 0 16px 0;
}

/* Cash Change Section */
.cash-change-section {
    margin-top: 16px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.cash-change-section.hidden {
    display: none;
}

/* Form Checkbox Group */
.form-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.checkbox-label:hover {
    background: #e9ecef;
}

.checkbox-input {
    width: 18px;
    height: 18px;
    margin: 0;
    accent-color: #ff4664;
}

.checkbox-text {
    font-size: 14px;
    color: #333;
    line-height: 1.4;
}

/* Form Select */
.form-select {
    width: 100%;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid #ff4664;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 12px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 40px;
}

.form-select:focus {
    outline: none;
    border-color: #ff4664;
    background-color: white;
}

.form-select:hover {
    background-color: #e9ecef;
}

/* Mobile-specific checkout styles */
@media (max-width: 768px) {
    .checkout-modal-content {
        border-radius: 0;
        margin: 0;
        min-height: 100vh;
        max-width: 100%;
    }
    
    .checkout-modal-body {
        padding: 20px;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .checkout-modal-header {
        padding: 16px 20px;
        position: sticky;
        top: 0;
        background: white;
        z-index: 10;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .checkout-modal-title {
        font-size: 18px;
        font-weight: 600;
    }
    
    .form-section {
        margin-bottom: 24px;
    }
    
    .form-section-title {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin-bottom: 16px;
    }
    
    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .form-group-full {
        grid-column: 1 / -1;
    }
    
    .form-label {
        display: block;
        font-size: 14px;
        font-weight: 500;
        color: #333;
        margin-bottom: 8px;
    }
    
    .form-input {
        width: 100%;
        padding: 12px 16px;
        background: #f8f9fa;
        border: 2px solid transparent;
        border-radius: 8px;
        font-size: 14px;
        color: #333;
        transition: all 0.3s ease;
    }
    
    .form-input:focus {
        outline: none;
        border-color: #ff4664;
        background-color: white;
    }
    
    .form-input:hover {
        background-color: #e9ecef;
    }
    
    .form-input::placeholder {
        color: #999;
    }
    
    .form-radio-group {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }
    
    .radio-label {
        display: flex;
        align-items: center;
        gap: 12px;
        cursor: pointer;
        padding: 12px;
        background: #f8f9fa;
        border-radius: 8px;
        transition: all 0.3s ease;
    }
    
    .radio-label:hover {
        background: #e9ecef;
    }
    
    .radio-input {
        width: 18px;
        height: 18px;
        margin: 0;
        accent-color: #ff4664;
    }
    
    .radio-text {
        font-size: 14px;
        color: #333;
    }
    
    .city-selector {
        margin-bottom: 24px;
    }
    
    .city-btn {
        padding: 14px 16px;
        font-size: 14px;
    }
}

#cash-amount {
    border: 1px solid #ff4664;
}

.mobile-header_phone_btn {
    height: 30px;
    width: 30px;
}

.sticks-mt {
    margin-top: 0.5rem;
}