/* ===============================
   BASE
=============================== */
html {
  scroll-behavior: smooth;
  font-family: "Poppins", sans-serif;
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
body {
  background-color: #111 !important;
  color: #f8f9fa;
  font-family: "Poppins", sans-serif;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Футер притиснутий до низу без розтягування контенту */
.gallery { flex-shrink: 0; }

.letter-spacing { letter-spacing: 0.08em; }

/* ===============================
   FILTER BUTTONS
=============================== */
#filters { margin-top: 25px; }

.btn-filter {
  background: transparent;
  color: #888;
  border: 1px solid #333;
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
  font-family: 'Poppins', sans-serif;
}

.btn-filter:hover {
  background: rgba(229, 57, 53, 0.1);
  border-color: #b30000;
  color: #fff;
}

.btn-filter.active {
  background: rgba(179, 0, 0, 0.18);
  border-color: #b30000;
  color: #fff;
}

/* ===============================
   SKETCH GRID
=============================== */
#gallery {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  flex-wrap: unset;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

@media (max-width: 1200px) {
  #gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ===============================
   GALLERY-STYLE CARDS
=============================== */
.gallery-card {
  position: relative;
  display: block;
  border-radius: 12px;
  overflow: hidden;
  background: #0e0e0e;
  border: 1px solid #1e1e1e;
  cursor: pointer;
  text-decoration: none !important;
  aspect-ratio: 3/4;
  transition: border-color 0.25s, transform 0.3s;
}

.gallery-card:hover {
  border-color: #333;
  transform: translateY(-3px);
}

.gallery-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease, filter 0.4s ease;
}

/* (hover on img — see .gallery-card-overlay section above) */

.gallery-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 48px 14px 14px;
  background: linear-gradient(0deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.5) 60%, rgba(0,0,0,0) 100%);
  opacity: 1;
  transform: translateY(0);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Кнопка «Хочу це тату» — прихована до hover (десктоп) */
.sketch-order-btn {
  opacity: 0 !important;
  transform: translateY(4px);
  transition: opacity 0.22s ease, transform 0.22s ease !important;
  pointer-events: none;
}

.gallery-card:hover .sketch-order-btn {
  opacity: 1 !important;
  transform: translateY(0);
  pointer-events: auto;
}

/* Мобайл — кнопка завжди видима (немає hover) */
@media (hover: none) {
  .sketch-order-btn {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
  }
}

.gallery-card:hover .gallery-card-img {
  transform: scale(1.04);
  filter: brightness(0.55);
}

.gallery-card-new {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: #b30000;
  border-radius: 4px;
  padding: 3px 8px;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.gallery-card-style {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #e57373;
  background: rgba(229, 57, 53, 0.15);
  border: 1px solid rgba(229, 57, 53, 0.3);
  border-radius: 20px;
  padding: 2px 9px;
  align-self: flex-start;
}

.gallery-card-title {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin: 0;
  line-height: 1.3;
}

.sketch-promo-text {
  font-size: 0.75rem;
  font-weight: 600;
  color: #e57373;
  margin: 0;
  line-height: 1.3;
}

.sketch-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 2px;
}

.sketch-card-price {
  font-size: 0.8rem;
  color: #e57373;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.sketch-card-price-old {
  font-size: 0.72rem;
  color: #666;
  font-weight: 400;
  text-decoration: line-through;
}

.sketch-order-btn {
  padding: 4px 12px !important;
  font-size: 0.75rem !important;
  border-radius: 6px !important;
}

@media (max-width: 768px) {
  #gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }

  .gallery-card-overlay {
    opacity: 1;
    transform: translateY(0);
    /* Сильніший градієнт — текст чітко читається */
    background: linear-gradient(
      0deg,
      rgba(0,0,0,0.96) 0%,
      rgba(0,0,0,0.82) 40%,
      rgba(0,0,0,0.40) 70%,
      rgba(0,0,0,0)    100%
    );
    padding-bottom: 12px;
  }

  .gallery-card:hover .gallery-card-img {
    transform: none;
    filter: none;
  }
}

/* ===============================
   LIGHTBOX OVERRIDES
=============================== */
.glightbox-container,
.goverlay {
  background: rgba(0, 0, 0, 0.92) !important;
}

.gslide-media,
.ginner,
.gslide-inner-content {
  background: transparent !important;
}

.gslide-image img {
  opacity: 1 !important;
  filter: none !important;
  background: transparent !important;
}

.ginner-container { opacity: 1 !important; }

.gslide:not(.current) {
  opacity: 0 !important;
  visibility: hidden !important;
}

.gslide.current .ginner-container {
  animation: slideSwipeIn 0.5s ease-out forwards;
  will-change: transform, opacity;
}

.gslide.prev .ginner-container,
.gslide.next .ginner-container {
  animation: slideSwipeOut 0.5s ease-in forwards;
}

@keyframes slideSwipeIn {
  0%   { opacity: 0; transform: translateX(60px) scale(1.02); }
  60%  { opacity: 1; transform: translateX(-10px) scale(1.01); }
  100% { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes slideSwipeOut {
  0%   { opacity: 1; transform: translateX(0) scale(1); }
  100% { opacity: 0; transform: translateX(-60px) scale(0.98); }
}

.gslide, .gslide-image img, .ginner-container { transition: none !important; }

/* ── GLightbox description panel ── */
.gslide-description.description-bottom {
  position: relative !important;
  inset: auto !important;
  transform: none !important;
  width: 100% !important;
  max-width: 680px !important;
  margin: 0 auto !important;
  background: #0d0d0d !important;
  border-top: 3px solid #c10000 !important;
  color: #fff;
  padding: 22px 32px 24px !important;
  border-radius: 0 0 16px 16px !important;
  box-shadow: 0 8px 40px rgba(0,0,0,.7) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
  font-family: 'Poppins', sans-serif !important;
}

.gslide-description .btn-order + .btn-order { display: none !important; }

/* Ліва частина: назва + мета (gdesc-inner = GLightbox wrapper) */
.gslide-description .gdesc-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1 1 auto;
  min-width: 0;
}

/* Назва ескізу */
.gslide-description .gslide-title {
  color: #fff !important;
  font-weight: 700 !important;
  font-size: 1.15rem !important;
  letter-spacing: 0.02em !important;
  margin: 0 0 2px !important;
  line-height: 1.3 !important;
}

/* Контейнер опису (GLightbox вставляє сюди data-description) */
.gslide-description .gslide-desc {
  display: flex !important;
  flex-direction: column !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ціна + розмір — рядок під назвою */
.gslide-description .lb-meta {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex-wrap: wrap !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Ціна */
.gslide-description .lb-price-wrap {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.gslide-description .lb-price-old {
  font-size: 0.88rem;
  font-weight: 400;
  color: #666;
  text-decoration: line-through;
}

.gslide-description .lb-price {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ff5252;
  letter-spacing: 0.01em;
}

/* Розмір */
.gslide-description .lb-size {
  font-size: 0.8rem;
  color: #777;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  padding: 3px 10px;
  white-space: nowrap;
}

/* Кнопка замовлення */
.gslide-description .order-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 24px;
  background: #c10000;
  color: #fff;
  font-weight: 700;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Poppins', sans-serif;
}
.gslide-description .order-btn::before {
  content: '✦';
  font-size: 0.7rem;
  opacity: 0.8;
}
.gslide-description .order-btn:hover {
  background: #e50000;
  transform: translateY(-1px);
}

/* Клікабельність в lightbox */
.gslide-description { pointer-events: auto !important; }
.gslide-description * { pointer-events: auto !important; }
.gslide, .gslide-inner-content { pointer-events: none !important; }

/* ===============================
   ORDER MODAL OVERLAY
=============================== */
#modalOverlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.78);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2147483646;
  opacity: 0;
  transition: opacity 0.3s ease;
}

#modalOverlay.show {
  display: flex;
  opacity: 1;
}

/* ── Модалка ── */
#orderModal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -46%) scale(0.97);
  background: #131313;
  border: 1px solid #252525;
  border-radius: 18px;
  width: 92%;
  max-width: 460px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,0.7);
  z-index: 2147483647;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#orderModal.show {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
}

/* ── Кнопка закриття ── */
#orderModal .close-modal {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-size: 15px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
  line-height: 1;
}
#orderModal .close-modal:hover {
  background: rgba(0,0,0,0.8);
  border-color: rgba(255,255,255,0.35);
}

/* ── Превʼю обраного ескізу ── */
.order-preview-wrap {
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  line-height: 0;
}

.order-img-preview {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-radius: 14px 14px 0 0;
}

/* ── Тіло ── */
.order-modal-body {
  padding: 20px 26px 28px;
}

.order-modal-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #fff;
  margin: 14px 0 6px;
}

.order-modal-sub {
  font-size: 0.82rem;
  color: #555;
  margin: 0 0 20px;
}

/* ── Поля ── */
.order-field { margin-bottom: 14px; }

.order-field label {
  display: block;
  font-size: 0.73rem;
  font-weight: 600;
  color: #777;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.order-input {
  width: 100%;
  background: #1c1c1c;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  color: #fff;
  font-size: 0.95rem;
  padding: 11px 14px;
  font-family: 'Poppins', sans-serif;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.order-input:focus {
  border-color: #b30000;
  box-shadow: 0 0 0 3px rgba(179,0,0,0.15);
  outline: none;
}

.order-input::placeholder { color: #444; }

.order-input.is-invalid {
  border-color: #c0392b;
  box-shadow: 0 0 0 3px rgba(192,57,43,0.12);
}

.order-input.is-valid { border-color: #27ae60; }

.order-field-err {
  display: none;
  font-size: 0.74rem;
  color: #e57373;
  margin-top: 5px;
}

.order-input.is-invalid ~ .order-field-err { display: block; }

/* ── Чіпи зв'язку ── */
.contact-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.contact-chip { cursor: pointer; }
.contact-chip input[type="checkbox"] { display: none; }

.contact-chip span {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid #2a2a2a;
  border-radius: 20px;
  font-size: 0.8rem;
  color: #777;
  background: #1c1c1c;
  transition: all 0.2s;
  user-select: none;
}

.contact-chip input:checked + span {
  background: rgba(179,0,0,0.16);
  border-color: #b30000;
  color: #fff;
}

.contact-chip span:hover { border-color: #444; color: #ccc; }

/* ── Кнопка відправки ── */
.order-submit-btn {
  width: 100%;
  background: #b30000;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 13px;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  transition: background 0.25s, transform 0.15s;
  margin-top: 8px;
}

.order-submit-btn:hover  { background: #d40000; }
.order-submit-btn:active { transform: scale(0.98); }
.order-submit-btn:disabled { opacity: 0.55; cursor: default; }

/* ── Глобальна помилка ── */
.order-error-global {
  background: rgba(192,57,43,0.1);
  border: 1px solid rgba(192,57,43,0.25);
  border-radius: 8px;
  color: #e57373;
  font-size: 0.8rem;
  padding: 10px 14px;
  margin-bottom: 12px;
  line-height: 1.5;
}

/* ── Загальні класи валідації ── */
.is-invalid { border-color: #c0392b !important; }
.is-valid   { border-color: #27ae60 !important; }

@keyframes popIn {
  0%   { transform: scale(0.5); opacity: 0; }
  70%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* ── Mobile — bottom sheet ── */
@media (max-width: 768px) {
  #orderModal {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    transform: translateY(40px);
    width: 100%;
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    max-height: 92vh;
  }

  #orderModal.show {
    transform: translateY(0);
  }

  .order-img-preview { height: 160px; }
}

/* ===============================
   LEGACY .order-btn (lightbox & overlay card)
=============================== */
.order-btn {
  display: inline-block;
  padding: 8px 18px;
  background: #b30000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
}
.order-btn:hover { background: #d00000; }

/* ===============================
   LIGHTBOX MOBILE FIX (Safari)
=============================== */
@media (max-width: 768px) {
  .gslide-description.description-bottom {
    position: relative !important;
    inset: auto !important;
    transform: none !important;
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 0 0 12px 12px !important;
    padding: 16px 18px 18px !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 0 !important;
  }
  .gslide-description .gdesc-inner {
    width: 100% !important;
  }
  .gslide-description .gslide-desc {
    gap: 12px !important;
  }
  .gslide-description .order-btn {
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
    text-align: center !important;
    margin-top: 4px !important;
  }

  .gslide {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    padding: 0 !important;
    margin: 0 auto !important;
  }

  .gslide-image img {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-height: 65vh !important;
    object-fit: contain !important;
    margin: 0 auto !important;
  }

  .ginner-container {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 0 !important;
  }

  /* Контейнер опису не обрізаємо */
  .gslide-description.description-bottom {
    overflow: visible !important;
  }
}

html, body { background-color: #000 !important; }

body.glightbox-open,
html.glightbox-open {
  position: fixed !important;
  overflow: hidden !important;
  height: 100dvh !important;
  touch-action: none !important;
  overscroll-behavior: contain !important;
  width: 100%;
}

.goverlay,
.glightbox-container {
  position: fixed !important;
  top: 0 !important; left: 0 !important;
  right: 0 !important; bottom: 0 !important;
  width: 100vw !important;
  height: 100dvh !important;
  background-color: rgba(0,0,0,0.96) !important;
  z-index: 9999 !important;
  overflow: hidden !important;
}

@supports (-webkit-touch-callout: none) {
  html, body, .glightbox-open body {
    position: fixed !important;
    inset: 0 !important;
    overflow: hidden !important;
    height: 100vh !important;
    background-color: #000 !important;
  }
  .goverlay::after {
    content: "";
    position: fixed;
    left: 0; right: 0; bottom: 0;
    height: env(safe-area-inset-bottom, 0);
    background: #000;
    pointer-events: none;
  }
}

body:not(.glightbox-open) {
  position: static !important;
  overflow-y: auto !important;
}

/* ===============================
   BOTTOM INFO SECTION
=============================== */
.sketch-bottom-info {
  background: #080808;
  border-top: 1px solid #1a1a1a;
  padding: 64px 0 56px;
  margin-top: 32px;
}

.sketch-bottom-inner {
  display: flex;
  gap: 56px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.sketch-how { flex: 1; min-width: 260px; }

.sketch-how h2 {
  font-size: clamp(1.2rem, 3vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
}

.sketch-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.sketch-step {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.875rem;
  color: #aaa;
  line-height: 1.4;
}

.sketch-step-num {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1a0000;
  border: 1px solid #c10000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: #c10000;
}

.sketch-benefits {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 220px;
}

.sketch-benefits-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 4px;
}

.sketch-benefit {
  font-size: 0.85rem;
  color: #777;
  padding: 10px 16px;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 10px;
  transition: border-color .2s;
}
.sketch-benefit:hover { border-color: #2a2a2a; color: #aaa; }

@media (max-width: 640px) {
  .sketch-bottom-inner { gap: 36px; }
  .sketch-how, .sketch-benefits { min-width: 100%; }
}

/* ===============================
   PROMO POPUP
=============================== */
.promo-popup {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.promo-popup.show { opacity: 1; visibility: visible; }

.promo-content {
  background: #fff;
  color: #000;
  padding: 30px 40px;
  border-radius: 12px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.4);
  animation: none;
}

@keyframes popupSlide {
  from { transform: translateY(-40px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

.promo-content h3 { margin-bottom: 10px; font-weight: 800; }

.promo-btn {
  margin-top: 15px;
  background: #b30000;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 8px 16px;
  cursor: pointer;
  transition: 0.3s;
}
.promo-btn:hover { background: #ff3b3b; }

/* ===============================
   PRELOADER
=============================== */
.preloader {
  position: fixed;
  inset: 0;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.hidden { opacity: 0; visibility: hidden; }

.loader-icon { text-align: center; color: #fff; }

.spinner {
  width: 52px; height: 52px;
  border: 3px solid rgba(255,255,255,0.1);
  border-top-color: #b30000;
  border-radius: 50%;
  animation: spin 0.85s linear infinite;
  margin: 0 auto 14px;
}

@keyframes spin { to { transform: rotate(360deg); } }
.preloader p { font-size: 14px; font-weight: 500; letter-spacing: 0.5px; color: #666; }

/* ===============================
   INSTALLMENTS
=============================== */
.installments-block {
  background: #fff;
  padding: 5px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.installments-img { max-width: 100%; width: 350px; height: auto; }

@media (max-width: 768px) {
  .installments-img { width: 260px; }
}

/* ===============================
   FOOTER
=============================== */
.footer {
  background: linear-gradient(180deg, #0f0f0f 0%, #0b0b0b 100%);
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
  flex-shrink: 0;
}
.footer-inner { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.footer-copy  { margin: 0; font-size: 0.9rem; color: #9a9a9a; letter-spacing: 0.3px; }
.footer-links { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.footer-link  { color: #e0e0e0; text-decoration: none; transition: opacity 0.2s; }
.footer-link:hover { opacity: 0.75; }
.footer-separator { color: #555; }
.footer-rights    { color: #777; }

@media (max-width: 576px) {
  .footer-inner { flex-direction: column; text-align: center; }
}
