/* ==========================================================================
   LILLY BEAUTY SALÓN - Main Design System & Stylesheet
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. CSS Custom Properties & Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Color Palette */
  --bg-primary: #fffcfb;
  --bg-secondary: #fae1dd;
  --bg-card: #ffffff;
  
  --color-pink-soft: #ffc8dd;
  --color-pink-peach: #fcd5ce;
  --color-pink-blush: #fec5bb;
  --color-nude: #ddbea9;
  --color-accent: #cb997e;
  --color-dark: #6d4c41;
  --color-dark-hover: #543930;
  
  --color-text-main: #3a2e2b;
  --color-text-muted: #6d4c41;
  --color-text-light: #8c7167;
  
  --color-border: #f0d5cc;
  --color-shadow: rgba(109, 76, 65, 0.08);
  --color-shadow-hover: rgba(109, 76, 65, 0.15);

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout Spacing */
  --container-max: 1240px;
  --header-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --transition-smooth: all 0.35s cubic-bezier(0.25, 1, 0.5, 1);
}

/* --------------------------------------------------------------------------
   2. Reset & Core Typography
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

[id] {
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-dark);
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.75em;
  text-wrap: pretty;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p {
  margin-bottom: 1.25rem;
  color: var(--color-text-muted);
  font-weight: 300;
  text-wrap: pretty;
}

a {
  color: var(--color-accent);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover, a:focus-visible {
  color: var(--color-dark);
}

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

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: var(--container-max);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section--alt {
  background-color: var(--bg-secondary);
}

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

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  max-width: 680px;
  margin: 0 auto 3rem auto;
  font-size: 1.05rem;
  color: var(--color-text-light);
}

.page-header-section {
  padding-top: calc(var(--header-height) + 2.25rem) !important;
  padding-bottom: 2.75rem !important;
}

.page-header-section .section-subtitle {
  margin-bottom: 1.25rem !important;
}

/* --------------------------------------------------------------------------
   3. Buttons & Interactive Elements
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-radius: 50px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.btn-primary {
  background-color: var(--color-dark);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(109, 76, 65, 0.2);
}

.btn-primary:hover, .btn-primary:focus-visible {
  background-color: var(--color-dark-hover);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(109, 76, 65, 0.3);
}

.btn-secondary {
  background-color: var(--color-pink-peach);
  color: var(--color-dark);
}

.btn-secondary:hover, .btn-secondary:focus-visible {
  background-color: var(--color-pink-soft);
  color: var(--color-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border-color: var(--color-dark);
  color: var(--color-dark);
  background-color: transparent;
}

.btn-outline:hover, .btn-outline:focus-visible {
  background-color: var(--color-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* --------------------------------------------------------------------------
   4. Header & Navigation
   -------------------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  z-index: 1000;
  transition: var(--transition-smooth);
  background-color: #ffffff;
  box-shadow: 0 2px 15px var(--color-shadow);
}

.site-header.header--scrolled {
  background-color: #ffffff;
  box-shadow: 0 4px 20px var(--color-shadow);
  height: 70px;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo img {
  height: 48px;
  width: auto;
}

.brand-title {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-dark);
  line-height: 1;
}

.brand-subtitle {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 3px;
}

/* Desktop Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.active {
  font-weight: 600;
  color: var(--color-dark);
}

.header-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.social-icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--color-pink-peach);
  color: var(--color-dark);
  transition: var(--transition-smooth);
}

.social-icon-link:hover {
  background-color: var(--color-dark);
  color: #ffffff;
  transform: translateY(-2px);
}

/* Mobile Toggle */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1100;
}

.mobile-nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background-color: var(--color-dark);
  margin: 6px 0;
  transition: var(--transition-smooth);
}

.mobile-nav-toggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.mobile-nav-toggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Fullscreen Overlay */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(255, 252, 251, 0.98);
  z-index: 1050;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
}

.mobile-menu-overlay.is-active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}

.mobile-nav-link {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--color-dark);
}

.mobile-nav-link:hover, .mobile-nav-link.active {
  color: var(--color-accent);
}

/* --------------------------------------------------------------------------
   5. Hero Section
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: auto;
  display: flex;
  align-items: center;
  padding-top: calc(var(--header-height) + 2.5rem);
  padding-bottom: 3.5rem;
  background-color: var(--bg-primary);
}

/* Hero with background image variant */
.hero--with-bg {
  min-height: 85vh;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after,
.hero--with-bg::before,
.hero--with-bg::after,
.hero-bg-img-container::before,
.hero-bg-img-container::after {
  display: none !important;
  content: none !important;
  background: none !important;
}

.hero--with-bg .hero-container {
  position: relative;
  z-index: 2;
  align-items: center;
  display: grid;
  grid-template-columns: 1fr;
}

.hero--with-bg .hero-left {
  max-width: 680px;
}

.hero-overlay {
  display: none !important;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-left {
  text-align: left;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.hero-title {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  color: var(--color-dark);
  margin-bottom: 1.25rem;
  line-height: 1.15;
  max-width: 560px;
}

.hero-text {
  font-size: 1.02rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 640px;
  text-align: left;
}

.hero-text p {
  margin-bottom: 1.15rem;
  line-height: 1.8;
  color: var(--color-text-muted);
}

.hero-text p:last-child {
  margin-bottom: 0;
}

.hero-text-highlight {
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--color-dark);
  text-transform: uppercase;
  font-size: 0.92rem;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 769px) {
  .hero-left {
    max-width: 740px;
  }
  .hero-cta-group {
    flex-wrap: nowrap !important;
    gap: 0.9rem;
  }
  .hero-cta-group .btn {
    padding: 0.95rem 1.6rem;
    font-size: 0.96rem;
    white-space: nowrap;
    min-height: 48px;
  }
}

.hero-bg-img-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 54%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  pointer-events: none;
  z-index: 1;
}

.hero-bg-img {
  height: 90%;
  max-height: 90%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  transform: translateY(-5px);
  filter: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

/* --------------------------------------------------------------------------
   Hero Enhancements: Butterfly Dividers & NOVINKA Announcement Card
   -------------------------------------------------------------------------- */
.butterfly-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem 0;
  width: 100%;
  max-width: 640px;
}

.butterfly-divider .divider-line {
  height: 1px;
  flex-grow: 1;
  background: linear-gradient(90deg, transparent, var(--color-accent), transparent);
  opacity: 0.6;
}

.butterfly-divider .divider-icon {
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.novinka-card {
  display: flex;
  align-items: center;
  border: 2px solid #b86f58;
  border-radius: var(--radius-md);
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 15px rgba(184, 111, 88, 0.1);
  margin: 1.25rem 0;
  max-width: 640px;
  transition: var(--transition-smooth);
}

.novinka-card:hover {
  box-shadow: 0 6px 20px rgba(184, 111, 88, 0.2);
  transform: translateY(-2px);
}

.novinka-badge {
  background-color: #b86f58;
  color: #ffffff;
  padding: 0.9rem 1.35rem;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  white-space: nowrap;
  align-self: stretch;
}

.novinka-badge .four-point-star {
  width: 22px;
  height: 22px;
  color: #ffffff;
  flex-shrink: 0;
}

.novinka-badge span {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  line-height: 1;
}

.novinka-body {
  padding: 0.9rem 1.15rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-grow: 1;
}

.novinka-text {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.novinka-title {
  font-family: var(--font-heading);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 0;
  line-height: 1.3;
}

.novinka-subtitle {
  font-size: 0.86rem;
  color: var(--color-text-light);
  margin-bottom: 0;
  line-height: 1.4;
}

.novinka-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(184, 111, 88, 0.1);
  color: #b86f58;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

/* --------------------------------------------------------------------------
   6. Benefit Cards ("Proč si vybrat Lilly Beauty")
   -------------------------------------------------------------------------- */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.benefit-card {
  background-color: var(--bg-card);
  padding: 2.5rem 1.75rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 15px var(--color-shadow);
  transition: var(--transition-smooth);
  text-align: center;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px var(--color-shadow-hover);
  border-color: var(--color-nude);
}

.benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem auto;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-dark);
  font-size: 1.5rem;
}

.benefit-title {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.benefit-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* --------------------------------------------------------------------------
   7. Featured Services ("Nejoblíbenější služby")
   -------------------------------------------------------------------------- */
.featured-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  justify-content: center;
  gap: 2.25rem;
  max-width: 1180px;
  margin: 0 auto;
  align-items: stretch;
}

.featured-grid--2x2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 1100px;
}

@media (max-width: 768px) {
  .featured-grid--2x2 {
    grid-template-columns: 1fr;
  }
}

.service-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-top: 3px solid var(--color-accent);
  box-shadow: 0 4px 15px var(--color-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px var(--color-shadow-hover);
  border-top-color: var(--color-dark);
}

.service-card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: var(--bg-secondary);
  transform: scale(1.08);
  transition: var(--transition-smooth);
}

.service-card-img--kobido {
  object-position: center 30%;
  transform: scale(1.02);
}

.service-card:hover .service-card-img--kobido {
  transform: scale(1.07);
}

.service-card:hover .service-card-img {
  transform: scale(1.13);
}

.service-card-body {
  padding: 2.5rem 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  padding-bottom: 0.85rem;
  line-height: 1.3;
  position: relative;
}

.service-card-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--color-border);
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-title::after {
  width: 70px;
  background-color: var(--color-accent);
}

.service-card-text {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin-top: 0.5rem;
  margin-bottom: 2rem;
  line-height: 1.75;
  flex-grow: 1;
}

.service-card-body .btn {
  margin-top: auto;
  align-self: flex-start;
}



/* --------------------------------------------------------------------------
   9. Pricing Cards & Sections (Ceník)
   -------------------------------------------------------------------------- */
.pricing-section-wrapper {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--header-height) + 2rem);
}

.pricing-table-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-shadow);
  padding: 2rem;
  margin-top: 1.5rem;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.25rem 0;
  border-bottom: 1px dashed var(--color-border);
}

.pricing-item:last-child {
  border-bottom: none;
}

.pricing-info {
  max-width: 70%;
}

.pricing-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-dark);
  font-weight: 600;
}

.pricing-desc {
  font-size: 0.88rem;
  color: var(--color-text-light);
  margin-top: 0.25rem;
  margin-bottom: 0;
}

.pricing-duration {
  font-size: 0.82rem;
  color: var(--color-accent);
  margin-left: 0.5rem;
}

.pricing-val {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-dark);
  white-space: nowrap;
}

.voucher-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-shadow);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

.loyalty-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-shadow);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

/* --------------------------------------------------------------------------
   10. Gallery & Certificate Grid (LightGallery)
   -------------------------------------------------------------------------- */
.gallery-category-row {
  display: grid;
  grid-template-columns: 1fr 2.4fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4.5rem;
}

.gallery-category-row:last-child {
  margin-bottom: 0;
}

.gallery-category-row--label-right {
  grid-template-columns: 2.4fr 1fr;
}

.gallery-category-label {
  background-color: var(--bg-card);
  padding: 3rem 2.25rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-shadow);
}

.gallery-category-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  min-height: 220px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(109, 76, 65, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: var(--transition-smooth);
  color: #ffffff;
  font-size: 2rem;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* LightGallery Captions: Single title line ONLY, strictly no description/subtitles */
.lg-sub-html p,
.lg-sub-html span,
.lg-sub-html .lg-sub-html-desc {
  display: none !important;
}

.lg-sub-html {
  padding: 12px 20px !important;
}

.lg-sub-html h4 {
  font-size: 1.15rem !important;
  color: #ffffff !important;
  margin: 0 !important;
  font-family: var(--font-heading) !important;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

/* 2+1 layout for certificate qualification grid */
.cert-grid--qualified {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: 960px;
  margin: 0 auto;
}

.cert-card--centered {
  grid-column: 1 / -1;
  max-width: calc(50% - 1rem);
  margin: 0 auto;
  width: 100%;
}

/* Static cert cards: no pointer, no hover lift */
.cert-card--static {
  cursor: default;
}

.cert-card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  box-shadow: 0 4px 15px var(--color-shadow);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.cert-card img {
  width: 100%;
  height: 360px;
  object-fit: contain;
  background-color: #ffffff;
  padding: 0.75rem;
}

.cert-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px var(--color-shadow-hover);
}

/* --------------------------------------------------------------------------
   11. Contact Page & Leaflet Map
   -------------------------------------------------------------------------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
}

.contact-info-card {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-shadow);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: var(--bg-secondary);
  color: var(--color-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.info-text h4 {
  margin-bottom: 0.25rem;
}

.info-text p, .info-text a {
  margin-bottom: 0;
  color: var(--color-text-muted);
  overflow-wrap: anywhere;
  word-break: break-word;
}

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

/* Form */
.contact-form {
  background-color: var(--bg-card);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-shadow);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background-color: var(--bg-primary);
  color: var(--color-text-main);
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(203, 153, 126, 0.2);
}

textarea.form-control {
  resize: vertical;
  min-height: 140px;
}

/* Anti-spam honeypot hidden */
.hp-field {
  display: none !important;
}

.form-status {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: none;
  font-size: 0.92rem;
}

.form-status.success {
  display: block;
  background-color: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-status.error {
  display: block;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

#leaflet-map {
  height: 620px;
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  margin-top: 3rem;
}

/* --------------------------------------------------------------------------
   12. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: var(--color-dark);
  color: #fae1dd;
  padding-top: 4rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1.2fr 1.1fr 1.1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 225, 221, 0.15);
}

.footer-nav-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem 1.5rem;
}

.footer-rating {
  margin-top: 1.25rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(250, 225, 221, 0.15);
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
}

.footer-rating .stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.footer-rating .rating-score {
  font-weight: 600;
  color: #ffffff;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
}

.footer-socials-bottom {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(250, 225, 221, 0.12);
}

.footer-col h3 {
  color: #ffffff;
  font-size: 1.3rem;
  margin-bottom: 1.15rem;
}

.footer-col p {
  color: rgba(250, 225, 221, 0.85);
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-links a {
  color: rgba(250, 225, 221, 0.85);
  font-size: 0.92rem;
}

.footer-links a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-contact-info p {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 400;
}

.footer-bottom p {
  color: #ffffff;
  opacity: 0.95;
}

.footer-bottom a {
  color: #fae1dd;
  text-decoration: underline;
  font-weight: 500;
}

.footer-bottom a:hover {
  color: #ffffff;
}

/* --------------------------------------------------------------------------
   12b. Centered Featured Grid & Swiper Enhancements
   -------------------------------------------------------------------------- */
.featured-grid--centered {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2.5rem;
}

.featured-grid--centered .service-card {
  flex: 0 1 calc(33.333% - 1.7rem);
  min-width: 300px;
  max-width: 380px;
}

.salon-swiper {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 75px 3.5rem 75px;
}

.salon-swiper .swiper-slide img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  box-shadow: 0 6px 20px rgba(109, 76, 65, 0.08);
}

.salon-swiper .swiper-button-prev {
  left: 0;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.95);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  transition: var(--transition-smooth);
}

.salon-swiper .swiper-button-next {
  right: 0;
  color: var(--color-dark);
  background: rgba(255, 255, 255, 0.95);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  box-shadow: 0 4px 14px rgba(0,0,0,0.14);
  transition: var(--transition-smooth);
}

.salon-swiper .swiper-button-next:after,
.salon-swiper .swiper-button-prev:after {
  font-size: 1.1rem;
  font-weight: bold;
}

.salon-swiper .swiper-button-next:hover,
.salon-swiper .swiper-button-prev:hover {
  background: var(--color-dark);
  color: #ffffff;
}

.salon-swiper .swiper-pagination-bullet-active {
  background-color: var(--color-dark);
}

/* --------------------------------------------------------------------------
   13. Responsive Breakpoints
   -------------------------------------------------------------------------- */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-columns { grid-template-columns: 1fr 1fr; }
  .voucher-box, .loyalty-box { grid-template-columns: 1fr; text-align: center; }
  .hero-container { grid-template-columns: 1fr; gap: 2rem; }
  .gallery-category-row,
  .gallery-category-row--label-right {
    grid-template-columns: 1fr;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
  }
  .gallery-category-row--label-right .gallery-category-label {
    order: -1;
  }
  .gallery-category-label {
    text-align: center;
    padding: 2.25rem 1.75rem;
  }
}

@media (max-width: 768px) {
  .main-nav, .header-socials { display: none; }
  .mobile-nav-toggle { display: block; }
  .hero-cta-group { flex-direction: column; width: 100%; align-items: stretch; }
  .btn { width: 100%; }

  /* Treatment Cards CTA: Centered on mobile */
  .service-card-body .btn {
    width: auto;
    align-self: center;
    margin: 0 auto;
    text-align: center;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    min-height: 44px;
  }

  /* Doplňkové služby Pricing Item & CTA: Compact, left-aligned, spacious on mobile */
  .pricing-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
    padding: 1.35rem 0;
  }

  .pricing-item .pricing-info {
    max-width: 100%;
    width: 100%;
  }

  .pricing-item .btn {
    width: auto !important;
    align-self: flex-start !important;
    margin-left: 0 !important;
    margin-top: 0.5rem !important;
    padding: 0.45rem 1.1rem !important;
    font-size: 0.84rem !important;
    min-height: 36px !important;
    text-align: left;
  }

  .footer-columns { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 0.75rem; text-align: center; }
  .hero-text { font-size: 1rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .cert-grid--qualified { grid-template-columns: 1fr; max-width: 480px; }
  .cert-card--centered { max-width: 100%; }
  .cert-card img { height: 260px !important; object-fit: contain; }

  /* Mobile Hero: Single-column stack with generous side padding & balanced typography */
  .hero {
    display: flex;
    flex-direction: column;
    padding-bottom: 2rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    min-height: auto;
  }

  .hero--with-bg .hero-container,
  .hero-container {
    display: block;
    width: 100%;
  }

  .hero-left {
    max-width: 100%;
    width: 100%;
  }

  .hero-title {
    font-size: clamp(2rem, 6.5vw, 2.35rem);
    margin-bottom: 1rem;
  }

  .hero-text {
    font-size: 0.94rem;
  }

  .hero-text p {
    font-size: 0.94rem;
    line-height: 1.7;
    margin-bottom: 0.95rem;
  }

  /* Compact Mobile NOVINKA Banner - Slim & Elegant Height */
  .novinka-card {
    margin: 0.6rem 0;
  }

  .novinka-badge {
    padding: 0.35rem 0.7rem;
    gap: 0.3rem;
  }

  .novinka-badge .four-point-star {
    width: 14px;
    height: 14px;
  }

  .novinka-badge span {
    font-size: 0.75rem;
    letter-spacing: 0.8px;
  }

  .novinka-body {
    padding: 0.35rem 0.7rem;
    gap: 0.5rem;
  }

  .novinka-text {
    gap: 0.05rem;
  }

  .novinka-title {
    font-size: 0.88rem;
    line-height: 1.25;
  }

  .novinka-subtitle {
    font-size: 0.72rem;
    line-height: 1.25;
  }

  .novinka-icon {
    display: none !important;
  }

  .hero-bg-img-container {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 440px;
    margin: 1.5rem auto 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hero-bg-img {
    height: auto;
    max-height: 280px;
    width: 100%;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .hero--with-bg { min-height: auto; }
  .hero--with-bg::before { display: none !important; }

  /* Mobile O nás Swiper Slider: Hide arrows, enable full touch swipe, compact spacing below */
  .section--slider {
    padding-top: 1.5rem !important;
    padding-bottom: 0.5rem !important;
  }

  .salon-swiper {
    padding: 0 0 2.2rem 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  .salon-swiper .swiper-slide img {
    width: 100% !important;
    height: auto !important;
    max-height: 230px !important;
    aspect-ratio: 16 / 10 !important;
    object-fit: cover !important;
    border-radius: 16px !important;
  }

  /* Hide navigation arrows on mobile per user instruction */
  .salon-swiper .swiper-button-prev,
  .salon-swiper .swiper-button-next {
    display: none !important;
  }

  #leaflet-map { height: 350px !important; width: 100% !important; max-width: 100% !important; box-sizing: border-box !important; overflow: hidden !important; margin-top: 2rem !important; }
  .about-cosmetic-grid { display: flex !important; flex-direction: column !important; }
  .about-cosmetic-text { order: 1; }
  .about-cosmetic-img { order: 2; }

  /* Mobile Gallery Layout: Fit within viewport without horizontal overflow */
  .gallery-category-row,
  .gallery-category-row--label-right {
    grid-template-columns: 1fr !important;
    gap: 1.5rem !important;
    margin-bottom: 2.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .gallery-category-label {
    padding: 1.5rem 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .gallery-category-photos {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .gallery-item {
    min-height: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 4 / 3 !important;
    box-sizing: border-box !important;
  }

  /* Mobile Contact Page: Prevent card overflow & constrain width */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .contact-info-card,
  .contact-form {
    padding: 1.5rem 1.25rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .info-item {
    gap: 0.85rem !important;
    margin-bottom: 1.35rem !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .info-text {
    min-width: 0 !important;
    width: calc(100% - 56px) !important;
    box-sizing: border-box !important;
  }

  .info-text p, .info-text a {
    overflow-wrap: anywhere !important;
    word-break: break-word !important;
  }

  /* AOS horizontal shift override on mobile to prevent 100vw push */
  [data-aos="fade-left"],
  [data-aos="fade-right"] {
    transform: translateY(15px) !important;
  }
}

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* --------------------------------------------------------------------------
   14. No-JavaScript Progressive Enhancement Fallbacks
   -------------------------------------------------------------------------- */
@media (scripting: none) {
  [data-aos] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .salon-swiper .swiper-wrapper {
    display: flex !important;
    flex-direction: column !important;
    gap: 1.5rem !important;
  }
  .salon-swiper .swiper-slide {
    opacity: 1 !important;
    visibility: visible !important;
  }
  .mobile-menu-overlay {
    display: none !important;
  }
}
