/* ===========================
   Salon Relax — Style Sheet
   Pure CSS3 · Responsive
   =========================== */

/* --- Reset & Base --- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-bg: #fcf9f5;
  --color-bg-alt: #f0eee8;
  --color-text: #32332d;
  --color-text-muted: #5f5f59;
  --color-text-light: #587846;
  --color-accent: #7EA966;
  --color-light: #fff6f0;
  --color-card: #fcf9f5;
  --color-icon: #7EA966;
  --font-serif: 'Noto Serif', Georgia, serif;
  --font-sans: 'Manrope', system-ui, sans-serif;
  --max-width: 1280px;
  --side-pad: 80px;
  --section-pad: 128px var(--side-pad);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.25;
}

/* --- Buttons --- */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: opacity 0.25s, transform 0.25s;
}

.btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}

.btn--primary {
  background: var(--color-accent);
  color: var(--color-text);
  font-size: 14px;
  padding: 16px 36px;
  border-radius: 8px;
}

.btn--sm {
  font-size: 12px;
  padding: 9px 22px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--color-bg);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--side-pad);
}

.navbar__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.navbar__logo img {
  height: 64px;
  width: auto;
  transition: opacity 0.25s;
}

.navbar__logo:hover img {
  opacity: 0.7;
}

.navbar__links {
  display: flex;
  list-style: none;
  gap: 40px;
  align-items: center;
}

.navbar__item {
  position: relative;
  list-style: none;
}

.navbar__item > a {
  font-size: 15px;
  color: var(--color-text-light);
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 3px;
}

.navbar__item > a:hover {
  color: var(--color-accent);
}

.navbar__item--dropdown > a::after {
  content: '▾';
  font-size: 10px;
  opacity: 0.8;
  color: var(--color-accent);
  transition: transform 0.2s;
  line-height: 1;
}

.navbar__item--dropdown:hover > a::after {
  transform: rotate(180deg);
}

.navbar__item--dropdown::before {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
  display: none;
}

.navbar__item--dropdown:hover::before {
  display: block;
}

.navbar__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  transform: none;
  background: var(--color-bg);
  border-radius: 8px;
  padding: 8px 0;
  min-width: 200px;
  box-shadow: 0 8px 24px rgba(22,58,33,0.12);
  list-style: none;
  z-index: 101;
  border: 1px solid rgba(108,92,77,0.1);
}

.navbar__item--dropdown:hover .navbar__dropdown {
  display: block;
}

.navbar__dropdown li {
  list-style: none;
}

.navbar__dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--color-text-light);
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}

.navbar__dropdown a:hover {
  color: var(--color-accent);
  background: rgba(126,169,102,0.06);
}

.navbar__links a {
  font-size: 15px;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.navbar__links a:hover {
  color: var(--color-accent);
}

.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  transition: transform 0.3s, opacity 0.3s;
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 89px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
}

.hero__gradient {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(240,238,232,0.55) 0%,
      rgba(240,238,232,0.60) 28%,
      rgba(240,238,232,0.60) 62%,
      rgba(240,238,232,0.62) 100%
    );
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  background: none;
  padding: 24px;
  margin: 0 auto;
  text-align: center;
}

.hero__content h1 {
  font-size: clamp(28px, 3.2vw, 42px);
  color: var(--color-text);
  margin-bottom: 16px;
}

.hero__content p {
  font-size: clamp(15px, 1.3vw, 18px);
  color: var(--color-text);
  max-width: 720px;
  margin: 0 auto 24px;
}

/* --- Hero info bar --- */
/* --- Brands / Info lišta --- */
.brands {
  background: var(--color-bg);
  border-top: 1px solid rgba(108,92,77,0.1);
  border-bottom: 1px solid rgba(108,92,77,0.1);
}

.brands__info-bar {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  align-items: center;
  padding: 14px var(--side-pad);
}

.brands__info-bar > * {
  grid-column: 1;
  grid-row: 1;
}

.brands__info-slides {
  justify-self: center;
  text-align: center;
  width: 100%;
  max-width: calc(100% - 160px);
  overflow: hidden;
}

.brands__info-slide {
  display: none;
  font-size: 18px;
  font-weight: 600;
  font-family: var(--font-sans);
  color: var(--color-text);
  line-height: 1.5;
  margin: 0;
}

.brands__info-slide--active {
  display: block;
}

.brands__info-arrow {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 2px 8px;
  transition: color 0.2s;
  line-height: 1;
  align-self: center;
}

#brands-prev {
  justify-self: start;
}

.brands__info-arrow:hover {
  color: var(--color-accent);
}

.brands__info-right {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-self: end;
}

.brands__info-counter {
  font-size: 11px;
  font-family: var(--font-sans);
  color: var(--color-text-muted);
  letter-spacing: 0.06em;
  flex-shrink: 0;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- About --- */
.about {
  background: var(--color-bg-alt);
  padding: var(--section-pad);
}

.about__inner {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.about__top {
  display: grid;
  grid-template-columns: 1fr 504px;
  gap: 80px;
  align-items: center;
}

.about__text h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.about__text > p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.about__text > p:last-child {
  margin-bottom: 0;
}

.about__info {
  display: flex;
  justify-content: center;
  gap: 0;
  border-top: 1px solid rgba(108,92,77,0.2);
  padding-top: 48px;
}

.about__info-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 0 48px;
  border-right: 1px solid rgba(108,92,77,0.15);
}

.about__info-item:last-child {
  border-right: none;
}

.about__label {
  font-family: var(--font-serif);
  font-size: 15px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.about__value {
  font-size: 17px;
  color: var(--color-text);
  text-align: center;
  line-height: 1.65;
}

.about__value a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

.about__value a:hover {
  color: var(--color-accent);
}

.about__image {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Services --- */
.services {
  background: var(--color-bg);
  padding: 127px var(--side-pad) 128px;
}

.services__inner {
}

.services__header {
  margin-bottom: 80px;
  text-align: center;
}

.services__header h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.services__header p {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  align-items: start;
}

/* --- Card --- */
.card {
  background: var(--color-card);
  padding: 12px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 12px;
  border-radius: 8px;
  position: relative;
}

.card__image {
  width: 148px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  align-self: stretch;
}

.card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.card:hover:not(.card--open) .card__image img {
  transform: scale(1.05);
}

.card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  padding: 4px 6px;
}

.card__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.card__text h3 {
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.3;
}

.card__text p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}

.card__price {
  font-size: 18px;
  font-weight: 600;
  color: var(--color-accent);
  flex-shrink: 0;
}

.card__link {
  font-size: 12px;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font-family: var(--font-sans);
  transition: color 0.25s;
  white-space: nowrap;
}

.card__link:hover {
  color: var(--color-text);
}

.card__detail {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 20;
  background: var(--color-card);
  border-radius: 0 0 8px 8px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  box-shadow: 0 8px 24px rgba(22,58,33,0.1);
}

.card__detail--open {
  max-height: 600px;
}

.card__detail-inner {
  border-top: 1px solid rgba(108,92,77,0.15);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
}

.card__detail-row {
  display: flex;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(108,92,77,0.1);
  align-items: flex-start;
}

.card__detail-row:last-child {
  border-bottom: none;
}

.card__detail-label {
  font-family: var(--font-serif);
  font-size: 12px;
  color: var(--color-text);
  min-width: 150px;
  flex-shrink: 0;
}

.card__detail-text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin: 0;
}

.card__toggle--open {
  color: var(--color-text);
}

.card__link:hover {
}

/* --- Services Filters & Accordion --- */
.services__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
  justify-content: center;
}

.services__filter {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  padding: 9px 22px;
  border-radius: 999px;
  border: 1.5px solid rgba(108,92,77,0.25);
  background: none;
  color: var(--color-text);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  line-height: 1;
}

.services__filter:hover {
  border-color: var(--color-accent);
  color: var(--color-accent);
}

.services__filter--active {
  background: var(--color-text);
  color: var(--color-bg);
  border-color: var(--color-text);
}

.services__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.svc {
  background: var(--color-card);
  border: 1px solid rgba(108,92,77,0.15);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.svc:hover {
  border-color: rgba(108,92,77,0.3);
}

.svc--hidden {
  display: none;
}

.svc__head {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.svc__head--static {
  cursor: default;
}

.svc--no-detail:hover {
  border-color: rgba(108,92,77,0.15);
}

.svc--no-detail .svc__right {
  padding-right: 38px;
}

.svc__left {
  flex: 1;
  min-width: 0;
}

.svc__name {
  display: block;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 4px;
}

.svc__desc {
  display: block;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.svc__right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.svc__time {
  font-size: 14px;
  color: var(--color-text-muted);
  white-space: nowrap;
}

.svc__price {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}

.svc__chevron {
  font-size: 16px;
  color: var(--color-text-muted);
  transition: transform 0.3s;
  line-height: 1;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

.svc--open .svc__chevron {
  transform: rotate(180deg);
}

.svc__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.svc__detail-inner {
  padding: 20px 24px 24px;
  border-top: 1px solid rgba(108,92,77,0.12);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.svc__label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 10px;
}

.svc__who {
  background: var(--color-bg-alt);
  border-radius: 8px;
  padding: 16px 20px;
}

.svc__who p {
  font-size: 16px;
  color: var(--color-text);
  line-height: 1.55;
  margin: 0;
}

.svc__steps ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.svc__steps li {
  font-size: 15px;
  color: var(--color-text-muted);
  padding-left: 18px;
  position: relative;
  line-height: 1.5;
}

.svc__steps li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

.svc__effects p,
.svc__contra p,
.svc__aftercare p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin: 0;
}

.svc__detail-img {
  flex-shrink: 0;
}

.svc__detail-img img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  display: block;
}

.svc__detail-inner--with-img {
  flex-direction: row;
  align-items: flex-start;
}

.svc__detail-inner--with-img .svc__detail-img {
  width: 220px;
}

.svc__detail-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-width: 0;
}

.svc__more {
  padding-top: 16px;
  border-top: 1px solid rgba(108,92,77,0.1);
}

.svc__more-btn {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-light);
  background: none;
  border: 1.5px solid rgba(108,92,77,0.25);
  border-radius: 6px;
  padding: 9px 18px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}

.svc__more-btn:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}

/* --- Voucher --- */
.voucher {
  background: var(--color-bg);
  padding: var(--section-pad);
}

.voucher__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.voucher__text h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.voucher__text p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}


.voucher__image img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* --- Transformations --- */
.transformations {
  background: var(--color-bg-alt);
  padding: 127px var(--side-pad) 128px;
}

.transformations__inner {
}

.transformations__categories {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.transformations__header {
  margin-bottom: 80px;
  text-align: center;
}

.transformations__header h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.transformations__header p {
  font-size: 18px;
  color: var(--color-text-muted);
  max-width: 800px;
  margin: 0 auto;
}

.transformations__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.transformation {
  display: block;
}

.transformations__subtitle {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 400;
  color: var(--color-text);
  margin-bottom: 16px;
}

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

.gallery__item {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  display: block;
  width: 100%;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* --- Lightbox --- */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(20, 18, 16, 0.94);
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.lightbox--open {
  display: flex;
}

.lightbox__img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 8px;
}

.lightbox__close:hover {
  color: #fff;
}

.transformation__images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.transformation__img-wrap {
  position: relative;
  background: var(--color-card);
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: 8px;
}

.transformation__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.transformation__placeholder {
  width: 100%;
  height: 100%;
  background: var(--color-bg-alt);
}

.transformation__label {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 9px;
  font-family: var(--font-sans);
  letter-spacing: 0.1em;
  padding: 4px 16px;
}

.transformation__label--before {
  background: var(--color-card);
  color: var(--color-text);
}

.transformation__label--after {
  background: var(--color-accent);
  color: var(--color-light);
}

.transformation__review {
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

.stars {
  color: var(--color-accent);
  font-size: 10px;
  letter-spacing: 8px;
}

.transformation__review blockquote {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.5vw, 18px);
  line-height: 1.5;
  color: var(--color-text);
}

.transformation__author {
  padding-top: 24px;
  border-top: 1px solid rgba(108,92,77,0.2);
}

.transformation__name {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

/* --- Reviews --- */
.reviews {
  background: var(--color-bg);
  padding: 64px 0;
  position: relative;
}

.reviews__scroll {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 0 var(--side-pad);
}

.reviews__scroll::-webkit-scrollbar {
  display: none;
}

.reviews__list {
  display: flex;
  gap: 20px;
  width: max-content;
}

.reviews__nav {
  display: flex;
  justify-content: flex-end;
  gap: 16px;
  padding: 16px var(--side-pad) 0;
}

.reviews__arrow {
  font-size: 14px;
  color: var(--color-accent);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-sans);
  padding: 4px 6px;
  opacity: 0.6;
  transition: opacity 0.2s;
  line-height: 1;
}

.reviews__arrow:hover {
  opacity: 1;
}

.review-card {
  border: 1px solid rgba(108,92,77,0.18);
  border-radius: 8px;
  padding: 24px 28px;
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.review-card blockquote {
  font-family: var(--font-serif);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  flex: 1;
}

.review-card__author {
  padding-top: 14px;
  border-top: 1px solid rgba(108,92,77,0.2);
}

.review-card__name {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--color-text);
}

/* --- Products --- */
.products {
  background: var(--color-bg-alt);
  padding: var(--section-pad);
}

.products__inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.products__header {
  text-align: center;
  max-width: 860px;
  margin: 0 auto 40px;
}

.products__header h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.products__header p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.product {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 56px 0;
}

.product:first-of-type {
  padding-top: 0;
}

.product--full-bleed {
  align-items: stretch;
  padding: 0;
}

.product--full-bleed .product__text {
  padding: 56px 0;
}

.product--full-bleed .product__image {
  aspect-ratio: unset;
  height: 100%;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-bg);
}

.product--full-bleed .product__image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.product--reverse {
  grid-template-columns: 1fr 1.6fr;
}

.product--reverse .product__image {
  grid-column: 1;
  grid-row: 1;
}

.product--reverse .product__text {
  grid-column: 2;
  grid-row: 1;
}

.product__brand {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 12px;
}

.product__text h3 {
  font-size: clamp(22px, 2.2vw, 30px);
  font-family: var(--font-serif);
  font-weight: 400;
  margin-bottom: 32px;
}

.product__benefits {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.product__benefits li {
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.55;
  padding-left: 22px;
  position: relative;
}

.product__benefits li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.product__benefit--promo {
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: 6px;
}

.product__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  background: var(--color-bg-alt);
}

.product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product__image--plain {
  border-radius: 0;
  background: none;
  overflow: visible;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product__image--plain img {
  object-fit: contain;
  display: block;
  margin: 0 auto;
}

.product--text-right .product__text {
  text-align: right;
}

.product--text-right .product__benefits li {
  padding-left: 0;
  padding-right: 22px;
}

.product--text-right .product__benefits li::before {
  left: auto;
  right: 0;
}

/* --- FAQ --- */
.faq {
  background: var(--color-bg-alt);
  padding: 140px var(--side-pad);
}

.faq__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: start;
}

.faq__text h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.faq__text p {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.65;
}

.faq__list {
  border-top: 1px solid rgba(108,92,77,0.25);
}

.faq__item {
  border-bottom: 1px solid rgba(108,92,77,0.25);
  transition: background 0.25s;
}

.faq__item summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 16px;
  margin: 0 -16px;
  border-radius: 8px;
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--color-text);
  cursor: pointer;
  list-style: none;
  gap: 16px;
  transition: color 0.25s, background 0.25s;
}

.faq__item summary:hover {
  color: var(--color-text);
  background: rgba(94,120,70,0.06);
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item summary::after {
  content: '+';
  font-size: 22px;
  font-weight: 300;
  color: var(--color-text-light);
  flex-shrink: 0;
  width: 24px;
  text-align: center;
  transition: transform 0.3s, color 0.25s;
}

.faq__item summary:hover::after {
  color: var(--color-text-light);
}

.faq__item[open] summary {
  color: var(--color-accent);
}

.faq__item[open] summary::after {
  transform: rotate(45deg);
  color: var(--color-accent);
}

.faq__item p {
  padding: 0 0 28px;
  font-size: 16px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* --- Contact --- */
.contact {
  background: var(--color-bg);
  padding: var(--section-pad);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.contact__media {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__photo {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.contact__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact__map {
  border-radius: 8px;
  overflow: hidden;
  height: 220px;
}

.contact__map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.contact__info h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 12px;
}

.contact__intro {
  font-size: 18px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.contact__rows {
  border-top: 1px solid rgba(108,92,77,0.2);
}

.contact__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(108,92,77,0.2);
  gap: 24px;
}

.contact__label {
  font-family: var(--font-serif);
  font-size: 16px;
  color: var(--color-text);
  min-width: 130px;
  flex-shrink: 0;
}

.contact__value {
  font-size: 16px;
  color: var(--color-text-light);
  text-align: right;
  line-height: 1.65;
}

.contact__value a {
  color: var(--color-text-light);
  transition: color 0.2s;
}

.contact__value a:hover {
  color: var(--color-accent);
}

.contact__value em {
  font-style: italic;
  font-size: 13px;
  color: var(--color-text-muted);
}

/* --- CTA Banner --- */
.cta-banner {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.cta-banner__bg {
  position: absolute;
  inset: 0;
}

.cta-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-banner__content {
  position: relative;
  z-index: 1;
  background: none;
  padding: 64px;
  text-align: center;
  max-width: 672px;
}

.cta-banner__content h2 {
  font-size: clamp(26px, 2.6vw, 36px);
  margin-bottom: 32px;
}

/* --- Footer --- */
.footer {
  background: var(--color-bg);
  padding: 48px var(--side-pad);
}

.footer__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 32px;
}

.footer__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__logo {
  display: flex;
  align-items: center;
}

.footer__logo img {
  height: 48px;
  width: auto;
  transition: opacity 0.25s;
}

.footer__logo:hover img {
  opacity: 0.7;
}

.footer__links {
  display: flex;
  gap: 12px 32px;
  flex-wrap: wrap;
}

.footer__links a {
  font-size: 14px;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.footer__links a:hover {
  color: var(--color-accent);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer__socials {
  display: flex;
  gap: 10px;
}

.footer__socials a {
  display: flex;
  color: var(--color-text-light);
  transition: opacity 0.2s;
}

.footer__socials a:hover {
  opacity: 0.7;
}

.footer__details {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

.footer__details a {
  font-size: 14px;
  color: var(--color-text-light);
  transition: color 0.2s;
}

.footer__details a:hover {
  color: var(--color-accent);
}

/* --- Popup --- */
.popup-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(50, 51, 45, 0.5);
  backdrop-filter: blur(4px);
  align-items: center;
  justify-content: center;
  padding: var(--side-pad);
}

.popup-overlay--open {
  display: flex;
}

.popup {
  background: var(--color-bg);
  border-radius: 8px;
  max-width: 720px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  position: relative;
  padding: 48px;
}

.popup__close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--color-text-light);
  cursor: pointer;
  transition: color 0.25s;
  line-height: 1;
}

.popup__close:hover {
  color: var(--color-accent);
}

.popup__content h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--color-text);
  margin-bottom: 24px;
}

.popup__content h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--color-text);
  margin: 32px 0 16px;
}

.popup__content p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 12px;
}

.popup__content p a {
  color: var(--color-accent);
}

.popup__content p a:hover {
  color: var(--color-text);
}

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

.popup__content ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.popup__content li {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.7;
  padding-left: 20px;
  position: relative;
}

.popup__content li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-accent);
}

.popup__content li a {
  color: var(--color-accent);
}

.popup__content li a:hover {
  color: var(--color-text);
}

/* ===========================
   RESPONSIVE
   =========================== */

@media (max-width: 890px) {
  .services__filters {
    justify-content: center;
  }
}

/* Navbar hamburger */
@media (max-width: 860px) {
  .navbar__inner {
    flex-wrap: wrap;
  }

  .navbar__toggle {
    display: flex;
    order: 2;
  }

  .navbar__links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 12px;
    padding: 20px 0 8px;
    order: 3;
  }

  .navbar__links--open {
    display: flex;
  }

  .navbar__cta {
    display: none;
    order: 4;
    width: 100%;
    text-align: center;
    margin-top: 8px;
  }

  .navbar__cta--open {
    display: inline-block;
  }

  .navbar__links {
    align-items: center;
  }

  .navbar__item {
    width: 100%;
    text-align: center;
  }

  .navbar__item > a {
    justify-content: center;
  }

  .navbar__item--dropdown > a::after {
    display: none;
  }

  .navbar__dropdown {
    display: block;
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 4px 0 0;
    background: none;
    border-radius: 0;
    min-width: 0;
    text-align: center;
  }

  .navbar__dropdown a::before {
    content: '·';
    margin-right: 5px;
    color: var(--color-accent);
    font-size: 16px;
    line-height: 1;
    vertical-align: middle;
  }

  .navbar__dropdown a {
    padding: 6px 0;
    font-size: 13px;
    color: var(--color-text-muted);
    justify-content: center;
  }
}

/* Tablet */
@media (max-width: 1024px) {
  :root {
    --side-pad: 48px;
    --section-pad: 80px var(--side-pad);
  }

  .about__top {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .about__image {
    justify-self: center;
    width: 60%;
    max-width: 400px;
    aspect-ratio: 3 / 4;
  }

  .about__info {
    gap: 0;
    padding-top: 32px;
  }

  .about__info-item {
    padding: 0 24px;
  }

  .services__grid {
    gap: 24px;
  }

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

  .contact__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__info {
    order: 1;
  }

  .contact__media {
    order: 2;
  }

  .contact__value {
    text-align: right;
  }

  .faq__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq {
    padding: 80px var(--side-pad);
  }

  .transformations__list {
    gap: 64px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  :root {
    --side-pad: 24px;
    --section-pad: 64px var(--side-pad);
  }

  .navbar__inner {
    padding: 16px var(--side-pad);
    flex-wrap: wrap;
  }

  .btn--primary {
    padding: 12px 24px;
    font-size: 12px;
  }

  .btn--sm {
    padding: 8px 18px;
    font-size: 12px;
  }

  .navbar__logo img {
    height: 32px;
  }

  .footer__logo img {
    height: 36px;
  }

  .hero {
    min-height: 80vh;
    min-height: 80svh;
  }

  .brands__info-slide {
    font-size: 13px;
  }

  .brands__info-counter {
    display: none;
  }

  .hero__content {
    margin: 0 var(--side-pad);
    padding: 20px;
  }

  .hero__content h1 {
    font-size: 26px;
  }

  .transformations__subtitle,
  .product__text h3 {
    font-size: 20px;
  }

  .about__text h2,
  .services__header h2,
  .voucher__text h2,
  .transformations__header h2,
  .products__header h2,
  .faq__text h2,
  .cta-banner__content h2,
  .reviews__header h2 {
    font-size: 22px;
  }

  .brands__info-slides {
    max-width: calc(100% - 100px);
  }

  .about {
    padding: var(--section-pad);
  }

  .about__info {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .about__value {
    font-size: 16px;
  }

  .about__info-item {
    border-right: none;
    border-bottom: 1px solid rgba(108,92,77,0.15);
    padding: 0 0 24px;
    width: 100%;
  }

  .about__info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .services {
    padding: 64px var(--side-pad);
  }

  .services__header {
    margin-bottom: 48px;
  }

  .services__header p,
  .transformations__header p,
  .products__header p,
  .faq__text p,
  .about__text > p,
  .voucher__text p {
    font-size: 15px;
  }

  .services__grid {
    gap: 16px;
  }

  .services__filters {
    gap: 6px;
    margin-bottom: 32px;
  }

  .services__filter {
    font-size: 13px;
    padding: 12px 16px;
  }

  .svc__head {
    padding: 16px 16px;
    gap: 12px;
  }

  .svc__right {
    gap: 10px;
  }

  .svc__time {
    display: none;
  }

  .svc__name {
    font-size: 16px;
  }

  .svc__price {
    font-size: 15px;
    font-weight: 700;
  }

  .svc__detail-inner {
    padding: 16px 16px 20px;
  }



  .voucher {
    padding: var(--section-pad);
  }

  .transformations {
    padding: 64px var(--side-pad);
  }

  .transformations__header {
    margin-bottom: 48px;
  }

  .product {
    gap: 32px;
    padding: 40px 0;
  }

  .faq {
    padding: 64px var(--side-pad);
  }

  .faq__item summary {
    font-size: 16px;
    padding: 20px 0;
    margin: 0;
  }

  .cta-banner {
    min-height: 350px;
  }

  .cta-banner__content {
    padding: 40px 24px;
    margin: 0 var(--side-pad);
  }

  .footer {
    padding: 32px var(--side-pad);
  }

  .footer__inner {
    gap: 24px;
  }

  .popup {
    padding: 32px 20px;
    max-height: 90vh;
  }

  .popup__content h2 {
    font-size: 22px;
  }

  .popup__content h3 {
    font-size: 18px;
  }

  .footer__links {
    gap: 20px;
  }

  .footer__links a,
  .footer__details a {
    font-size: 13px;
  }

  .gallery {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .gallery::-webkit-scrollbar {
    display: none;
  }

  .gallery__item {
    flex-shrink: 0;
    width: 150px;
  }

  .svc__detail-inner--with-img {
    flex-direction: column;
  }

  .svc__detail-inner--with-img .svc__detail-img {
    width: 100%;
    max-width: 220px;
  }

  .review-card {
    padding: 20px 24px;
    width: 300px;
    gap: 12px;
  }

  .services__header p,
  .transformations__header p,
  .products__header p,
  .faq__text p,
  .about__text > p,
  .voucher__text p {
    font-size: 15px;
  }
}

/* Voucher + Products 1-column breakpoint */
@media (max-width: 780px) {
  .voucher__inner {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .voucher__image {
    order: 2;
  }

  .voucher__text {
    order: 1;
    text-align: center;
  }

  .voucher__text .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }

  /* Produkty — text, odrážky a obrázek */
  .product__text,
  .product--reverse .product__text,
  .product__text h3,
  .product__brand {
    text-align: center;
  }

  .product__benefits li {
    text-align: center;
    padding-left: 0;
  }

  .product__benefits li::before {
    position: static;
    display: inline-block;
    vertical-align: middle;
    margin-right: 8px;
    top: auto;
    left: auto;
  }

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

  .product__image,
  .product--reverse .product__image {
    max-width: 320px;
    margin: 0 auto;
  }

  /* FAQ — nadpis a popis na střed, otázky a odpovědi vlevo */
  .faq__text h2,
  .faq__text p {
    text-align: center;
  }

  /* O nás — nadpis a popis na střed */
  .about__text h2,
  .about__text > p {
    text-align: center;
  }

  .about__inner {
    gap: 40px;
  }

  /* Ukázky práce — nadpis, popis a subtitle na střed */
  .transformations__header h2,
  .transformations__header p,
  .transformations__subtitle {
    text-align: center;
  }
  .product,
  .product--reverse {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 0;
  }

  .product__text,
  .product--reverse .product__text {
    grid-column: auto;
    grid-row: 1;
    order: 1;
    text-align: left;
  }

  .product__image,
  .product--reverse .product__image {
    grid-column: auto;
    grid-row: 2;
    order: 2;
  }

  .product--text-right .product__benefits li {
    padding-left: 22px;
    padding-right: 0;
  }

  .product--text-right .product__benefits li::before {
    left: 0;
    right: auto;
  }

  .voucher__inner {
    gap: 16px;
  }
}

/* Small mobile — footer centered */
@media (max-width: 600px) {
  .footer__inner {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .footer__left {
    align-items: center;
  }

  .footer__links {
    justify-content: center;
    gap: 10px 16px;
  }

  .footer__contact {
    align-items: center;
  }

  .footer__details {
    align-items: center;
  }
}

/* Cards vertical layout */
@media (max-width: 520px) {
  .card {
    flex-direction: column;
    align-items: center;
  }

  .card__image {
    width: 38%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    flex-shrink: 0;
    align-self: center;
  }

  .card__body {
    width: 100%;
    padding: 4px 2px;
  }

  .card__text h3,
  .card__text p {
    text-align: center;
  }

  .card__footer {
    justify-content: space-between;
  }
}

/* Small mobile */
@media (max-width: 480px) {


}
