
/*
Theme Name:   twentytwentyfive-child
Theme URI:    
Description:  
Author:       Maciej Parzych
Author URI:   https://bioenergiamaciek.pl
Template:     twentytwentyfive
Version:      1.0
License:      GNU General Public License v2 or later
License URI:  http://www.gnu.org/licenses/gpl-2.0.html
*/

/* =========================
    Podstawowe tło i czcionka
========================= */
/* 🔹 Tło i kolory */

body {
  background: linear-gradient(180deg, #d4f1c5, #ffffff, #f3d9ff);
  color: #333333;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* 🔹 Czcionki nagłówków */

h1,
h2 {
  text-align: center;
  color: #7d5ba6;
  font-weight: bold;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

/* 🔹 Logo */

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.site-logo {
  max-width: 150px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}

.site-logo:hover {
  transform: scale(1.05);
}

/* 🔹 Usunięcie czarnej ramki po kliknięciu logo */

.site-logo:focus,
.logo-container:focus {
  outline: none;
  box-shadow: none;
}

/* 🔹 Menu nawigacyjne */

.custom-menu {
  background: linear-gradient(90deg, #7d5ba6, #d45079);
  padding: 10px;
  text-align: center;
  width: 100%;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
}

.custom-menu li {
  margin: 0 15px;
}

.custom-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease-in-out;
  padding: 10px 15px;
  border-radius: 8px;
}

.custom-menu a:hover {
  background: white;
  color: #7d5ba6;
  box-shadow: 0 5px 15px rgba(125, 91, 166, 0.4);
  transform: scale(1.05);
}

/* 🔹 Przyciski "O mnie" i "Sklep" */

.btn-custom {
  display: inline-block;
  padding: 12px 24px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  background: linear-gradient(90deg, #7d5ba6, #d45079);
  border: none;
  border-radius: 8px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 5px 15px rgba(125, 91, 166, 0.4);
}

.btn-custom:hover {
  background: white;
  color: #7d5ba6;
  border: 2px solid #d45079;
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(125, 91, 166, 0.6);
}

/* 🔹 Mandala */

.mandala-container {
  position: relative;
  display: flex;
  justify-content: center;
}

.mandala-container img {
  width: 250px;
  max-width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  display: block;
  margin: 0 auto;
  animation: mandalaPulse 3s infinite ease-in-out;
}

/* 🔹 Efekt pulsowania mandali */

@keyframes mandalaPulse {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.02);
    opacity: 0.95;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mandala-container img {
  animation: mandalaPulse 3s infinite ease-in-out;
}

/* 🔹 Efekt fali energii wokół mandali */

.mandala-container::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(180, 0, 255, 0.3) 0%, rgba(180, 0, 255, 0) 70%);
  border-radius: 50%;
  opacity: 0;
  animation: fadeGlow 3s infinite;
  top: -40%;
  left: 25%;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}

@keyframes fadeGlow {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }

  50% {
    opacity: 0.5;
    transform: scale(1.05);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

/* 🔹 Zdjęcie kontaktu */

.contact-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 40px;
}

.contact-info {
  flex: 1;
  padding: 20px;
}

.contact-image {
  flex: 1;
  max-width: 400px;
}

.contact-image img {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease-in-out;
}

.contact-image img:hover {
  transform: scale(1.03);
}

/* 🔹 Przyciski pływające */

.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-button {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7d5ba6, #d45079);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.floating-button:hover {
  transform: scale(1.1);
  background: linear-gradient(135deg, #d45079, #7d5ba6);
  box-shadow: 0 6px 15px rgba(125, 91, 166, 0.4);
}

/* 🔹 Ukrywamy hamburgera na komputerach */

@media (min-width: 769px) {
  .menu-toggle {
    display: none !important;
  }
}

/* 🔹 Styl hamburgera na telefonach */

@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
    background: linear-gradient(90deg, #7d5ba6, #d45079);
    border: none;
    font-size: 30px;
    color: white;
    padding: 10px 15px;
    cursor: pointer;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1001;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s ease-in-out;
  }

  .menu-toggle:hover {
    background: linear-gradient(90deg, #d45079, #7d5ba6);
    box-shadow: 0 6px 12px rgba(125, 91, 166, 0.5);
    transform: scale(1.1);
  }

  /* 🔹 Ukrywamy menu na starcie */

  .custom-menu {
    display: none;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #7d5ba6, #d45079);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    transition: all 0.3s ease-in-out;
  }

  /* 🔹 Po kliknięciu hamburgera menu rozwija się pionowo */

  .custom-menu.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
  }

  /* 🔹 Ukrywamy menu po schowaniu */

  .custom-menu:not(.active) {
    display: none !important;
  }

  .custom-menu ul {
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
  }

  .custom-menu li {
    margin: 10px 0;
  }
}

/* 🔹 Hamburger na telefonie */

.menu-toggle {
  display: block;
  background: linear-gradient(90deg, #7d5ba6, #d45079);
  border: none;
  font-size: 30px;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1001;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  /* 🔹 Ukrywamy menu na starcie */

  .custom-menu {
    display: none;
    position: fixed;
    /* Ustawiamy menu w stałej pozycji względem ekranu */
    top: 55px;
    /* Tuż pod hamburgerem */
    left: 10px;
    /* Delikatnie odsunięte od krawędzi */
    width: 90%;
    background: linear-gradient(90deg, #7d5ba6, #d45079);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    flex-direction: column;
    align-items: center;
    padding: 10px 0;
    z-index: 1001;
    transition: all 0.3s ease-in-out;
  }

  /* 🔹 Po kliknięciu hamburgera menu się rozwija pod nim */

  .custom-menu.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
  }
}

/* 🔹 Efekt po najechaniu na hamburger */

.menu-toggle:hover {
  background: linear-gradient(90deg, #d45079, #7d5ba6);
  box-shadow: 0 6px 12px rgba(125, 91, 166, 0.5);
  transform: scale(1.1);
}

/* 🔹 Usunięcie czarnej ramki wokół loga po kliknięciu */

.back-to-home a:focus,
.back-to-home a:active,
.site-logo:focus,
.site-logo:active {
  outline: none !important;
  box-shadow: none !important;
}

.site-logo {
  transition: transform 0.3s ease-in-out;
}

.site-logo:hover {
  transform: scale(1.05);
}

.intro-container {
  position: relative;
  text-align: center;
  padding: 40px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, rgba(255, 215, 0, 0) 80%);
  border-radius: 12px;
}

.intro-container {
  position: relative;
  text-align: center;
  padding: 40px;
  background: radial-gradient(circle, rgba(255, 215, 0, 0.4) 10%, rgba(255, 215, 0, 0) 70%);
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
  transition: box-shadow 0.3s ease-in-out;
}

.intro-container:hover {
  box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
}

.footer {
  margin-top: auto;
  padding: 10px 15px;
  background: linear-gradient(45deg, #8e44ad, #9b59b6, #e84393);
  color: #ffffff;
  text-align: center;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 0 15px rgba(142, 68, 173, 0.6);
  transition: box-shadow 0.3s ease-in-out, background 0.3s ease-in-out;
}

.footer:hover {
  background: linear-gradient(45deg, #732d91, #8e44ad, #c71585);
  box-shadow: 0 0 25px rgba(155, 89, 182, 0.8);
}

.footer-logo {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  vertical-align: middle;
}

/* Justowanie tekstu w paragrafach */

p {
  text-align: justify;
}

/* Wyłączenie justowania dla cytatu */

.intro-container p {
  text-align: center;
  /* Centrowanie cytatu */
}

/* Wyrównanie listy do lewej */

ul {
  text-align: left;
  margin-left: 20px;
  /* Można dostosować */
}

/* Przyciski na środku */

a.btn-custom {
  display: block;
  text-align: center;
  width: fit-content;
  /* Szerokość dopasowana do treści */
  padding: 12px 24px;
  margin: 10px auto;
  /* Centrowanie */
  border-radius: 8px;
}

custom-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
  padding: 10px;
  border-bottom: 2px solid #ffffff;
  position: relative;
  z-index: 1000;
}

.custom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.custom-menu li {
  position: relative;
}

.custom-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 15px;
  transition: all 0.3s ease-in-out;
}

.custom-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Ukrycie nadmiarowego efektu podświetlania */

.custom-menu li::before,
.custom-menu li::after {
  display: none;
}

/* Ikona powrotu wyrównana z menu */

#back-home {
  display: none;
  text-align: center;
}

#back-home a {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 15px;
  border-radius: 5px;
}

#back-home a:hover {
  background: rgba(255, 255, 255, 0.3);
}

/* Zapobieganie efektowi „obraz w obrazie” */

.custom-menu img {
  max-width: 100%;
  height: auto;
  display: block;
}

.custom-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #121212;
  padding: 10px;
  border-bottom: 2px solid #ffffff;
  position: relative;
  z-index: 1000;
  flex-wrap: nowrap;
  /* Zapobiega zawijaniu wierszy */
  overflow-x: auto;
  /* Pozwala na przewijanie, jeśli menu jest zbyt szerokie */
}

.custom-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 10px;
  white-space: nowrap;
  /* Zapobiega zawijaniu elementów */
}

.custom-menu li {
  display: inline-block;
}

.custom-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  padding: 8px 12px;
  transition: all 0.3s ease-in-out;
}

.custom-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}

/* Ukrycie nadmiarowego efektu podświetlania */

.custom-menu li::before,
.custom-menu li::after {
  display: none;
}

/* Ikona powrotu wyrównana z menu */

#back-home {
  display: none;
}

#back-home a {
  background: rgba(255, 255, 255, 0.1);
  padding: 8px 12px;
  border-radius: 5px;
}

#back-home a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mega-menu {
  background: rgba(18, 18, 18, 0.95);
  /* Ciemne, półprzezroczyste tło */
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(255, 255, 255, 0.2);
}

.mega-menu ul {
  display: flex;
  justify-content: center;
  gap: 15px;
  white-space: nowrap;
}

.mega-menu li {
  list-style: none;
}

.mega-menu a {
  text-decoration: none;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 15px;
  border-radius: 5px;
  transition: all 0.3s ease-in-out;
}

.mega-menu a:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
  .custom-menu {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
}

/* 🔹 Stylizacja menu z ikonami */

.custom-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #7d5ba6, #d45079);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-wrap: nowrap;
  overflow-x: auto;
  /* Zapobieganie zawijaniu ikon */
}

/* 🔹 Lista menu w jednej linii */

.custom-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

/* 🔹 Pojedyncze pozycje menu */

.custom-menu li {
  display: inline-block;
}

/* 🔹 Styl dla linków w menu */

.custom-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
}

/* 🔹 Ikony w menu */

.custom-menu a i {
  font-size: 20px;
}

/* 🔹 Efekt podświetlenia po najechaniu */

.custom-menu a:hover {
  background: white;
  color: #7d5ba6;
  box-shadow: 0 5px 15px rgba(125, 91, 166, 0.4);
  transform: scale(1.05);
}

/* 🔹 Dynamiczny licznik koszyka */

#cart-count {
  background: red;
  color: white;
  font-size: 14px;
  padding: 3px 6px;
  border-radius: 50%;
  font-weight: bold;
  margin-left: 5px;
  display: inline-block;
}

/* 🔹 Tło i kolory */

body {
  background: linear-gradient(180deg, #d4f1c5, #ffffff, #f3d9ff);
  color: #333333;
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
}

/* 🔹 Czcionki nagłówków */

h1,
h2 {
  text-align: center;
  color: #7d5ba6;
  font-weight: bold;
}

h1 {
  font-size: 32px;
}

h2 {
  font-size: 24px;
}

/* 🔹 Logo */

.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.site-logo {
  max-width: 150px;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}

.site-logo:hover {
  transform: scale(1.05);
}

/* 🔹 Menu nawigacyjne */

.custom-menu {
  background: linear-gradient(90deg, #7d5ba6, #d45079);
  padding: 10px;
  text-align: center;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  white-space: nowrap;
}

.custom-menu li {
  margin: 0 15px;
}

.custom-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
  transition: all 0.3s ease-in-out;
  padding: 10px 15px;
  border-radius: 8px;
}

.custom-menu a:hover {
  background: white;
  color: #7d5ba6;
  box-shadow: 0 5px 15px rgba(125, 91, 166, 0.4);
  transform: scale(1.05);
}

/* 🔹 Stylizacja tekstu w intro */

.intro-container p {
  font-family: 'Georgia', serif;
  font-style: italic;
  font-size: 1.3rem;
  color: black !important;
  /* Czarny kolor wymuszony */
  text-align: center;
  background: none !important;
  /* Usunięcie gradientu */
}

/* 🔹 Poprawione podążanie menu na telefonie */

@media (max-width: 768px) {
  .custom-menu {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 12px;
    background: linear-gradient(90deg, #7d5ba6, #d45079) !important;
  }

  .custom-menu ul {
    justify-content: center;
  }

  .custom-menu a {
    padding: 12px 14px;
    font-size: 16px;
  }
}

/* 🔹 Styl hamburgera */

.menu-toggle {
  display: none;
  background: linear-gradient(90deg, #7d5ba6, #d45079);
  border: none;
  font-size: 30px;
  color: white;
  padding: 10px 15px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1001;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: 0.3s ease-in-out;
}

@media (max-width: 768px) {
  .menu-toggle {
    display: block !important;
  }

  .custom-menu {
    display: none;
  }

  .custom-menu.active {
    display: flex !important;
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-image img {
  max-width: 100%;
  /* Zdjęcie dopasowuje się do ekranu */
  height: auto;
  /* Proporcje są zachowane */
  display: block;
  /* Zapobiega błędom wyrównania */
  margin: 0 auto;
  /* Centrowanie zdjęcia */
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

html,
body {
  overflow-x: hidden;
  /* Ukrywa przewijanie w poziomie */
  width: 100%;
  /* Ustawia szerokość strony na pełne 100% */
  max-width: 100%;
}

.container,
.content,
.site {
  max-width: 100%;
  /* Zapobiega nadmiernemu rozszerzaniu */
  overflow-x: hidden;
}

.back-home {
  display: inline-block;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  color: #7d5ba6;
  text-decoration: none;
  background: linear-gradient(90deg, #d45079, #7d5ba6);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}

.back-home:hover {
  background: white;
  color: #7d5ba6;
  border: 2px solid #d45079;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(125, 91, 166, 0.4);
}

/* Ukrycie ikonki powrotu na stronie głównej */

body.home .back-home {
  display: none;
}

.back-home {
  display: block;
  padding: 10px 15px;
  font-size: 18px;
  font-weight: bold;
  color: #7d5ba6;
  text-decoration: none;
  background: linear-gradient(90deg, #d45079, #7d5ba6);
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  width: fit-content;
  margin: 20px auto;
}

.back-home:hover {
  background: white;
  color: #7d5ba6;
  border: 2px solid #d45079;
  transform: scale(1.1);
  box-shadow: 0 6px 15px rgba(125, 91, 166, 0.4);
}

/* Ukrycie ikonki powrotu na stronie głównej */

body.home .back-home {
  display: none;
}

/* 🔹 Dostosowanie zdjęcia kontaktowego na iPhone 16 */

.contact-image img {
  width: 100% !important;
  max-width: 300px !important;
  height: auto !important;
  border-radius: 16px !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2) !important;
  transition: transform 0.3s ease-in-out !important;
  object-fit: cover !important;
}

/* 🔹 Specjalne poprawki dla iPhone 16 */

@media only screen and (max-width: 430px) and (-webkit-device-pixel-ratio: 3) {
  .contact-image img {
    max-width: 280px !important;
    height: auto !important;
  }
}

/* 🔹 Stylizacja głównych przycisków WooCommerce */

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce a.button.alt,
.woocommerce input.button.alt,
.wp-block-button__link,
.wp-block-button a {
  background: linear-gradient(90deg, #d45079, #7d5ba6, #b25ef9);
  color: white !important;
  font-size: 18px;
  font-weight: bold;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  transition: all 0.3s ease-in-out;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-align: center;
  display: inline-block;
}

/* 🔹 Efekt po najechaniu */

.woocommerce button.button:hover,
.woocommerce a.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce a.button.alt:hover,
.woocommerce input.button.alt:hover,
.wp-block-button__link:hover,
.wp-block-button a:hover {
  background: white !important;
  color: #7d5ba6 !important;
  border: 2px solid #d45079;
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(125, 91, 166, 0.4);
}

/* 🔹 Poprawa odstępów między przyciskami */

.woocommerce button.button,
.woocommerce a.button,
.woocommerce input.button,
.wp-block-button {
  margin: 10px 0;
}

@media (max-width: 768px) {
  .filter-sidebar {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: space-between !important;
  }

  .filter-sidebar .widget {
    width: 48% !important;
    /* Dwa filtry obok siebie */
    margin-bottom: 10px !important;
  }
}

.custom-menu {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(90deg, #7d5ba6, #d45079);
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  flex-wrap: nowrap;
  overflow-x: auto;
}

.custom-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 15px;
  white-space: nowrap;
}

.custom-menu li {
  display: inline-block;
}

.custom-menu a {
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  color: white;
  padding: 8px 12px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease-in-out;
}

.custom-menu a:hover {
  background: white;
  color: #7d5ba6;
  box-shadow: 0 5px 15px rgba(125, 91, 166, 0.4);
  transform: scale(1.05);
}
img.attachment-woocommerce_thumbnail.size-woocommerce_thumbnail {
  height: 350px !important;
  object-fit: cover; /* lub contain jeśli wolisz pełne dopasowanie */
  object-position: center;
}
.page .entry-title {
display: none;
}
/* 🟡 Złota ramka tylko na zdjęciu produktu */
.wc-block-components-product-image img {
  border: 3px solid gold !important;
  border-radius: 12px;
  transition: all 0.3s eaomponents-product-image img {
 }

/* 💬 Chmurka z tagiem */
.product-tooltip {
  position: absolute;
  background: #fff8dc;
  color: #333;
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* ❌ Usunięcie efektu kliknięcia/focus */
.wc-block-components-product-image img:focus,
.wc-block-components-product-image img:active {
  outline: none !important;
  box-shadow: none !important;
}
/* =========================
   Hero Block i złota ramka
========================= */
.hero-block {
  background: var(--tlo-strony);
  padding: 40px 0;
  position: relative;
  overflow: hidden;
}

.golden-frame {
  max-width: 1200px;
  margin: 0 auto;
  border: 4px solid #ffe484;
  border-radius: 24px;
  background: #fffbe6;
  padding: 40px 20px;
  position: relative;
  z-index: 3;
  box-sizing: border-box;
}

.golden-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(255, 228, 132, 0.3) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-inner {
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: 150px;
  height: auto;
  margin: 0 auto 16px;
  display: block;
}

.hero-title {
  font-size: 2.2rem;
  color: #7d5ba6;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #222;
  margin-bottom: 8px;
}

/* =========================
   Mandala i energia
========================= */
.mandala-container {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  z-index: 1;
  opacity: 0.45;
}

.mandala-container img {
  width: 100%;
  height: auto;
}

.energy-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 236, 173, 0.25) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* =========================
   Dostosowania responsywne
========================= */
@media (max-width: 768px) {
  .hero-title {
    font-size: 1.6rem;
  }

  .hero-subtitle {
    font-size: 0.95rem;
  }

  .hero-logo {
    width: 120px;
  }

  .golden-frame {
    padding: 28px 16px;
  }
}

/* =========================
   Reset tła strony za ramką
========================= */
body {
  background: var(--tlo-strony);
}

/* =========================
   Plama pod napisem i logo
========================= */
.hero-block::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse at center, #fff2bf 0%, transparent 80%);
  z-index: 0;
}

.hero-block {
  position: relative;
  z-index: 2;
}

/* =========================
   Styl napisu i tła
========================= */
:root {
  --tlo-strony: #faf6ff;
}
