a {
    color: var(--orange);
    text-decoration: none;
    transition: color 0.3s;
}
a:hover {
    color: #ffa94d;
}

/* ====== Утилиты ====== */
.text-orange,
h5 {
    color: var(--orange);
}
.text-pro {
    color: var(--orange-dark);
    font-weight: bold;
    text-shadow: 0 0 8px var(--orange-glow);
}
.border-orange {
    border-color: var(--orange) !important;
}
.text-light {
    color: var(--text-light);
}
.bg-dark {
    background-color: var(--bg-dark);
}
.bg-grey {
    background-color: var(--bg-grey);
}
.bg-dark-soft {
    background: rgba(40, 40, 40, 0.6);
    backdrop-filter: blur(5px);
}

/* ====== Заголовки ====== */

.section-title {
    text-shadow: 2px 2px 6px var(--shadow-dark);
    color: #fff;
}
/* ====== Кнопки ====== */
.btn-orange {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    white-space: nowrap;
}
.btn-orange:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 10px rgba(255, 122, 0, 0.6);
    background-color: #e06a00;
}

.btn-outline-orange {
    border: 2px solid var(--orange);
    color: var(--orange);
    background: transparent;
}
.btn-outline-orange:hover {
    background: var(--orange);
    color: white;
}

/* ====== Навигация ====== */
.navbar {
    backdrop-filter: blur(10px);
    background: rgba(10, 10, 10, 0.8) !important;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 122, 0, 0.1);
    height: 70px;
    animation: fadeInDown 0.5s ease-out;
    min-height: 70px;
    display: flex;
    align-items: center;
}

.navbar-brand {
    font-size: 1.5rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    margin-right: 2rem !important;
}
.navbar-brand:hover {
    transform: scale(1.03);
    text-shadow: 0 0 10px rgba(255, 122, 0, 0.3);
}

.nav-link {
    position: relative;
    margin: 0 10px;
    padding: 5px 0;
}
.nav-link.active {
    color: var(--orange) !important;
    font-weight: bold;
    text-shadow: 0 0 8px var(--orange-glow);
}
.nav-link::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--orange);
    transition: width 0.3s ease;
}
.nav-link:hover {
    color: var(--orange) !important;
}
.nav-link:hover::after {
    width: 100%;
}

/* Контакты и кнопка в навбаре */
.navbar-right-container {
    display: flex;
    align-items: center;
    height: 100%;
}

.phone-link,
.email-link {
    color: white;
    text-decoration: none;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0 8px;
}
.phone-link:hover,
.email-link:hover {
    color: var(--orange) !important;
}

.phone-link-mobile,
.email-link-mobile {
    display: none;
    color: white;
    text-decoration: none;
    padding: 10px 15px;
}

/* Кнопка "Связаться" в навбаре */
.navbar .btn-orange {
    padding: 8px 16px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    margin-left: 15px;
    margin-bottom: 0;
}

/* ====== Секции ====== */
section[id] {
    scroll-margin-top: 80px;
    padding-top: 40px;
}
.section {
    background: rgba(30, 30, 30, 0.7);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    margin: 20px 0;
}

/* ====== Изображения ====== */
.img-fluid:hover {
    transform: perspective(1000px) rotateY(10deg) scale(1.03);
    transition: all 0.5s ease;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.3) !important;
}

/* ====== Модальное окно ====== */
.modal-content {
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
    background-color: var(--bg-dark);
    border: 1px solid var(--orange);
}
.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--orange);
}
.modal-body {
    padding: 1.5rem;
}
.btn-close-white {
    filter: invert(1) brightness(2);
}

/* ====== Валидация формы ====== */
.is-invalid {
    border-color: #dc3545 !important;
}
.is-valid {
    border-color: #28a745 !important;
}
.invalid-feedback {
    display: none;
    font-size: 0.875em;
    margin-top: 0.25rem;
    color: var(--orange);
}
.is-invalid ~ .invalid-feedback {
    display: block;
}

/* ====== Анимации ====== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientBG {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* ====== Адаптивность ====== */
@media (max-width: 992px) {
    .navbar {
        height: auto;
        padding: 15px 0 !important;
    }
    .navbar-brand {
        margin-right: 1rem !important;
    }
    .phone-link span,
    .email-link span {
        display: none;
    }
    .navbar .btn-orange {
        padding: 0.4rem 0.8rem;
        height: 36px;
        font-size: 0.9rem;
    }
    .navbar-collapse {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .navbar-right-container {
        width: 100%;
        justify-content: flex-end;
        margin-top: 10px;
        padding-top: 10px;
        border-top: 1px solid rgba(255, 122, 0, 0.2);
        margin-left: auto;
    }

    .navbar .btn-orange {
        margin-left: 10px;
    }

    .phone-link,
    .email-link {
        display: none !important;
    }

    .phone-link-mobile,
    .email-link-mobile {
        display: block;
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

@media (max-width: 768px) {
    h2 {
        font-size: 1.8rem;
    }
    h5 {
        font-size: 1.2rem;
    }
    .py-5 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 576px) {
    .phone-link,
    .email-link {
        display: none !important;
    }
    .navbar .btn-orange span {
        display: none;
    }
    .navbar .btn-orange i {
        margin-right: 0;
    }

    .navbar-right-container {
        justify-content: space-between;
    }

    .navbar .btn-orange {
        margin-left: 0;
    }

    .phone-link-mobile i,
    .email-link-mobile i {
        margin-right: 8px;
    }
}

/* Стили для полей ввода в модальном окне */
#modalContactForm .form-control {
    background-color: rgba(50, 50, 50, 0.7) !important;
    border: 1px solid var(--orange) !important;
    color: var(--text-light) !important;
    padding: 12px 15px;
    border-radius: 8px;
}

#modalContactForm .form-control:focus {
    background-color: rgba(60, 60, 60, 0.7) !important;
    border-color: var(--orange-dark) !important;
    box-shadow: 0 0 0 0.25rem rgba(255, 122, 0, 0.25) !important;
    color: var(--text-light) !important;
}

/* Стили для сообщения */
#formMessage {
    transition: all 0.5s ease;
    opacity: 1;
}

#formMessage.fade-out {
    opacity: 0;
}

/* ====== Шрифты и типографика ====== */
:root {
    --orange: #ff7a00;
    --orange-dark: #ff5500;
    --orange-glow: rgba(255, 102, 0, 0.7);
    --text-light: #f0f0f0;
    --bg-dark: #121212;
    --bg-darker: #1e1e1e;
    --bg-grey: #2a2a2a;
    --shadow-dark: rgba(0, 0, 0, 0.7);

    /* Шрифты */
    --font-main: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: "Segoe UI", Roboto, -apple-system, BlinkMacSystemFont, sans-serif;
    --font-size-base: 1rem; /* 16px */
}

/* ====== Общие настройки ====== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-main);
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: var(--text-light);
    background: linear-gradient(-45deg, #1e1e1e, #2a2a2a, #1a1a1a, #252525);
    background-size: 400% 400%;
    animation: gradientBG 15s ease infinite;
}

/* ====== Типографика ====== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #fff;
    text-shadow: 2px 2px 6px var(--shadow-dark);
}

h1 {
    font-size: 2.5rem; /* 40px */
}

h2 {
    font-size: 2rem; /* 32px */
}

h3 {
    font-size: 1.75rem; /* 28px */
}

h4 {
    font-size: 1.5rem; /* 24px */
}

h5 {
    font-size: 1.25rem; /* 20px */
    color: var(--orange);
}

h6 {
    font-size: 1.1rem; /* 18px */
}

p {
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

.lead {
    font-size: 1.25rem;
    line-height: 1.5;
}

.small {
    font-size: 0.875rem;
}

/* Основной текст в секциях */
section p {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Списки */
ul,
ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

li {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Специальные блоки */
.achievements-box li,
.trust-box li {
    font-size: 1.05rem;
}

/* Адаптивные размеры */
@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    section p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    h2 {
        font-size: 1.6rem;
    }
    .lead {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    h2 {
        font-size: 1.4rem;
    }
    body {
        font-size: 0.95rem;
    }
}

/* Стили для слайдера в секции "О нас" */
#aboutCarousel {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(255, 122, 0, 0.2);
    transition: all 0.3s ease;
}

#aboutCarousel:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 30px rgba(255, 122, 0, 0.4);
}
.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 122, 0, 0.1);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
    opacity: 0.7;
    z-index: 2;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: rgba(255, 122, 0, 0.3);
    box-shadow: 0 6px 12px rgba(255, 122, 0, 0.4);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-image: none;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: "";
    display: inline-block;
    width: 16px;
    height: 16px;
    border: solid white;
    border-width: 0 3px 3px 0;
    padding: 3px;
    transform: rotate(135deg);
    transition: transform 0.3s ease;
}

.carousel-control-next-icon::before {
    transform: rotate(-45deg);
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
    will-change: transform, opacity;
}

.partnersCarousel img {
    width: 100%;
    height: auto;
    object-fit: cover;
    max-height: 100px;
    border-radius: 12px;

    transition: transform 0.5s ease;
}

.carousel-item img:hover {
    transform: scale(1.03);
}

/* Индикаторы слайдера */
.carousel-indicators {
    bottom: -30px;
    margin-bottom: 0;
    justify-content: center;
}

.carousel-indicators [data-bs-target] {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    border: 2px solid var(--orange);
    margin: 0 6px;
    transition: all 0.3s;
}

.carousel-indicators .active {
    width: 20px;
    height: 14px;
    border-radius: 7px;
    background-color: var(--orange);
    border-color: white;
}

/* Общий стиль карточки */
.partner-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 2px solid var(--orange);
    border-radius: 12px;
    overflow: hidden;
    background-color: #121212; /* если вдруг сбрасывается */
}

/* Контейнер изображения */
.partner-card img {
    width: 100%;
    height: 200px; /* Фиксированная высота */
    object-fit: contain; /* Не обрезаем и не растягиваем */
    background-color: #1e1e1e; /* Заполнитель под изображением */
    padding: 1rem;
}

/* Уравнивание высоты текста */
.partner-card .card-body {
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

/* Выравнивание всех колонок */
.carousel-item .row > div {
    display: flex;
    justify-content: center;
}

/* Задание фиксированной ширины карточкам внутри колонок */
@media (min-width: 768px) {
    .carousel-item .col-md-4 {
        max-width: 320px;
        flex: 0 0 320px;
    }
}

/* Остальные стили оставить без изменений */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.navbar-brand,
.btn-orange,
.modal-title {
    font-family: var(--font-heading);
    font-weight: 400; /* Bebas Neue обычно имеет один вес */
    letter-spacing: 1px;
}

/* Специальные настройки для заголовков */
h1 {
    font-size: 3rem;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
}

.navbar-brand {
    letter-spacing: 1.5px;
}

/* Основной текст */
p,
li,
a,
.form-control,
.btn:not(.btn-orange) {
    font-family: var(--font-main);
}

/* Кнопка с оранжевым фоном */
.btn-orange {
    letter-spacing: 1.2px;
}

/* Адаптивные настройки */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 1.8rem;
    }
}

#contact form {
    max-width: 400px; /* можно 350px или 300px — по вкусу */
    margin: 0 auto;
}

/* Галерея-сетка */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1rem;
}

/* Галерея-сетка, одинаковая логика для ПК и мобилы */
.gallery-pinterest {
    column-count: 2; /* по умолчанию на маленьких экранах */
    column-gap: 1rem;
    padding: 0 0.5rem;
}

@media (min-width: 768px) {
    .gallery-pinterest {
        column-count: 3; /* планшеты */
    }
}

@media (min-width: 1200px) {
    .gallery-pinterest {
        column-count: 4; /* большие экраны */
    }
}

.gallery-pin {
    break-inside: avoid;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.gallery-pin img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.gallery-pin:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

/* ====== HERO (фон на первом экране) ====== */
.hero {
    position: relative;
    min-height: 80vh; /* почти на весь экран */
    background: url("images/hero.webp") center/cover no-repeat fixed;
    display: flex;
    align-items: center;
    padding: clamp(60px, 8vh, 100px) 0;
    overflow: hidden;
}

/* Полупрозрачный слой для контраста текста */
.hero__overlay {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.35) 40%, rgba(0, 0, 0, 0.55) 100%);
}

/* Чтобы контент был над overlay */
.hero .container,
.hero h1,
.hero p,
.hero a {
    position: relative;
    z-index: 1;
}

/* Мелкая анимация при наведении на кнопку уже есть у .btn-orange */
.hero .lead {
    max-width: 720px;
    font-size: 1.25rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
    font-family: var(--font-main);
}

.hero h1.display-3 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

/* Опционально: retina/разные размеры (если сделаете несколько версий) */
@supports (background-image: image-set(url("images/hero.webp") 1x)) {
    .hero {
        background-image: image-set(url("images/hero-1280.webp") 1x, url("images/hero.webp") 2x);
        background-position: center;
        background-repeat: no-repeat;
        background-size: cover;
        background-attachment: fixed;
    }
}

/* Отключаем фиксированный фон на мобильных (перфоманс/совместимость) */
@media (max-width: 992px) {
    .hero {
        background-attachment: scroll;
        min-height: 65vh;
    }
}

/* Уважение настроек пользователя по анимациям */
@media (prefers-reduced-motion: reduce) {
    .hero {
        background-attachment: scroll;
    }
}

.parallax-section {
    position: relative;
    background: url("images/smoke.webp") center/cover no-repeat fixed;
    padding: 80px 0;
}
.parallax-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}
.parallax-section > .container {
    position: relative;
    z-index: 1;
}
@media (max-width: 992px) {
    .parallax-section {
        background-attachment: scroll;
    }
}
html body {
    background: #121212 url("images/hero.webp") center/cover no-repeat fixed !important;
    min-height: 100vh;
}

/* ===== Увеличение изображения ===== */
.image-modal {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

/* Кнопка закрытия */
.image-modal-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}
.image-modal-close:hover {
    color: var(--orange);
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .image-modal-content {
        max-width: 100%;
        max-height: 80vh;
    }
}

.image-modal {
    display: none;
    position: fixed;
    z-index: 1050;
    padding-top: 60px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.9);
}

.image-modal-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 80%;
}

.image-modal-close {
    position: absolute;
    top: 20px;
    right: 35px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    padding: 16px;
    color: #fff;
    font-weight: bold;
    font-size: 40px;
    user-select: none;
    transition: 0.3s;
}

.prev {
    left: 0;
}
.next {
    right: 0;
}

.prev:hover,
.next:hover {
    color: #ff7a00;
}

/* Кейтеринг — блок «О нас» */
#catering-about .row {
    align-items: stretch;
}

.catering-about__media-col {
    display: flex;
}

.catering-about__media {
    flex: 1;
    width: 100%;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.catering-about__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 991.98px) {
    .catering-about__media {
        min-height: 260px;
        aspect-ratio: 4 / 3;
    }

    .catering-about__media-col {
        display: block;
    }
}

.catering-showcase__shell {
    position: relative;
    padding: clamp(1.25rem, 3vw, 2rem);
    border-radius: 20px;
    border: 1px solid rgba(255, 122, 0, 0.35);
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.95) 0%, rgba(28, 22, 16, 0.88) 50%, rgba(14, 14, 14, 0.96) 100%);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255, 122, 0, 0.08) inset,
        0 0 40px rgba(255, 122, 0, 0.06);
    overflow: hidden;
}

.catering-showcase__shell::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.catering-card {
    height: 100%;
    padding: 1.35rem 1.25rem;
    border-radius: 14px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 122, 0, 0.2);
    backdrop-filter: blur(6px);
    transition:
        border-color 0.25s ease,
        box-shadow 0.25s ease,
        transform 0.25s ease;
}

.catering-card:hover {
    border-color: rgba(255, 122, 0, 0.45);
    box-shadow: 0 8px 28px rgba(255, 122, 0, 0.12);
    transform: translateY(-2px);
}

.catering-card--highlight {
    background: linear-gradient(160deg, rgba(255, 122, 0, 0.08) 0%, rgba(0, 0, 0, 0.45) 100%);
    border-color: rgba(255, 122, 0, 0.3);
}

.catering-card__title {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-bottom: 1.15rem;
    font-size: 1.2rem;
    color: var(--orange);
    text-shadow: none;
}

.catering-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(255, 122, 0, 0.15);
    border: 1px solid rgba(255, 122, 0, 0.35);
    font-size: 0.95rem;
}

.catering-card__list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.catering-card__list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
    font-size: 0.95rem;
    line-height: 1.55;
    color: #e0e0e0;
}

.catering-card__list li:last-child {
    margin-bottom: 0;
}

.catering-card__bullet {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin-top: 2px;
    border-radius: 50%;
    background: rgba(40, 167, 69, 0.2);
    color: #5dd879;
    font-size: 0.65rem;
}

.catering-card__bullet--fire {
    background: rgba(255, 122, 0, 0.2);
    color: var(--orange);
    font-size: 0.6rem;
}

.content-panel {
    border: 1px solid rgba(255, 122, 0, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.calculator-box {
    max-width: 900px;
    background: rgba(20, 20, 20, 0.92) !important;
}

.calculator-order-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
}

.calculator-order-wrap .btn-orange {
    display: inline-flex;
    width: auto;
    margin-bottom: 0;
}

.calculator-slider-label {
    display: block;
    color: #fff;
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
}

.calculator-slider-wrap {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.calculator-slider-wrap .calculator-range {
    flex: 1;
    margin: 0;
}

.calculator-range-value {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 0 12px var(--orange-glow);
}

.calc-option-card {
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 122, 0, 0.25);
    border-radius: 12px;
    padding: 1rem;
    height: 100%;
    text-align: center;
}

.calc-option-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: #f0f0f0;
    min-height: 3rem;
}

.calc-option-head i {
    font-size: 1.25rem;
}

.calc-counter {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.calc-counter-btn {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    border: 1px solid var(--orange);
    background: transparent;
    color: var(--orange);
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
    padding: 0;
}

.calc-counter-btn:hover {
    background: var(--orange);
    color: #fff;
}

.calc-counter-input {
    width: 48px;
    height: 36px;
    text-align: center;
    background: rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 122, 0, 0.4);
    border-radius: 8px;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    -moz-appearance: textfield;
}

.calc-counter-input::-webkit-outer-spin-button,
.calc-counter-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.calc-option-price {
    margin: 0;
    font-size: 0.85rem;
    color: #c4c4c4;
}

.calculator-result-label {
    color: #d0d0d0;
    font-size: 1rem;
}

.calculator-price {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 0 0 20px var(--orange-glow);
    line-height: 1.2;
    margin-bottom: 0.35rem;
}

.calculator-notes li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #b8b8b8;
    margin-bottom: 0.65rem;
    line-height: 1.5;
}

.calculator-notes li:last-child {
    margin-bottom: 0;
}

.calculator-notes i {
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.calculator-range {
    height: 8px;
    cursor: pointer;
}

.calculator-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border: 2px solid #fff;
    box-shadow: 0 0 8px var(--orange-glow);
    cursor: pointer;
}

.calculator-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border: 2px solid #fff;
    cursor: pointer;
}

.calculator-range::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 122, 0, 0.25);
}

.calculator-range::-moz-range-track {
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 122, 0, 0.25);
}

@media (max-width: 576px) {
    .calculator-price {
        font-size: 2.2rem;
    }
}

/* Кейтеринг — мобильная адаптация */
@media (max-width: 768px) {
    .hero h1.display-3 {
        font-size: 2rem;
        line-height: 1.15;
    }

    .hero .lead {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .catering-zigzag__media {
        min-height: 200px;
    }

    .catering-card__list li {
        font-size: 0.9rem;
    }

    .achievements-box h2.fs-3,
    .trust-box h2.fs-3 {
        font-size: 1.35rem;
        flex-wrap: wrap;
    }

    .calculator-box h2 {
        font-size: 1.5rem;
    }

    .calculator-slider-label {
        font-size: 0.875rem;
        line-height: 1.35;
    }

    .calculator-order-wrap {
        padding: 0 0.25rem;
    }

    .calculator-order-wrap .btn-orange {
        width: 100%;
        max-width: 320px;
        min-height: 48px;
        height: auto;
        padding: 0.75rem 1.25rem;
        white-space: normal;
        line-height: 1.3;
    }

    .calc-option-head {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    .calculator-box {
        border-radius: 12px !important;
    }

    .calculator-range-value {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .calculator-slider-wrap {
        gap: 0.75rem;
    }

    .calculator-notes li {
        font-size: 0.8125rem;
    }

    section.py-4,
    section.py-5 {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }

    .content-panel {
        padding: 1.25rem !important;
    }

    .catering-card {
        padding: 1.1rem 1rem;
    }
}

@media (max-width: 380px) {
    .calculator-order-wrap .btn-orange {
        max-width: 100%;
        font-size: 0.9rem;
    }

    .calc-counter-btn {
        width: 40px;
        height: 40px;
    }
}

/* ====== Age gate 18+ ====== */
html:not(.age-verified) {
    overflow: hidden;
}

html.age-verified #ageGate {
    display: none !important;
}

.age-gate {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
}

.age-gate__card {
    max-width: 420px;
    width: 100%;
    padding: 2rem 1.75rem;
    text-align: center;
    background: linear-gradient(145deg, rgba(18, 18, 18, 0.95) 0%, rgba(28, 22, 16, 0.88) 50%, rgba(14, 14, 14, 0.96) 100%);
    border: 1px solid var(--orange);
    border-radius: 16px;
    box-shadow: 0 0 40px rgba(255, 122, 0, 0.15);
}

.age-gate__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    border-radius: 50%;
}

.age-gate__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.75rem;
}

.age-gate__text {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.age-gate__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.age-gate__btn {
    width: 100%;
    margin-bottom: 0 !important;
}

.age-gate__deny {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin: 0;
}
