/* ===== Variables ===== */
:root {
  --red: #c8102e;
  --red-dark: #a00d24;
  --red-light: #fce4ec;
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #333333;
  --gray-light: #f5f5f5;
  --gray-border: #e0e0e0;
  --whatsapp: #25d366;
  --telegram: #0088cc;
  --orange: #f26522;
  --dark-bg: #2d1f1a;
  --font-main: 'Montserrat', sans-serif;
  --font-logo: 'Playfair Display', serif;
  --font-script: 'Dancing Script', cursive;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-main);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
  position: sticky;
  top: 0;
  z-index: 1200;
}
.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar__left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.top-bar__item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,0,0,0.15);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
.top-bar__item i { font-size: 12px; }

/* Branch block (address + phone) in top bar */
.top-bar__branch {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  white-space: normal;
  padding: 6px 12px;
  max-width: 320px;
}
.top-bar__branch-row {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.top-bar__branch-phone {
  color: var(--white);
  font-weight: 600;
}
.top-bar__branch-addr {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.95);
  font-size: 12px;
  line-height: 1.2;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.top-bar__branch-addr i {
  font-size: 12px;
}

/* Location dropdown in top bar */
.top-bar__locations {
  position: relative;
  cursor: pointer;
  padding: 0;
}
.top-bar__locations-trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  white-space: nowrap;
}
.top-bar__locations-chevron {
  font-size: 9px;
  margin-left: 2px;
  transition: transform 0.2s ease;
}
.top-bar__locations:hover .top-bar__locations-chevron {
  transform: rotate(180deg);
}
.top-bar__locations-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 300px;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(20, 20, 20, 0.15);
  border: 1px solid var(--gray-border);
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  z-index: 1300;
}
.top-bar__locations-dropdown::before {
  content: '';
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}
.top-bar__locations:hover .top-bar__locations-dropdown,
.top-bar__locations:focus-within .top-bar__locations-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.top-bar__locations-link {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--black);
  transition: background 0.2s ease;
}
.top-bar__locations-link:hover {
  background: var(--red-light);
}
.top-bar__locations-link strong {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
}
.top-bar__locations-link span {
  font-size: 12px;
  line-height: 1.4;
  color: var(--gray);
  white-space: normal;
}

.top-bar__social {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-bar__social a {
  width: 32px;
  height: 32px;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: background 0.2s;
}
.top-bar__social a:hover { background: rgba(255,255,255,0.15); }

/* ===== Header ===== */
.header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  position: sticky;
  top: 44px; /* height of .top-bar */
  z-index: 1000;
}
.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
  gap: 20px;
  position: relative;
}
.logo {
  display: inline-flex;
  align-items: center;
}
.logo__img {
  width: 180px;
  height: auto;
  display: block;
}
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--black);
  transition: color 0.2s;
  position: relative;
}
.nav a:hover, .nav a.active { color: var(--red); }
.nav .dropdown { display: flex; align-items: center; gap: 4px; }
.nav .dropdown i { font-size: 10px; }
.header__actions { display: flex; gap: 10px; }
.btn-social {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  border-radius: 25px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.btn-social:hover { opacity: 0.9; }
.btn-social--whatsapp { background: var(--whatsapp); }
.btn-social--telegram { background: var(--telegram); }
.btn-social--register { background: var(--red); border: 0; cursor: pointer; font-family: inherit; }
.welcome-offer-modal { position: fixed; inset: 0; z-index: 3100; display: none; align-items: center; justify-content: center; padding: 20px; }
.welcome-offer-modal.is-open { display: flex; }
.welcome-offer-modal__backdrop { position: absolute; inset: 0; background: rgba(18, 17, 13, .7); backdrop-filter: blur(3px); }
.welcome-offer-modal__dialog { position: relative; z-index: 1; width: min(100%, 480px); overflow: hidden; padding: 42px 38px 30px; border-radius: 22px; background: linear-gradient(145deg, #fffdf7, #f5e4ad); box-shadow: 0 22px 60px rgba(0,0,0,.32); text-align: center; }
.welcome-offer-modal__dialog::before { content: ''; position: absolute; top: -78px; right: -70px; width: 190px; height: 190px; border-radius: 50%; background: rgba(194, 28, 53, .12); }
.welcome-offer-modal__eyebrow { position: relative; display: inline-flex; align-items: center; gap: 7px; margin-bottom: 14px; padding: 7px 13px; border-radius: 999px; background: var(--red); color: var(--white); font-size: 12px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; }
.welcome-offer-modal__dialog h2 { position: relative; margin: 0 0 14px; color: var(--black); font-size: clamp(27px, 6vw, 38px); line-height: 1.12; }
.welcome-offer-modal__dialog h2 strong { color: var(--red); }
.welcome-offer-modal__dialog p { position: relative; max-width: 370px; margin: 0 auto 24px; color: #555; font-size: 15px; line-height: 1.55; }
.welcome-offer-modal__close { position: absolute; top: 11px; right: 15px; z-index: 2; border: 0; background: transparent; color: #777; font-size: 28px; line-height: 1; cursor: pointer; }
.welcome-offer-modal__cta { position: relative; width: 100%; padding: 14px 18px; border: 0; border-radius: 10px; background: var(--red); color: var(--white); cursor: pointer; font: inherit; font-weight: 700; box-shadow: 0 7px 14px rgba(167, 19, 44, .25); }
.welcome-offer-modal__later { position: relative; margin-top: 13px; border: 0; background: transparent; color: #686057; cursor: pointer; font: inherit; font-size: 13px; }
body.welcome-offer-modal-open { overflow: hidden; }
.registration-modal { position: fixed; inset: 0; z-index: 3000; display: none; align-items: center; justify-content: center; padding: 20px; }
.registration-modal.is-open { display: flex; }
.registration-modal__backdrop { position: absolute; inset: 0; background: rgba(0,0,0,.55); }
.registration-modal__dialog { position: relative; z-index: 1; width: min(100%, 430px); padding: 32px; border-radius: 18px; background: var(--white); box-shadow: 0 18px 50px rgba(0,0,0,.24); }
.registration-modal__dialog h2 { margin: 0 0 8px; color: var(--black); font-size: 24px; }
.registration-modal__dialog > p { margin: 0 0 22px; color: var(--gray); font-size: 14px; }
.registration-modal__close { position: absolute; top: 10px; right: 14px; border: 0; background: transparent; color: var(--gray); font-size: 28px; line-height: 1; cursor: pointer; }
.registration-modal label { display: block; margin: 0 0 6px; color: var(--black); font-size: 13px; font-weight: 600; }
.registration-modal input { box-sizing: border-box; width: 100%; margin: 0 0 16px; padding: 12px 13px; border: 1px solid var(--gray-border); border-radius: 9px; color: var(--black); font: inherit; font-size: 14px; }
.registration-modal input:focus { outline: 2px solid rgba(196, 30, 58, .2); border-color: var(--red); }
.registration-modal__message { min-height: 20px; margin: -4px 0 12px; color: var(--red); font-size: 13px; }
.registration-modal__message.is-success { color: #18834a; }
.registration-modal__submit { width: 100%; padding: 12px 16px; border: 0; border-radius: 9px; background: var(--red); color: var(--white); cursor: pointer; font: inherit; font-weight: 600; }
.registration-modal__submit:disabled { cursor: wait; opacity: .7; }
.registration-modal__verification[hidden], .registration-modal [data-registration-details][hidden] { display: none; }
.registration-modal__resend { margin: -6px 0 14px; padding: 0; border: 0; background: transparent; color: var(--red); cursor: pointer; font: inherit; font-size: 13px; font-weight: 600; }
.registration-modal__resend:disabled { cursor: wait; opacity: .65; }
.registration-modal__back { display: block; margin: -4px 0 14px; padding: 0; border: 0; background: transparent; color: var(--gray); cursor: pointer; font: inherit; font-size: 13px; }
.registration-success-page { position: fixed; z-index: 4000; inset: 0; overflow-y: auto; padding: 45px 20px; background: #fff; }
.registration-success-page .success-page { max-width: 650px; margin: 0 auto; }
.registration-success-page__card { text-align: left; }
.registration-success-page__button { display: inline-block; padding: 12px 18px; border-radius: 9px; background: var(--red); color: #fff; font-weight: 700; }
.location-button { width: 100%; padding: 10px 12px; border: 1px solid var(--red); border-radius: 9px; background: #fff; color: var(--red); font: inherit; font-size: 13px; font-weight: 700; cursor: pointer; }
.location-button:hover { background: #fff1f2; }
body.registration-modal-open { overflow: hidden; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}
.hero .swiper-wrapper, .hero-slide { min-height: inherit; }
.hero-slide {
  position: relative;
  display: flex;
  align-items: center;
}
.hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgb(0,0,0) 0%, rgb(0,0,0) 60%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}
.hero .container {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  position: relative;
  z-index: 2;
}
.hero__content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 60px 0;
  text-align: left;
  margin-right: auto;
}
.hero__title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: left;
}
.hero__text {
  font-size: 16px;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  text-align: left;
}
.hero__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--red);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero__title strong { color: #ffcc4d; }
.hero-swiper__button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.55);
  z-index: 3;
  transition: background .2s ease, transform .2s ease;
}
.hero-swiper__button:hover { background: var(--red); transform: scale(1.06); }
.hero-swiper__button::after { font-size: 17px; font-weight: 700; }
.hero-swiper__pagination { z-index: 3; }
.hero-swiper__pagination .swiper-pagination-bullet { background: var(--white); opacity: .55; }
.hero-swiper__pagination .swiper-pagination-bullet-active { background: var(--red); opacity: 1; }

/* ===== Page Hero (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a0a08 0%, #3d1510 50%, #5c1f18 100%);
  padding: 60px 0;
}
.page-hero__title {
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
}
.page-hero__breadcrumb {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.9); }
.page-hero__breadcrumb a:hover { text-decoration: underline; }

/* ===== Features ===== */
.features {
  padding: 50px 0;
  border-bottom: 1px solid var(--gray-border);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 0 10px;
  border-right: 1px solid var(--gray-border);
}
.new_feature img{
    width:100%;
    max-height:200px;
    margin:0 auto;
    border-radius:10px;
    object-fit:contain;
}
.feature:last-child { border-right: none; }
.feature__icon {
  width: 56px;
  height: 56px;
  min-width: 56px;
  background: var(--red-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
  padding:10px;
}
.feature__icon img{
    width:100%;
    height:auto;
}
.feature__title {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 4px;
  line-height:1;
}
.feature__title b { color: var(--red); }
.feature__text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
}

/* ===== Menu Section ===== */
.menu-section { padding: 60px 0 80px; }
.menu-section__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 30px;
}
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.menu-panel + .menu-panel { margin-top: 54px; }
.menu-panel__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: #8b1a1a;
  font-size: 23px;
  font-weight: 700;
}
.menu-panel__title i { color: var(--red); }

/* ===== Product Card ===== */
.product-card {
  background: #f8f8f8;
  border-radius: 20px;
  padding: 20px;
  transition: box-shadow 0.3s;
}
.product-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.product-card__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 14px;
}
.product-card__name {
  font-size: 15px;
  font-weight: 700;
  color: #8b1a1a;
  max-width: 65%;
}
.product-card__price-top {
  font-size: 20px;
  font-weight: 700;
  color: var(--red);
}
.product-card__image {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 14px;
  aspect-ratio: 4/3;
  background: #eee;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.product-card__image .xfieldimagegallery,
.product-card__image .xfieldimagegallery li {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.product-card:hover .product-card__image img { transform: scale(1.05); }
.product-card__info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.product-card__thumb {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
}
.product-card__thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-card__details h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
}
.product-card__details span {
  font-size: 12px;
  color: var(--gray);
}
.product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-card__price-label {
  font-size: 11px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.product-card__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--red);
}
.btn-order {
  background: var(--orange);
  color: var(--white);
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-order:hover { background: #d9551a; }

/* Four compact product cards per row on desktop. */
@media (min-width: 1100px) {
  .menu-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
  .product-card { display: flex; flex-direction: column; min-width: 0; padding: 16px; }
  .product-card__header { gap: 8px; margin-bottom: 11px; }
  .product-card__name { font-size: 14px; line-height: 1.35; }
  .product-card__price-top { font-size: 17px; white-space: nowrap; }
  .product-card__image { margin-bottom: 11px; border-radius: 13px; }
  .product-card__info { min-height: 48px; gap: 9px; margin-bottom: 12px; }
  .product-card__thumb { width: 42px; height: 42px; border-radius: 9px; }
  .product-card__details h4 { font-size: 13px; }
  .product-card__details span { font-size: 11px; }
  .product-card__footer { margin-top: auto; }
  .product-card__price { font-size: 19px; }
  .btn-order { padding: 9px 13px; font-size: 13px; }
}

.cart-trigger{position:fixed;left:28px;bottom:24px;z-index:1400;border:0;border-radius:999px;background:var(--red);color:#fff;padding:14px 18px;font:700 14px Montserrat,sans-serif;box-shadow:0 8px 24px rgba(0,0,0,.2);cursor:pointer}.cart-trigger b{display:inline-grid;place-items:center;margin-left:7px;width:20px;height:20px;border-radius:50%;background:#fff;color:var(--red);font-size:11px}.shop-overlay{position:fixed;inset:0;background:rgba(0,0,0,.42);z-index:1450;opacity:0;pointer-events:none;transition:.2s}.shop-overlay.open{opacity:1;pointer-events:auto}.shop-panel{position:fixed;z-index:1500;right:0;top:0;width:min(460px,100%);height:100vh;background:#fff;transform:translateX(100%);transition:transform .25s ease;overflow:auto;padding:30px}.shop-panel.open{transform:translateX(0)}.shop-close,.modal-close{float:right;border:0;background:transparent;font-size:32px;line-height:1;cursor:pointer}.shop-panel h2{margin:5px 0 22px}.shop-empty{padding:36px 0;color:var(--gray);text-align:center}.cart-item{padding:14px 0;border-bottom:1px solid #eee;display:flex;justify-content:space-between;gap:12px}.cart-item strong,.cart-item small{display:block}.cart-item small{font-size:12px;color:var(--gray);margin-top:4px}.cart-actions{display:flex;align-items:center;gap:8px;white-space:nowrap}.cart-actions button{border:1px solid #ddd;background:#fff;width:25px;height:25px;border-radius:50%;cursor:pointer}.cart-actions b{margin-left:5px;color:var(--red)}.cart-total{display:flex;justify-content:space-between;padding:18px 0;font-size:17px}.shop-checkout{border:0;border-radius:11px;background:var(--orange);color:#fff;width:100%;padding:14px;font:700 15px Montserrat,sans-serif;cursor:pointer}.shop-modal{position:fixed;inset:0;z-index:1600;background:rgba(0,0,0,.45);display:none;place-items:center;padding:20px}.shop-modal.open{display:grid}.shop-modal__box{width:min(420px,100%);border-radius:18px;background:#fff;padding:25px}.shop-modal__box h3{margin:0 0 8px}.option-row{display:flex;justify-content:space-between;align-items:center;padding:14px 0;border-block:1px solid #eee;margin:18px 0}.option-row small{color:var(--red)}.option-row input{width:20px;height:20px}.option-label{display:block;font-weight:600;margin-bottom:18px}.option-label select,.checkout-form input,.checkout-form textarea{width:100%;margin-top:7px;padding:12px;border:1px solid #ddd;border-radius:9px;font:14px Montserrat,sans-serif}.shop-back{border:0;background:none;padding:0;color:var(--red);cursor:pointer}.checkout-form{display:grid;gap:12px}.checkout-form input,.checkout-form textarea{margin:0}.checkout-form textarea{min-height:75px;resize:vertical}.map-help,.delivery-quote{font-size:12px;color:var(--gray);margin:0}.delivery-quote{padding:10px;background:#f6f6f6;border-radius:8px;color:#333}#delivery-map{height:220px;border-radius:10px;overflow:hidden}.shop-success{text-align:center;padding-top:70px}.shop-success i{font-size:54px;color:#29a94b}.shop-success strong{display:block;font-size:23px;color:var(--red);margin:18px}.shop-success p{line-height:1.65;color:var(--gray)}@media(max-width:600px){.cart-trigger{left:16px;bottom:16px}.shop-panel{padding:22px 18px}}

/* ===== About Story ===== */
.about-story {
  padding: 60px 0;
}
.about-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-story__image {
  border-radius: 16px;
  overflow: hidden;
}
.about-story__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}
.about-story__text p {
  font-size: 15px;
  color: var(--gray);
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===== Stats ===== */
.stats {
  background: var(--gray-light);
  padding: 50px 0;
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.stat-card {
  background: var(--white);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.stat-card__icon {
  font-size: 28px;
  color: var(--red);
  margin-bottom: 12px;
}
.stat-card__number {
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 4px;
}
.stat-card__label {
  font-size: 13px;
  color: var(--gray);
}

/* ===== Values ===== */
.values { padding: 60px 0; }
.values__title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 40px;
}
.values__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 16px;
  padding: 30px 24px;
  text-align: center;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.value-card:hover {
  border-color: var(--red);
  box-shadow: 0 4px 20px rgba(200,16,46,0.1);
}
.value-card__icon {
  font-size: 32px;
  color: var(--red);
  margin-bottom: 16px;
}
.value-card__title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}
.value-card__text {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ===== CTA Section ===== */
.cta-section {
  background: var(--white);
  padding: 38px 0;
}
.cta-section__box {
  background: var(--dark-bg);
  border-radius: 32px;
  padding: 36px 40px;
}
.cta-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
  align-items: center;
}
.cta-section h2 {
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 14px;
}
.cta-section p {
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.7;
  margin-bottom: 16px;
}
.cta-contact{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    row-gap:10px;
}
.cta-contact h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 3px;
  background: var(--red);
  margin-top: 10px;
  margin-bottom: 14px;
}
.cta-contact__subtitle {
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
}
.cta-contact__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn-outline {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  border: 2px solid;
  background: transparent;
  transition: all 0.2s;
}
.btn-outline--whatsapp {
  color: var(--whatsapp);
  border-color: var(--whatsapp);
}
.btn-outline--whatsapp:hover { background: var(--whatsapp); color: var(--white); }
.btn-outline--telegram {
  color: var(--telegram);
  border-color: var(--telegram);
}
.btn-outline--telegram:hover { background: var(--telegram); color: var(--white); }

/* ===== Contact Page ===== */
.contact-cards {
  padding: 36px 0;
  background: var(--white);
}
.contact-cards__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
}
.contact-card {
  background: var(--white);
  border-radius: 14px;
  padding: 18px 12px;
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: all 0.3s ease;
}
.contact-card:hover {
  border-color: rgba(200, 16, 46, 0.25);
  box-shadow: 0 8px 28px rgba(200, 16, 46, 0.08);
}
.contact-card__icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--white);
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.25);
}
.contact-card__icon--svg {
  background: none;
  box-shadow: none;
  overflow: hidden;
}
.contact-card__icon--svg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 50%;
}
.contact-card__title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--black);
}
.contact-card__text {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
}
.contact-card__phone {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 700;
}
.contact-card__phone a {
  color: var(--red);
  transition: opacity 0.2s;
}
.contact-card__phone a:hover { opacity: 0.8; }

.contact-main {
  padding: 50px 0 60px;
  background: var(--gray-light);
}
.contact-main__grid {
  display: grid;
  grid-template-columns: 2fr 1.5fr;
  gap: 48px;
  align-items: start;
}
.contact-form-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 30px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.contact-form-wrap h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  color: var(--black);
}
.contact-form-wrap h2::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--red);
  margin-top: 10px;
  border-radius: 2px;
}
.form-group { margin-bottom: 20px; }
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--gray-border);
  border-radius: 12px;
  background: var(--gray-light);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: all 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(200, 16, 46, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(200, 16, 46, 0.25);
}
.btn-submit:hover {
  background: linear-gradient(135deg, var(--red-dark) 0%, #7a0f1e 100%);
  box-shadow: 0 6px 20px rgba(200, 16, 46, 0.35);
  transform: translateY(-1px);
}

.contact-social {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding-top: 40px;
}
.contact-social a {
  width: 56px;
  height: 56px;
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gray);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}
.contact-social a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
  transform: translateY(-2px);
}

.contact-info-wrap {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--gray-border);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}
.contact-info-block {
  background: var(--gray-light);
  border-radius: 12px;
  padding: 20px;
  margin-bottom: 24px;
  border: 1px solid var(--gray-border);
}
.contact-info-block:last-child { margin-bottom: 0; }
.contact-info-block h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 14px;
  color: var(--black);
}
.contact-info-block h3::after {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--red);
  margin-top: 8px;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--gray);
}
.contact-info-item i { color: var(--red); margin-top: 3px; min-width: 14px; }
.contact-info-item strong { color: var(--black); margin-right: 4px; }

/* Branch call buttons */
.contact-call-choices {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}
.contact-call-choices .btn-outline {
  padding: 10px 16px;
  border-radius: 14px;
  font-size: 13px;
}

/* ===== Maps ===== */
.maps-section {
  padding: 0 0 60px;
  background: var(--gray-light);
}
.maps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.map-block h3 {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 16px;
}
.map-block h3::after {
  content: '';
  display: block;
  width: 36px;
  height: 3px;
  background: var(--red);
  margin: 8px auto 0;
  border-radius: 2px;
}
.map-block iframe {
  width: 100%;
  height: 460px;
  border: none;
  border-radius: 12px;
  border: 1px solid var(--gray-border);
}

/* ===== Footer ===== */
.footer {
  background: #141010;
  color: rgba(255,255,255,0.7);
  padding: 50px 0 20px;
  font-size: 13px;
  border-top: 3px solid var(--red);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 2fr;
  gap: 40px;
  margin-bottom: 30px;
}
.footer h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 16px;
}
.footer p { line-height: 1.7; margin-bottom: 8px; }
.footer a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer a:hover { color: var(--white); }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  text-align: center;
}

/* Footer branch cards */
.footer-branches {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 4px;
}
.footer-branch-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 14px 14px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.footer-branch-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(200, 16, 46, 0.4);
}
.footer-branch-card h5 {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
}
.footer-branch-address {
  color: rgba(255, 255, 255, 0.75);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 8px;
}
.footer-branch-phone {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}
.footer-branch-phone i {
  color: var(--red);
  font-size: 14px;
}
.footer-branch-phone a {
  color: var(--white);
  text-decoration: none;
}
.footer-branch-phone a:hover {
  color: var(--gold);
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .features { padding: 24px 0; }
  .features__grid { grid-template-columns: 1fr; }
  .feature {
    border-right: none;
    border-bottom: 1px solid var(--gray-border);
    padding: 16px 0;
    gap: 12px;
  }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .values__grid { grid-template-columns: repeat(2, 1fr); }
  .about-story__grid { grid-template-columns: 1fr; }
  .cta-section__grid { grid-template-columns: 1fr; }
  .cta-section__box { padding: 32px 20px; border-radius: 24px; }
  .contact-cards__grid { grid-template-columns: repeat(3, 1fr); }
  .contact-main__grid { grid-template-columns: 1fr; }
  .contact-social { flex-direction: row; justify-content: center; padding-top: 0; }
  .maps-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
}

.nav__mobile-extra { display: none; }

@media (max-width: 768px) {
  .top-bar { display: none; }
  .header { top: 0; }

  .nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--red);
    flex-direction: column;
    align-items: stretch;
    padding: 0 16px;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: max-height 0.35s ease, opacity 0.3s ease, transform 0.3s ease, visibility 0.3s, padding 0.3s ease;
    box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  }
  .nav.open {
    max-height: 520px;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    padding: 16px;
    gap: 10px;
  }
  .nav > a {
    color: var(--white);
    padding: 10px 4px;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    font-weight: 600;
  }
  .nav > a:hover,
  .nav > a.active { color: #fff; opacity: 0.9; }

  .nav__mobile-extra {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
    padding-top: 8px;
  }
  .nav__pill {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    background: rgba(0,0,0,0.18);
    color: var(--white) !important;
    border: none;
    border-radius: 20px;
    padding: 10px 14px;
    font-size: 13px;
    font-family: inherit;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
  }
  .nav__pill i { font-size: 12px; color: var(--white); }
  .nav__locations { width: 100%; }
  .nav__locations-trigger {
    justify-content: flex-start;
  }
  .nav__locations-trigger .fa-chevron-down {
    margin-left: auto;
    font-size: 10px;
    transition: transform 0.25s ease;
  }
  .nav__locations.open .nav__locations-trigger .fa-chevron-down {
    transform: rotate(180deg);
  }
  .nav__locations-list {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease, margin 0.3s ease;
    background: var(--white);
    border-radius: 12px;
  }
  .nav__locations.open .nav__locations-list {
    max-height: 180px;
    opacity: 1;
    margin-top: 8px;
  }
  .nav__locations-list a {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 12px 14px;
    color: var(--black);
    border-bottom: 1px solid var(--gray-border);
  }
  .nav__locations-list a:last-child { border-bottom: none; }
  .nav__locations-list strong {
    color: var(--red);
    font-size: 13px;
  }
  .nav__locations-list span {
    font-size: 12px;
    color: var(--gray);
    white-space: normal;
  }
  .nav__social {
    display: flex;
    gap: 10px;
    padding-top: 4px;
  }
  .nav__social a {
    width: 36px;
    height: 36px;
    border: 1.5px solid rgba(255,255,255,0.65);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 15px;
    transition: background 0.2s;
  }
  .nav__social a:hover { background: rgba(255,255,255,0.15); }

  .hamburger { display: flex; z-index: 2; }
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .header__actions { display: flex; margin-left: auto; }
  .header__actions .btn-social:not(.btn-social--register) { display: none; }
  .btn-social--register { padding: 8px 12px; font-size: 12px; }
  .welcome-offer-modal__dialog { padding: 40px 22px 25px; }
  .registration-modal__dialog { padding: 28px 20px 22px; }
  .features {
    padding: 20px 0;
  }
  .feature {
    gap: 12px;
    padding: 14px 0;
  }
  .feature__icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    font-size: 18px;
  }
  .feature__title {
    font-size: 14px;
  }
  .feature__text {
    font-size: 12px;
  }
  .stats {
    padding: 28px 0;
  }
  .stats__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .stat-card {
    padding: 16px 10px;
    border-radius: 12px;
  }
  .stat-card__icon {
    font-size: 20px;
    margin-bottom: 6px;
  }
  .stat-card__number {
    font-size: 22px;
    margin-bottom: 2px;
  }
  .stat-card__label {
    font-size: 11px;
    line-height: 1.3;
  }
  .values__grid { grid-template-columns: 1fr; }
  .contact-cards__grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .contact-card { padding: 14px 10px; }
  .contact-card__icon { width: 38px; height: 38px; font-size: 15px; margin-bottom: 8px; }
  .contact-card__title { font-size: 13px; }
  .contact-card__text { font-size: 11px; }
  .contact-card__phone { font-size: 12px; margin-top: 6px; }
  .hero { min-height: 400px; }
  .menu-section { padding: 32px 0 40px; }
  .menu-section__title {
    font-size: 24px;
    margin-bottom: 14px;
  }
  .menu-panel + .menu-panel { margin-top: 38px; }
  .menu-panel__title { font-size: 20px; margin-bottom: 14px; }
  .menu-grid { gap: 14px; }
}

/* Fixed delivery buttons */
.delivery-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1100;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.delivery-float__link {
  display: block;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.delivery-float__link:hover {
  transform: translateY(-2px) scale(1.04);
  opacity: 0.92;
}
.delivery-float__link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media (max-width: 576px) {
  .container { padding: 0 14px; }
  .footer-branches { grid-template-columns: 1fr; }
  .delivery-float {
    right: 16px;
    bottom: 16px;
    gap: 12px;
  }
  .delivery-float__link {
    width: 64px;
    height: 64px;
    border-radius: 50%;
  }
}
