:root {
  --bg-licht: #ffffff;
  --bg-zacht: #f6f3ee;
  --accent: #b7a98c;
  --tekst: #005F6A;
}



* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  color: var(--tekst);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 10px 0;
}

/* ---------------- Header ---------------- */
.header {
  position: sticky;      /* maakt de header sticky */
  top: 0;                /* blijft bovenaan */
  width: 100%;           /* vult volledige breedte */
  background: var(--bg-licht);
  padding: 16px 24px;
  z-index: 1000;         /* staat boven andere content */
  box-shadow: 0 2px 6px rgba(0,0,0,0.05); /* subtiel schaduw voor zichtbaarheid */
}

/* subtiele lijn onder header */
.header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d6d6d6, transparent);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo link styling */
.logo {
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--tekst);
  display: inline-block; /* handig voor alignment */
}

/* Logo afbeelding styling */
.logo img {
  display: block;       /* voorkomt extra ruimte onder img */
  max-height: 120px;     /* hoogte desktop */
  width: auto;          /* breedte past zich aan */
  height: auto;
}

/* Tablet */
@media (max-width: 900px) {
  .logo img {
    max-height: 90px;
  }
}

/* Mobiel */
@media (max-width: 600px) {
  .logo img {
    max-height: 60px;
  }
}

/* Nav menu */
.nav {
  display: flex;
  gap: 20px; /* compactere ruimte tussen menu-items */
  flex-wrap: nowrap;
  font-size: 1.1rem;  /* iets groter dan standaard */
}

.nav a {
  position: relative;
  display: inline-block;
  padding: 6px 0;
  text-decoration: none;
  color: var(--tekst);
  font-weight: 500;
  transition: color 0.3s;
}

/* Hover onderstreep */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px; /* dikte van hover-lijn */
  background-color: var(--accent);
  transition: width 0.3s ease;
}

.nav a:hover::after {
  width: 100%;
}

/* Actieve pagina streepjes boven + onder */
.nav a.active::before,
.nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px; /* dikte streepjes */
  background-color: var(--accent);
}

.nav a.active::before {
  top: -6px;
}

.nav a.active::after {
  bottom: -6px;
}

@media (max-width: 768px) {
  .nav {
    flex-wrap: wrap; /* breekt netjes op kleine schermen */
    gap: 8px;
	z-index: 1001; /* hoger dan sticky header */
  }
}

/* ---------------- Hero & Sections ---------------- */
/* Hero met achtergrondfoto */
.hero {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 400px; /* desktop hoogte */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Overlay op desktop */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

/* Tekstcontainer boven overlay */
.hero .container {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Hero content box */
.hero-content {
  background: rgba(248, 246, 242, 0.55);
  color: #333;
  padding: 36px;
  border-radius: 18px;
  max-width: 720px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  backdrop-filter: blur(3px);
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  max-width: 600px;
  margin: 8px auto;
}

/* Titel en tekst hero-content */
.hero-content h2 {
  margin-top: 0;
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.hero-content p {
  font-size: 1.05rem;
  line-height: 1.6;
}

/* ---------------- Hero mobiel ---------------- */
@media (max-width: 768px) {

  .hero {
    margin-top: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    height: auto;
    max-height: none;
    padding-bottom: 20px; /* achtergrondfoto loopt 20px verder door */
  }

  /* overlay even groot als de achtergrondfoto */
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; /* volledige hoogte van de hero inclusief extra 20px */
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
  }

  .hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .hero-content {
    width: 100%;
    max-width: 680px;
    margin: 16px auto 0 auto; /* kleine ruimte boven de witte box */
    padding: 28px 24px;
    border-radius: 16px;
    background: rgba(248, 246, 242, 0.85);
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    backdrop-filter: blur(3px);
    text-align: center;
  }

  .hero-content h2 {
    font-size: clamp(1.8rem, 5vw, 2.4rem);
    margin-bottom: 12px;
  }

  .hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    line-height: 1.6;
  }
}


.overgang {
  background: linear-gradient(to bottom, var(--bg-licht), var(--bg-zacht));
}

.licht {
  background: var(--bg-zacht);
}

h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: var(;#005F6A);
}

p {
  max-width: 520px;
  line-height: 1.6;
}

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 14px 28px;
  border: 1px solid var(--accent);
  border-radius: 40px;
  text-decoration: none;
  color: var(--tekst);
}

/* ---------------- Footer ---------------- */
.footer {
  background: var(--bg-zacht);
  padding: 32px 0 24px;
  font-size: 0.9rem;
  text-align: center;
}

/* subtiele lijn boven en tussen footer-secties */
.footer-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, #d6d6d6, transparent);
  margin-bottom: 24px;
}

/* grid layout */
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
  text-align: left;
}

.footer-column {
  flex: 1 1 200px;
}

.footer-column h4 {
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 8px;
}

.footer-column a {
  text-decoration: none;
  color: var(--tekst);
  transition: color 0.3s;
}

.footer-column a:hover {
  color: var(--accent);
}

/* social iconen */
.social-icons a {
  font-size: 1.6rem;
  margin-right: 16px;
  color: var(--tekst);
  transition: color 0.3s;
}

.social-icons a:hover {
  color: var(--accent);
}

/* copyright onderaan */
.footer-bottom {
  margin-top: 32px;
  opacity: 0.8;
  display: flex;           
  justify-content: center;   
  align-items: center;       
  width: 100%;               
}

.footer-bottom p {
  margin: 0;                 
}

/* contact info spacing */
.footer-company { margin: 2px 0; }
.footer-address { margin: 2px 0; }
.footer-phone { margin-top: 2px; margin-bottom: 0; } 
.footer-mail { margin: 2px 0; }
.footer-whatsapp { margin: 2px 0; }

.footer-address a {
  text-decoration: none;
  color: var(--tekst);
  transition: color 0.3s;
}

.footer-address a:hover { color: var(--accent); }

/* Prijslijst met automatische stippen */
/* Prijslijst */
.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.price-list li {
  padding: 8px 0;
  font-size: 1rem;
  line-height: 1.4;
}

/* ⭐ GRID layout */
.price-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: start; /* 🔥 belangrijk: alles boven uitlijnen */
  column-gap: 8px;
}

/* productnaam */
.price-row .item {
  min-width: 0;
  white-space: normal;
  overflow-wrap: break-word;
  word-break: normal;
}

/* ⭐ dotted lijn exact midden eerste regel */
.price-row .dots {
  height: 1.2em;
  position: relative;
}

.price-row .dots::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0.9em; /* 🔥 positie in eerste regel */
  border-bottom: 1px dotted var(--accent);
}

/* ⭐ prijs altijd rechts op regel 1 */
.price-row .price {
  white-space: nowrap;
  align-self: start; /* 🔥 blijft boven */
}

/* notities */
.price-list li .note {
  margin-top: 2px;
  font-size: 0.85rem;
  color: #555;
}

.price-note {
  font-size: 0.8rem;
  color: #777;
  margin-top: 4px;
  font-style: italic;
}

/* cta container */
.cta-container {
  margin-top: 24px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center; /* centreren van de knoppen */
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  background-color: var(--accent);
  color: #fff;
  text-decoration: none;
  border-radius: 40px;
  font-weight: 500;
  transition: background-color 0.3s, transform 0.2s;
}

.cta-button i {
  margin-right: 8px;
}

.cta-button:hover {
  background-color: #a89270; /* iets donkerder accent bij hover */
  transform: translateY(-2px);
}

.cta-button.whatsapp {
  background-color: #25D366; /* WhatsApp groen */
}

.cta-button.whatsapp:hover {
  background-color: #1ebe5d;
}

/* Contactpagina styling */
.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 24px;
}

.contact-form {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  margin-top: 12px;
  margin-bottom: 4px;
  font-weight: 500;
}

.contact-form input,
.contact-form textarea {
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: inherit;
  font-size: 1rem;
}

.contact-form .button {
  margin-top: 16px;
  width: fit-content;
}

/* Map styling */
.contact-map {
  flex: 1 1 400px;
  min-height: 400px;
}

@media (max-width: 768px) {
  .contact-wrapper {
    flex-direction: column;
  }
}

/* Wie ben ik pagina styling */
.about-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-top: 24px;
}

.about-photo {
  flex: 1 1 300px;
}

.about-photo img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
}

.about-text {
  flex: 2 1 400px;
  font-size: 1rem;
  line-height: 1.6;
}

.about-text p {
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about-wrapper {
    flex-direction: column;
  }
}

/* De Salon pagina */
.salon-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* maximaal 2 kaarten naast elkaar */
  gap: 24px;
  margin-top: 32px;
  justify-content: center; /* centraalt de kaarten */
}

.salon-card {
  background: var(--bg-licht);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}

.salon-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.salon-card img {
  width: 100%;
  display: block;
  object-fit: cover;
  height: 200px;
}

.salon-content {
  padding: 16px;
}

.salon-content h3 {
  margin-top: 0;
  margin-bottom: 8px;
  font-size: 1.2rem;
  color: var(--tekst);
}

.salon-content p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #555;
}

/* Responsive: kaarten onder elkaar op mobiel */
@media (max-width: 768px) {
  .salon-grid {
    grid-template-columns: 1fr; /* 1 kaart per rij */
  }
  .salon-card img {
    height: 180px;
  }
  .salon-content h3 {
    font-size: 1.1rem;
  }
  .salon-content p {
    font-size: 0.9rem;
  }
}

/* ---------------- Producten ---------------- */

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* max 2 naast elkaar */
  gap: 32px;
  margin-top: 40px;
}

.product-card {
  background: var(--bg-licht);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.product-content {
  padding: 20px;
}

.product-content h3 {
  margin: 0 0 8px;
  font-size: 1.2rem;
  font-weight: 500;
  color: #005F6A;
}

.product-content p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  color: #555;
}

.product-price {
  font-weight: 600;
  color: var(--accent);
  font-size: 1rem;
}

/* mobiel */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------------- Behandelingen ---------------- */
.behandeling-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.behandeling-card {
  background: var(--bg-licht);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.behandeling-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.behandeling-content h3 {
  margin-top: 0;
  margin-bottom: 12px;
  font-weight: 500;
  color: #005F6A;
}

.behandeling-content p {
  margin: 0 0 16px;
  font-size: 0.95rem;
  line-height: 1.6;
}

.rich-text {
	color: #000000;
}

.behandeling-prijs {
  display: block;
  font-weight: 600;
  margin-top: 8px;
}

.behandeling-note {
  display: block;
  margin-top: 8px;
  font-size: 0.85rem;
  color: #666;
}

/* CTA uitlijnen */
.cta-center {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {
  .behandeling-grid {
    grid-template-columns: 1fr;
  }
}

/* CTA knoppen per behandeling */
.behandeling-cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* kleinere knoppen */
.button.small {
  padding: 10px 18px;
  font-size: 0.85rem;
}

/* secundaire knop */
.button.outline {
  background: transparent;
  border: 1px solid var(--accent);
}

/* CTA knoppen behandelingen – zelfde stijl als prijslijst */
.behandeling-cta {
  margin-top: 16px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* algemene kleine knop */
.button.small {
  padding: 10px 18px;
  font-size: 0.85rem;
  border-radius: 30px;
  font-weight: 500;
}

/* grijze knop – contactformulier */
.button.gray {
  background: #e5e5e5;
  color: #333;
  border: 1px solid #d0d0d0;
}

.button.gray:hover {
  background: #dcdcdc;
}

/* groene knop – WhatsApp */
.button.green {
  background: #25d366;
  color: #ffffff;
  border: 1px solid #25d366;
}

.button.green:hover {
  background: #1ebe5d;
}

.social-icons-wrapper {
    display: flex;
    flex-direction: column;
}

.social-icons a {
    display: inline-block;
    margin-right: 10px; /* ruimte tussen Facebook en Instagram */
}

.provoet-footer {
    margin-top: 10px; /* ruimte boven het logo */
    display: inline-block; /* links uitgelijnd met Facebook */
}

.provoet-footer h4 {
    margin-bottom: 5px; /* ruimte tussen "Lid van" en logo */
    font-weight: 600;
}
/* hamburger menu*/
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-toggle span {
  width: 26px;
  height: 2px;
  background: var(--tekst);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

@media (max-width: 768px) {

  .menu-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 75%;
    max-width: 320px;

    background: var(--bg-licht);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;

    transition: right 0.4s ease;
    box-shadow: -8px 0 20px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav.open {
    right: 0;
  }

}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}

/* ================= Nieuws sectie ================= */
.nieuws {
  padding: 6px 0 60px;
  background: var(--bg-zacht);
}

.nieuws h2 {
  text-align: center;
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin-bottom: 40px;
}

.nieuws-slider {
  position: relative;
}

.nieuws-viewport {
  overflow: hidden;
  width: 100%;
}

.nieuws-grid {
  display: flex;
  flex-wrap: nowrap; /* nooit naar tweede regel */
  gap: 24px;
  transition: transform 0.4s ease;
  will-change: transform;
}

.nieuws-card {
  background: var(--bg-licht);
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  margin-bottom: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nieuws-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.nieuws-card h3 {
  margin-top: 0;
  margin-bottom: 12px;
}

.nieuws-card p {
  margin-bottom: 16px;
  color: #555;
}

.nieuws-card .button.small {
  margin-top: auto;
  align-self: start;
}

/* ================= Pijltjes ================= */
.nieuws-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.35);
  color: #fff;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 5;
}

.nieuws-arrow.prev {
  left: -6px;
}

.nieuws-arrow.next {
  right: -6px;
}

/* ================= Dots ================= */
.nieuws-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.nieuws-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.3);
  cursor: pointer;
}

.nieuws-dots button.active {
  background: rgba(0, 0, 0, 0.8);
}

/* ================= Mobiel ================= */
@media (max-width: 768px) {
  .nieuws-card {
    flex: 0 0 100%;
    min-width: 100%;
  }

  .nieuws-dots {
    display: flex;
  }

  .nieuws-arrow {
    display: block;
  }
}

/* ================= Desktop ================= */
@media (min-width: 769px) {
  .nieuws-card {
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: calc((100% - 48px) / 3);
  }

  .nieuws-dots {
    display: none;
  }

  .nieuws-arrow {
    display: block;
  }
}

/* ================= formulier ================= */
.form-message {
  margin-bottom: 16px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.95rem;
}

.form-message.success {
  background: #edf7ed;
  color: #1e4620;
  border: 1px solid #b7ddb9;
}

.form-message.error {
  background: #fdeeee;
  color: #7a1f1f;
  border: 1px solid #efbcbc;
}

.form-disclaimer {
  margin: 16px 0 20px;
  font-size: 0.92rem;
  line-height: 1.5;
  color: #444;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  flex: 0 0 auto;
}

.form-disclaimer a {
  text-decoration: underline;
}

/* ================= privacy statement ================= */

.page-content-privacy {
  max-width: 820px;
}

.page-content-privacy h3 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.35rem;
  line-height: 1.3;
}

.page-content-privacy p {
  max-width: none;
  margin: 0 0 16px;
  line-height: 1.8;
}

.page-content-privacy ul {
  margin: 0 0 20px 22px;
  padding: 0;
}

.page-content-privacy li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.container-narrow {
  max-width: 820px;
  margin: 0 auto;
}

/* ===============================
   CMS content (tbl_pages.content)
   altijd zwarte tekst
================================ */

.page-content,
.page-content p,
.page-content li,
.page-content span,
.page-content div {
  color: #000;
}

/* kopjes binnen CMS content */

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4,
.page-content h5,
.page-content h6 {
  color: #000;
}


/* page-salon.php */

.salon-gallery {
  margin-top: 32px;
}

.salon-gallery-main {
  margin-bottom: 12px;
}

.salon-gallery-main img {
  display: block;
  width: 80%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  background: #fff;
  margin: 0 auto;
}

.salon-gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}

.salon-thumb {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  opacity: 0.75;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.salon-thumb:hover,
.salon-thumb.active {
  opacity: 1;
}

.salon-thumb.active {
  transform: scale(1.02);
}

.salon-thumb img {
  display: block;
  width: 100%;
  height: 110px;
  object-fit: cover;
}

@media (max-width: 767px) {

  .salon-gallery-main img {
    width: 100%;
  }

  .salon-gallery-thumbs {
    grid-template-columns: repeat(5, 1fr);
  }

  .salon-thumb img {
    height: 80px;
  }

}