* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Syne', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #000;
    width: 100%;
    contain: layout style paint;
}

/* Header Styles */
/* Обертка header */
.header {
  position: relative;
  height: 300px; /* можешь изменить высоту */
  width: 100%;
  overflow: hidden;
  will-change: transform;
}

.header__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: "Syne" sans-serif;
    font-size: clamp(32px, 8vw, 72px);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    pointer-events: none; /* чтобы клики проходили сквозь */
    will-change: transform;
  }

/* Блок фона */
.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Обеспечивает красивое заполнение без искажений */
  display: block;
}

/* Фоновое изображение */
.header-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  
}

/* Контент поверх фона */
.header__nav {
  position: relative;
  z-index: 1; /* главное — выше фона */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1rem;
  max-width: 1440px;
  margin: 0 auto;
  color: #fff;
}


.header {

top: 0;
left: 0;
width: 100%;
z-index: 1000;
transition: background-color 0.3s ease;
}

.header__nav {
display: flex;
justify-content: space-between;
align-items: center;
padding: 0.75rem 1rem;
max-width: 1440px;
margin: 0 auto;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
.header__nav {
padding: 0.75rem 1rem;
}
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
.header__nav {
padding: 1rem 1.5rem;
}
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
.header__nav {
padding: 1rem 2rem;
}
}

/* 1025px+ */
@media (min-width: 1025px) {
.header__nav {
padding: 1rem 2rem;
}
}

.header__logo img {
height: 40px;
width: auto;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
.header__logo img {
height: 45px;
}
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
.header__logo img {
height: 50px;
}
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
.header__logo img {
height: 60px;
}
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
.header__logo img {
height: 70px;
}
}

/* 1281px+ */
@media (min-width: 1281px) {
.header__logo img {
height: 80px;
}
}

.header__menu {
display: none;
list-style: none;
gap: 1.5rem;
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
.header__menu {
display: flex;
gap: 1rem;
}
}

/* 1025px+ */
@media (min-width: 1025px) {
.header__menu {
display: flex;
gap: 2rem;
}
}

.header__menu a {
color: #ffffff;
text-decoration: none;
font-family: 'Syne', sans-serif;
font-size: 1rem;
transition: color 0.3s ease;
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
.header__menu a {
font-size: 0.95rem;
}
}

/* 1025px+ */
@media (min-width: 1025px) {
.header__menu a {
font-size: 1.125rem;
}
}

.header__menu a:hover,
.header__menu a:focus {
color: #ff4309;
text-decoration: underline;
}

.header__actions {
display: flex;
align-items: center;
gap: 1rem;
}

/* Language Switcher */
.language-switcher {
position: relative;
}

.language-switcher__toggle {
display: flex;
align-items: center;
gap: 0.5rem;
background: transparent;
border: 1px solid #ffffff;
color: #ffffff;
padding: 0.5rem 1rem;
border-radius: 4px;
cursor: pointer;
font-size: 0.875rem;
transition: all 0.3s ease;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus {
background: #ff4309;
border-color: #ff4309;
}

.language-switcher__icon {
transition: transform 0.3s ease;
}

.language-switcher__toggle[aria-expanded="true"] .language-switcher__icon {
transform: rotate(180deg);
}

.language-switcher__dropdown {
position: absolute;
top: 100%;
right: 0;
background: #000000;
border: 1px solid #333;
border-radius: 4px;
list-style: none;
min-width: 120px;
opacity: 0;
visibility: hidden;
transform: translateY(-10px);
transition: all 0.3s ease;
z-index: 100;
}

.language-switcher__dropdown.active {
opacity: 1;
visibility: visible;
transform: translateY(0);
}

.language-switcher__dropdown button {
width: 100%;
padding: 0.75rem 1rem;
background: transparent;
border: none;
color: #ffffff;
text-align: left;
cursor: pointer;
transition: background-color 0.3s ease;
}

.language-switcher__dropdown button:hover,
.language-switcher__dropdown button:focus {
background: #ff4309;
}

/* Social Links */
.header__social {
display: none;
gap: 0.75rem;
}

/* 768px+ */
@media (min-width: 768px) {
.header__social {
display: flex;
}
}

.social-link {
display: block;
transition: transform 0.3s ease;
}

.social-link:hover,
.social-link:focus {
transform: scale(1.1);
}

.social-link img {
width: 31px;
height: 31px;
border-radius: 50%;
    
}

/* Mobile Menu Toggle */
.header__mobile-toggle {
display: flex;
flex-direction: column;
gap: 4px;
background: transparent;
border: none;
cursor: pointer;
padding: 0.5rem;
z-index: 10001;
position: relative;
}

/* 768px+ */
@media (min-width: 768px) {
.header__mobile-toggle {
display: none;
}
}

.header__mobile-toggle span {
width: 25px;
height: 3px;
background: #ffffff;
transition: all 0.3s ease;
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(1) {
transform: rotate(45deg) translate(6px, 6px);
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(2) {
opacity: 0;
}

.header__mobile-toggle[aria-expanded="true"] span:nth-child(3) {
transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100vh;
background: rgba(0, 0, 0, 0.8);
z-index: 9998;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
opacity: 1;
visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%) scale(0.8);
width: 280px;
background: #2a2a2a;
border-radius: 20px;
padding: 2rem 1.5rem;
z-index: 10000;
opacity: 0;
visibility: hidden;
transition: all 0.3s ease;
box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
.mobile-menu {
width: 260px;
padding: 1.5rem 1rem;
}
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
.mobile-menu {
width: 320px;
padding: 2rem 1.5rem;
}
}

.mobile-menu.active {
opacity: 1;
visibility: visible;
transform: translate(-50%, -50%) scale(1);
}

/* Close Button */
.mobile-menu__close {
position: absolute;
top: 15px;
right: 15px;
background: transparent;
border: none;
color: #ffffff;
font-size: 20px;
cursor: pointer;
padding: 5px;
line-height: 1;
transition: color 0.3s ease;
}

.mobile-menu__close:hover {
color: #ff4309;
}

/* Language Flags */
.mobile-menu__languages {
display: flex;
justify-content: center;
gap: 15px;
margin-bottom: 2rem;
padding-bottom: 1.5rem;
border-bottom: 1px solid #444;
}

.mobile-menu__language-flag {
width: 40px;
height: 40px;
border-radius: 50%;
cursor: pointer;
transition: transform 0.3s ease;
border: 2px solid transparent;
}

.mobile-menu__language-flag:hover,
.mobile-menu__language-flag.active {
transform: scale(1.1);
border-color: #ff4309;
}

/* Menu Items */
.mobile-menu__nav {
list-style: none;
margin-bottom: 2rem;
}

.mobile-menu__nav li {
margin-bottom: 1.5rem;
}

.mobile-menu__nav a {
color: #ffffff;
text-decoration: none;
font-family: 'Syne', sans-serif;
font-size: 1.25rem;
font-weight: 500;
display: block;
text-align: center;
padding: 0.5rem;
transition: color 0.3s ease;
}

.mobile-menu__nav a:hover {
color: #ff4309;
}

/* Social Icons */
.mobile-menu__social {
display: flex;
justify-content: center;
gap: 20px;
padding-top: 1.5rem;
border-top: 1px solid #444;
}

.mobile-menu__social a {
display: block;
transition: transform 0.3s ease;
}

.mobile-menu__social a:hover {
transform: scale(1.1);
}

.mobile-menu__social img {
width: 35px;
height: 35px;
border-radius: 50%;

}

/* Body scroll lock when menu is open */
body.mobile-menu-open {
overflow: hidden;
}

.header-content {
    position: relative;
    z-index: 2;
    padding: 20px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.logo {
    width: 200px;
    height: auto;
    margin-bottom: 20px;
    max-width: 100%;
}

.navigation {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: auto;
    flex-wrap: wrap;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #ff4309;
}

.user-profiles {
    display: flex;
    gap: 8px;
    margin-left: auto;
}

.profile-img {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    object-fit: cover;
}

.page-title {
    font-size: 48px;
    font-weight: 700;
    text-align: center;
    margin-top: auto;
    margin-bottom: 20px;
}

/* Categories Navigation */
.categories-nav {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 2px solid #333;
    gap: 15px;
    overflow: hidden;
}

.category-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    transition: all 0.3s ease;
    border-radius: 50%;
    min-width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* .category-btn:hover {
    background-color: rgba(255, 67, 9, 0.2);
    transform: scale(1.1);
} */

/* .category-btn:active {
    transform: scale(0.95);
} */

.category-btn img {
    width: 20px;
    height: 8px;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
}

.category-btn:hover img {
    filter: brightness(0) saturate(100%) invert(27%) sepia(96%) saturate(7471%) hue-rotate(15deg) brightness(103%) contrast(101%);
}

.categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-behavior: smooth;
    flex: 1;
    padding: 0 10px;
    padding-top: 10px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    -webkit-overflow-scrolling: touch;
    contain: layout style paint;
}

.categories::-webkit-scrollbar {
    display: none;
}

.category-link {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 12px 16px;
    border-radius: 25px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 1px solid transparent;
    will-change: transform;
    backface-visibility: hidden;
}

/* .category-link:hover {
    color: #ff4309;
    background-color: rgba(255, 67, 9, 0.1);
    border-color: rgba(255, 67, 9, 0.3);
    transform: translateY(-2px);
} */

.category-link.active {
    color: #ff4309;
    background-color: rgba(255, 67, 9, 0.2);
    border-color: #ff4309;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 67, 9, 0.3);
    transform: translate3d(0, -2px, 0);
}

/* Spirits Categories */
.spirits-categories {
    padding: 20px;
    text-align: center;
    border-bottom: 2px solid #333;
    transition: all 0.3s ease;
}

.spirits-categories.hidden {
    display: none;
}

.spirits-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.spirits-row:last-child {
    margin-bottom: 0;
}


.larr::before {
  content: "\2190";
  color: white;
}

.rarr::before {
  content: "\2192";
  color: white;
  
}

.spirit-btn {
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    font-weight: 400;
    font-family: 'Syne', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 8px 12px;
    border-radius: 6px;
    white-space: nowrap;
    will-change: transform;
    backface-visibility: hidden;
}

.spirit-btn:hover {
    color: #ff4309;
    background-color: rgba(255, 67, 9, 0.1);
}

.spirit-btn.active {
    color: #ff4309;
    background-color: rgba(255, 67, 9, 0.2);
    transform: scale3d(1.05, 1.05, 1);
}

.separator {
    color: #fff;
    font-size: 20px;
    margin: 0 5px;
}

/* Menu Content */
.menu-content {
    padding: 20px;
    position: relative;
}

.menu-section {
    display: none;
    animation: fadeIn 0.3s ease-in-out;
}

.menu-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 10px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.section-title {
    margin: 30px 0 20px 0;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 400;
    color: #fff;
    transition: color 0.3s ease;
}

.section-title h3 {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin: 20px 0 15px 0;
}

.menu-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

.spirit-items {
    display: none;
}

.spirit-items.active {
    display: block;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    z-index: 3;
    will-change: transform;
    backface-visibility: hidden;
}

/* .menu-item:hover {
    background-color: rgba(255, 255, 255, 0.05);
    padding-left: 10px;
    padding-right: 10px;
    border-radius: 8px;
    transform: translateX(5px);
    border-bottom-color: #ff4309;
} */

.background,
.background1 {
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 1;
    overflow: hidden;
    border-radius: 15px;
    opacity: 0.4;
}

.background {
    top: 272px;
    right: 20px;
}

.background1 {
    top: -15px;
    left: 0px;
}

.background img,
.background1 img {
    width: 100%;
    height: 70%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
    will-change: transform;
    border-radius: 10px;
}

.item-name {
    font-size: 28px;
    font-weight: 400;
    color: #fff;
    flex: 1;
    transition: color 0.3s ease;
}

/* .menu-item:hover .item-name {
    color: #ff4309;
} */

.item-price {
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    margin-left: 20px;
    /* transition: color 0.3s ease; */
    white-space: nowrap;
}
/* 
.menu-item:hover .item-price {
    color: #ff4309;
} */

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1.5rem;

    position: relative;
    z-index: 10;
}

/* 481px+ */
/* @media (min-width: 481px) {
    .footer {
        padding: 4rem 0 2rem;
    }
    .klor-logo{
        width: auto;
        height: auto;
    }
} */

.footer__content {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .klor-logo{
        width: auto;
        height: auto;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    .klor-logo{
        width: auto;
        height: auto;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .footer__content {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    .klor-logo{
        width: auto;
        height: auto;
    }
}

.footer__section {
    color: #ffffff;
}

.footer__brand {
    font-family: 'Syne' sans-serif;
    font-weight: 500;
    right: 20px;
    position: relative;
    top: -10px;
    font-size: 1.8rem;
    color: #ffffff;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__brand {
        font-size: 2rem;
    }
    .klor-logo{
        width: auto;
        height: auto;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
  .logo-header{
        height: 42px ;
        width:183px ;
    }  
    .klor-logo{
        width: auto;
        height: auto;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__brand {
        font-size: 2.5rem;
    }
    .klor-logo{
        width: auto;
        height: auto;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__brand {
        font-size: 3rem;
    }
    .klor-logo{
        width: auto;
        height: auto;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__brand {
        font-size: 3.4375rem;
    }
    .klorlogo{
        width: auto;
        height: auto;
    }
}

.footer__menu {
     font-family: 'Syne' sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    color: #ffffff;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__menu {
        font-size: 1.3rem;
    }
    .klorlogo{
        width: 100%;
        height: 100%;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__menu {
        font-size: 1.4rem;
    }
    .klorlogo{
        width: 100%;
        height: 100%;

    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__menu {
        font-size: 1.6rem;
    }
    .klorlogo{
        width: 100%;
        height: 100%;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__menu {
        font-size: 2rem;
    }
    .klorlogo{
        width: 100%;
        height: 100%;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__menu {
        font-size: 28px;
    }
    .klorlogo{
        width: auto;
        height: auto;
    }
}

.footer__title {
     font-family: 'Syne' sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__title {
        font-size: 1.15rem;
        margin-bottom: 1.6rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__title {
        font-size: 1.2rem;
        margin-bottom: 1.7rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__title {
        font-size: 1.4rem;
        margin-bottom: 1.8rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__title {
        font-size: 1.6rem;
        margin-bottom: 2rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__title {
        font-size: 1.8125rem;
        margin-bottom: 2rem;
    }
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .footer__contact {
        margin-bottom: 2rem;
    }
}

.footer__link {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Syne' sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__link {
        font-size: 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__link {
        font-size: 1.05rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__link {
        font-size: 1.1rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .footer__link {
        font-size: 1.125rem;
    }
}

.footer__link:hover,
.footer__link:focus {
    color: #ff4309;
}

.footer__social-title {
     font-family: 'Syne' sans-serif;
    font-weight: 500;
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__social-title {
        font-size: 1.05rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__social-title {
        font-size: 1.1rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__social-title {
        font-size: 1.3rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .footer__social-title {
        font-size: 1.6rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .footer__social-title {
        font-size: 1.85rem;
    }
}

.map{
    padding-top: 80px;
}
.footer__social-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}


.footer__social-links a {
    transition: transform 0.3s ease;
}

.footer__social-links a:hover,
.footer__social-links a:focus {
    transform: scale(1.1);
}

.footer__reviews {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}


.btn--small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    border-radius: 1rem;
    border: 2px solid #ffffff;
    background: transparent;
    color: #ffffff;
}

.btn--small:hover,
.btn--small:focus {
    background: #ffffff;
    color: #000000;
}

.review-platform {
    display: inline-table;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.review-platform span {
     font-family: 'Syne' sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    color: #ffffff;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .review-platform span {
        font-size: 0.95rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .review-platform span {
        font-size: 1rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .review-platform span {
        font-size: 1.2rem;
    }
}

/* 1025px – 1280px */
@media (min-width: 1025px) and (max-width: 1280px) {
    .review-platform span {
        font-size: 1.4rem;
    }
}

/* 1281px+ */
@media (min-width: 1281px) {
    .review-platform span {
        font-size: 1.58125rem;
    }
}

.footer__hours {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__hours p {
    font-family: 'Syne' sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    color: #ffffff;
}

/* 375px – 480px */
@media (min-width: 375px) and (max-width: 480px) {
    .footer__hours p {
        font-size: 1rem;
    }
}

/* 481px – 767px */
@media (min-width: 481px) and (max-width: 767px) {
    .footer__hours p {
        font-size: 1.05rem;
    }
}

/* 768px – 1024px */
@media (min-width: 768px) and (max-width: 1024px) {
    .footer__hours p {
        font-size: 1.1rem;
    }
}

/* 1025px+ */
@media (min-width: 1025px) {
    .footer__hours p {
        font-size: 1.125rem;
    }
}

.footer__divider {
    width: 100%;
    height: 1px;
    background: #ffffff;
    margin-top: 2rem;
}

/* 481px+ */
@media (min-width: 481px) {
    .footer__divider {
        margin-top: 3rem;
    }
}



.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
    will-change: transform, opacity;
}



/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .btn--outline {
        border-width: 3px;
    }
    
    .form-input {
        border-width: 3px;
    }
}

/* Print Styles */
@media print {
    .header,
    .loading-screen,
    .btn {
        display: none !important;
    }
    
    body {
        color: #000000 !important;
        background: #ffffff !important;
    }
    
    .section {
        page-break-inside: avoid;
    }
}

.footerlogo{
    justify-self: center;
    align-self: center;
    width: 100%;       /* Блок растягивается на всю ширину родителя */
    max-width: 412px;  /* Максимальная ширина фотографии, например 600px */
    margin: 0 auto;
}


/* Responsive Design */

/* Large Desktop (1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }
    
    .background {
        width: 400px;
        height: 400px;
        top: -40px;
        right: 50px;
    }
    
    .background1 {
        width: 400px;
        height: 400px;
        top: -20px;
        left: 50px;
    }

    .map{
        margin-top: 3.5rem;
    }
}

/* Desktop (992px to 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .background,
    .background1 {
        width: 350px;
        height: 350px;
    }
    
    .background {
        right: 30px;
        top: -1rem;
    }
    
    .background1 {
        top: -20px;
        left: 30px;
    }
}

/* Tablet (768px to 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .header {
        height: 250px;
    }
    
    .logo {
        width: 150px;
    }
    
    .navigation {
        gap: 15px;
    }
    
    .nav-link {
        font-size: 14px;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .categories-nav {
        padding: 15px;
        gap: 10px;
    }
    
    .category-link {
        font-size: 14px;
        padding: 10px 14px;
    }
    
    .spirit-btn {
        font-size: 18px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
    
    .item-name {
        font-size: 22px;
    }
    
    .item-price {
        font-size: 20px;
    }
    
    .background,
    .background1 {
        width: 250px;
        height: 250px;
        opacity: 0.2;
    }
    
    .background {
        top: 30px;
        right: 10px;
    }
    
    .background1 {
        top: -20px;
        left: 10px;
    }
    
    
    
    .klor-logo {
        width: 250px;

    }
    .row{
    max-width: 1200px;
    margin: 110px auto;
    background-color: #000;
    width: 100%;
    }
}

/* Mobile Large (576px to 767px) */
@media (max-width: 768px) and (min-width: 576px) {
    .row{
    max-width: 1200px;
    margin: 110px auto;
    background-color: #000;
    width: 100%;
    }
    .header {
        height: 220px;
    }
    
    .header-content {
        padding: 15px;
    }
    
    .logo {
        width: 130px;
    }
    
    .navigation {
        flex-wrap: wrap;
        gap: 12px;
    }
    
    .nav-link {
        font-size: 13px;
    }
    
    .user-profiles {
        order: -1;
        margin-left: 0;
        margin-bottom: 10px;
    }
    
    .page-title {
        font-size: 32px;
        margin-bottom: 15px;
    }
    
    .categories-nav {
        padding: 12px;
        gap: 8px;
    }
    
    .category-btn {
        padding: 8px;
        min-width: 36px;
        height: 36px;
    }
    
    .category-link {
        font-size: 13px;
        padding: 8px 12px;
    }
    
    .spirits-categories {
        padding: 15px;
    }
    
    .spirit-btn {
        font-size: 16px;
        padding: 6px 10px;
    }
    
    .spirits-row {
        gap: 8px;
        margin-bottom: 12px;
    }
    
    .separator {
        font-size: 16px;
        margin: 0 3px;
    }
    
    .menu-content {
        padding: 15px;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title h3 {
        font-size: 20px;
    }
    
    .item-name {
        font-size: 18px;
    }
    
    .item-price {
        font-size: 16px;
        margin-left: 15px;
    }
    
    .background,
    .background1 {
        display: none;
    }
    
    .map {
        height: 300px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px 15px;
    }
    
    .klor-logo {
        width: 200px;
    }
}

/* Mobile Small (up to 575px) */
@media (max-width: 575px) {
    .row{
        margin: 170px auto;
    }

    .header {
        height: 200px;
    }
    
    .header-content {
        padding: 12px;
    }
    
    .logo {
        width: 110px;
    }
    
    .navigation {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .nav-link {
        font-size: 12px;
    }
    
    .user-profiles {
        align-self: flex-end;
        margin-top: -30px;
    }
    
    .page-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .categories-nav {
        padding: 10px;
        gap: 6px;
    }
    
    .category-btn {
        padding: 6px;
        min-width: 32px;
        height: 32px;
    }
    
    .category-btn img {
        width: 16px;
        height: 6px;
    }
    
    .category-link {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .spirits-categories {
        padding: 12px;
    }
    
    .spirit-btn {
        font-size: 14px;
        padding: 4px 8px;
    }
    
    .spirits-row {
        gap: 6px;
        margin-bottom: 10px;
        justify-content: center;
    }
    
    .separator {
        font-size: 14px;
        margin: 0 2px;
    }
    
    .menu-content {
        padding: 12px;
    }
    
    .section-title {
        margin: 20px 0 15px 0;
    }
    
    .section-title h2 {
        font-size: 20px;
    }
    
    .section-title h3 {
        font-size: 18px;
    }
    
    .menu-items {
        gap: 12px;
    }
    
    .menu-item {
        padding: 10px 0;
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    /* .menu-item:hover {
        padding-left: 8px;
        padding-right: 8px;
        transform: translateX(3px);
    }  */
    
    .item-name {
        font-size: 16px;
        line-height: 1.3;
    }
    
    .item-price {
        font-size: 14px;
        margin-left: 0;
        align-self: flex-end;
        font-weight: 600;
     
    }
    
    .map {
        height: 250px;
        padding-top: 22rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px 12px;
    }
    
    .footer-section h3 {
        font-size: 16px;
    }
    
    .footer-section h4 {
        font-size: 14px;
    }
    
    .footer-section p {
        font-size: 13px;
    }
    
    .footer-nav a {
        font-size: 14px;
    }
    
    .social-icons img {
        width: 24px;
        height: 24px;
    }
    
    .platform-info img {
        width: 24px;
        height: 24px;
    }
    
    .klor-logo {
        width: 150px;
    }
    
    .footer-logo-bottom {
        padding: 30px 12px;
    }
    
    /* Оптимизация для очень маленьких экранов */
    .background,
    .background1 {
        display: none;
    }
    
    .menu-section {
        animation: none;
    }
    
    .category-link,
    .spirit-btn,
    .menu-item {
        transition: none;
    }
}

/* Extra Small Mobile (up to 375px) */
@media (max-width: 375px) {
    .header {
        height: 180px;
    }
    
    .logo {
        width: 100px;
    }
    
    .page-title {
        font-size: 20px;
    }
    
    .category-link {
        font-size: 10px;
        padding: 5px 8px;
    }
    
    .spirit-btn {
        font-size: 12px;
        padding: 3px 6px;
    }
    
    .section-title h2 {
        font-size: 18px;
    }
    
    .item-name {
        font-size: 14px;
    }
    
    .item-price {
        font-size: 13px;
    }
    
    .klor-logo {
        width: 120px;
    }
    
    /* Дополнительная оптимизация для самых маленьких экранов */
    * {
        transition: none !important;
        animation: none !important;
    }
    
    .categories {
        scroll-behavior: auto;
    }
}

/* Landscape orientation fixes for mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .header {
        height: 150px;
    }
    
    .page-title {
        font-size: 20px;
        margin-bottom: 10px;
    }
    
    .header-content {
        padding: 10px;
    }
    
    .logo {
        width: 80px;
        margin-bottom: 10px;
    }
    
    .navigation {
        gap: 10px;
    }
    
    .nav-link {
        font-size: 11px;
    }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .header-image,
    .background img,
    .background1 img {
        image-rendering: -webkit-optimize-contrast;
        image-rendering: crisp-edges;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .categories-nav,
    .spirits-categories {
        display: none;
    }
    
    .menu-content {
        padding: 0;
    }
    
    .menu-section {
        display: block !important;
        page-break-inside: avoid;
    }
    
    .background,
    .background1 {
        display: none;
    }
}


.review-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-text {
  font-size: 20px;
  color: white;
}

.review-icon {
  width: 30px; /* Подкорректируйте под нужный размер */
  height: 30px;
}

.review-button {
  padding: 8px 16px;
  background: transparent;
  border: 2px solid white;
  color: white;
  border-radius: 20px;
  cursor: pointer;
  font-weight: bold;
  will-change: transform;
  backface-visibility: hidden;
}

/* Оптимизация производительности */
@media (max-width: 768px) {
    /* Отключаем сложные эффекты на мобильных */
    .category-link,
    .spirit-btn,
    .menu-item,
    .review-button {
        transition: color 0.2s ease, background-color 0.2s ease;
    }
    
    /* Упрощаем анимации */
    .menu-section {
        animation-duration: 0.2s;
    }
    
    /* Оптимизируем скролл */
    .categories {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior-x: contain;
    }
}

/* Критическая оптимизация для слабых устройств */
@media (max-width: 480px) and (max-height: 800px) {
    .background,
    .background1 {
        display: none !important;
    }
    
    .menu-section {
        animation: none !important;
    }
    
    .category-link:hover,
    .spirit-btn:hover,
    .menu-item:hover {
        transform: none !important;
    }
}


