
body {
  background-color: #f3e9e3;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

.hero-logo {
  text-align: center;
  margin: 0 auto 8px auto;
}

.main-logo {
  max-width: 180px;
  width: 22%;
  display: block;
  margin: 0 auto;
}

/* --- SLIDER --- */
.slider-container {
  position: relative;
  width: 80%;          /* zwężenie */
  height: 70vh;        /* niższy slider */
  margin: 20px auto;   /* wyśrodkowanie */
  border-radius: 20px; /* ładne zaokrąglenia rogów */
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

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

.slide-content {
  position: absolute;
  bottom: 20%;
  left: 10%;
  color: white;
  text-shadow: 0 2px 6px rgba(0,0,0,0.7);
}

.slide-content h1 {
  font-size: 48px;
  margin-bottom: 20px;
}

.btn-slide {
  padding: 12px 24px;
  background: #a67868;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
  transition: background 0.3s ease;
}
.btn-slide:hover {
  background: #8e5f5f;
}

/* Strzałki slidera */
.prev, .next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(0, 0, 0, 0.4);
  color: white;
  font-size: 32px;
  padding: 12px;
  border-radius: 50%;
  cursor: pointer;
  user-select: none;
  transition: background 0.3s;
  z-index: 2;
}

.prev:hover, .next:hover {
  background-color: rgba(0, 0, 0, 0.7);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* --- CTA i szukajka --- */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.cta-buttons {
  display: flex;
  gap: 12px;
}

.cta-button {
  background-color: #8a5c52;
  color: white;
  padding: 10px 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: bold;
}

.search-icon img {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.search-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  z-index: 999;
}

.search-box {
  position: absolute;
  top: 60px;
  right: 20px;
  display: none;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.95);
  padding: 8px;
  border-radius: 8px;
  z-index: 998;
}
.search-box input {
  padding: 6px 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
  width: 160px;
}
.search-box button {
  background: #a67868;
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 6px;
  cursor: pointer;
}
.search-box button:hover {
  background: #8e5f5f;
}
/* Sekcje zabiegów */
.category-section {
  background: rgba(255, 255, 255, 0.9);
  padding: 40px 30px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}

.category-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #5e4233;
  text-align: center;
}

/* Akordeon */
.accordion-item {
  margin-bottom: 15px;
}

.accordion-header {
  font-weight: bold;
  padding: 14px 20px;
  background-color: #f3e9e3;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.3s;
  color: #5e4233;
}

.accordion-header:hover {
  background-color: #e6d6cc;
}

.accordion-content {
  padding: 16px 20px;
  margin-top: 8px;
  border-left: 4px solid #a67868;
  background: #fff8f5;
  display: none;
  border-radius: 10px;
  color: #4e322e;
  font-size: 15px;
  line-height: 1.6;
}

/* aktywne rozwinięcie */
.accordion-item.active .accordion-content {
  display: block;
}
/* Styl tła i kontenera dla cennika i zabiegów */
body.cennik {
  background: url("img/tlo-cennik.jpg") no-repeat center top;
  background-size: cover;
  color: #4e322e;
  padding: 50px 20px;
  line-height: 1.6;
}

.cennik-container {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 40px;
  margin: 40px auto;
  max-width: 900px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.cennik-container h1 {
  text-align: center;
  margin-bottom: 30px;
  color: #5e4233;
}

.cennik-container h2 {
  font-size: 24px;
  color: #5e4233;
  margin-top: 30px;
}
.site-header {
  background: transparent;
  margin-bottom: 20px;
}

.site-header .top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
}

.site-header .search-icon img {
  width: 28px;
  height: 28px;
  cursor: pointer;

}
.tiles .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 40px 20px;
}

/* Duże kafle */
.tile.wide {
  flex: 1 1 45%;
  max-width: 600px;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.tile.wide img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.tile.wide span {
  position: absolute;
  bottom: 16px;
  left: 16px;
  font-size: 22px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Małe kafelki w jednej linii */
.tile-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.tile.small {
  flex: 1 1 200px;
  max-width: 200px;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.tile.small img {
  width: 100%;
  height: 150px;
  object-fit: cover;
}

.tile.small span {
  position: absolute;
  bottom: 12px;
  left: 12px;
  font-size: 16px;
  font-weight: bold;
  color: white;
  text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

/* Efekt hover */
.tile:hover img {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}
.main-menu ul {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;     /* nie zawija w nową linię */
  gap: 4px;              /* mniejsze odstępy */
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 100%;
  overflow-x: auto;      /* w razie braku miejsca pojawi się przewijanie poziome */
}

.main-menu li {
  margin: 0;
  flex: 0 0 auto;        /* przyciski zachowują własną szerokość */
}

.main-menu a {
  background: #a67868;
  color: white;
  padding: 6px 10px;    /* zmniejszony padding */
  border-radius: 12px;
  text-decoration: none;
  font-size: 13px;      /* jeszcze mniejsza czcionka */
  white-space: nowrap;  /* blokuje łamanie tekstu w przycisku */
  display: inline-block;
  transition: background 0.3s ease;
}

.main-menu a:hover {
  background: #8e5f5f;
}

/* Dodatkowa responsywność – na węższych ekranach */
@media (max-width: 1024px) {
  .main-menu ul {
    gap: 3px;
  }
  .main-menu a {
    font-size: 12px;
    padding: 5px 8px;
  }
}
.welcome {
  background: rgba(255, 255, 255, 0.95);
  padding: 60px 40px;
  margin: 40px auto;
  max-width: 1200px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.welcome-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.welcome-text {
  font-size: 16px;
  line-height: 1.8;
  color: #4e322e;
}

.welcome-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #5e4233;
  margin-bottom: 20px;
}

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

.welcome-images img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  object-fit: cover;
}

/* Responsywność */
@media (max-width: 900px) {
  .welcome-container {
    grid-template-columns: 1fr;
  }
}

footer {
  background: #a67868; /* kolor jak w menu */
  color: white;
  padding: 40px 20px;
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-left, .footer-center, .footer-right {
  flex: 1;
  text-align: center;
  margin: 10px;
}

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

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

.footer-right h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.social-icons {
  display: flex;
  justify-content: center; /* wyśrodkowanie poziome */
  gap: 20px; /* odstęp między ikonami */
}

.social-icons a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s;
}

.social-icons a img:hover {
  transform: scale(1.2);
}


.footer-logo {
  max-width: 80px;
  margin-bottom: 10px;
}
.about-section {
  background-color: #fff;
  padding: 60px 20px;
  border-radius: 20px;
  max-width: 900px;
  margin: 60px auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.about-container {
  text-align: center;
  color: #5e4233; /* brązowy pasujący do stylistyki */
}

.about-title {
  font-size: 40px;
  font-weight: bold;
  color: #5e4233;
  margin-bottom: 10px;
  font-family: "Playfair Display", serif;
}

.about-subtitle {
  font-size: 24px;
  margin-bottom: 5px;
  font-weight: 400;
  font-family: "Lora", serif;
}

.about-author {
  font-size: 18px;
  margin-bottom: 30px;
  font-weight: 500;
  font-family: "Lora", serif;
}

.about-subtitle-2 {
  font-size: 26px;
  font-weight: bold;
  margin-top: 40px;
  margin-bottom: 15px;
  color: #5e4233;
  font-family: "Playfair Display", serif;
}

.about-text {
  font-size: 17px;
  line-height: 1.8;
  color: #4e322e;
  max-width: 750px;
  margin: 0 auto 20px;
  font-family: "Lora", serif;
}
.gallery-section {
  background: #fff;
  padding: 60px 20px;
  margin: 60px auto;
  max-width: 1100px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  text-align: center;
}

.gallery-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
  color: #5e4233;
  font-family: "Playfair Display", serif;
}

.gallery-container {
  position: relative;
  overflow: hidden;
}

.gallery-wrapper {
  display: flex;
  transition: transform 0.6s ease-in-out;
}

.gallery-slide {
  display: flex;
  gap: 15px;
}

.gallery-slide img {
  width: 250px;
  height: 180px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(94, 66, 51, 0.7);
  color: white;
  border: none;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  z-index: 2;
}

.gallery-arrow:hover {
  background: #5e4233;
}

.gallery-arrow.prev {
  left: 10px;
}

.gallery-arrow.next {
  right: 10px;
}

.team-divider {
  text-align: center;
  font-size: 36px; /* powiększenie napisu */
  font-weight: 600;
  font-family: 'Playfair Display', serif; /* elegancka czcionka */
  color: #5e4233; /* brązowy kolor */
  margin: 60px auto 30px;
  letter-spacing: 2px; /* lekki odstęp między literami */
}


}

.team-title {
  text-align: center;
  margin-bottom: 40px;
}

.team-title h2 {
  font-size: 32px;
  font-weight: bold;
  color: #5e4233; /* brązowy jak menu */
  position: relative;
  display: inline-block;
}

.team-card {
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px;
  gap: 40px;
}

.team-photo img {
  width: 250px;
  height: 320px;
  object-fit: cover;
  border-radius: 50% / 40%; /* owal */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.team-info {
  flex: 1;
}

.team-info h3 {
  font-size: 26px;
  color: #5e4233;
  margin-bottom: 20px;
}

.team-info p {
  font-size: 16px;
  line-height: 1.7;
  color: #4e322e;
}
.booksy-cta {
  text-align: center;
  margin: 60px 0;
}

.booksy-cta a {
  background-color: #a67868; /* kolor menu */
  color: #fff;
  padding: 16px 40px;
  font-size: 20px;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  transition: background 0.3s ease, transform 0.2s ease;
}

.booksy-cta a:hover {
  background-color: #8e5f5f;
  transform: scale(1.05);
}
body.cennik,
body.onas {
  background: url("img/tlo-cennik.jpg") no-repeat center top;
  background-size: cover;
  color: #4e322e;
  padding: 50px;
  line-height: 1.6;
}


.panel {
  padding: 0 20px;
  display: none;
  overflow: hidden;
  background-color: #fffaf7;
  border-left: 3px solid #d2b48c;
  border-radius: 0 0 12px 12px;
  margin-bottom: 10px;
}
.accordion-header {
  position: relative;
  cursor: pointer;
  padding: 15px;
  font-weight: bold;
  border-radius: 10px;
  background-color: #f3e8e3;
  color: #5e4233;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.accordion-header::after {
  content: "";
  position: absolute;
  right: 20px; /* ustawienie przy prawej krawędzi nagłówka */
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  border-right: 2px solid #5e4233;
  border-bottom: 2px solid #5e4233;
  transition: transform 0.3s ease;
}

.accordion-header.active::after {
  transform: translateY(-50%) rotate(-135deg);
}

/* Formularz kontaktowy – stylizacja */
.contact-form {
  background: #fdfdfd; 
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 20px rgba(0,0,0,0.1);
  max-width: 800px;
  margin: 40px auto;
}

.contact-form h3 {
  text-align: center;
  color: #5a3d2b;
  font-size: 22px;
  margin-bottom: 20px;
  font-family: 'Georgia', serif;
}

.contact-form form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d4bdae;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'Arial', sans-serif;
  background: #fffaf8;
  box-sizing: border-box;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #8b5e3c;
  outline: none;
  box-shadow: 0 0 6px rgba(139,94,60,0.4);
}

.contact-form textarea {
  grid-column: span 2;
  min-height: 140px;
  resize: none;
}

.contact-form button {
  grid-column: span 2;
  padding: 14px;
  background: #8b5e3c;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease;
}

.contact-form button:hover {
  background: #704830;
}
.consents {
  grid-column: 1 / -1;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0;
}

.consents label {
  display: grid;
  grid-template-columns: 20px 1fr; /* lewa wąska kolumna dla checkboxa */
  align-items: start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.5;
  color: #5e4233;
}

.consents input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 2px;
}

.consents span {
  display: block;
  word-break: break-word; /* łamanie długich linii */
}
.top-cta {
  position: absolute;
  top: 20px;       /* odstęp od góry */
  left: 20px;      /* odstęp od lewej */
  display: flex;
  gap: 12px;
  z-index: 1000;   /* nad logo */
}

.top-cta .cta-button {
  background-color: #8a5c52;
  color: white;
  padding: 10px 18px;
  border-radius: 18px;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}

.top-cta .cta-button:hover {
  background-color: #704830;
}


.policy-section, .regulamin-section {
  max-width: 900px;  /* szerokość taka sama */
  margin: 40px auto; 
  padding: 30px 40px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.policy-container h1, .regulamin-container h1 {
  font-size: 28px;
  color: #5a3b2c;
  text-align: center;
  margin-bottom: 20px;
}

.map-section {
  max-width: 900px;
  margin: 40px auto;
  text-align: center;
}

.map-section h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #5e4233;
}

.map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.shop-section {
  max-width: 1100px;
  margin: 40px auto;
  padding: 20px;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  transition: transform 0.2s;
}

.product:hover {
  transform: translateY(-5px);
}
.shop-layout {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 40px;
}

.shop-main h1 {
  margin-bottom: 30px;
  color: #5e4233;
  text-align: left;
}

.shop-sidebar {
  background: #fff8f5;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.user-menu {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.user-menu .icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

.cart-link {
  position: relative;
}

#cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #a67868;
  color: white;
  font-size: 12px;
  font-weight: bold;
  padding: 3px 7px;
  border-radius: 50%;
}

.search-form input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  margin-bottom: 10px;
}

.search-form button {
  width: 100%;
  padding: 10px;
  background: #a67868;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}
.search-form button:hover {
  background: #8e5f5f;
}
.contact-slider {
  background: url("img/sliderkontakt.png") no-repeat center center/cover;
  width: 100%;
  height: 100vh; /* pełen ekran */
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.contact-overlay {
  background: rgba(255, 248, 245, 0.85); /* jasny półprzezroczysty */
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  max-width: 700px;
  width: 90%;
}

.contact-content h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #5e4233;
}

.contact-content form input,
.contact-content form textarea {
  width: 100%;
  margin-bottom: 15px;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
}

.contact-content form button {
  width: 100%;
  padding: 12px;
  background: #a67868;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
}

.contact-content form button:hover {
  background: #8e5f5f;
}

.consents label {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 10px;
  align-items: start;
  font-size: 13px;
  color: #5e4233;
  margin-bottom: 12px;
}
.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.contact-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0;
}
.contact-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.contact-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.booksy-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #a67868;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.booksy-button:hover {
  background: #8e5f5f;
}
.contact-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px; /* odstęp od menu */
}
/* Odstęp od menu dla desktopów */
.contact-banner {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 40px;
}

.contact-banner img {
  width: 100%;
  height: auto;
  display: block;
}

/* Przycisk - wersja desktop */
.booksy-button {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #a67868;
  color: white;
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
  transition: background 0.3s ease;
}

.booksy-button:hover {
  background: #8e5f5f;
}

/* 📱 Mobile */
@media (max-width: 768px) {
  .contact-banner {
    margin-top: 20px; /* mniejszy odstęp od menu */
  }

  .booksy-button {
    position: static; /* usuwa przyklejenie do rogu */
    display: block;
    margin: 20px auto; /* wyśrodkowany */
    text-align: center;
    width: 80%; /* szeroki przycisk */
    font-size: 18px;
    padding: 15px;
  }

  .contact-content form input,
  .contact-content form textarea {
    font-size: 16px;
    padding: 14px;
  }

  .contact-content form button {
    font-size: 18px;
    padding: 15px;
  }

  .map-container iframe {
    height: 300px; /* mniejsza mapka na mobile */
  }
}
.cart-container {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff8f5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.cart-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #5e4233;
}

.cart-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.cart-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 8px;
  margin-right: 20px;
}

.cart-details {
  flex: 1;
}

.cart-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-actions button {
  background: #a67868;
  color: white;
  border: none;
  padding: 5px 10px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-actions button:hover {
  background: #8e5f5f;
}

.remove-btn {
  background: #d9534f;
}

.remove-btn:hover {
  background: #c9302c;
}

.cart-summary {
  margin-top: 30px;
  text-align: center;
}

.cart-summary button {
  margin-top: 15px;
  background: #5e4233;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 16px;
}

.cart-summary button:hover {
  background: #402d21;
}

/* 📱 Wersja mobilna */
@media (max-width: 768px) {
  .cart-container {
    margin: 20px 10px;
    padding: 15px;
  }

  .cart-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-img {
    width: 100%;
    height: auto;
    margin: 0 0 10px 0;
  }

  .cart-details h3 {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .cart-details p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .cart-actions {
    width: 100%;
    justify-content: space-between;
    gap: 5px;
  }

  .cart-actions button {
    flex: 1;
    padding: 10px;
    font-size: 16px;
  }

  .cart-summary {
    margin-top: 20px;
  }

  .cart-summary button {
    width: 100%;
    padding: 15px;
    font-size: 18px;
  }
}
.shop-container {
  max-width: 1200px;
  margin: 50px auto;
  padding: 20px;
  background: #fff8f5;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.product {
  background: white;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
}

.product img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
}

.product h3 {
  font-size: 18px;
  margin: 10px 0;
}

.product p {
  font-size: 14px;
  color: #555;
  min-height: 40px;
}

.product .price {
  display: block;
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0;
}

.product button {
  background: #a67868;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.product button:hover {
  background: #8e5f5f;
}

/* Modal */
.modal {
  display: none; 
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.7);
}

.modal-content {
  background: #fff;
  margin: 5% auto;
  padding: 20px;
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  text-align: center;
  position: relative;
}

.modal-content img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 15px;
}

.modal-content .price {
  display: block;
  font-size: 20px;
  font-weight: bold;
  margin: 15px 0;
}

.modal-content button {
  background: #a67868;
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  cursor: pointer;
}

.modal-content button:hover {
  background: #8e5f5f;
}

.close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 28px;
  cursor: pointer;
}
.category-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.category-list li {
  background: #a67868;
  color: white;
  padding: 8px 12px;
  margin-bottom: 8px;
  border-radius: 6px;
  cursor: pointer;
  text-align: center;
  transition: background 0.3s;
}

.category-list li:hover {
  background: #8e5f5f;
}
.favorite-icon {
  font-size: 24px;
  cursor: pointer;
  color: #888;
  transition: color 0.3s;
  display: inline-block;
  margin-top: 8px;
}

.favorite-icon.active {
  color: red;
}
.consultation-boxes {
  display: flex;
  gap: 20px;
  margin: 40px auto;
  max-width: 1100px;
  flex-wrap: wrap;
}

.consultation-box {
  flex: 1;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  min-width: 300px;
}

.consultation-box h4 {
  color: #5e4233;
  margin-bottom: 15px;
  font-size: 20px;
}

.consultation-box ul {
  list-style: disc;
  padding-left: 20px;
  color: #7b5a4a;
  line-height: 1.6;
}
.consultation-info {
  max-width: 900px;
  margin: 50px auto;
  background: #fff8f5;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.consultation-info h3 {
  color: #5e4233;
  margin-bottom: 20px;
  font-size: 22px;
}

.consultation-info p {
  color: #7b5a4a;
  line-height: 1.7;
  font-size: 16px;
  margin-bottom: 15px;
}
.consultation-banner {
  position: relative;
  width: 100%;
  max-height: 500px; /* dopasuj do wysokości slidera */
  overflow: hidden;
}

.consultation-banner img {
  width: 100%;
  height: auto;
  display: block;
}

.consult-btn {
  position: absolute;
  bottom: 20px;   /* odstęp od dołu */
  left: 20px;     /* odstęp od lewej */
  padding: 12px 25px;
  background: #a67868;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: background 0.3s;
}

.consult-btn:hover {
  background: #8e5f5f;
/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Ogólny wygląd */
body {
  font-family: 'Arial', sans-serif;
  background: #f3e9e3;
  color: #5e4233;
}

/* Pasek górny */
.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #a67868;
  padding: 10px 20px;
}

.cta-buttons {
  display: flex;
  gap: 10px;
}

.cta-button {
  background: #5e4233;
  color: white;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s;
}

.cta-button:hover {
  background: #3b2c21;
}

.search-icon img {
  width: 22px;
  cursor: pointer;
}

/* Logo */
.hero-logo {
  text-align: center;
  margin: 20px 0;
}
.hero-logo img {
  max-width: 200px;
  height: auto;
}

/* Menu główne */
.main-menu ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  list-style: none;
  background: #e9d7d0;
  padding: 15px 20px;
  border-radius: 20px;
  margin: 0 auto 20px;
  flex-wrap: wrap;
}
.main-menu li a {
  text-decoration: none;
  color: #5e4233;
  font-weight: bold;
  padding: 8px 14px;
  border-radius: 15px;
  transition: background 0.3s;
}
.main-menu li a:hover,
.main-menu li a.active {
  background: #a67868;
  color: white;
}

/* Formularz wyszukiwania */
.search-box {
  display: none;
  justify-content: center;
  margin-bottom: 20px;
}
.search-box input {
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
.search-box button {
  padding: 8px 12px;
  background: #a67868;
  color: white;
  border: none;
  border-radius: 6px;
  margin-left: 5px;
  cursor: pointer;
}
.search-box button:hover
.pielegnacja-header {
  text-align: center;
  margin: 40px auto 20px;
}

.pielegnacja-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #a67868;
  position: relative;
  display: inline-block;
}

.pielegnacja-header h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #a67868;
  margin: 10px auto 0;
  border-radius: 2px;
}

.pielegnacja-links {
  max-width: 900px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pielegnacja-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 18px 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #5e4233;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s, background 0.3s;
}

.pielegnacja-card:hover {
  background: #f7f2f0;
  transform: translateY(-3px);
}
.pielegnacja-header {
  text-align: center;
  margin: 40px auto 20px;
}

.pielegnacja-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  color: #a67868;
  position: relative;
  display: inline-block;
}

.pielegnacja-header h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  background: #a67868;
  margin: 10px auto 0;
  border-radius: 2px;
}

.pielegnacja-links {
  max-width: 900px;
  margin: 30px auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.pielegnacja-card {
  display: block;
  background: #fff;
  border-radius: 10px;
  padding: 18px 25px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: #5e4233;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.2s, background 0.3s;
}

.pielegnacja-card:hover {
  background: #f7f2f0;
  transform: translateY(-3px);
}
/* ===== PIELĘGNACJA – układ i typografia ===== */
.pielegnacja-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px 40px;
}

.pielegnacja-section h2 {
  margin: 0 0 16px;
  font-size: clamp(22px, 3.2vw, 32px);
  line-height: 1.2;
}

.pielegnacja-section h3 {
  margin: 20px 0 10px;
  font-size: clamp(18px, 2.4vw, 24px);
}

/* ===== Zakładki (tabs) ===== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 10px 0 16px;
  border-bottom: 1px solid #e6d9d3;
}

.tabs a {
  text-decoration: none;
  color: #a67868;
  background: #fff;
  border: 1px solid #e6d9d3;
  padding: 10px 14px;
  border-radius: 9999px;
  font-weight: 600;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.tabs a:hover {
  background: #a67868;
  color: #fff;
  border-color: #a67868;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

/* aktywna zakładka (JS doda klasę .active) */
.tabs a.active {
  background: #a67868;
  color: #fff;
  border-color: #a67868;
}

/* ===== Bloki sekcji ===== */
.section-content {
  padding: 18px 0 28px;
}

/* ===== Baner konsultacji z przyciskiem ===== */
.consultation-banner,
.img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
  margin: 8px 0 20px;
}

.consultation-banner img,
.img-wrapper img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.consult-btn,
.section-content .btn {
  position: absolute;
  left: 16px;
  bottom: 16px;
  padding: 10px 16px;
  border-radius: 10px;
  background: #a67868;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .2px;
  box-shadow: 0 6px 20px rgba(0,0,0,.12);
  transition: transform .15s ease, background .15s ease;
}

.consult-btn:hover,
.section-content .btn:hover {
  background: #8e5f5f;
  transform: translateY(-1px);
}

/* ===== Dwa pudełka konsultacji ===== */
.consultation-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 14px;
}

.consultation-box {
  background: #fff;
  border: 1px solid #e6d9d3;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

.consultation-box h4 {
  margin: 0 0 10px;
  font-size: 18px;
}

.consultation-box ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.6;
}

/* Dodatkowa informacja pod boxami */
.consultation-info {
  background: #fff;
  border: 1px solid #e6d9d3;
  border-radius: 12px;
  padding: 16px;
  margin-top: 16px;
  box-shadow: 0 4px 14px rgba(0,0,0,.06);
}

/* ===== Drobne UX ===== */
html { scroll-behavior: smooth; }
.pielegnacja-section a { -webkit-tap-highlight-color: transparent; }

/* ===== RWD ===== */
@media (max-width: 900px) {
  .consultation-boxes { grid-template-columns: 1fr; }
  .consult-btn, .section-content .btn {
    left: 12px; right: 12px;
    text-align: center;
  }
}

/* Nagłówek i opis konsultacji – wygląd spójny z DermaQuest */
.consultation-intro {
  max-width: 900px;
  margin: 24px auto 16px;
}

.consultation-intro h3 {
  text-align: center;
  font-size: clamp(20px, 2.4vw, 26px);
  color: #8e5f5f;              /* ten sam odcień co przycisków */
  margin: 0 0 10px;
  font-weight: 700;
}

.consultation-intro p {
  margin: 0;
  font-size: 16px;
  line-height: 1.7;
  color: #3b2620;              /* spokojny ciemny brąz */
  text-align: left;
}

/* Dla spójności nagłówków w sekcji pielęgnacji */
.pielegnacja-section h2 {
  font-size: clamp(22px, 3vw, 30px);
  color: #3b2620;
  margin-bottom: 16px;
  font-weight: 700;
}

/* ===================== */
/*  RESPONSYWNOŚĆ STRONY */
/* ===================== */

/* --- 1200px i mniej (laptop, okno 50%) --- */
@media (max-width: 1200px) {

  /* Slider */
  .slider-container {
    height: 70vh;
  }

  .slide-content {
    bottom: 15%;
    left: 5%;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  /* Powitanie */
  .welcome-container {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .welcome-images img {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }

  /* Kafelki */
  .tiles .container {
    grid-template-columns: 1fr;
  }

  .tile.wide img {
    height: auto;
  }
}

/* --- 900px i mniej (tablet) --- */
@media (max-width: 900px) {

  .main-logo {
    width: 55%;
  }

  .main-menu ul li a {
    padding: 6px 12px;
    font-size: 14px;
  }

  .slider-container {
    height: 60vh;
  }

  .slide-content h1 {
    font-size: 28px;
  }

  .btn-slide {
    padding: 10px 20px;
    font-size: 14px;
  }

  .welcome-container {
    padding: 0 16px;
  }
}

/* --- 700px i mniej (telefony duże) --- */
@media (max-width: 700px) {

  /* Zmniejszenie marginesów */
  body {
    font-size: 15px;
  }

  .main-logo {
    width: 70%;
  }

  .main-menu ul {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .main-menu li {
    margin: 0;
  }

  .slider-container {
    height: 50vh;
  }

  .slide-content {
    bottom: 10%;
    left: 4%;
  }

  .slide-content h1 {
    font-size: 22px;
  }

  /* CTA górne */
  .top-cta {
    flex-direction: column;
    gap: 8px;
  }

  /* Powitanie */
  .welcome-text {
    text-align: left;
  }

  .welcome-images img {
    width: 100%;
  }

  /* Kafelki */
  .tile-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .tile.small img {
    height: auto;
  }
}

/* --- 500px i mniej (telefony małe) --- */
@media (max-width: 500px) {

  .main-menu ul {
    flex-direction: column;
    gap: 10px;
  }

  .slider-container {
    height: 45vh;
  }

  .btn-slide {
    font-size: 13px;
    padding: 8px 16px;
  }

  .tile-row {
    grid-template-columns: 1fr;
  }
}

