/* =========================
   VelvetRoom Footer (FULL)
========================= */

.vr-footer{
  width: 100%;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
}

.vr-footer__inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 54px 22px 28px;
}

/* GRID: 3 columns */
.vr-footer__grid{
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 28px;
}

.vr-footer__col{
  min-width: 0;
}

/* TITLES */
.vr-footer__title{
  color: rgba(255,255,255,.78);
  font-size: 12px;
  letter-spacing: .10em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

/* CONTACTS */
.vr-footer__phone{
  display: inline-flex;
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-decoration: none;
  margin: 6px 0 12px;
}

.vr-footer__phone:hover{
  color: var(--gold);
}

.vr-footer__meta{
  display: grid;
  gap: 6px;
}

.vr-footer__meta-row{
  color: rgba(255,255,255,.86);
  line-height: 1.45;
}

.vr-footer__muted{
  color: rgba(255,255,255,.62);
}

/* MENU */
.vr-footer__menu{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.vr-footer__menu li{
  margin: 0;
}

.vr-footer__menu a{
  color: rgba(255,255,255,.86);
  text-decoration: none;
  line-height: 1.4;
}

.vr-footer__menu a:hover{
  color: var(--gold);
}

/* =========================
   Ratings cards (right)
========================= */

.vr-footer__ratings{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.vr-rating{
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;

  padding: 10px 10px;
  border-radius: 14px;

  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.10);

  text-decoration: none;
  color: #fff;

  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.vr-rating:hover{
  background: rgba(212,175,55,.10);
  border-color: rgba(212,175,55,.55);
  transform: translateY(-1px);
}

/* icon box */
.vr-rating__icon{
  width: 40px;
  height: 40px;
  border-radius: 12px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(0,0,0,.22);
  border: 1px solid rgba(255,255,255,.10);
}

.vr-rating__icon .reviews-inline-item__icon{
  width: 28px;
  height: 28px;
  display: block;
}

/* text */
.vr-rating__content{
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.vr-rating__score{
  font-weight: 600;
  letter-spacing: .02em;
  color: #fff;
  white-space: nowrap;
}

.vr-rating__meta{
  color: rgba(255,255,255,65);
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  opacity: .9;
}

/* CENTERED COPYRIGHT */
.vr-footer__copy-center{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center;
  color: rgba(255,255,255,.72);
  letter-spacing: .02em;
}

/* RESPONSIVE */
@media (max-width: 900px){
  .vr-footer__inner{
    padding: 44px 16px 24px;
  }

  .vr-footer__grid{
    grid-template-columns: 1fr;
  }
}


.vr-footer__bottom{
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.08);

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  color: rgba(255,255,255,0.72);
  letter-spacing: .02em;
}

.vr-footer__bottom-right{
  color: rgba(255,255,255,0.62);
  white-space: nowrap;
}

@media (max-width: 540px){
  .vr-footer__bottom{
    flex-direction: column;
    align-items: flex-start;
  }
  .vr-footer__bottom-right{
    white-space: normal;
  }
}













/* =========================
   Footer Map (above footer)
========================= */

.vr-footer-map{
  width: 100%;
  background: #050505;
  border-top: 1px solid rgba(212,175,55,.18);
}

.vr-footer-map__inner{
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 22px 0;
}

/* frame теперь full-width */
.vr-footer-map__frame{
  position: relative;
  width: 100%;
  height: 520px;                 /* full-width обычно хочется выше */
  overflow: hidden;

  background: rgba(255,255,255,.02);
  border-top: 1px solid rgba(212,175,55,.20);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.vr-footer-map__iframe{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) contrast(1.05) brightness(.82);
}


/* затемнение и золотой нюанс */
.vr-footer-map__overlay{
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(85% 70% at 72% 40%, rgba(212,175,55,.12) 0%, rgba(0,0,0,0) 60%),
    linear-gradient(to bottom, rgba(0,0,0,.60) 0%, rgba(0,0,0,.22) 40%, rgba(0,0,0,.62) 100%);
}

/* =========================
   Overlay card
========================= */

.vr-map-card{
  position: absolute;
  right: 24px;
  top: 24px;
  width: min(460px, calc(100% - 48px));
  padding: 22px 20px;

  border-radius: 18px;
  background:
    radial-gradient(120% 120% at 20% 10%, rgba(212,175,55,.10) 0%, rgba(0,0,0,0) 55%),
    rgba(0,0,0,.72);

  border: 1px solid rgba(255,255,255,.10);
  box-shadow: 0 22px 80px rgba(0,0,0,.65);

  color: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
}

@media (max-width: 640px){
  .vr-footer-map__frame{ height: 560px; }
  .vr-map-card{
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: auto;
  }
}


.vr-map-card::after{
  content:"";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 18px;
  border: 1px solid rgba(212,175,55,.22);
  opacity: .9;
}

.vr-map-card__title{
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(255,255,255,.78);
  margin-bottom: 12px;
}

.vr-map-card__phone{
  display: inline-flex;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: .02em;
  color: var(--gold, #D4AF37);
  text-decoration: none;
  margin-bottom: 14px;
}

.vr-map-card__phone:hover{ opacity: .9; }

.vr-map-card__row{
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 10px;
  align-items: start;

  padding: 10px 12px;
  border-radius: 14px;

  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.08);

  margin-bottom: 10px;
}

.vr-map-card__icon{
  transform: translateY(1px);
  filter: saturate(.8);
}

.vr-map-card__text{
  line-height: 1.35;
  color: rgba(255,255,255,.88);
  font-weight: 600;
}

.vr-map-card__actions{
  margin-top: 14px;
}

.vr-map-card__btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 12px 14px;
  border-radius: 12px;

  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: .02em;

  background: rgba(212,175,55,.14);
  border: 1px solid rgba(212,175,55,.55);
}

.vr-map-card__btn:hover{
  background: rgba(212,175,55,.22);
  border-color: rgba(212,175,55,.85);
}

/* Responsive */
@media (max-width: 900px){
  .vr-footer-map__inner{ padding: 22px 16px 0; }
  .vr-footer-map__frame{ height: 380px; border-radius: 16px; }

  .vr-map-card{
    right: 14px;
    top: 14px;
    border-radius: 16px;
  }
  .vr-map-card::after{ border-radius: 16px; }
}

@media (max-width: 640px){
  .vr-footer-map__frame{ height: 520px; }

  /* На мобиле карточку вниз, чтобы не мешала карте */
  .vr-map-card{
    left: 12px;
    right: 12px;
    top: auto;
    bottom: 12px;
    width: auto;
  }
}


/* =========================================================
   Footer bottom row: © | Payment methods | House Open
   ========================================================= */

/* базовая линия */
.vr-footer__bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;

  /* чтобы центр не выдавливал страницу */
  max-width:100%;
}

/* левый/правый текст */
.vr-footer__bottom-left,
.vr-footer__bottom-right{
  font-size: 13px;
  opacity:.9;
  white-space:nowrap;
}

/* центр: label + чипы */
.vr-footer__bottom-payments{
  display:flex;
  align-items:center;
  gap:14px;
  flex:0 1 auto;

  /* важно для предотвращения overflow */
  min-width:0;
  max-width:100%;
}

/* Payment methods */
.vr-footer__bottom-payments-label{
  font-size:13px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color: rgba(255,255,255,.72);
  white-space:nowrap;
}

/* контейнер чипов (если ты оборачиваешь отдельно — можно не нужно)
   если чипы идут прямо внутри vr-footer__bottom-payments — игнор */
.vr-footer__bottom-payments-list{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;         /* ✅ перенос вместо бокового скролла */
  justify-content:center;
  max-width:100%;
}

/* чип оплаты */
.vr-pay-mini{
  display:inline-flex;
  align-items:center;
  gap:10px;

  padding:10px 18px;
  border-radius:999px;

  background: rgba(0,0,0,.44);
  border: 1px solid rgba(212,175,55,.26);
  backdrop-filter: blur(6px);

  color: rgba(255,255,255,.92);
  white-space:nowrap;     /* каждый чип не ломаем внутри */
  flex:0 0 auto;
}

/* иконка (все одинаковые) */
.vr-pay-mini__icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: rgba(212,175,55,.95);  /* золото */
}

/* единый стиль всех SVG, включая BTC */
.vr-pay-mini__icon svg{
  width:22px;
  height:22px;
  display:block;

  /* чтобы биткоин был в том же стиле */
  fill:none !important;
  stroke: currentColor;
}

/* текст */
.vr-pay-mini__text{
  font-size:15px;
  font-weight:700;
  letter-spacing:.02em;
}

/* =========================================================
   Responsive: no horizontal scroll
   ========================================================= */

/* планшет */
@media (max-width: 980px){
  .vr-pay-mini{ padding:10px 16px; }
  .vr-pay-mini__text{ font-size:14px; }
  .vr-pay-mini__icon svg{ width:20px; height:20px; }
}

/* мобилка: делаем 2–3 строки, чтобы вообще не было overflow */
@media (max-width: 680px){
  .vr-footer__bottom{
    flex-wrap:wrap;              /* ✅ перенос всей нижней линии */
    justify-content:center;
    row-gap:10px;
  }

  .vr-footer__bottom-left{ order:1; width:100%; text-align:center; }
  .vr-footer__bottom-payments{ order:2; width:100%; justify-content:center; flex-wrap:wrap; }
  .vr-footer__bottom-right{ order:3; width:100%; text-align:center; }

  /* label можно оставить, но если тесно — скрываем */
  .vr-footer__bottom-payments-label{
    width:100%;
    text-align:center;
    margin-bottom:2px;
  }

  /* чипы точно без бокового скролла */
  .vr-footer__bottom-payments,
  .vr-footer__bottom-payments-list{
    max-width:100%;
    flex-wrap:wrap;
  }
}

/* очень узко: убираем label, можно уменьшить чипы */
@media (max-width: 420px){
  .vr-footer__bottom-payments-label{ display:none; }
  .vr-pay-mini{ padding:10px 14px; }
  .vr-pay-mini__text{ font-size:14px; }
  .vr-pay-mini__icon svg{ width:20px; height:20px; }
}

/* ===== XL icons for payment chips ===== */
.vr-pay-mini{
  padding:12px 20px;      /* чуть больше место под иконку */
  gap:12px;
}

.vr-pay-mini__icon svg{
  width:28px;             /* было 22px */
  height:28px;
}

/* tablet */
@media (max-width: 980px){
  .vr-pay-mini__icon svg{
    width:26px;
    height:26px;
  }
}

/* mobile */
@media (max-width: 420px){
  .vr-pay-mini__icon svg{
    width:24px;
    height:24px;
  }
}
