/* ===== Haires Barbershop - 1:1 Copy ===== */
/* Paleta zbliżona do demo salonu (PNP / Haires): ciepły krem, złoto, głęboka czerń */
:root {
  --font-main: 'DM Sans', sans-serif;
  --font-cursive: 'Great Vibes', cursive;
  --color-dark: #0f0f0f;
  --color-dark-soft: #181818;
  --color-gold: #c4a35a;
  --color-gold-light: #d4b978;
  --color-cream: #f2ece4;
  --color-cream-bg: #efe8df;
  --color-brown: #5c4839;
  --color-text: #f7f7f7;
  --color-text-muted: #9a9a9a;
  --color-text-dark: #2a2a2a;
  --color-border: rgba(255, 255, 255, 0.09);
  --transition: 0.3s ease;
  --section-pad-y: 80px;
  --cookie-green: #22c55e;
  --cookie-green-hover: #16a34a;
  --cookie-red: #dc2626;
  --cookie-red-hover: #b91c1c;
}

/* Scroll reveal */
.about, .prices, .shop, .video-tour, .team, .testimonials, .features, .appointment, .footer {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.about.visible, .prices.visible, .shop.visible, .video-tour.visible,
.team.visible, .testimonials.visible, .features.visible,
.appointment.visible, .footer.visible {
  opacity: 1;
  transform: translateY(0);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  /* Kotwice (#services, #prices…) pod stałym nagłówkiem – nie chowają się pod belką */
  scroll-padding-top: 112px;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  /* Ciemny motyw paska przewijania (systemowy) – mniej „jasnej szczeliny” po prawej */
  color-scheme: dark;
  /* Firefox: wąski pasek w kolorach strony */
  scrollbar-width: thin;
  scrollbar-color: rgba(196, 163, 90, 0.45) #0a0a0a;
}

/* Chrome, Edge, Safari – własny wygląd scrollbara zamiast jasnego domyślnego */
html::-webkit-scrollbar {
  width: 8px;
}
html::-webkit-scrollbar-track {
  background: var(--color-dark);
}
html::-webkit-scrollbar-thumb {
  background: rgba(196, 163, 90, 0.35);
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover {
  background: rgba(196, 163, 90, 0.55);
}

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-dark);
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition), opacity var(--transition);
}

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

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

/* ===== Top utility bar (cream) ===== */
.top-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--color-cream-bg);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
  flex-wrap: wrap;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-bar-left a {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-dark);
}

.top-bar-left a:hover {
  color: var(--color-brown);
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.top-bar-right a {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-dark);
}

.top-bar-right a:hover {
  color: var(--color-brown);
}

.top-bar-right .fa-search,
.top-bar-right .fa-user,
.top-bar-right .fa-shopping-cart {
  margin-right: 6px;
  font-size: 0.75rem;
}

.cart-link-top {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  font-size: 0.65rem;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
  color: #fff;
  background: #c00;
  border-radius: 50%;
}

/* ===== Main Header ===== */
.header {
  position: fixed;
  top: 40px;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(13, 13, 13, 0.98);
  border-bottom: 1px solid var(--color-border);
  transition: background var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 24px;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--color-gold);
}

.logo-img {
  display: block;
  height: 58px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
}

.logo-icon {
  display: flex;
  align-items: center;
  width: 36px;
  height: 44px;
}

.logo-icon svg {
  width: 100%;
  height: 100%;
  color: var(--color-gold);
}

.logo-text-vertical {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1.2;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-main a {
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
}

.nav-main a:hover {
  color: var(--color-gold-light);
}

/* Sklep — więcej pozycji w menu, krótszy odstęp */
.nav-main--shop {
  flex-wrap: wrap;
  gap: 10px 14px;
  justify-content: center;
  max-width: min(100%, 780px);
}

.nav-main--shop a {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
}

.shop-kontakt-line {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
}

.shop-kontakt-line .fas {
  margin-top: 0.2em;
  color: var(--color-gold);
}

/* Strona kontaktu sklepu — bogatszy układ */
.shop-kontakt-page .shop-wip-inner {
  max-width: 1040px;
}

.shop-kontakt-intro {
  text-align: center;
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  color: var(--color-text-muted);
  line-height: 1.75;
  margin: 8px auto 40px;
  max-width: 56ch;
}

.shop-kontakt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-bottom: 36px;
}

@media (min-width: 720px) {
  .shop-kontakt-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

.shop-kontakt-card {
  position: relative;
  text-align: left;
  padding: 26px 22px 28px;
  border-radius: 16px;
  border: 1px solid rgba(196, 163, 90, 0.28);
  background: linear-gradient(165deg, rgba(28, 28, 28, 0.95) 0%, rgba(12, 12, 12, 0.88) 100%);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.shop-kontakt-card:hover {
  border-color: rgba(196, 163, 90, 0.45);
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.45);
}

.shop-kontakt-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--color-gold);
  background: rgba(196, 163, 90, 0.1);
  border: 1px solid rgba(196, 163, 90, 0.35);
}

.shop-kontakt-card__title {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-gold);
  font-weight: 700;
  margin: 0 0 10px;
}

.shop-kontakt-card__name {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.35;
  margin: 0 0 12px;
}

.shop-kontakt-card__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0 0 16px;
}

.shop-kontakt-card__text strong {
  color: var(--color-text);
  font-weight: 600;
}

.shop-kontakt-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.shop-kontakt-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
}

.shop-kontakt-card__link:hover {
  color: var(--color-gold-light);
  border-bottom-color: rgba(212, 185, 120, 0.6);
}

.shop-kontakt-card__phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.shop-kontakt-card__phone:hover {
  text-decoration: underline;
}

.shop-kontakt-section-title {
  font-size: clamp(1.15rem, 2.8vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.2);
}

.shop-kontakt-split {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
}

@media (min-width: 900px) {
  .shop-kontakt-split {
    grid-template-columns: minmax(280px, 1fr) minmax(0, 1.15fr);
    align-items: start;
    gap: 32px;
  }
}

.shop-kontakt-hours-panel {
  padding: 28px 24px 30px;
  border-radius: 16px;
  border: 1px solid rgba(196, 163, 90, 0.22);
  background: rgba(0, 0, 0, 0.4);
}

.shop-kontakt-hours-panel .legal-hours-table {
  margin-top: 8px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}

.shop-kontakt-hours-panel .legal-hours-table th,
.shop-kontakt-hours-panel .legal-hours-table td {
  padding: 10px 12px;
}

.shop-kontakt-hours-note {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0 0 16px;
}

.shop-kontakt-map-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196, 163, 90, 0.22);
  background: rgba(0, 0, 0, 0.35);
}

.shop-kontakt-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  min-height: 220px;
  background: #111;
}

.shop-kontakt-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(1.02);
}

.shop-kontakt-map-footer {
  padding: 14px 18px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.shop-kontakt-map-footer span {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

.btn-maps {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-dark);
  background: var(--color-gold);
  border-radius: 6px;
  text-decoration: none;
  transition: background var(--transition), color var(--transition);
}

.btn-maps:hover {
  background: var(--color-gold-light);
  color: var(--color-dark);
}

.shop-kontakt-social {
  text-align: center;
  padding: 32px 24px 36px;
  margin-bottom: 32px;
  border-radius: 16px;
  border: 1px solid rgba(196, 163, 90, 0.18);
  background: radial-gradient(ellipse 120% 80% at 50% 0%, rgba(196, 163, 90, 0.08) 0%, transparent 55%), rgba(0, 0, 0, 0.25);
}

.shop-kontakt-social .shop-kontakt-section-title {
  border: none;
  padding: 0;
  margin-bottom: 16px;
}

.shop-kontakt-social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
}

.shop-kontakt-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.15rem;
  color: var(--color-gold);
  border: 1px solid rgba(196, 163, 90, 0.35);
  background: rgba(0, 0, 0, 0.35);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.shop-kontakt-social-links a:hover {
  background: rgba(196, 163, 90, 0.15);
  color: var(--color-gold-light);
  transform: translateY(-2px);
}

.shop-kontakt-band {
  border-radius: 16px;
  padding: 28px 24px 32px;
  text-align: center;
  border: 1px solid rgba(196, 163, 90, 0.25);
  background: linear-gradient(180deg, rgba(196, 163, 90, 0.07) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.shop-kontakt-band__lead {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  margin: 0 0 8px;
}

.shop-kontakt-band__text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  margin: 0 0 22px;
  max-width: 42ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

.shop-kontakt-band .shop-wip-actions {
  margin-bottom: 0;
}

.nav-plus {
  font-size: 0.7em;
  opacity: 0.9;
  margin-left: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-phone {
  font-size: 0.9rem;
  color: var(--color-gold);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.header-phone:hover {
  color: var(--color-gold-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-family: var(--font-main);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border: none;
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.btn-appointment {
  background: var(--color-brown);
  color: var(--color-cream);
  border-radius: 6px;
}

.btn-appointment:hover {
  background: #5a4639;
  color: var(--color-cream);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--color-text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ===== Hero Slider ===== */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: 112px; /* top-bar 40px + header 72px */
  background: var(--color-dark);
}

.hero-slider {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  min-height: calc(100vh - 112px);
  align-items: stretch;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 8% 60px 6%;
  max-width: 560px;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.28em;
  color: var(--color-gold);
  margin-bottom: 18px;
}

.hero-logo-wrap {
  margin-bottom: 20px;
  line-height: 0;
}

.hero-logo-img {
  display: block;
  height: auto;
  max-height: 120px;
  width: auto;
  max-width: min(360px, 100%);
  object-fit: contain;
}

.hero-label-cursive {
  font-family: var(--font-cursive);
  font-size: 1.75rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.hero-title-block {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: 0.02em;
  color: var(--color-text);
  text-transform: uppercase;
  margin-bottom: 36px;
}

.hero-title-main {
  text-transform: none;
  letter-spacing: 0.08em;
}

.hero-subtitle {
  font-family: var(--font-cursive);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--color-gold);
  margin-bottom: 32px;
}

.hero-line {
  display: block;
}

.hero-line-masters {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
}

.hero-icon-circle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin: 0 4px;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  font-size: 0.5em;
  color: var(--color-gold);
  vertical-align: middle;
}

/* CTA w hero – wyraźny, duży przycisk */
.btn-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(280px, 100%);
  padding: 20px 48px;
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  line-height: 1.2;
  color: var(--color-dark);
  background: linear-gradient(165deg, var(--color-gold-light) 0%, var(--color-gold) 45%, #a88a3d 100%);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  box-shadow:
    0 12px 40px rgba(196, 163, 90, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.2) inset;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.btn-hero:hover {
  color: var(--color-dark);
  filter: brightness(1.08);
  transform: translateY(-3px);
  box-shadow:
    0 16px 48px rgba(196, 163, 90, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.15) inset;
}

.btn-hero:active {
  transform: translateY(-1px);
}

.hero-image {
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  min-height: 500px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
  object-position: center right;
  display: block;
  transform: scale(1);
  will-change: transform;
}

/* Efekt przybliżania (zoom) zdjęcia gdy slajd jest aktywny – jak w oryginale */
.hero-slide.active .hero-image img {
  animation: heroImageZoom 6s ease-out forwards;
}

@keyframes heroImageZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.15);
  }
}

/* Numery slajdów 01–04: na dole po lewej (jak treść hero), żeby nie stały przy krawędzi obok scrollbara */
.hero-numbers {
  position: absolute;
  left: max(24px, 6%);
  bottom: 32px;
  right: auto;
  top: auto;
  transform: none;
  z-index: 10;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 18px;
}

.hero-num {
  background: none;
  border: none;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--color-gold);
  cursor: pointer;
  padding: 4px 0;
  transition: color var(--transition);
}

.hero-num:hover {
  color: var(--color-gold-light);
}

.hero-num.active {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--color-gold);
  border-radius: 50%;
  margin: 0 auto;
}

/* ===== Section common (jak nagłówki h6/h5 w demo PNP) ===== */
.section-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--color-gold);
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(1.85rem, 3.8vw, 2.65rem);
  font-weight: 300;
  line-height: 1.28;
  margin-bottom: 28px;
  max-width: 820px;
  letter-spacing: 0.02em;
}

/* Sekcje z nagłówkiem wyśrodkowanym (cennik, sklep, opinie, wideo+tekst) */
.prices .section-label,
.prices .section-title,
.prices-notice,
.shop-intro,
.services-lead-notice,
.shop .section-label,
.shop .section-title,
.video-tour-content > .section-label,
.video-tour-content > .section-title,
.video-tour-content > .services-lead-notice,
.testimonials .section-label,
.testimonials .section-title {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.prices-notice {
  text-align: center;
}

/* ===== About (layout: ref. – 2 kolumny, czarne tło, slogan pod zdjęciem, narzędzia z dużym zaokrągleniem BR + odznaka) */
.about {
  padding: 80px 0 72px;
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.about-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.08fr);
  grid-template-rows: auto auto;
  gap: 28px 48px;
  align-items: start;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.about-col-left {
  grid-column: 1;
  grid-row: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

/* Lewa kolumna: karuzela ~ 4:5 + slogan CAPS pod spodem */
.about-slider.about-image-left {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 5;
  max-height: min(72vh, 640px);
  background: #111;
}

.about-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  z-index: 0;
  transform: scale(1);
  transition: opacity 0.85s ease, visibility 0.85s ease;
}

.about-slide:not(.active) {
  animation: none;
  transform: scale(1);
}

.about-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
  animation: aboutKenBurns 6s ease-out forwards;
}

@keyframes aboutKenBurns {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.12);
  }
}

.about-left-tagline {
  font-size: clamp(0.65rem, 1.1vw, 0.78rem);
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #f0f0f0;
  margin: 0;
  max-width: 42ch;
}

.about-right-heading {
  grid-column: 2;
  grid-row: 1;
  padding-top: 8px;
  align-self: start;
}

.about-eyebrow.section-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
  opacity: 0.95;
}

.about-heading-xl {
  font-size: clamp(1.35rem, 2.4vw, 2.05rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 20px;
  max-width: 22ch;
}

.about-right-heading .about-desc {
  margin-bottom: 0;
}

.about-desc {
  color: #a8a8a8;
  line-height: 1.75;
  font-size: 0.92rem;
  max-width: 52ch;
}

/* Prawa kolumna – dół: zdjęcie narzędzi + odznaka */
.about-tools-wrap {
  grid-column: 2;
  grid-row: 2;
  position: relative;
  align-self: stretch;
  margin-top: 8px;
}

.about-tools-img {
  width: 100%;
  min-height: 220px;
  height: clamp(200px, 22vw, 280px);
  background-size: cover;
  background-position: center;
  border-radius: 0 0 120px 0;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.45);
}

.about-badge {
  position: absolute;
  top: -28px;
  right: 24px;
  width: 118px;
  height: 118px;
  z-index: 2;
  color: var(--color-gold);
  pointer-events: none;
}

.about-badge-ring {
  width: 100%;
  height: 100%;
  display: block;
}

.about-badge-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  color: var(--color-gold);
}

@media (prefers-reduced-motion: reduce) {
  .about-slide.active {
    animation: none;
  }
}

/* ===== Prices ===== */
.prices {
  position: relative;
  padding: var(--section-pad-y) 0;
  /* Do sklepu: jedna „przestrzeń” zamiast podwójnego paddingu (spójny rytm z resztą strony) */
  padding-bottom: calc(var(--section-pad-y) * 0.5);
  background: var(--color-dark);
  overflow: hidden;
}

.prices-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 80' fill='none' stroke='%23c9a962' stroke-width='0.8'%3E%3Cpath d='M20 10 L50 70 M35 10 L65 70 M50 10 L80 70'/%3E%3Cline x1='70' y1='15' x2='100' y2='65'/%3E%3Cline x1='75' y1='15' x2='105' y2='65'/%3E%3C/svg%3E");
  background-size: 280px;
  background-position: center;
  background-repeat: no-repeat;
}

.prices .container {
  position: relative;
  z-index: 1;
}

.prices-notice,
.shop-intro,
.services-lead-notice {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-top: 0;
  margin-bottom: 36px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 22px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(196, 163, 90, 0.08) 0%, rgba(196, 163, 90, 0.02) 100%);
  border: 1px solid rgba(196, 163, 90, 0.22);
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.prices-notice strong,
.shop-intro strong,
.services-lead-notice strong {
  color: var(--color-gold);
}

/* „Tablica cennika” – jak w oryginalnym demo: ramka, złoty nagłówek, wiersze naprzemiennie */
.prices-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
  border-radius: 20px;
  border: 1px solid rgba(196, 163, 90, 0.22);
  background: linear-gradient(165deg, #161616 0%, #0e0e0e 50%, #121212 100%);
  box-shadow:
    0 24px 56px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.prices-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9rem;
}

.prices-table--lengths {
  min-width: 560px;
  table-layout: fixed;
}

.prices-table--simple {
  min-width: 0;
  table-layout: fixed;
}

.prices-table--lengths col.prices-col-service {
  width: 38%;
}

.prices-table--lengths col.prices-col-price {
  width: 20.666%;
}

.prices-table--simple col.prices-col-service {
  width: 64%;
}

.prices-table--simple col.prices-col-price {
  width: 36%;
}

.prices-table-note {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-gold);
  margin: 22px 0 0;
  padding: 18px 10px 14px;
  text-align: center;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.prices-table-wrap > .prices-table:first-child + .prices-table-note {
  margin-top: 26px;
  padding-top: 0;
  border-top: none;
}

.prices-amount {
  display: inline-block;
  min-width: 3.75rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  color: var(--color-gold);
  font-weight: 600;
}

.prices-table th,
.prices-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  vertical-align: middle;
}

.prices-table thead tr {
  background: linear-gradient(180deg, rgba(196, 163, 90, 0.14) 0%, rgba(196, 163, 90, 0.05) 100%);
}

.prices-table th {
  color: var(--color-gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.72rem;
  border-bottom: 2px solid rgba(196, 163, 90, 0.45);
  padding-top: 20px;
  padding-bottom: 18px;
}

.prices-table--lengths th:not(:first-child) {
  text-align: right;
  padding-right: 1.15rem;
}

.prices-table--simple th:last-child {
  text-align: right;
  padding-right: 1.25rem;
}

.prices-table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.025);
}

.prices-table tbody tr {
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.prices-table tbody tr:hover {
  background: rgba(196, 163, 90, 0.06);
  box-shadow: inset 3px 0 0 var(--color-gold);
}

.prices-table td:first-child {
  color: var(--color-text);
  font-weight: 500;
  white-space: normal;
  max-width: min(340px, 42vw);
  line-height: 1.45;
}

.prices-table--lengths td:not(:first-child) {
  color: var(--color-gold);
  font-weight: 600;
  white-space: nowrap;
  text-align: right;
  padding-right: 1.15rem;
  font-variant-numeric: tabular-nums;
}

.prices-table--simple td:last-child {
  text-align: right;
  vertical-align: middle;
  padding-right: 1.25rem;
}

.prices-table tbody tr:last-child td {
  border-bottom: none;
}

.prices-legend {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: 20px 22px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid var(--color-border);
}

.prices-legend strong {
  color: var(--color-text);
}

/* Zakładki – pigułki (oryginalny styl demo salonu) */
.prices-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
  padding: 4px 0 8px;
  border-bottom: none;
}

.prices-tab {
  padding: 14px 26px;
  font-family: var(--font-main);
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: 999px;
  color: var(--color-text-muted);
  cursor: pointer;
  transition:
    color var(--transition),
    border-color var(--transition),
    background var(--transition),
    box-shadow var(--transition);
}

.prices-tab:hover {
  color: var(--color-text);
  border-color: rgba(196, 163, 90, 0.35);
  background: rgba(196, 163, 90, 0.05);
}

.prices-tab.active {
  color: var(--color-gold);
  border-color: rgba(196, 163, 90, 0.55);
  background: linear-gradient(180deg, rgba(196, 163, 90, 0.18) 0%, rgba(196, 163, 90, 0.06) 100%);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.prices-panels {
  position: relative;
}

.prices-panel {
  display: none;
}

.prices-panel.active {
  display: block;
  animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.price-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.price-card {
  background: var(--color-dark-soft);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  padding: 28px;
  transition: border-color var(--transition), transform var(--transition);
}

.price-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-2px);
}

.price-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--color-text);
}

.price-card .price {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.price-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Sklep – ten sam układ co galeria „Twoje piękno” (services-gallery) ===== */
.shop {
  position: relative;
  padding: var(--section-pad-y) 0;
  /* Od cennika: połowa paddingu z góry (łącznie z .prices = jeden oddech, nie 2×) */
  padding-top: calc(var(--section-pad-y) * 0.5);
  background: linear-gradient(180deg, #0c0c0c 0%, var(--color-dark) 35%, #0a0a0a 100%);
  overflow: hidden;
}

.shop-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(ellipse 70% 50% at 15% 20%, rgba(196, 163, 90, 0.12) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 80%, rgba(196, 163, 90, 0.08) 0%, transparent 50%);
}

.shop .container {
  position: relative;
  z-index: 1;
}

.shop .section-title {
  margin-bottom: 20px;
}

/* .shop-intro — ta sama „ramka” co przy cenniku (.prices-notice) */

/* Sklep: siatka 2×2 — równe prostokąty (jednakowy obraz 4:3, wyrównany blok tekstu, zewnętrzny prostokąt siatki) */
.shop .services-gallery.shop-gallery--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, auto);
  gap: 16px;
  margin-bottom: 40px;
  align-items: stretch;
}

.shop .services-gallery.shop-gallery--four .services-gallery-item:nth-child(1),
.shop .services-gallery.shop-gallery--four .services-gallery-item:nth-child(2),
.shop .services-gallery.shop-gallery--four .services-gallery-item:nth-child(3),
.shop .services-gallery.shop-gallery--four .services-gallery-item:nth-child(4) {
  grid-column: auto;
  grid-row: auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

.shop .services-gallery.shop-gallery--four .services-gallery-img {
  aspect-ratio: 4 / 3;
  width: 100%;
  min-height: 0;
  flex: 0 0 auto;
  background-color: #141414;
  background-size: cover;
  background-position: center;
}

.shop .services-gallery.shop-gallery--four .services-gallery-label {
  padding: 14px 12px 4px;
}

.shop .services-gallery.shop-gallery--four .services-gallery-desc {
  flex: 1 1 auto;
  min-height: 5em;
  padding: 0 10px 8px;
}

.shop-note {
  margin-top: 0;
  padding: 18px 22px;
  text-align: center;
  font-size: 0.86rem;
  line-height: 1.65;
  color: var(--color-text-muted);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(196, 163, 90, 0.15);
}

.shop-note i {
  margin-right: 8px;
  color: var(--color-gold);
  opacity: 0.85;
}

/* ===== Video Tour – dwa wideo „pill” obok siebie (referencja: kapsuła + ramka + overlay) ===== */
.video-tour {
  position: relative;
  /* Dół sekcji: połowa paddingu — z .team tworzy jedną spójną przerwę (jak cennik→sklep) */
  padding: 80px 0 calc(var(--section-pad-y) * 0.5);
  background: var(--color-dark);
}

.video-tour-wrap {
  max-width: 920px;
  /* Jedna „jednostka” odstępu jak między innymi blokami (--section-pad-y) */
  margin: 0 auto var(--section-pad-y);
  padding: 0 clamp(16px, 4vw, 24px);
}

.video-tour-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 4vw, 40px);
  align-items: start;
  justify-items: center;
}

.video-tour-cell {
  width: 100%;
  max-width: 380px;
}

/* Kapsuła (stadium): mocna ciemna ramka + bardzo zaokrąglone rogi */
.video-tour-window.video-tour-pill {
  border-radius: 9999px;
  overflow: hidden;
  border: 5px solid #141414;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    0 28px 64px rgba(0, 0, 0, 0.55);
  background: #0a0a0a;
}

.video-tour-poster {
  position: relative;
  aspect-ratio: 9 / 16;
  background: #000;
  display: block;
}

.video-tour-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  background: #000;
}

/* Nakładka jak na screenie: play + VIDEO TOUR (znika przy odtwarzaniu – JS) */
.video-tour-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12) 0%, rgba(0, 0, 0, 0.38) 100%);
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-tour-poster.is-playing .video-tour-overlay {
  opacity: 0;
  visibility: hidden;
}

.video-tour-play-ring {
  width: 58px;
  height: 58px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.video-tour-play-ring::after {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 9px 0 9px 15px;
  border-color: transparent transparent transparent #fff;
  margin-left: 4px;
}

.video-tour-overlay-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
}

.video-tour-caption {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-top: 14px;
  line-height: 1.45;
  padding: 0 8px;
}

.video-tour-tagline {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin: 28px 0 0;
  padding: 0 16px;
  line-height: 1.5;
}

.video-tour-content.container {
  position: relative;
  z-index: 1;
}

.video-tour .section-title {
  margin-bottom: 40px;
}

/* Galeria usług – układ jak w oryginale Haires: wysokie boki, dwa kafelki w środku, dolny rząd */
.services-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-template-rows: 220px 220px 200px;
  gap: 14px;
  /* Odstęp do następnej sekcji daje padding .video-tour + .team — bez podwójnego marginesu */
  margin-bottom: 0;
}

.services-gallery-item {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

/* Lewy wysoki | Środek: góra + dół | Prawy wysoki (oryginał), potem dolny rząd: 2 szerokie */
.services-gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.services-gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.services-gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.services-gallery-item:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
.services-gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
.services-gallery-item:nth-child(6) { grid-column: 3; grid-row: 3; }

/* Galeria 7 usług: asymetryczny „bento” jak przy 6 — wysokie boki, środek w 2 rzędach, rząd 3: szeroki + wąski, rząd 4: Konsultacja na całą szerokość (prostokąt zewnętrzny) */
.services-gallery.services-gallery--seven {
  grid-template-rows: 220px 220px 200px minmax(200px, auto);
}

.services-gallery.services-gallery--seven .services-gallery-item:nth-child(1) { grid-column: 1; grid-row: 1 / 3; }
.services-gallery.services-gallery--seven .services-gallery-item:nth-child(2) { grid-column: 2; grid-row: 1; }
.services-gallery.services-gallery--seven .services-gallery-item:nth-child(3) { grid-column: 2; grid-row: 2; }
.services-gallery.services-gallery--seven .services-gallery-item:nth-child(4) { grid-column: 3; grid-row: 1 / 3; }
.services-gallery.services-gallery--seven .services-gallery-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3; }
.services-gallery.services-gallery--seven .services-gallery-item:nth-child(6) { grid-column: 3; grid-row: 3; }
.services-gallery.services-gallery--seven .services-gallery-item:nth-child(7) { grid-column: 1 / 4; grid-row: 4; }

.services-gallery-img {
  display: block;
  flex: 1;
  min-height: 60px;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}

.services-gallery-item:hover .services-gallery-img {
  transform: scale(1.08);
}

.services-gallery-label {
  display: block;
  padding: 16px 0 4px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text);
  text-align: center;
  transition: color var(--transition);
}

.services-gallery-item:hover .services-gallery-label {
  color: var(--color-gold);
}

.services-gallery-desc {
  display: block;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  text-align: center;
  padding: 0 8px 4px;
}

.services-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-link {
  display: block;
  padding: 20px 24px;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  transition: border-color var(--transition), background var(--transition);
}

.service-link:hover {
  border-color: var(--color-gold);
  background: rgba(201, 169, 98, 0.1);
}

.service-link-title {
  display: block;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 6px;
}

.service-link {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* ===== Team ===== */
.team {
  /* Góra: połowa paddingu — z dołem .video-tour = jedna przerwa od galerii (spójnie z resztą strony) */
  padding: var(--section-pad-y) 0;
  padding-top: calc(var(--section-pad-y) * 0.5);
  background: var(--color-dark-soft);
}

.team-main-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  margin-bottom: 16px;
}

.team-intro {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  max-width: 700px;
}

.team .section-label {
  margin-bottom: 12px;
}

/* O mnie – jeden profil (Dorota Miciak) */
.team-about-me .section-label {
  display: block;
  text-align: center;
}

.team-about-me .team-main-title {
  margin-bottom: 12px;
  text-align: center;
  font-weight: 500;
}

.team-about-me .team-intro {
  margin-bottom: 40px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.about-me-block {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 48px;
  align-items: stretch;
  max-width: 1040px;
  margin: 0 auto;
}

.about-me-photo-wrap {
  position: relative;
}

.about-me-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  max-width: 380px;
  border-radius: 12px;
  background-size: cover;
  background-position: center;
  margin: 0 auto;
  border: 4px solid rgba(201, 169, 98, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
}

.about-me-content {
  padding-top: 8px;
}

.about-me-name {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 8px;
}

.about-me-role {
  font-size: 0.95rem;
  color: var(--color-gold);
  font-weight: 500;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}

.about-me-desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-muted);
  margin-bottom: 1.15em;
}

.about-me-signoff {
  margin-top: 0.35em;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-text);
  letter-spacing: 0.02em;
}

.about-me-shop-cta {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
}

.about-me-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--color-text-muted);
  text-decoration: none;
  line-height: 1.5;
  transition: color var(--transition);
}

.about-me-shop-link:hover {
  color: var(--color-text);
}

.about-me-shop-link-strong {
  color: var(--color-gold);
  font-weight: 600;
}

.about-me-shop-link:hover .about-me-shop-link-strong {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .about-me-block {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .about-me-photo-wrap {
    max-width: 340px;
    margin: 0 auto;
  }

  .about-me-photo {
    margin: 0 auto;
  }

  .about-me-content {
    padding-top: 0;
  }
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 32px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  margin-bottom: 20px;
  overflow: hidden;
}

.team-card h3 {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.team-role {
  font-size: 0.85rem;
  color: var(--color-gold);
  display: block;
  margin-bottom: 4px;
}

.team-role small {
  font-weight: 400;
  color: var(--color-text-muted);
}

.team-card p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ===== Testimonials ===== */
.testimonials {
  padding: 100px 0;
  background: var(--color-dark);
}

.testimonials .section-title {
  margin-bottom: 40px;
}

/* Karuzela opinii — desktop: 3 karty; tablet: 2; mobile: 1 (szerokość ustawia JS) */
.testimonials-carousel {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
}

.testimonials-carousel-row {
  display: flex;
  align-items: stretch;
  gap: clamp(10px, 3vw, 20px);
}

.testimonials-carousel-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  border-radius: 10px;
  width: 100%;
}

.testimonials-carousel-track {
  display: flex;
  gap: 12px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonials-carousel-track .testimonial-card {
  flex: 0 0 calc((100% - 24px) / 3);
  min-width: 0;
  box-sizing: border-box;
}

.testimonials-carousel-btn {
  flex-shrink: 0;
  align-self: center;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-gold);
  cursor: pointer;
  font-size: 1rem;
  transition:
    background var(--transition),
    border-color var(--transition),
    color var(--transition),
    transform 0.2s ease;
}

.testimonials-carousel-btn:hover:not(:disabled) {
  background: rgba(196, 163, 90, 0.12);
  border-color: rgba(196, 163, 90, 0.4);
  color: var(--color-gold-light);
}

.testimonials-carousel-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.testimonials-carousel-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testimonials-carousel-counter {
  text-align: center;
  margin-top: 20px;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: var(--color-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .testimonials-carousel-track {
    transition: none;
  }
}

/* Tablet: 2 kolumny — fallback zanim zadziała JS */
@media (max-width: 1024px) {
  .testimonials-carousel-track .testimonial-card {
    flex: 0 0 calc((100% - 12px) / 2);
  }
}

/* Mobile: jedna kolumna + strzałki pod slajdem (nie nachodzą na tekst) */
@media (max-width: 640px) {
  .testimonials-carousel {
    max-width: none;
    padding: 0 2px;
  }

  .testimonials-carousel-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px 12px;
    align-items: center;
  }

  .testimonials-carousel-viewport {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .testimonials-carousel-btn--prev {
    grid-column: 1;
    grid-row: 2;
    justify-self: end;
    margin-right: 6px;
  }

  .testimonials-carousel-btn--next {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
    margin-left: 6px;
  }

  .testimonials-carousel-btn {
    width: 44px;
    height: 44px;
    font-size: 0.9rem;
  }

  .testimonials-carousel-track .testimonial-card {
    flex: 0 0 100%;
  }
}

.testimonial-card {
  background: var(--color-dark-soft);
  border: 1px solid var(--color-border);
  border-radius: 10px;
  padding: 32px;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.35);
  transition: border-color var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(196, 163, 90, 0.25);
}

.testimonial-card p {
  font-size: 1rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .testimonials .testimonial-card {
    padding: 20px 16px;
  }

  .testimonials .testimonial-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    word-break: normal;
    overflow-wrap: anywhere;
  }
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.testimonial-author strong {
  color: var(--color-text);
  font-size: 1rem;
}

.testimonial-author span {
  font-size: 0.85rem;
  color: var(--color-gold);
}

.testimonial-rate {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  opacity: 0.8;
}

/* ===== Features ===== */
.features {
  padding: 80px 0;
  background: var(--color-dark-soft);
  border-top: 1px solid var(--color-border);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.feature-item {
  text-align: center;
  padding: 24px 16px;
}

.feature-item i {
  font-size: 2rem;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ===== Appointment ===== */
.appointment {
  background: var(--color-dark);
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}

.appointment-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.appointment-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.appointment-form-panel {
  padding: 64px 56px 64px 48px;
  background: var(--color-dark);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.appointment-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 36px;
}

.appointment-form {
  margin-bottom: 28px;
}

.appointment-form .form-group {
  margin-bottom: 24px;
}

.appointment-form .form-group:last-of-type {
  margin-bottom: 32px;
}

.appointment-form input,
.appointment-form select {
  width: 100%;
  max-width: 400px;
  padding: 12px 0 10px;
  font-family: var(--font-main);
  font-size: 1rem;
  color: var(--color-text);
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23c9a962' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0 top 50%;
}

.appointment-form input {
  background-image: none;
}

.appointment-form input::placeholder {
  color: var(--color-text-muted);
  opacity: 0.9;
}

.appointment-form input:focus,
.appointment-form select:focus {
  border-bottom-color: rgba(201, 169, 98, 0.6);
}

.appointment-form select {
  cursor: pointer;
  padding-right: 24px;
}

.appointment-form select option {
  background: var(--color-dark-soft);
  color: var(--color-text);
}

.appointment-btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--font-main);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-cream);
  background: var(--color-brown);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
  margin-bottom: 28px;
  text-decoration: none;
  text-align: center;
}

a.appointment-btn:hover {
  background: #5a4639;
  color: var(--color-cream);
}

button.appointment-btn:hover {
  background: #5a4639;
}

.appointment-phone-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}

.appointment-phone {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.appointment-phone:hover {
  color: var(--color-gold-light);
}

.appointment-phone i {
  font-size: 0.9rem;
  opacity: 0.9;
}

/* ===== Footer ===== */
.footer {
  padding: 72px 0 0;
  background: var(--color-dark);
  border-top: 1px solid var(--color-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 48px 32px;
  margin-bottom: 48px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-border);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo-wrap {
  display: inline-block;
  margin-bottom: 20px;
}

.footer-logo-img {
  height: 160px;
  width: auto;
  max-width: 520px;
  object-fit: contain;
  display: block;
  filter: brightness(1.05);
}

.footer-headline {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-text);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
  margin-bottom: 14px;
}

.footer-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.footer-block-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav a:hover {
  color: var(--color-gold);
}

.footer-nav-plus {
  margin-left: 4px;
  opacity: 0.7;
}

.footer-contact-block .footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
  align-items: flex-start;
}

.footer-contact-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.4);
  background: rgba(201, 169, 98, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
  font-size: 0.85rem;
}

.footer-contact-block .footer-contact-item div {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.footer-contact-block .footer-contact-item strong {
  color: var(--color-text);
  font-size: 0.9rem;
}

.footer-contact-block .footer-contact-item a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.footer-contact-block .footer-contact-item a:hover {
  color: var(--color-gold);
}

.footer-social {
  margin-top: 24px;
}

.footer-social-title {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.footer-social-links {
  display: flex;
  gap: 12px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: rgba(201, 169, 98, 0.06);
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-links a:hover {
  background: rgba(201, 169, 98, 0.2);
  color: var(--color-gold-light);
}

.footer-bottom {
  padding: 24px 0 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin: 0;
  opacity: 0.9;
}

.footer-copy-highlight {
  color: var(--color-gold);
  font-weight: 500;
}

.footer-ienka {
  color: var(--color-gold);
  text-decoration: none;
}

.footer-ienka:hover {
  text-decoration: underline;
  color: var(--color-gold-light);
}

/* Przycisk przewiń do góry (jak w oryginale) */
.scroll-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-brown);
  color: var(--color-cream);
  font-size: 1.1rem;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
}

.scroll-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-to-top:hover {
  background: var(--color-gold);
  color: var(--color-dark);
  transform: translateY(-2px);
}

/* Gdy widać baner cookies – ukryj „do góry” (na mobile mógł przechwytywać dotyk nad paskiem) */
html:not(.cookie-consent-dismissed) .scroll-to-top {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

/* ===== Baner zgody na pliki cookies (RODO) ===== */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

html.cookie-consent-dismissed .cookie-consent {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2147483000;
  padding: 22px 16px calc(22px + env(safe-area-inset-bottom, 0px));
  background: #000000;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45);
  transform: translateZ(0);
  -webkit-transform: translateZ(0);
  isolation: isolate;
  pointer-events: auto;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cookie-consent-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 920px;
  text-align: center;
}

.cookie-consent-text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #ffffff;
}

.cookie-consent-privacy-link {
  color: var(--cookie-green);
  text-decoration: underline;
  text-underline-offset: 3px;
  touch-action: manipulation;
  position: relative;
  z-index: 2;
}

.cookie-consent-privacy-link:hover {
  color: #4ade80;
}

.cookie-consent-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 16px;
  position: relative;
  z-index: 2;
}

.cookie-consent-btn {
  min-width: 140px;
  min-height: 44px;
  padding: 12px 28px;
  font-family: var(--font-main);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  color: #fff;
  transition: background 0.2s ease, transform 0.15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.25);
  position: relative;
  z-index: 3;
}

.cookie-consent-btn--accept {
  background: var(--cookie-green);
}

.cookie-consent-btn--accept:hover {
  background: var(--cookie-green-hover);
}

.cookie-consent-btn--accept:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.cookie-consent-btn--reject {
  background: var(--cookie-red);
}

.cookie-consent-btn--reject:hover {
  background: var(--cookie-red-hover);
}

.cookie-consent-btn--reject:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.footer-legal {
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.footer-legal a {
  color: var(--color-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-legal a:hover {
  color: var(--color-gold);
}

/* Strona polityki prywatności (statyczny HTML) */
.legal-page {
  padding: 48px 0 80px;
  margin-top: 112px;
  min-height: 50vh;
}

.legal-page-inner {
  max-width: 760px;
}

.legal-page-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  line-height: 1.25;
}

.legal-page-updated {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 36px;
}

.legal-section {
  margin-bottom: 28px;
}

.legal-section h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 12px;
}

.legal-section p {
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.legal-section a {
  color: var(--color-gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-back {
  margin-top: 40px;
}

.legal-page-note {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-style: italic;
  margin-top: 8px;
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 0 0 8px;
  -webkit-overflow-scrolling: touch;
}

.legal-hours-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
  font-size: 0.95rem;
}

.legal-hours-table thead th {
  color: var(--color-gold);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.legal-hours-table th,
.legal-hours-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--color-border);
  text-align: left;
  vertical-align: top;
}

.legal-hours-table tbody th {
  font-weight: 600;
  color: var(--color-text);
  width: 48%;
}

.legal-hours-table tbody td {
  color: var(--color-text-muted);
}

.legal-hours-table tbody tr:last-child th,
.legal-hours-table tbody tr:last-child td {
  border-bottom: none;
}

.legal-cta-wrap {
  margin: 20px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.legal-section--cta .legal-cta-wrap {
  margin-top: 12px;
}

.legal-rule {
  border: none;
  border-top: 1px solid var(--color-border);
  margin: 32px 0;
}

.legal-warning {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(196, 163, 90, 0.35);
  background: rgba(196, 163, 90, 0.08);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.legal-warning strong {
  color: var(--color-text);
}

/* Podstrona usługi (np. Fryzura) — pełny header jak na stronie głównej */
.service-subpage {
  padding: 32px 0 80px;
  margin-top: 112px;
  min-height: 60vh;
  background: linear-gradient(180deg, #0c0c0c 0%, var(--color-dark) 40%, #0a0a0a 100%);
}

/* Duży baner ze zdjęciem (jak sklep) — bez dodatkowego paddingu u góry */
.service-subpage--hero {
  padding-top: 0;
}

.service-subpage-inner {
  max-width: 1100px;
}

.service-breadcrumb {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.5;
}

.service-breadcrumb a {
  color: var(--color-gold);
  text-decoration: none;
}

.service-breadcrumb a:hover {
  text-decoration: underline;
}

.service-breadcrumb-sep {
  margin: 0 0.35em;
  opacity: 0.6;
}

.service-subpage-label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 10px;
}

.service-subpage-title {
  font-size: clamp(1.6rem, 4vw, 2.15rem);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.service-subpage-lead {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  line-height: 1.75;
  max-width: 65ch;
  margin-bottom: 8px;
}

.service-subpage-lead--narrow {
  margin-top: 12px;
  font-size: 0.95rem;
}

.service-subpage-section-title {
  font-size: clamp(1.2rem, 3vw, 1.35rem);
  font-weight: 700;
  color: var(--color-text);
  margin-top: 32px;
  margin-bottom: 0;
  line-height: 1.25;
}

/* Przycisk „Wszystkie usługi” — widoczny na ciemnym tle (obrys + złoto) */
.service-subpage-cta .btn-hero.service-subpage-btn-outline {
  background: rgba(196, 163, 90, 0.18) !important;
  border: 2px solid var(--color-gold) !important;
  color: var(--color-gold) !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}

.service-subpage-cta .btn-hero.service-subpage-btn-outline:hover {
  color: var(--color-dark) !important;
  background: linear-gradient(165deg, var(--color-gold-light) 0%, var(--color-gold) 45%, #a88a3d 100%) !important;
  border-color: transparent !important;
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.service-subpage-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin: 28px 0 8px;
  padding: 16px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.service-subpage-links-title {
  width: 100%;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 4px;
}

.service-subpage-links a {
  font-size: 0.88rem;
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
}

.service-subpage-links a:hover {
  text-decoration: underline;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
  margin-top: 36px;
}

.service-gallery figure {
  margin: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #141414;
  border: 1px solid var(--color-border);
}

.service-gallery-item-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.service-gallery-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.service-gallery figure:hover .service-gallery-item-img img {
  transform: scale(1.06);
}

.service-gallery figcaption {
  padding: 12px 14px 16px;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.45;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.service-gallery-caption-text {
  display: block;
}

.service-gallery-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: none;
  color: var(--color-dark);
  background: linear-gradient(165deg, var(--color-gold-light) 0%, var(--color-gold) 45%, #a88a3d 100%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(196, 163, 90, 0.35);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.service-gallery-book:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  color: var(--color-dark);
}

.service-subpage-cta {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(196, 163, 90, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.service-subpage-cta p {
  width: 100%;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.95rem;
  margin: 0 0 8px;
}

@media (max-width: 640px) {
  .service-gallery {
    grid-template-columns: 1fr;
  }

  .service-subpage-links {
    flex-direction: column;
    gap: 8px;
  }
}

/* Strona „Strzyżenie” — damskie / męskie */
.service-split-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 40px;
}

.service-split-nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--color-dark);
  background: linear-gradient(165deg, var(--color-gold-light) 0%, var(--color-gold) 45%, #a88a3d 100%);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 24px rgba(196, 163, 90, 0.3);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.service-split-nav-link:hover {
  filter: brightness(1.06);
  transform: translateY(-2px);
  color: var(--color-dark);
}

.service-split-section {
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(196, 163, 90, 0.2);
  scroll-margin-top: 120px;
}

.service-split-section:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.service-split-h1 {
  font-size: clamp(1.45rem, 3.8vw, 1.95rem);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin: 0 0 28px;
}

.service-split-h2 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-gold);
  margin: 28px 0 12px;
  line-height: 1.3;
}

.service-content-list {
  margin: 0 0 8px;
  padding-left: 1.35em;
  color: var(--color-text-muted);
  line-height: 1.75;
}

.service-content-list li {
  margin-bottom: 8px;
}

.service-content-list strong {
  color: var(--color-text);
  font-weight: 600;
}

.service-faq-list li {
  margin-bottom: 10px;
}

.service-split-cta-intro {
  color: var(--color-text-muted);
  margin: 0 0 16px;
  font-size: 0.95rem;
}

.service-split-inline-cta {
  margin-bottom: 8px;
}

.service-seo-keywords {
  font-size: 0.78rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px dashed rgba(196, 163, 90, 0.25);
}

.service-seo-keywords strong {
  color: var(--color-gold);
  font-weight: 600;
}

.service-gallery--compact {
  margin-top: 0;
  margin-bottom: 28px;
}

/* Strona „Sklep w budowie” */
.shop-wip-main {
  padding-top: 0;
  padding-bottom: 64px;
}

.shop-wip-hero {
  position: relative;
  width: 100%;
  margin: 0 0 8px;
}

.shop-wip-hero-pic {
  position: relative;
  width: 100%;
  min-height: clamp(260px, 48vh, 480px);
  max-height: 560px;
  overflow: hidden;
  border-radius: 0 0 20px 20px;
}

.shop-wip-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.shop-wip-hero-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 8, 8, 0.15) 0%,
    rgba(8, 8, 8, 0.45) 45%,
    rgba(12, 12, 12, 0.92) 100%
  );
}

.shop-wip-hero-inner {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 28px 20px 36px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.shop-wip-hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin: 0 0 10px;
  font-weight: 600;
}

.shop-wip-hero-title {
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.15;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.55);
}

.shop-wip-hero-tagline {
  font-size: clamp(0.95rem, 2.4vw, 1.08rem);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.55;
  margin: 0;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.45);
}

.shop-wip-breadcrumb {
  margin-top: 20px;
}

.shop-wip-inner {
  max-width: 640px;
}

.shop-wip-card {
  text-align: center;
  padding: 28px 20px 40px;
  border-radius: 16px;
  border: 1px solid rgba(196, 163, 90, 0.25);
  background: rgba(0, 0, 0, 0.35);
}

.shop-wip-card-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 12px;
  font-weight: 600;
}

.shop-wip-icon {
  font-size: 2.75rem;
  color: var(--color-gold);
  margin-bottom: 16px;
  opacity: 0.95;
}

.shop-wip-title {
  font-size: clamp(1.5rem, 4vw, 1.85rem);
  font-weight: 700;
  color: var(--color-text);
  margin: 0 0 16px;
  line-height: 1.2;
}

.shop-wip-lead {
  font-size: 1.05rem;
  color: var(--color-text);
  line-height: 1.65;
  margin: 0 0 16px;
}

.shop-wip-text {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin: 0 0 20px;
}

.shop-wip-contact {
  margin: 0 0 28px;
}

.shop-wip-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gold);
  text-decoration: none;
}

.shop-wip-phone:hover {
  text-decoration: underline;
}

.shop-wip-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 28px;
}

.shop-wip-back {
  margin: 0;
  font-size: 0.9rem;
}

.shop-wip-link-home {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 500;
}

.shop-wip-link-home:hover {
  text-decoration: underline;
}

@media (max-width: 480px) {
  .shop-wip-hero-pic {
    min-height: clamp(220px, 38vh, 380px);
    border-radius: 0 0 16px 16px;
  }

  .shop-wip-hero-inner {
    padding: 20px 16px 28px;
  }

  .shop-wip-actions {
    flex-direction: column;
  }

  .shop-wip-actions .btn-hero,
  .shop-wip-actions .btn-appointment {
    width: 100%;
    max-width: 320px;
  }
}

.legal-footer-min {
  padding: 32px 0;
  border-top: 1px solid var(--color-border);
}

.legal-footer-min .footer-copyright {
  text-align: center;
  margin: 0;
  font-size: 0.85rem;
}

/* ===== Responsive ===== */
/* Tablet landscape i mniejsze */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .top-bar-left {
    gap: 16px;
  }

  .top-bar-left a {
    font-size: 0.65rem;
  }

  .top-bar-right {
    gap: 16px;
  }

  .top-bar-right a {
    font-size: 0.65rem;
  }

  .nav-main {
    display: none;
  }

  .header-phone {
    display: none;
  }

  .menu-toggle {
    display: block;
    min-width: 44px;
    min-height: 44px;
    padding: 10px;
  }

  .logo-img {
    height: 48px;
    max-width: 200px;
  }

  .hero {
    margin-top: 112px;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto min(50vh, 400px);
  }

  .hero-content {
    padding: 32px 6% 28px;
    max-width: none;
  }

  .hero-logo-img {
    max-height: 110px;
    max-width: min(320px, 100%);
  }

  .hero-label-cursive {
    font-size: 1.5rem;
  }

  .hero-title-block {
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    margin-bottom: 24px;
  }

  .hero-title-pnp {
    font-size: clamp(2rem, 5vw, 3.25rem);
    margin-bottom: 20px;
  }

  .hero-image {
    min-height: 320px;
    background-position: center;
  }

  .hero-image img {
    min-height: 320px;
  }

  .hero-numbers {
    left: 20px;
    bottom: 24px;
    gap: 14px;
  }

  .section-title {
    font-size: clamp(1.35rem, 3vw, 1.75rem);
  }

  .about {
    padding-top: 80px;
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
    border-top-width: 2px;
  }

  .about-wrap {
    display: flex;
    flex-direction: column;
    gap: clamp(28px, 6vw, 40px);
    min-height: auto;
    padding: 0 clamp(16px, 4vw, 20px);
  }

  .about-right-heading {
    order: 1;
    padding-top: 0;
    text-align: center;
  }

  .about-right-heading .about-eyebrow.section-label,
  .about-right-heading .about-heading-xl,
  .about-right-heading .about-desc {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .about-eyebrow.section-label {
    font-size: 0.74rem;
    letter-spacing: 0.16em;
    line-height: 1.5;
    padding: 0 8px;
  }

  .about-heading-xl {
    max-width: min(40ch, 100%);
    line-height: 1.28;
    letter-spacing: 0.035em;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .about-desc {
    font-size: 1rem;
    line-height: 1.72;
    max-width: 36rem;
    padding: 0 4px;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .about-col-left {
    order: 2;
    width: 100%;
    gap: 24px;
  }

  .about-tools-wrap {
    order: 3;
    width: 100%;
    margin-top: 0;
  }

  .about-left-tagline {
    max-width: min(36rem, 100%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-size: clamp(0.8rem, 2.6vw, 0.92rem);
    letter-spacing: 0.1em;
    line-height: 1.75;
    padding: 0 8px;
    hyphens: auto;
    overflow-wrap: break-word;
  }

  .about-slider.about-image-left {
    max-height: min(62vh, 560px);
    margin: 0 auto;
    max-width: min(100%, 440px);
    width: 100%;
  }

  .about-tools-img {
    min-height: 190px;
    height: clamp(180px, 48vw, 260px);
    border-radius: 0 0 88px 0;
  }

  .about-badge {
    right: clamp(8px, 3vw, 16px);
    width: 96px;
    height: 96px;
    top: -20px;
  }

  .video-tour-wrap {
    padding: 0 20px;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .appointment-layout {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .appointment-image {
    min-height: 260px;
  }

  .appointment-form-panel {
    padding: 48px 24px 56px;
  }

  .appointment-form input,
  .appointment-form select {
    max-width: none;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-brand {
    max-width: none;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
}

/* Tablet portrait i mniejsze */
@media (max-width: 768px) {
  .container {
    padding: 0 18px;
  }

  .header-inner {
    min-height: 64px;
  }

  .logo-img {
    height: 42px;
    max-width: 160px;
  }

  .header-actions .btn-appointment {
    display: none;
  }

  .hero-layout {
    grid-template-rows: auto min(45vh, 360px);
  }

  .hero-content {
    padding: 28px 18px 24px;
  }

  .hero-logo-img {
    max-height: 90px;
    max-width: min(280px, 100%);
  }

  .hero-title-block {
    font-size: clamp(1.5rem, 4.5vw, 2.25rem);
    margin-bottom: 20px;
  }

  .about,
  .prices,
  .shop,
  .video-tour,
  .team,
  .testimonials,
  .features {
    padding-top: 56px;
    padding-bottom: 56px;
  }

  .about {
    padding-top: 80px;
    padding-bottom: calc(80px + env(safe-area-inset-bottom, 0px));
  }

  .prices {
    padding-bottom: 28px;
  }

  .shop {
    padding-top: 28px;
  }

  /* Wideo/galeria → Poznaj mnie: ta sama połówka co cennik→sklep */
  .team {
    padding-top: 28px;
  }

  /* O salonie: na węższych ekranach tekst do lewej – wygodniejsze czytanie */
  .about-right-heading {
    text-align: left;
  }

  .about-right-heading .about-eyebrow.section-label,
  .about-right-heading .about-heading-xl,
  .about-right-heading .about-desc {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
  }

  .about-heading-xl {
    max-width: none;
    font-size: clamp(1.2rem, 4.2vw, 1.65rem);
    line-height: 1.3;
  }

  .about-desc {
    font-size: 1.05rem;
    line-height: 1.78;
    max-width: none;
  }

  .about-left-tagline {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
    max-width: none;
    font-size: clamp(0.82rem, 2.8vw, 0.9rem);
    letter-spacing: 0.08em;
    line-height: 1.8;
  }

  .section-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
  }

  .price-cards {
    grid-template-columns: 1fr;
  }

  .prices-notice,
  .shop-intro,
  .services-lead-notice {
    text-align: left;
    padding: 18px 20px;
  }

  .prices-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
    margin-bottom: 28px;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .prices-tab {
    flex-shrink: 0;
    padding: 12px 18px;
    font-size: 0.72rem;
  }

  .prices-table td:first-child {
    max-width: none;
  }

  .video-tour {
    padding: 56px 0 28px;
  }

  .video-tour-wrap {
    margin-bottom: 56px;
    padding: 0 18px;
  }

  .video-tour-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .video-tour-cell {
    max-width: min(380px, 100%);
    margin: 0 auto;
  }

  .video-tour-tagline {
    margin-top: 20px;
    font-size: 0.62rem;
    letter-spacing: 0.18em;
  }

  .services-gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: unset;
    gap: 12px;
    margin-bottom: 0;
  }

  .services-gallery-item:nth-child(1),
  .services-gallery-item:nth-child(2),
  .services-gallery-item:nth-child(3),
  .services-gallery-item:nth-child(4),
  .services-gallery-item:nth-child(5),
  .services-gallery-item:nth-child(6),
  .services-gallery-item:nth-child(7) {
    grid-column: auto;
    grid-row: auto;
  }

  .services-gallery .services-gallery-img {
    min-height: 120px;
  }

  .services-links {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .testimonials {
    padding: 56px 0;
  }

  .testimonials-carousel-btn {
    width: 42px;
    height: 42px;
    font-size: 0.9rem;
  }

  .features {
    padding: 56px 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .feature-item {
    padding: 20px 12px;
  }

  .appointment-form-panel {
    padding: 40px 20px 48px;
  }

  .appointment-title {
    font-size: 1.35rem;
    margin-bottom: 28px;
  }

  .footer {
    padding: 56px 0 0;
  }

  .footer-grid {
    margin-bottom: 40px;
    padding-bottom: 32px;
  }

  .footer-headline {
    font-size: 1.2rem;
  }

  .footer-logo-img {
    height: 120px;
    max-width: 380px;
  }

  .scroll-to-top {
    width: 44px;
    height: 44px;
    bottom: calc(24px + env(safe-area-inset-bottom, 0px));
    right: 20px;
    font-size: 1rem;
  }
}

/* Po regule tablet (768px) — większy dolny odstęp na wąskich ekranach (FAB „do góry”) */
@media (max-width: 640px) {
  .testimonials {
    padding-bottom: 72px;
  }
}

/* Telefon */
@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .top-bar-left {
    gap: 8px;
  }

  .top-bar-left a {
    font-size: 0.55rem;
  }

  /* Na bardzo wąskim ekranie skróć pasek – ukryj placeholdery (Płatności, Dostawa); zostaw Regulamin i Godziny pracy */
  .top-bar-left a:nth-child(1),
  .top-bar-left a:nth-child(2) {
    display: none;
  }

  .top-bar-right {
    gap: 12px;
  }

  .top-bar-right a {
    font-size: 0.6rem;
  }

  .header-inner {
    min-height: 60px;
  }

  .logo-img {
    height: 38px;
    max-width: 140px;
  }

  .hero-layout {
    grid-template-rows: auto min(40vh, 280px);
  }

  .hero-content {
    padding: 24px 16px 20px;
  }

  .hero-logo-wrap {
    margin-bottom: 16px;
  }

  .hero-logo-img {
    max-height: 72px;
    max-width: min(220px, 100%);
  }

  .hero-label-cursive {
    font-size: 1.35rem;
  }

  .hero-title-block {
    font-size: clamp(1.25rem, 5vw, 1.75rem);
    margin-bottom: 16px;
  }

  .hero-title-pnp {
    font-size: clamp(1.65rem, 6vw, 2.35rem);
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
  }

  .hero-image,
  .hero-image img {
    min-height: 240px;
  }

  .hero-numbers {
    left: 16px;
    bottom: 20px;
    gap: 10px;
    flex-wrap: wrap;
    max-width: calc(100% - 32px);
  }

  .hero-num {
    font-size: 0.8rem;
    width: 32px;
    height: 32px;
  }

  .btn-hero {
    min-width: auto;
    width: 100%;
    max-width: 320px;
    padding: 16px 28px;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }

  .about,
  .prices,
  .shop,
  .video-tour,
  .team,
  .testimonials,
  .features {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .about {
    padding-top: 72px;
    padding-bottom: calc(88px + env(safe-area-inset-bottom, 0px));
  }

  .prices {
    padding-bottom: 20px;
  }

  .shop {
    padding-top: 20px;
  }

  .team {
    padding-top: 20px;
  }

  .about-wrap {
    padding: 0 clamp(14px, 4vw, 18px);
    gap: 26px;
  }

  .about-heading-xl {
    font-size: clamp(1.05rem, 5.5vw, 1.35rem);
    line-height: 1.32;
    margin-bottom: 16px;
  }

  .about-eyebrow.section-label {
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
  }

  .about-desc {
    font-size: 1.02rem;
    line-height: 1.82;
  }

  .about-left-tagline {
    font-size: clamp(0.78rem, 3.2vw, 0.86rem);
    line-height: 1.85;
    letter-spacing: 0.07em;
  }

  .about-slider.about-image-left {
    max-height: min(56vh, 480px);
    border-radius: 4px;
  }

  .about-tools-img {
    border-radius: 0 0 56px 0;
    min-height: 170px;
    height: clamp(165px, 52vw, 220px);
  }

  .about-badge {
    width: 80px;
    height: 80px;
    top: -14px;
    right: 6px;
  }

  .about-badge-icon {
    font-size: 1.2rem;
  }

  .section-label {
    font-size: 0.7rem;
  }

  .section-title {
    font-size: 1.25rem;
    margin-bottom: 20px;
  }

  .prices-notice,
  .shop-intro,
  .services-lead-notice {
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding: 16px 18px;
  }

  .prices-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    gap: 6px;
    margin-bottom: 22px;
    padding-bottom: 8px;
  }

  .prices-tab {
    padding: 10px 14px;
    font-size: 0.68rem;
    letter-spacing: 0.05em;
  }

  .prices-table-wrap {
    border-radius: 14px;
  }

  .prices-table th,
  .prices-table td {
    padding: 12px 10px;
    font-size: 0.78rem;
  }

  .prices-table th {
    font-size: 0.62rem;
    letter-spacing: 0.05em;
  }

  .prices-legend {
    font-size: 0.72rem;
    padding: 16px 14px;
    text-align: left;
  }

  .video-tour {
    padding: 40px 0 20px;
  }

  .video-tour-wrap {
    padding: 0 16px;
    margin-bottom: 40px;
  }

  .services-gallery {
    grid-template-columns: 1fr;
    grid-template-rows: unset;
    gap: 12px;
    margin-bottom: 0;
  }

  .services-gallery-item:nth-child(n) {
    grid-column: auto;
    grid-row: auto;
  }

  .services-gallery .services-gallery-img {
    min-height: 180px;
  }

  /* Sklep: jedna kolumna jak reszta galerii (nadpisuje wyższą specyficzność .shop … shop-gallery--four) */
  .shop .services-gallery.shop-gallery--four {
    grid-template-columns: 1fr;
  }

  .services-links {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .footer {
    padding: 40px 0 0;
  }

  .footer-grid {
    gap: 32px;
    margin-bottom: 32px;
    padding-bottom: 28px;
  }

  .footer-headline {
    font-size: 1.1rem;
  }

  .footer-logo-img {
    height: 96px;
    max-width: 300px;
  }

  .footer-block-title {
    font-size: 0.75rem;
  }

  .footer-copyright {
    font-size: 0.8rem;
  }

  .scroll-to-top {
    width: 42px;
    height: 42px;
    bottom: calc(20px + env(safe-area-inset-bottom, 0px));
    right: 16px;
    font-size: 0.95rem;
  }
}

/* Bardzo małe ekrany */
@media (max-width: 360px) {
  .container {
    padding: 0 12px;
  }

  .hero-logo-img {
    max-height: 60px;
    max-width: min(200px, 100%);
  }

  .hero-title-block {
    font-size: 1.15rem;
  }

  .prices-tab {
    padding: 8px 10px;
    font-size: 0.7rem;
  }

  .footer-logo-img {
    height: 84px;
    max-width: 280px;
  }

  .about-wrap {
    padding: 0 12px;
    gap: 22px;
  }

  .about-heading-xl {
    font-size: 1rem;
    letter-spacing: 0.03em;
  }

  .about-desc {
    font-size: 0.98rem;
  }

  .about-tools-img {
    border-radius: 0 0 44px 0;
  }

  .about-badge {
    width: 72px;
    height: 72px;
    top: -10px;
  }
}

/* Mobile menu (shown via JS) */
.nav-main.open {
  display: flex;
  position: fixed;
  top: 112px;
  left: 0;
  right: 0;
  bottom: 0;
  flex-direction: column;
  justify-content: flex-start;
  padding: 40px 20px;
  background: var(--color-dark);
  gap: 24px;
  overflow-y: auto;
  z-index: 1000;
  -webkit-overflow-scrolling: touch;
}

.nav-main.open a {
  font-size: 1.1rem;
  padding: 12px 0;
  min-height: 44px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .nav-main.open {
    top: 104px;
  }
}

@media (max-width: 480px) {
  .nav-main.open {
    top: 100px;
    padding: 24px 16px;
  }
}
