  /* ========== ЦВЕТОВАЯ ПАЛИТРА БАНИ ========== */
  :root {
    /* Деревянные оттенки */
    --wood-dark: #3E2723;
    --wood-medium: #5D4037;
    --wood-warm: #6D4C41;
    --wood-light: #8D6E63;
    --wood-lightest: #D7CCC8;

    /* Акцентные цвета */
    --gold: #D4A574;
    --amber: #FFB74D;
    --honey: #FFA726;

    /* Фоновые оттенки */
    --cream: #FFF8E1;
    --steam: #F5F5F5;
    --white-wood: #FAFAFA;

    /* Текст */
    --text-dark: #3E2723;
    --text-medium: #5D4037;
    --text-light: #8D6E63;
  }

  /* ========== БАЗОВЫЕ СТИЛИ ========== */
  /* ========== БАЗОВЫЕ СТИЛИ ========== */
  * {
    box-sizing: border-box;
  }

  html {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white-wood) 100%);
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  /* Текстура дерева на фоне (subtle) */
  body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 2px,
        rgba(139, 69, 19, 0.02) 2px,
        rgba(139, 69, 19, 0.02) 4px
      );
    pointer-events: none;
    z-index: 0;
  }

  /* ========== ТИПОГРАФИКА ========== */
  h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--wood-dark);
    font-weight: 700;
  }


  /* ========== ИСПРАВЛЕНИЯ ДЛЯ ПОЛНОЙ ШИРИНЫ ========== */
  .carousel,
  .carousel-inner,
  .carousel-item {
    width: 100% !important;
    max-width: 100% !important;
  }

  .container,
  .container-fluid {
    width: 100% !important;
    max-width: 1200px !important;
    padding-left: 15px !important;
    padding-right: 15px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  @media (max-width: 768px) {
    .container,
    .container-fluid {
      padding-left: 10px !important;
      padding-right: 10px !important;
    }
  }

  /* ========== ХЕДЕР С НАВИГАЦИЕЙ ========== */
  .carousel-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: linear-gradient(
      180deg,
      rgba(62, 39, 35, 0.95) 0%,
      rgba(62, 39, 35, 0.85) 100%
    );
    padding: 12px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    pointer-events: none;
  }

  .carousel-overlay > * {
    pointer-events: auto;
  }

  .carousel-overlay .logo img {
    height: 55px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
  }

  .carousel-overlay .logo img:hover {
    transform: scale(1.05);
  }

  .carousel-overlay .nav-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 8px 0;
  }

  .carousel-overlay .nav-links a {
    color: var(--cream);
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    font-size: 14px;
    box-shadow:
      0 4px 12px rgba(0, 0, 0, 0.2),
      inset 0 -2px 6px rgba(0, 0, 0, 0.1),
      inset 0 2px 6px rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
  }

  .carousel-overlay .nav-links a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
  }

  .carousel-overlay .nav-links a:hover::before {
    left: 100%;
  }

  .carousel-overlay .nav-links a:hover {
    background: linear-gradient(135deg, var(--amber) 0%, var(--honey) 100%);
    transform: translateY(-2px);
    box-shadow:
      0 6px 20px rgba(0, 0, 0, 0.3),
      inset 0 -2px 6px rgba(0, 0, 0, 0.1),
      inset 0 2px 6px rgba(255, 255, 255, 0.3);
  }

  .carousel-overlay .nav-links a:active {
    transform: translateY(0);
  }

  /* ========== ОТСТУПЫ ДЛЯ КОНТЕНТА (УДАЛЕНО) ========== */
  /* .content-offset больше не используется */


  .carousel {
    margin-bottom: 0 !important;
  }

  .container.mt-3 {
    margin-top: 1.5rem !important;
  }

  @media (max-width: 768px) {
    .container.mt-3 {
      margin-top: 1rem !important;
    }
  }

  @media (max-width: 480px) {
    .container.mt-3 {
      margin-top: 0.5rem !important;
    }
  }

  /* ========== КАРУСЕЛЬ (ИСПРАВЛЕНО) ========== */
  .carousel {
    position: relative;
  }

  .carousel-item {
    position: relative;
    min-height: 50vh;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
  }

  .carousel-item.active,
  .carousel-item-next,
  .carousel-item-prev {
    display: block;
  }

  .carousel-fade .carousel-item {
    opacity: 0;
    transition-duration: 0.6s;
    transition-property: opacity;
  }

  .carousel-fade .carousel-item.active,
  .carousel-fade .carousel-item-next.carousel-item-start,
  .carousel-fade .carousel-item-prev.carousel-item-end {
    opacity: 1;
  }

  .carousel-item img {
    height: 70vh;
    object-fit: cover;
    display: block;
    width: 100%;
    filter: brightness(0.8) contrast(1.1);
  }

  .carousel-item::after {
    display: none;
  }

  /* ИСПРАВЛЕНИЕ: Стрелки карусели точно по центру */
  @media (max-width: 768px) {
    .carousel-control-prev,
    .carousel-control-next {
      top: 40% !important;
      transform: translateY(-50%);
    }
  }

.custom-html-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  color: #fff;
  text-align: center;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(12px, 3vw, 40px);
  box-sizing: border-box;
  overflow: hidden;
  pointer-events: none;
  /* фон убран — overlay полностью прозрачный */
}

.custom-html-overlay > * { pointer-events: auto; max-width: 100%; }
.custom-html-overlay, .custom-html-overlay * { box-sizing: border-box; }
.custom-html-overlay img { max-width: 100%; height: auto; }
.custom-html-overlay > div { width: 100%; max-width: min(1000px, 95%); }

@media (max-width: 992px) {
  .custom-html-overlay { padding: clamp(10px, 2.5vw, 24px); }
  .custom-html-overlay img { max-width: 140px !important; }
}

@media (max-width: 768px) {
.custom-html-overlay {
  padding: 14px;
  justify-content: flex-start;
  padding-top: 110px;
  gap: 12px;
}
.custom-html-overlay h1 { font-size: 1.3rem !important; }
}

@media (max-width: 480px) {
.custom-html-overlay {
  padding: 10px;
  padding-top: 100px;
  gap: 8px;
}
.custom-html-overlay h1 { font-size: 1.05rem !important; }
}

  .container h1 {
    text-align: center;
    position: relative;
    padding-bottom: 15px;
  }

  .container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    border-radius: 2px;
  }

  .container p {
    font-size: 1.15rem;
    color: var(--text-medium);
    text-align: center;
    line-height: 1.8;
    font-weight: 400;
  }

  /* ========== БЛОКИ КОНТЕНТА (ДЕРЕВЯННЫЕ КАРТОЧКИ) ========== */
  .content-block {
    margin-top: 35px;
    padding: 35px;
    background: linear-gradient(135deg, #fff 0%, var(--white-wood) 100%);
    border-radius: 20px;
    box-shadow:
      0 10px 30px rgba(62, 39, 35, 0.1),
      inset 0 1px 0 rgba(255, 255, 255, 0.8);
    border: 2px solid var(--wood-lightest);
    position: relative;
    overflow: hidden;
  }

  .content-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gold), var(--amber), var(--gold));
  }

  .content-block h2 {
    color: var(--wood-dark);
    font-size: 2rem;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
    position: relative;
    padding-bottom: 15px;
  }

  .content-block h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
  }

  .content-block h3 {
    color: var(--wood-warm);
    font-size: 1.5rem;
    margin: 25px 0 15px;
    text-align: center;
  }


  img {
    max-width: 100%;
    height: auto;
  }

  .carousel-item img {
    width: 100% !important;
    max-width: 100% !important;
  }

  .image-grid {
    width: 100%;
  }

  .image-item {
    width: 100%;
  }

  /* ========== СЕТКА ИЗОБРАЖЕНИЙ ========== */
  .image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 25px;
  }

  .image-item {
    cursor: pointer;
    overflow: hidden;
    border-radius: 15px;
    position: relative;
    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--wood-lightest);
  }

  .image-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 165, 116, 0.2) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
  }

  .image-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow:
      0 15px 40px rgba(62, 39, 35, 0.25),
      0 0 0 4px var(--gold);
  }

  .image-item:hover::after {
    opacity: 1;
  }

  .image-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s;
  }

  .image-item:hover img {
    transform: scale(1.1);
  }

  /* ========== РЕЖИМ РАБОТЫ ========== */
  .working-hours-list {
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
    border-radius: 12px;
    padding: 20px;
    border: 2px solid var(--wood-lightest);
  }

  .working-hours-item {
    padding: 12px 0 0 0;
    border-bottom: 1px solid var(--wood-lightest);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .working-hours-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .day-label {
    font-weight: 700;
    color: var(--wood-dark);
    font-size: 1.1rem;
    flex: 0 0 auto;
  }

  .info-text {
    color: var(--text-medium);
    font-size: 1.05rem;
    text-align: right;
    flex: 1 1 auto;
  }

  @media (max-width: 768px) {
    .working-hours-list {
      padding: 15px;
    }
    .working-hours-item {
      padding: 10px 0 0 0;
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
    }
    .working-hours-item:last-child {
      padding-bottom: 0;
    }
    .day-label {
      font-size: 1.1rem;
    }
    .info-text {
      font-size: 1.05rem;
      text-align: left;
    }
  }

  /* ========== ТАБЛИЦА ПРЕЙСКУРАНТА (ИСПРАВЛЕНО) ========== */
  .table-responsive {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(62, 39, 35, 0.1);
  }

  .table {
    margin: 0;
    background: white;
  }

  .table thead {
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-warm) 100%);
    color: white;
  }

  .table thead th {
    border: none;
    padding: 18px 15px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    text-align: center;
  }

  .table tbody tr {
    transition: all 0.3s;
  }

  .table tbody tr:hover {
    background: linear-gradient(90deg, transparent, var(--cream), transparent);
    transform: scale(1.01);
  }

  .table td {
    padding: 15px;
    vertical-align: middle;
    border-color: var(--wood-lightest);
  }

  .table {
    font-size: 1.1rem;
  }

  .table td:nth-child(1) {
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .table td:nth-child(2) {
    text-align: center;
    font-weight: 700;
    color: var(--wood-dark);
    font-size: 1.2rem;
  }

  /* ========== КАРТОЧКИ АКЦИЙ ========== */
  #promotions .card {
    border-radius: 20px;
    border: 3px solid var(--wood-lightest);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.12);
    position: relative;
    overflow: hidden;
  }

  #promotions .card::before {
    content: '🔥';
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    opacity: 0.3;
  }

  #promotions .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow:
      0 20px 50px rgba(62, 39, 35, 0.2),
      0 0 0 4px var(--gold);
  }

  #promotions .card-title {
    font-size: 1.25rem;
    color: var(--wood-dark) !important;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }

  /* ========== АККОРДЕОН FAQ ========== */
  .accordion-item {
    border: 2px solid var(--wood-lightest);
    margin-bottom: 12px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
  }

  .accordion-button {
    background: linear-gradient(135deg, var(--cream) 0%, var(--white-wood) 100%);
    color: var(--wood-dark);
    font-weight: 600;
    font-size: 1.1rem;
    padding: 18px 20px;
    border: none;
  }

  .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    color: white;
    box-shadow: none;
  }

  .accordion-button:focus {
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.3);
  }

  .accordion-body {
    padding: 25px;
    background: white;
    color: var(--text-medium);
    line-height: 1.8;
  }

  /* ========== БУРГЕР-МЕНЮ ========== */
  .mobile-menu-button {
    display: none;
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-warm) 100%);
    backdrop-filter: blur(10px);
    border: 3px solid var(--gold);
    border-radius: 15px;
    width: 58px;
    height: 58px;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 9999;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow:
      0 5px 15px rgba(0, 0, 0, 0.3),
      inset 0 -2px 5px rgba(0, 0, 0, 0.2),
      inset 0 2px 5px rgba(255, 255, 255, 0.2);
    pointer-events: auto !important;
    touch-action: manipulation;
  }

  .mobile-menu-button:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    transform: scale(1.08) rotate(5deg);
  }

  .mobile-menu-button:active {
    transform: scale(0.95);
  }

  .burger-icon {
    position: relative;
    width: 28px;
    height: 22px;
    margin: auto;
    pointer-events: none;
  }

  .burger-icon span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fff;
    border-radius: 3px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  }

  .burger-icon span:nth-child(1) { top: 0; }
  .burger-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .burger-icon span:nth-child(3) { bottom: 0; }

  .mobile-menu-button.active .burger-icon span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
  }

  .mobile-menu-button.active .burger-icon span:nth-child(2) {
    opacity: 0;
    transform: translateX(-30px);
  }

  .mobile-menu-button.active .burger-icon span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
  }

  /* Fullscreen mobile menu */
  .mobile-fullscreen-menu {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(62, 39, 35, 0.98) 0%,
      rgba(93, 64, 55, 0.96) 100%
    );
    z-index: 9998;
    padding: 100px 35px 35px;
    color: #fff;
    overflow: auto;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-fullscreen-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        90deg,
        transparent,
        transparent 3px,
        rgba(255, 255, 255, 0.03) 3px,
        rgba(255, 255, 255, 0.03) 6px
      );
    pointer-events: none;
  }

  .mobile-fullscreen-menu.active {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-fullscreen-menu nav {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    justify-content: center;
    min-height: calc(100vh - 180px);
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .mobile-fullscreen-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: 600;
    padding: 20px 28px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(212, 165, 116, 0.15) 0%, rgba(255, 183, 77, 0.1) 100%);
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(212, 165, 116, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  }

  .mobile-fullscreen-menu.active a {
    opacity: 1;
    transform: translateX(0);
  }

  .mobile-fullscreen-menu.active a:nth-child(1) { transition-delay: 0.1s; }
  .mobile-fullscreen-menu.active a:nth-child(2) { transition-delay: 0.15s; }
  .mobile-fullscreen-menu.active a:nth-child(3) { transition-delay: 0.2s; }
  .mobile-fullscreen-menu.active a:nth-child(4) { transition-delay: 0.25s; }
  .mobile-fullscreen-menu.active a:nth-child(5) { transition-delay: 0.3s; }
  .mobile-fullscreen-menu.active a:nth-child(6) { transition-delay: 0.35s; }

  .mobile-fullscreen-menu a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
  }

  .mobile-fullscreen-menu a:hover::before {
    transform: translateX(100%);
  }

  .mobile-fullscreen-menu a:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    transform: translateX(12px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
  }

  /* ========== КНОПКА ОБРАТНОГО ЗВОНКА ========== */
  /* ========== МОДАЛЬНОЕ ОКНО ========== */
  .modal-content {
    border-radius: 20px;
    border: 3px solid var(--gold);
    overflow: hidden;
  }

  .modal-header {
    background: linear-gradient(135deg, var(--wood-medium) 0%, var(--wood-warm) 100%);
    color: white;
    border: none;
    padding: 20px 25px;
  }

  .modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
  }

  .modal-body {
    padding: 30px 25px;
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%);
  }

  .form-label {
    color: var(--wood-dark);
    font-weight: 600;
    margin-bottom: 8px;
  }

  .form-control {
    border: 2px solid var(--wood-lightest);
    border-radius: 10px;
    padding: 12px 15px;
    transition: all 0.3s;
  }

  .form-control:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.2);
  }

  .btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--amber) 100%);
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.3);
    transition: all 0.3s;
  }

  .btn-primary:hover {
    background: linear-gradient(135deg, var(--amber) 0%, var(--honey) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.4);
  }

  /* ========== КОНТАКТЫ ========== */
  .contact-info {
    background: linear-gradient(135deg, #fff 0%, var(--cream) 100%) !important;
    border: 2px solid var(--wood-lightest) !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.15) !important;
    padding: 30px !important;
  }

  .contact-info h4 {
    color: var(--wood-dark);
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    font-size: 1.8rem;
  }

  .contact-info a {
    color: var(--gold);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1rem;
  }

  .contact-info a:hover {
    color: var(--amber);
    text-decoration: underline;
  }

  .contact-info p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .map-container {
    height: 450px;
    border-radius: 20px !important;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(62, 39, 35, 0.15) !important;
    border: 3px solid var(--wood-lightest) !important;
  }

  /* ========== LIGHTBOX (ИДЕАЛЬНАЯ ЦЕНТРОВКА) ========== */
  .image-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(62, 39, 35, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
  }

  .image-lightbox img {
    max-width: 95%;
    max-height: 95%;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
  }

  /* ИСПРАВЛЕНИЕ #3: Идеальная центровка иконок через Bootstrap Icons */
  .image-lightbox .close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: var(--gold);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .image-lightbox .close i {
    color: #fff;
    font-size: 24px;
  }

  .image-lightbox .close:hover {
    background: var(--amber);
    transform: rotate(90deg) scale(1.1);
  }

  .image-lightbox .nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--gold);
    width: 55px;
    height: 55px;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .image-lightbox .nav i {
    color: #fff;
    font-size: 24px;
  }

  .image-lightbox .prev { left: 25px; }
  .image-lightbox .next { right: 25px; }

  .image-lightbox .nav:hover {
    background: var(--amber);
    transform: translateY(-50%) scale(1.15);
  }

  /* ========== АДАПТИВНОСТЬ ========== */
  @media (max-width: 992px) {
    .carousel-overlay .nav-links {
      gap: 8px;
    }
    .carousel-overlay .nav-links a {
      font-size: 13px;
      padding: 8px 16px;
    }
    .content-block h2 {
      font-size: 1.75rem;
    }
  }

  @media (max-width: 768px) {
    /* Скрываем десктопную навигацию, показываем бургер */
    .carousel-overlay { display: none !important; }
    .mobile-menu-button { display: flex !important; align-items: center; justify-content: center; }
    .mobile-fullscreen-menu { display: none; }

    /* Уменьшаем отступ на мобильных */
    /* .content-offset удален */

    /* Типографика */
    .container h1 {
      font-size: 2.1rem !important;
      line-height: 1.2;
    }
    .container p {
      font-size: 1.1rem;
    }

    /* Карусель */
    .carousel-item img {
      height: 50vh;
      min-height: 280px;
    }
    .custom-html-overlay {
      padding: 0 15px;
    }
    .custom-html-overlay h1 {
      font-size: 1.6rem !important;
    }

    /* Контентные блоки */
    .content-block {
      padding: 20px;
      margin-top: 20px;
      border-radius: 15px;
    }
    .content-block h2 {
      font-size: 1.6rem;
      margin-bottom: 15px;
    }
    .content-block h3 {
      font-size: 1.35rem;
      margin: 20px 0 10px;
    }
    .content-block p {
      font-size: 1.05rem;
    }

    /* Сетка изображений */
    .image-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 12px !important;
    }
    .image-item {
      border-radius: 12px;
      border-width: 2px;
    }
    .image-item img {
      height: 160px !important;
    }

    /* Таблица прейскуранта */
    .table-responsive {
      font-size: 1.05rem;
      overflow-x: auto;
    }
    .table thead th {
      padding: 12px 8px;
      font-size: 0.95rem;
    }
    .table td {
      padding: 10px 8px;
      font-size: 1.05rem;
    }

    /* Акции */
    #promotions .card {
      margin-bottom: 15px;
    }
    #promotions .card-title {
      font-size: 1.3rem !important;
    }
    #promotions .card-text {
      font-size: 1rem;
    }

    /* Контакты */
    .contact-info {
      padding: 20px !important;
      margin-bottom: 20px;
    }
    .contact-info h4 {
      font-size: 1.5rem;
    }
    .map-container {
      height: 300px;
    }

    /* Lightbox */
    .image-lightbox .close {
      top: 15px;
      right: 15px;
      width: 45px;
      height: 45px;
    }
    .image-lightbox .close i {
      font-size: 20px;
    }
    .image-lightbox .nav {
      width: 45px;
      height: 45px;
    }
    .image-lightbox .nav i {
      font-size: 20px;
    }
    .image-lightbox .prev { left: 10px; }
    .image-lightbox .next { right: 10px; }

    /* Аккордеон */
    .accordion-button {
      font-size: 1.1rem;
      padding: 15px;
    }
    .accordion-body {
      padding: 15px;
      font-size: 1rem;
    }
  }

  @media (max-width: 480px) {
    /* Типографика */
    .container h1 {
      font-size: 1.6rem !important;
      line-height: 1.3;
      padding: 0 10px;
    }
    .container p {
      font-size: 1rem;
      padding: 0 5px;
    }

    /* Карусель */
    .carousel-item img {
      height: 40vh;
      min-height: 240px;
    }
    .custom-html-overlay h1 {
      font-size: 1.3rem !important;
    }

    /* Контентные блоки */
    .content-block {
      padding: 15px;
      margin-top: 15px;
      border-radius: 12px;
    }
    .content-block h2 {
      font-size: 1.4rem;
    }
    .content-block h3 {
      font-size: 1.2rem;
    }
    .content-block p {
      font-size: 1rem;
    }

    /* Сетка изображений - 2 колонки на всех экранах */
    .image-grid {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 10px !important;
    }
    .image-item img {
      height: 150px !important;
    }

    /* Таблица */
    .table {
      font-size: 0.95rem;
    }
    .table thead th {
      padding: 10px 5px;
      font-size: 0.9rem;
    }
    .table td {
      padding: 8px 5px;
      font-size: 0.95rem;
    }

    /* Мобильное меню */
    .mobile-menu-button {
      width: 50px !important;
      height: 50px !important;
      top: 10px !important;
      right: 10px !important;
    }
    .burger-icon {
      width: 24px;
      height: 18px;
    }
    .burger-icon span {
      height: 3px;
    }
    .mobile-fullscreen-menu {
      padding: 80px 20px 20px;
    }
    .mobile-fullscreen-menu a {
      font-size: 19px !important;
      padding: 15px 20px !important;
      margin-bottom: 12px !important;
    }

    /* Контакты */
    .contact-info {
      padding: 15px !important;
    }
    .contact-info h4 {
      font-size: 1.3rem;
    }
    .contact-info p {
      font-size: 0.95rem !important;
    }
    .contact-info a {
      font-size: 1.05rem !important;
    }
    .map-container {
      height: 250px;
    }

    /* Акции */
    #promotions .card-title {
      font-size: 1.2rem !important;
    }
    #promotions .card-text {
      font-size: 0.95rem;
    }
  }

  @media (min-width: 1200px) {
    .container {
      max-width: 1140px;
    }
    .content-block {
      padding: 40px;
    }
  }
