/*
Theme Name: Kottisch WP Theme
Theme URI: http://kottisch.com
Author: GMA Marketing
Author URI: http://kottisch.com
Description: Przerobiony motyw WordPress oparty na statycznej stronie Kottisch
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: kottisch
*/

/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    margin-top: 50px;
    background-color: white 
}
/* === Nagłówek === */
header {
    position: fixed; /* Header zawsze na górze */
    top: 0;
    left: 0;
    width: 100%;
    height: 150px; /* Zostaje 150px zgodnie z Twoją prośbą */
    background: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    z-index: 1000;
}



/* === Logo === */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 150px; /* Dopasowane do nagłówka */
}




/*HERO */

/* === Sekcja Hero === */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 150px 50px 50px;
    background-color: white;
    gap: 50px;
    box-sizing: border-box;
    margin-top: -35px;
    margin-bottom: 150px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    max-width: 600px;
}

.hero-text h1 {
    font-size: 3vw;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #222;
    font-weight: bold;
}

.hero-text p {
    font-size: 1.5vw;
    color: #555;
    margin-bottom: 30px;
}

.hero-btn {
    display: inline-block;
    padding: 25px 40px;
    background-color: black;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    border-radius: 30px;
    transition: background-color 0.3s;
    min-width: 180px;
    text-align: center;
}

.hero-btn:hover {
    background-color: #c09f77;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    max-width: 600px;
    width: 100%;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.hero-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 50px;
}

@media (max-width: 1100px) {
    .hero-section {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

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

    .hero-image {
        justify-content: center;
        max-width: 90%;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-section {
        padding: 170px 15px 40px;
    }
    .hero-btn {
        font-size: 16px;
        min-width: 150px;
        padding: 12px 25px;
    }
    .hero-image {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 24px;
    }

    .hero-text p {
        font-size: 12px;
    }

    .hero-section {
        padding: 180px 10px 30px;
    }
    .hero-image {
        justify-content: center;
    }
}



/* === Minimalistyczna ekskluzywna sekcja === */
.gold-attraction-container {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 5%;
    background: #ffffff; /* Białe tło */
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.05); /* Delikatny cień */
    font-size: 26px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #000000; /* Czarny tekst */
    text-shadow: none; /* Usunięcie blasku */
    border-radius: 12px;
    border: 2px solid #000000; /* Elegancka czarna obramówka */
    position: relative;
    text-align: center;
    max-width: 100%;
    margin: 80px auto;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
    .gold-attraction-container {
        font-size: 22px;
        padding: 20px 4%;
    }
}

@media (max-width: 480px) {
    .gold-attraction-container {
        font-size: 18px;
        padding: 15px 3%;
        text-shadow: none; /* Lepsza czytelność na małych ekranach */
    }
}


/* === Sekcje produktu - Zdjęcie obok tekstu === */
.product-section-left, 
.product-section-right {
    display: flex;
    flex-direction: column; /* Domyślnie napis pod zdjęciem */
    align-items: center;
    justify-content: center;
    padding: 60px 5%;
    gap: 30px;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

/* === Po pojawieniu się w widoku użytkownika === */
.show {
    opacity: 1;
}

/* === Zdjęcie zawsze na górze === */
.product-image-container {
    width: 100%;
    max-width: 400px;
}

.product-image-container img {
    width: 100%;
    border-radius: 15px;
}

/* === Stylizacja tekstu === */
.product-text {
    text-align: center;
    color: #333;
    max-width: 90%;
}

.product-text h2 {
    font-size: 36px;
    font-weight: bold;
    color: #c09f77;
    text-transform: uppercase;
}

.product-text p {
    font-size: 18px;
    color: #555;
    margin: 15px 0;
}

.product-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #c09f77;
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    transition: background 0.3s;
}

.product-btn:hover {
    background: #a07f5a;
}

/* === Na większych ekranach ustawienie obok siebie === */
@media (min-width: 1024px) {
    .product-section-left {
        flex-direction: row; /* Zdjęcie po lewej, tekst po prawej */
    }
    
    .product-section-right {
        flex-direction: row-reverse; /* Zdjęcie po prawej, tekst po lewej */
    }

    .product-text {
        max-width: 50%;
        text-align: left;
    }

    .product-image-container {
        width: 50%;
    }
}






  /*FOOTER*/
  /* Ogólny styl footera */
  .site-footer {
      background-color: #f8f8f8;
      padding: 50px 20px;
      font-family: 'Arial', sans-serif;
      color: #333;
  }

  .footer-container {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      max-width: 1200px;
      margin: 0 auto;
      align-items: start;
  }

  /* Kolumny */
  .footer-column h4 {
      font-size: 16px;
      font-weight: bold;
      margin-bottom: 15px;
      text-transform: uppercase;
      color: #000;
  }

  .footer-column p {
      font-size: 14px;
      color: #555;
      margin-bottom: 10px;
  }

  .footer-column ul {
      list-style: none;
      padding: 0;
  }

  .footer-column li {
      margin-bottom: 8px;
  }

  .footer-column a {
      text-decoration: none;
      color: #666;
      font-size: 14px;
      transition: color 0.3s;
  }

  .footer-column a:hover {
      color: #c09f77;
  }

  /* Newsletter */
  .newsletter form {
      display: flex;
      gap: 10px;
  }

  .newsletter input {
      padding: 10px;
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 5px;
      outline: none;
  }

  .newsletter button {
      padding: 10px 20px;
      background-color: #c09f77;
      color: white;
      border: none;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s;
  }

  .newsletter button:hover {
      background-color: #a8875f;
  }

  /* Social ikony */
  .social-icons {
      display: flex;
      gap: 10px;
      margin-top: 10px;
  }

  .social-icons img {
      width: 30px;
      height: 30px;
      cursor: pointer;
  }

  /* Dolna belka */
  .footer-bottom {
      text-align: center;
      margin-top: 30px;
      padding-top: 15px;
      font-size: 14px;
      color: #777;
      border-top: 1px solid #ddd;
  }

  /* Responsywność */
  @media (max-width: 768px) {
      .footer-container {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .newsletter form {
          flex-direction: column;
      }

      .newsletter input {
          width: 100%;
      }

      .social-icons {
          justify-content: center;
      }
  }




/*O nas*/


/* Sekcja O nas */
.about-section {
    background-color: white;
    margin-top: 100px;
}

/* Kontener sekcji */
.about-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Tekst O nas */
.about-text {
    flex: 1;
    max-width: 600px;
}

/* ✅ Zapewniamy, że nagłówek będzie zawsze widoczny */
.about-text h2 {
    font-size: 36px;
    color: #c09f77;
    margin-bottom: 20px;
    display: block !important; /* Gwarantuje, że się nie schowa */
    text-align: center;
}

.about-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
}

/* Zdjęcie */
.about-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    max-width: 600px;
    margin: 20px;
}

.about-image img {
    width: 100%;
    max-width: 550px;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out;
}

/* Efekt hover dla zdjęcia */
.about-image img:hover {
    transform: scale(1.03);
}

/* 📱 Poprawiona responsywność */
@media (max-width: 1024px) {
    .about-content {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .about-text {
        max-width: 100%;
    }

    .about-text h2 {
        font-size: 30px;
    }

    .about-image {
        justify-content: center;
        max-width: 100%;
    }

    .about-image img {
        max-width: 90%;
        border-radius: 15px;
    }
}


@media (max-width: 600px) {
    .about-section {
        padding: 120px 15px; /* Większy padding, aby nagłówek miał więcej miejsca */
    }
    
    .about-text h2 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 14px;
    }

    .about-image img {
        max-width: 100%;
        border-radius: 10px;
    }
}


/* Sekcja wartości */
.about-values {
    padding: 80px 20px;
    background-color: #fff;
    text-align: center;
    margin-top: 50px;
}

.about-values h2 {
    font-size: 36px;
    color: #c09f77;
    margin-bottom: 30px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.value-item {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    font-weight: bold;
    color: #555;
    transition: transform 0.3s ease;
}

.value-item span {
    font-size: 24px;
}

.value-item:hover {
    transform: translateY(-5px);
}

/* Sekcja historii */
.about-history {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 50px;
}

.about-history h2 {
    font-size: 36px;
    color: #c09f77;
    margin-bottom: 30px;
}

.timeline {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.timeline li {
    padding: 15px 0;
    border-left: 3px solid #c09f77;
    padding-left: 15px;
    position: relative;
    font-size: 18px;
    color: #555;
}

.timeline li::before {
    content: '●';
    color: #c09f77;
    position: absolute;
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: bold;
}

/* Sekcja Google Reviews */
.about-reviews {
    padding: 80px 20px;
    text-align: center;
    background-color: #f9f9f9;
    margin-top: 50px;
}

.about-reviews h2 {
    font-size: 36px;
    color: #c09f77;
    margin-bottom: 20px;
}



/* Slider opinii */
.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px;
    max-width: 100%;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth; /* Płynne przewijanie */
}

/* Ukrycie paska przewijania dla Chrome, Safari */
.reviews-slider::-webkit-scrollbar {
    display: none;
}

/* Karta opinii */
.review-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 250px;
    flex: 0 0 auto;
    text-align: center;
    transition: transform 0.3s ease-in-out;
}





/* Animacja hover dla kart */
.review-card:hover {
    transform: scale(1.05);
}

/* Tekst opinii */
.review-card p {
    font-size: 16px;
    color: #333;
    margin: 10px 0;
}

/* Autor opinii */
.review-card h4 {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
}

/* Przycisk do opinii Google */
.review-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 16px;
    color: white;
    background-color: #c09f77;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease-in-out;
}

.review-btn:hover {
    background-color: #a57f55;
}




/* Responsywność */
@media (max-width: 768px) {
    .reviews-slider {
        padding: 20px;
    }

    .review-card {
        min-width: 80%; /* Dostosowuje szerokość kart do ekranu */
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        padding-left: 0;
    }

    .timeline li {
        padding-left: 10px;
        font-size: 16px;
    }

    .review-item {
        padding: 15px;
    }

    .about-values h2,
    .about-history h2,
    .about-reviews h2 {
        font-size: 28px;
    }
}


/*KOLEKCJA*/


.collection-page {
    padding: 110px 50px 50px;
    text-align: center;
    background-color: #fff;
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #222;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    font-size: 14px;
    background-color: #fff;
    border: 1px solid #c09f77;
    cursor: pointer;
    transition: background-color 0.3s ease;
    color: black !important; /* Wymuszenie czarnego koloru tekstu */
}

/* Gdy aktywny lub najechany */
.filter-btn.active, 
.filter-btn:hover {
    background-color: #c09f77;
    color: white !important; /* Tekst zmienia się na biały tylko gdy aktywny */
}

/* Zabezpieczenie przed niebieskim kolorem */
.filter-btn:visited,
.filter-btn:focus,
.filter-btn:active {
    color: black !important; /* Tekst zawsze czarny (chyba że aktywny przycisk) */
}


.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 4 kolumny */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}


.product {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* aby tekst był zawsze na dole */
    height: 100%; /* kluczowe, żeby wszystkie produkty miały równą wysokość */
    padding: 15px; /* opcjonalnie dla odstępów */
}

.product img {
    width: 100%;
    height: 300px; /* Wymuszona wysokość na wszystkich zdjęciach */
    object-fit: contain; /* Dopasowanie bez przycinania */
}

.product p {
    font-size: 16px;
    color: #333;
    margin: 10px 0 0;
    text-align: center;
    height: 50px; /* Można wymusić stałą wysokość opisu */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Efekt hover */
.product:hover {
    transform: translateY(-10px);
}

/* Responsywność */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 kolumny na tabletach */
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr; /* 1 kolumna na telefonach */
    }
}

.blog-container {
    padding: 100px 50px 50px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    font-family: 'Playfair Display', serif;
}

.blog-section {
    margin-bottom: 50px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-in-out;
}

.blog-section h2 {
    font-size: 28px;
    color: #c09f77;
    margin-bottom: 15px;
    font-weight: bold;
    text-transform: uppercase;
}

.blog-section p, .blog-section ul {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
}

.blog-section ul {
    padding-left: 20px;
}

.blog-section ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 20px;
}

.blog-section ul li::before {
    content: '✔';
    position: absolute;
    left: 0;
    color: #c09f77;
    font-weight: bold;
}

/* Animacja wchodzenia sekcji */
.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

/* KONTAKT*/

/* === Główny kontener kontaktu === */
.contact-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 140px 20px 80px; /* Więcej przestrzeni na górze */
}

/* === Każda sekcja kontaktowa === */
.contact-info,
.contact-form,
.contact-map {
    width: 100%;
    max-width: 800px;
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 60px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* === Efekt hover dla sekcji === */
.contact-info:hover,
.contact-form:hover,
.contact-map:hover {
    transform: translateY(-5px);
    box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.12);
}

/* === Nagłówki sekcji === */
.contact-info h2,
.contact-form h2,
.contact-map h2 {
    font-size: 34px;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 1px;
}

/* === Ikony w tabeli kontaktowej === */
.contact-table td i {
    font-size: 18px;
    color: #b89c60;
}

/* === Tabela kontaktowa – równomierne wyrównanie === */
.contact-table {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.contact-table tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
}

.contact-table td {
    font-size: 18px;
    font-family: 'Inter', sans-serif;
    color: #444;
    vertical-align: middle;
    padding: 10px;
}

.contact-table td:first-child {
    font-weight: 600;
    width: 200px;
    text-align: left;
}

/* === Formularz kontaktowy === */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: #f9f9f9;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #b89c60;
    box-shadow: 0px 0px 8px rgba(184, 156, 96, 0.4);
    outline: none;
}

.contact-form button {
    padding: 14px;
    background: #b89c60;
    color: white;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background: #a58350;
    transform: scale(1.03);
}

/* === Mapa Google === */
.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.08);
}

/* === Animacja fade-in przy wejściu === */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-info,
.contact-form,
.contact-map {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* === Responsywność – mobile i tablet === */
@media (max-width: 768px) {
    .contact-container {
        padding: 100px 15px;
    }

    .contact-info,
    .contact-form,
    .contact-map {
        max-width: 100%;
        padding: 25px;
        border-radius: 12px;
    }

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

    .contact-form button {
        font-size: 16px;
    }
}





.contact-form {
    background-color: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 50px;
    text-align: left;
}

.contact-form h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #c09f77;
    text-align: center;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
}

.contact-form textarea {
    resize: none;
    height: 150px;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.contact-form input[type="checkbox"] {
    width: auto;
    cursor: pointer;
}

.contact-form button {
    background-color: #c09f77;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-form button:hover {
    background-color: #a07f5e;
}

.contact-map {
    text-align: center;
    margin-top: 20px;
}

.contact-map h2 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact-map iframe {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.google-reviews {
    max-width: 800px;
    margin: 0 auto 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
}

.review-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #c09f77;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    font-weight: bold;
    margin-top: 10px;
}

.review-btn:hover {
    background-color: #a5825b;
}


/* Responsywność */
@media (max-width: 768px) {
    .contact-container {
        padding: 120px 20px 30px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form h2 {
        font-size: 24px;
    }

    .contact-form input,
    .contact-form textarea {
        padding: 12px;
    }

    .contact-form button {
        padding: 12px;
    }
}


/*SUCCES!!*/
.notification {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    padding: 15px 20px;
    background-color: #4CAF50;
    color: #fff;
    font-weight: bold;
    border-radius: 5px;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    opacity: 1;
    transition: opacity 0.5s ease;
}

.notification.error {
    background-color: #f44336;
}

.notification.success {
    background-color: #4CAF50;
}

nav ul li a[href*="polityka-cookies"] {
    display: none !important;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(34, 34, 34, 0.95); /* Lekko przezroczysty czarny */
    color: #fff;
    font-family: Arial, sans-serif;
    font-size: 14px;
    z-index: 9999;
    display: none;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    padding: 20px;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    line-height: 1.6;
    color: #ddd;
}

.cookie-content a {
    color: #c09f77;
    text-decoration: underline;
    font-weight: bold;
}

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

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.accept-btn {
    background-color: #c09f77;
    color: #fff;
}

.accept-btn:hover {
    background-color: #a88b64;
}

.reject-btn {
    background-color: transparent;
    color: #c09f77;
    border: 1px solid #c09f77;
}

.reject-btn:hover {
    background-color: #c09f77;
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: flex-start;
    }

    .cookie-btn {
        width: 100%;
    }
}





/* WooCommerce*/
/* === Stylizacja listy produktów === */


.woocommerce-page .site-main {
    padding-top: 180px; /* wysokość headera + margines */
}



/*KATEGORIE */


/*Animacja*/
.category-card:hover img {
    transform: scale(1.08);
  }
  
/* === Kategorie produktów === */
/* === KAFELKI KATEGORII - PREMIUM STYL === */

.product-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #fff;
    border-radius: 20px;
    padding: 30px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    min-height: 260px;
  }
  
  .category-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    background-color: #fafafa;
  }
  
  /* Ikona / obrazek */
  .category-card img {
    width: 90px;
    height: 90px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
  }
  
  .category-card:hover img {
    transform: scale(1.08);
  }
  
  /* Nazwa kategorii */
  .category-card span,
  .category-card strong,
  .category-card h3,
  .category-card p {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #111 !important;
    margin-bottom: 5px;
    line-height: 1.2;
  }
  
  /* Liczba produktów */
  .category-card small {
    font-size: 14px;
    color: #666;
  }
  
  
/* === KONTAINER GŁÓWNY === */
.shop-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 150px 20px 50px;
  }


  
  /* === SIATKA PRODUKTÓW === */


  /* === HEADER SKLEPU === */
.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 20px;
  padding: 0 15px;
}

.shop-back a {
  background-color: #111;
  color: #fff;
  padding: 10px 24px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.shop-back a:hover {
  background-color: #444;
}

.shop-title {
  flex: 1;
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin: 0 auto;
  color: #111;
}

.shop-tools {
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 5px;
}

/* === Liczba wyników === */
.woocommerce-result-count {
  font-size: 14px;
  font-weight: 500;
  color: #444;
}

/* === Select sortowania === */
.woocommerce-ordering select {
  padding: 10px 16px;
  font-size: 15px;
  border: 2px solid #b8860b;
  border-radius: 12px;
  background-color: #fff;
  color: #111;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.woocommerce-ordering select:hover {
  border-color: #000;
}

/* === GRID PRODUKTÓW === */
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(1, 1fr);
  gap: 40px;
  justify-content: center;
  padding: 0 15px;
}

@media (min-width: 600px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 900px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 480px) {
  .shop-header {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 10px;
    padding: 0 10px;
  }

  .shop-back a {
    padding: 8px 18px;
    font-size: 13px;
    margin: 0 auto;
  }

  .shop-title {
    font-size: 28px;
    margin: 0;
  }

  .shop-tools {
    align-items: center;
  }

  .woocommerce-result-count {
    font-size: 13px;
    margin-bottom: 5px;
  }

  .woocommerce-ordering select {
    font-size: 14px;
    padding: 8px 12px;
    width: 100%;
    border-radius: 10px;
  }

  .woocommerce ul.products {
    padding: 0 10px;
    gap: 30px;
  }

  .woocommerce ul.products li.product {
    padding: 15px;
    border-radius: 16px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 16px;
  }

  .woocommerce ul.products li.product .price {
    font-size: 15px;
  }

  .woocommerce ul.products li.product .onsale {
    top: 10px;
    left: 10px;
    font-size: 11px;
    padding: 4px 10px;
  }

  .woocommerce ul.products li.product .button {
    font-size: 13px;
    padding: 10px 16px;
    border-radius: 999px;
    background-color: #000;
    color: #fff;
    font-weight: 600;
    transition: 0.3s ease;
    margin-top: 10px;
  }

  .woocommerce ul.products li.product .button:hover {
    background-color: #333;
  }
}


/* === KARTA PRODUKTU === */

#shop-title{
  font-family: 'Playfair Display', serif; /* lub czcionka brandowa */
  font-size: 32px;
  font-weight: 600;
  color: #1a1a1a;
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.shop-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: #C5A46D; /* lub złoty, jeśli taki masz brand */
  margin: 8px auto 0;
}

.woocommerce ul.products li.product {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.04);
  text-align: center;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.1);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  margin-top: 15px;
}

.woocommerce ul.products li.product .price {
  font-weight: 700;
  font-size: 16px;
  color: #b8860b;
  margin-top: 10px;
}

.woocommerce ul.products li.product .onsale {
  background: #b8860b;
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: bold;
  position: absolute;
  top: 15px;
  left: 15px;
}




  
  /* === KARTA PRODUKTU W KATEGORII === */
  .woocommerce ul.products li.product {
    max-width: 400px;
    margin: 0 auto;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
  }
  
  /* === NAPIS PROMOCJI (ELEGANCKI) === */
  .woocommerce ul.products li.product .onsale {
    background: none;
    color: #d4af37;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    position: static;
    margin-bottom: 10px;
    display: block;
    padding: 0;
    box-shadow: none;
  }
  
  /* === ZDJĘCIE === */
  .woocommerce ul.products li.product img {
    max-height: 240px;
    width: auto;
    margin-bottom: 20px;
  }
  
  /* === NAZWA PRODUKTU === */
  .woocommerce ul.products li.product h2.woocommerce-loop-product__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
    text-decoration: none;
  }
  
  /* === CENA === */
  .woocommerce ul.products li.product .price {
    font-size: 20px;
    font-weight: 600;
    color: #111;
    margin-bottom: 18px;
    display: block;
    text-decoration: none;
  }
  .woocommerce ul.products li.product .price del {
    color: #999;
    margin-right: 6px;
  }
  .woocommerce ul.products li.product .price ins {
    color: #d4af37;
    font-weight: 700;
    text-decoration: none;
  }
  
  /* === PRZYCISK === */
  .woocommerce ul.products li.product .button {
    background-color: #000;
    color: #fff;
    font-weight: 600;
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: auto;
    max-width: 100%;
  }
  
  .woocommerce ul.products li.product .button:hover {
    transform: scale(1.05);
    background-color: #c09f77;
  }
  
  /* === USUWANIE PODKREŚLEŃ LINKÓW === */
  .woocommerce ul.products li.product a {
    text-decoration: none !important;
    color: inherit;
  }
  .woocommerce ul.products li.product a:hover {
    text-decoration: none;
    color: inherit;
  }

  
  /*Ścieżka nawigacji*/

  .woocommerce-breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
    text-align: left;
  }
  
  .woocommerce-breadcrumb a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .woocommerce-breadcrumb a:hover {
    color: #000;
    text-decoration: underline;
  }


  /* === RESET MARGINESÓW POD HEADEREM === */
body.single-product,
.single-product-wrapper,
.single-product .site-main,
.single-product #primary,
.single-product .content-area,
.single-product main {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.single-product-wrapper {
    padding-top: 20px;
}

/* === UKŁAD: LEWO - PRAWO === */
.custom-product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.product-gallery {
    padding-top: 40px; /* przestrzeń na badge */
    position: relative;
    overflow: visible !important;
    flex: 1 1 500px;
    max-width: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-gallery img {
    width: 100%;
    height: auto;
    max-width: 400px;
    object-fit: contain;
}

.product-summary {
    flex: 1 1 500px;
    max-width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* === CENA === */
.product-summary .price {
    font-size: 28px;
    font-weight: 800;
    color: #111;
    margin-bottom: 20px;
    display: flex;
    gap: 12px;
    align-items: baseline;
}

.product-summary .price del {
    color: #999;
    font-size: 18px;
    text-decoration: line-through;
}

.product-summary .price ins {
    text-decoration: none;
    font-weight: 800;
    color: #c59d5f;
    font-size: 28px;
}

/* === ILOŚĆ PRODUKTU === */
form.cart {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 25px;
}

form.cart .quantity input.qty {
    width: 60px;
    height: 42px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 8px;
    text-align: center;
}

/* === PRZYCISK DO KOSZYKA === */
form.cart .button {
    background-color: #000;
    color: #fff;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    border-radius: 10px;
    margin: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

form.cart .button:hover {
    background-color: #c59d5f;
    color: #fff;
}

/* === POPRAWIONY BADGE PROMOCJA === */
.onsale {
    background-color: #d4af37;
    color: #fff;
    font-weight: bold;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    text-transform: uppercase;
    position: absolute;
    top: 40px;
    left: 20px;
    z-index: 10;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* === ILOŚĆ W MAGAZYNIE (działa globalnie) === */
.woocommerce .stock {
    font-size: 14px;
    background-color: #f8f8f8;
    color: #333;
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-weight: 500;
    margin: 10px 0 20px;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
    border: 1px solid #eee;
}


/* === KATEGORIE === */
.product_meta {
    font-size: 14px;
    color: #444;
    margin-top: 15px;
}

.product_meta .posted_in {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.product_meta .posted_in:before {
    content: "";
    display: none;
}

.product_meta a {
    color: #c59d5f;
    font-weight: 500;
    text-decoration: none;
    transition: 0.2s ease;
}

.product_meta a:hover {
    color: #000;
    text-decoration: underline;
}

/* === PRZYCISK "POWRÓT DO SKLEPU" === */
.back-to-shop-button {
    margin-top: 30px;
    display: inline-block;
    background-color: #c59d5f;
    color: #fff;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: 0.3s ease;
}

.back-to-shop-button:hover {
    background-color: #000;
    color: #fff;
}

/* === RESPONSYWNOŚĆ === */
@media (max-width: 768px) {
    .custom-product-grid {
        flex-direction: column;
        padding: 30px 15px;
    }

    .product-gallery,
    .product-summary {
        max-width: 100%;
    }

    .product-summary {
        align-items: center;
        text-align: center;
    }

    .product-gallery img {
        max-width: 90vw;
    }
}



/* Stylizacja przycisków Opis / Opinie */
/* Stylizujemy UL, w którym są linki */
.after-summary ul {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
    margin: 40px auto;
    list-style: none; /* usuwa kropki */
    flex-wrap: wrap;
  }
  
  /* Stylizujemy elementy listy (li) */
  .after-summary ul li {
    list-style: none;
    margin: 0;
    padding: 0;
  }
  
  /* Styl przycisków (linków) */
  .after-summary ul li a[href^="#tab-"] {
    background-color: black;
    color: white !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    min-width: 160px;
    text-align: center;
    white-space: nowrap;
    box-sizing: border-box;
    transition: 0.3s ease;
  }
  
  .after-summary ul li a[href^="#tab-"]:hover {
    background-color: #444;
  }
  
  .after-summary ul li a.active-tab {
    background-color: #c49a6c;
    color: black !important;
  }
  
  /* Responsywność */
  @media (max-width: 600px) {
    .after-summary ul {
      flex-direction: column;
      align-items: center;
    }
  
    .after-summary ul li a[href^="#tab-"] {
      width: 90%;
      font-size: 16px;
    }
  }
  
  
  /* Styl ramki wokół treści */
  .woocommerce-Tabs-panel {
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    max-width: 960px;
    margin: 0 auto 60px;
    background: white;
  }
  
  /* Responsywność */
  @media (max-width: 600px) {
    .after-summary .tab-buttons {
      flex-direction: column;
      align-items: center;
    }
  
    .after-summary .tab-buttons a {
      width: 90%;
      font-size: 16px;
    }
  }
  

/* === GŁÓWNY KONTENER OPINII === */
/* Reset ramki wewnętrznej */
#review_form_wrapper {
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  
  
  /* === NAGŁÓWEK I WIADOMOŚĆ: CENTROWANIE === */
  .woocommerce-Reviews h2,
  .woocommerce-Reviews .woocommerce-noreviews,
  .woocommerce-Reviews #review_form_wrapper > p {
    text-align: center;
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  /* === NAGŁÓWEK FORMULARZA (Napisz pierwszą opinię...) === */
  #review_form_wrapper h3 {
    text-align: center;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 30px;
  }
  
  /* === ETYKIETY === */
  #review_form label {
    display: block;
    font-weight: 600;
    margin: 16px 0 8px;
  }
  
  /* === POLA FORMULARZA === */
  #review_form input,
  #review_form textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #ccc;
    border-radius: 12px;
    font-size: 16px;
    box-sizing: border-box;
    font-family: inherit;
  }
  
  /* === TEXTAREA === */
  #review_form textarea {
    min-height: 150px;
    resize: vertical;
  }
  
  /* === PRZYCISK WYŚLIJ === */
  #review_form input#submit {
    background-color: black;
    color: white;
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 20px;
    display: block;
    width: 100%;
  }
  
  #review_form input#submit:hover {
    background-color: #444;
  }
  

  .comment-form-rating p.stars {
    display: flex;
    flex-direction: row; /* BEZ reverse */
    justify-content: center;
    gap: 6px;
    font-size: 0;
    margin: 10px 0 20px;
  }
  
  .comment-form-rating p.stars a {
    order: 5; /* Domyślnie ustaw wszystkie na koniec */
    width: 32px;
    height: 32px;
    background: url('data:image/svg+xml;utf8,<svg fill="%23ccc" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center;
    background-size: contain;
    text-indent: -9999px;
    cursor: pointer;
    transition: background-image 0.3s;
  }
  
  /* Ręcznie ustaw kolejność */
  .comment-form-rating p.stars a.star-1 { order: 1; }
  .comment-form-rating p.stars a.star-2 { order: 2; }
  .comment-form-rating p.stars a.star-3 { order: 3; }
  .comment-form-rating p.stars a.star-4 { order: 4; }
  .comment-form-rating p.stars a.star-5 { order: 5; }
  
  /* Hover i kliknięcie */
  .comment-form-rating p.stars a:hover,
  .comment-form-rating p.stars a:hover ~ a,
  .comment-form-rating p.stars a.active,
  .comment-form-rating p.stars a.active ~ a {
    background: url('data:image/svg+xml;utf8,<svg fill="%23c49a6c" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M12 17.27L18.18 21l-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73L5.82 21z"/></svg>') no-repeat center;
    background-size: contain;
  }
  .related.products > h2 {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 700;
    margin: 60px auto 40px auto;
    color: #111;
    position: relative;
  }
  
  .related.products > h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: #b8860b; /* złoty akcent */
    margin: 10px auto 0;
    border-radius: 2px;
  }
  

/* === KOSZYK WOOCOMMERCE – PEŁNA STYLIZACJA === */

/* Tabela koszyka */
.woocommerce-cart table.shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 2rem;
  font-size: 16px;
  background: white;
}
.woocommerce-cart-page{
    margin-top: 105px;
  }

.woocommerce-cart table.shop_table th,
.woocommerce-cart table.shop_table td {
  padding: 1rem;
  text-align: center;
  vertical-align: middle;
  border-bottom: 1px solid #e0e0e0;
}

.woocommerce-cart .product-thumbnail img {
  max-width: 80px;
  height: auto;
  border-radius: 10px;
}

.woocommerce-cart .product-name a {
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.woocommerce-cart .product-name a:hover {
  text-decoration: underline;
}

.woocommerce-cart input.qty {
  width: 60px;
  text-align: center;
  padding: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Sekcja z kuponem i przyciskiem zaktualizuj */
.woocommerce-cart .cart-coupon-and-update {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.woocommerce-cart .coupon {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.woocommerce-cart .coupon input.input-text {
  padding: 0.5rem 0.75rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  min-width: 200px;
  font-size: 14px;
}

.woocommerce-cart .coupon button,
.woocommerce-cart .actions .button[name="update_cart"] {
  background-color: #000;
  color: #fff;
  padding: 0.5rem 1.2rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.woocommerce-cart .coupon button:hover,
.woocommerce-cart .actions .button[name="update_cart"]:hover {
  background-color: #333;
}

/* Usuń kropkę z listy metod wysyłki */
.woocommerce-cart .cart_totals ul#shipping_method,
.woocommerce-cart .cart_totals ul {
  list-style: none !important;
  padding-left: 0;
  margin: 0;
}

.woocommerce-cart .cart_totals ul li::before {
  content: none !important;
}
/* Styl dla linku "Zmień adres" */
.woocommerce-cart .shipping-calculator-button {
  display: inline-block;
  background: none;
  border: none;
  color: #0071a1;
  text-decoration: underline;
  font-weight: 500;
  font-size: 15px;
  cursor: pointer;
  transition: color 0.2s ease;
  padding: 0;
  margin-top: 0.25rem;
}

.woocommerce-cart .shipping-calculator-button:hover {
  color: #004d70;
  text-decoration: none;
}/* Stylizacja sekcji "Zmień adres" */
.woocommerce-cart .woocommerce-shipping-calculator {
    margin-top: 1rem;
    background-color: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  }
  
  .woocommerce-cart .shipping-calculator-form p {
    margin-bottom: 1rem;
  }
  
  /* Etykiety */
  .woocommerce-cart .shipping-calculator-form label {
    font-weight: 500;
    margin-bottom: 0.25rem;
    display: inline-block;
    color: #333;
  }
  
  /* Pola formularza */
  .woocommerce-cart .shipping-calculator-form input,
  .woocommerce-cart .shipping-calculator-form select {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 15px;
    border: 1px solid #ccc;
    border-radius: 6px;
    box-sizing: border-box;
    transition: border-color 0.2s ease;
  }
  
  .woocommerce-cart .shipping-calculator-form input:focus,
  .woocommerce-cart .shipping-calculator-form select:focus {
    border-color: #999;
    outline: none;
  }
  
  /* Przycisk "Aktualizuj" */
  .woocommerce-cart .shipping-calculator-form button {
    background-color: #000;
    color: white;
    padding: 0.6rem 1.4rem;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-top: 1rem;
  }
  
  .woocommerce-cart .shipping-calculator-form button:hover {
    background-color: #333;
  }
  
  /* Link "Zmień adres" */
  .woocommerce-cart .shipping-calculator-button {
    display: inline-block;
    color: #0071a1;
    font-weight: 500;
    font-size: 15px;
    text-decoration: underline;
    margin-top: 0.5rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s ease;
  }
  
  .woocommerce-cart .shipping-calculator-button:hover {
    color: #004e74;
    text-decoration: none;
  }
  


@media (min-width: 768px) {

    
    .woocommerce-cart .cart-collaterals {
      justify-content: center;
      margin-top: 3rem;
    }
  
    .woocommerce-cart .cart_totals {
      background: #fff;
      border: 1px solid #eaeaea;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
      border-radius: 12px;
      padding: 2.5rem;
      width: 100%;
      max-width: 480px;
      font-size: 16px;
    }
  
    .woocommerce-cart .cart_totals h2 {
      font-size: 22px;
      margin-bottom: 1.5rem;
      font-weight: 700;
      color: #111;
      border-bottom: 1px solid #ddd;
      padding-bottom: 0.75rem;
    }
  
    .woocommerce-cart .cart_totals table {
      width: 100%;
      border: none;
      border-spacing: 0;
    }
  
    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table td {
      padding: 0.75rem 0;
      vertical-align: top;
    }
  
    .woocommerce-cart .cart_totals table th {
      text-align: left;
      color: #555;
      font-weight: 500;
    }
  
    .woocommerce-cart .cart_totals table td {
      text-align: right;
      color: #111;
      font-weight: 600;
    }
  
    .woocommerce-cart .cart_totals .order-total td {
      font-size: 18px;
      font-weight: 700;
      color: #000;
      border-top: 1px solid #ddd;
      padding-top: 1rem;
    }
    
  
    /* Zmień adres */
    .woocommerce-cart .cart_totals .woocommerce-shipping-calculator {
      margin-top: 1rem;
      text-align: right;
    }
  
    .woocommerce-cart .shipping-calculator-button {
      background: none;
      border: none;
      color: #0071a1;
      text-decoration: underline;
      cursor: pointer;
      padding: 0;
      font-size: 14px;
    }
  
    /* Przycisk przejścia do płatności */
    .woocommerce-cart .cart_totals .wc-proceed-to-checkout {
      margin-top: 2rem;
      text-align: center;
    }
  
    .woocommerce-cart .cart_totals .checkout-button {
      display: inline-block;
      width: 100%;
      background: linear-gradient(135deg, #000000, #333333);
      color: #ffffff;
      padding: 1rem 2rem;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .woocommerce-cart .cart_totals .checkout-button:hover {
      background: #c49a6c;
      color: #fff;
      transform: translateY(-2px);
    }
    .woocommerce-cart .cart_totals .shipping li::after {
        content: "✓";
        color: green;
        font-weight: bold;
        margin-left: 0.5rem;
      }      
  }
  

/* === RESPONSYWNOŚĆ KOSZYKA === */
@media (max-width: 768px) {
    /* Układ kolumnowy w tabeli koszyka -> bardziej czytelny */
    .woocommerce-cart table.shop_table thead {
      display: none;
    }
  
    .woocommerce-cart table.shop_table,
    .woocommerce-cart table.shop_table tbody,
    .woocommerce-cart table.shop_table tr,
    .woocommerce-cart table.shop_table td {
      display: block;
      width: 100%;
    }
  
    .woocommerce-cart table.shop_table tr {
      margin-bottom: 2rem;
      border: 1px solid #eee;
      border-radius: 8px;
      padding: 1rem;
      background-color: white;
    }
  
    .woocommerce-cart table.shop_table td {
      text-align: left;
      border: none;
      padding: 0.5rem 1rem;
      position: relative;
    }
  
    .woocommerce-cart table.shop_table td::before {
      content: attr(data-title);
      font-weight: 600;
      display: block;
      margin-bottom: 0.25rem;
      color: #666;
    }
  
    /* Miniaturki produktów */
    .woocommerce-cart .product-thumbnail img {
      max-width: 100px;
      height: auto;
      margin-bottom: 0.5rem;
    }
  
    /* Przyciski: kupony i aktualizacja */
    .woocommerce-cart .cart-coupon-and-update {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
    }
    
  
    .woocommerce-cart .coupon,
    .woocommerce-cart .actions {
      justify-content: center;
    }
  
    .woocommerce-cart .coupon {
      flex-direction: column;
      align-items: stretch;
    }
  
    .woocommerce-cart .coupon input.input-text,
    .woocommerce-cart .coupon button,
    .woocommerce-cart .actions .button[name="update_cart"] {
      width: 100%;
    }
  
    .woocommerce-cart .cart_totals {
      margin-top: 2rem;
      width: 100%;
      box-shadow: none;
      padding: 1.5rem;
    }
  
    .woocommerce-cart .cart_totals table th,
    .woocommerce-cart .cart_totals table td {
      font-size: 15px;
      padding: 0.4rem 0;
    }
  
    .woocommerce-cart .cart_totals .button {
      width: 100%;
      text-align: center;
    }
  
    .woocommerce-cart .cart_totals .woocommerce-shipping-calculator {
      text-align: center;
    }
  
    .woocommerce-cart-page {
      margin-top: 90px; /* na mobile może być nieco mniej */
    }
    .woocommerce-cart .coupon button,
    .woocommerce-cart .actions .button[name="update_cart"],
    .woocommerce-cart .cart_totals .checkout-button {
      margin-top: 10px;
    } 

    .woocommerce-cart .cart_totals .checkout-button {
      display: inline-block;
      width: 100%;
      background: linear-gradient(135deg, #000000, #333333);
      color: #ffffff;
      padding: 1rem 2rem;
      border-radius: 30px;
      font-size: 16px;
      font-weight: 700;
      text-align: center;
      text-decoration: none;
      transition: background-color 0.3s ease, transform 0.2s ease;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .woocommerce-cart .cart_totals .checkout-button:hover {
      background: #c49a6c;
      color: #fff;
      transform: translateY(-2px);
    }

  }
  .woocommerce-cart-page h1.entry-title {
    display: none !important;
  }
  

  .woocommerce .return-to-shop a.button {
    display: inline-block;
    background-color: #000; /* czarne tło */
    color: #fff;            /* biały tekst */
    padding: 12px 26px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    transition: background-color 0.3s ease, color 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    margin-top: 30px;
  }
  
  .woocommerce .return-to-shop a.button:hover {
    background-color: #c49a6c; /* złoty po najechaniu */
    color: #fff;
  }
  .woocommerce-cart .cart-collaterals {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin-top: 40px;
  }
  
  .woocommerce-cart .cart-collaterals .cart_totals {
    width: 100%;
    max-width: 500px;
    padding: 30px;
    border-radius: 20px;
    background-color: #fff;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  }
    
  .woocommerce-cart .actions {
    margin-top: 10px;
  }
  

/* === Stylizacja strony płatności WooCommerce === */

/* === UKRYJ "Wyślij na inny adres" i "Uwagi do zamówienia" === */
.woocommerce-checkout #ship-to-different-address,
.woocommerce-additional-fields,
.woocommerce-additional-fields-wrapper {
  display: none !important;
}

/* === Ogólna struktura checkouta === */
.woocommerce-checkout {
  padding: 40px 5vw;
  font-family: 'Playfair Display', serif;
  background: #fff;
}

/* Formularz checkouta: jeden po drugim (kolumnowo) */
.woocommerce form.checkout {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

/* === Formularz danych klienta === */
.woocommerce .col2-set {
  width: 100%;
  max-width: 700px;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* === Pola formularzy === */
.woocommerce form .form-row input,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  border-radius: 10px;
  border: 1px solid #ddd;
  background-color: #fafafa;
}

.woocommerce form .form-row {
  margin-bottom: 20px;
}

/* === Nagłówek "Twoje zamówienie" === */
#order_review_heading {
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: #111;
  margin: 40px 0 20px;
  position: relative;
  display: inline-block;
}

#order_review_heading::after {
  content: "";
  display: block;
  width: 50px;
  height: 4px;
  background-color: #c49a6c;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* === Sekcja podsumowania zamówienia === */
.woocommerce-checkout-review-order,
.woocommerce-checkout-payment {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Stylizacja tabeli z zamówieniem */
#order_review {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #eee;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  font-size: 16px;
  padding: 14px 20px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.woocommerce-checkout-review-order-table thead th {
  background: #fafafa;
  font-size: 18px;
  font-weight: 700;
  color: #111;
}

.woocommerce-checkout-review-order-table tfoot td {
  font-weight: 700;
  font-size: 16px;
  color: #111;
  background-color: #fff;
}


/* Styl wrappera */
.woocommerce-terms-and-conditions-wrapper {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  font-size: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.05);
  margin-top: 20px;
}

/* Linki */
.woocommerce-terms-and-conditions-wrapper a {
  color: #000;
  text-decoration: underline;
}

.woocommerce-terms-and-conditions-wrapper a:hover {
  color: #555;
}

/* Tekst + checkbox: checkbox po prawej */
.woocommerce-form__label-for-checkbox {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  width: 29vw;
  font-weight: 500;
  margin-top: 20px;
}

/* Checkbox lekko obniżony */
.woocommerce-form__label-for-checkbox input[type="checkbox"] {
  transform: scale(1.2);
  margin-top: 4px;
  cursor: pointer;
}

/* Ukrycie gwiazdki Woo */
.woocommerce-terms-and-conditions-wrapper abbr[title="wymagane"] {
  display: none;
}




/* === Przycisk płatności === */
.woocommerce-checkout-payment .button {
  width: 100%;
  background: #000;
  color: #fff;
  padding: 16px;
  font-size: 18px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.woocommerce-checkout-payment .button:hover {
  background-color: #333;
}

/* === Responsywność === */
@media (max-width: 768px) {
  .woocommerce form.checkout {
    gap: 20px;
  }

  .woocommerce .col2-set,
  .woocommerce-checkout-review-order,
  .woocommerce-checkout-payment {
    width: 100%;
    padding: 20px;
  }

  .woocommerce-checkout-review-order-table th,
  .woocommerce-checkout-review-order-table td {
    font-size: 15px;
    padding: 12px;
  }

  .woocommerce-checkout-payment .button {
    font-size: 16px;
    padding: 14px;
  }
}

  
  
/*Moje konto*/
/* === Stylizacja strony Moje Konto WooCommerce === */
.woocommerce-account {
  padding: 3rem 1rem;
  font-family: 'Inter', sans-serif;
}

/* Nawigacja konta (menu po lewej) */
.woocommerce-MyAccount-navigation {
  margin-bottom: 2rem;
}

.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.woocommerce-MyAccount-navigation ul li {
  margin: 0;
}

.woocommerce-MyAccount-navigation ul li a {
  display: inline-block;
  padding: 0.6rem 1.2rem;
  border-radius: 6px;
  background-color: #f5f5f5;
  color: #000;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

.woocommerce-MyAccount-navigation ul li.is-active a,
.woocommerce-MyAccount-navigation ul li a:hover {
  background-color: #000;
  color: #fff;
}

/* Treść sekcji konta */
.woocommerce-MyAccount-content {
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.02);
  max-width: 1000px;
  margin: 0 auto;
}

/* Nagłówki i akapity */
.woocommerce-MyAccount-content h2 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.woocommerce-MyAccount-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

/* Linki w treści */
.woocommerce-MyAccount-content a {
  color: #0071a1;
  text-decoration: underline;
}

.woocommerce-MyAccount-content a:hover {
  color: #004c70;
  text-decoration: none;
}

/* === SZCZEGÓŁY KONTA – FORMULARZ === */
.woocommerce form.woocommerce-EditAccountForm {
  background-color: #fff;
  padding: 2rem;
  border: 1px solid #eee;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.woocommerce form.woocommerce-EditAccountForm h3,
.woocommerce form.woocommerce-EditAccountForm legend {
  font-size: 20px;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #111;
}

/* Pola formularza */
.woocommerce form.woocommerce-EditAccountForm p.form-row {
  margin-bottom: 1.5rem;
}

.woocommerce form.woocommerce-EditAccountForm label {
  display: block;
  font-weight: 500;
  margin-bottom: 0.4rem;
  color: #333;
}

.woocommerce form.woocommerce-EditAccountForm input.input-text {
  width: 100%;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  transition: border-color 0.2s ease;
}

.woocommerce form.woocommerce-EditAccountForm input.input-text:focus {
  border-color: #999;
  outline: none;
}

/* Przycisk zapisz */
.woocommerce form.woocommerce-EditAccountForm button.button {
  background-color: #000;
  color: #fff;
  padding: 0.7rem 1.8rem;
}

/* === Komunikaty WooCommerce (sukces, błąd, info) === */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 1rem 1.5rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.6;
}

/* Sukces – zielony */
.woocommerce-message {
  background-color: #e6f7e6;
  border-left: 5px solid #38a169;
  color: #2f855a;
}

/* Błąd – czerwony */
.woocommerce-error {
  background-color: #fdeaea;
  border-left: 5px solid #e53e3e;
  color: #c53030;
  list-style: none !important;
  padding-left: 1.5rem;
}

/* Informacja – niebieska */
.woocommerce-info {
  background-color: #ebf8ff;
  border-left: 5px solid #3182ce;
  color: #2b6cb0;
}

/* Usuwamy domyślne punktorowanie przy błędach */
.woocommerce-error li {
  margin-bottom: 0.5rem;
}

  


/*REGULAMIN*/
/* === Stylizacja tylko dla strony Regulaminu (ID: 263) === */

body.page-id-263 {
  min-height: calc(100vh - 200px); /* dynamiczna wysokość, bez nachodzenia na footer */
  padding-top: 140px;
  background: #fff;
  font-family: 'Playfair Display', serif;
  padding: 140px 5vw 0; /* góra i boki elastyczne */
  
}

body.page-id-263 .terms-content {
  max-width: 900px;
  margin: 0 auto;
}

body.page-id-263 h1 {
  display: none;
}

body.page-id-263 h2 {
  font-size: 22px;
  font-weight: 700;
  color: #c49a6c;
  margin: 40px 0 15px;
  position: relative;
}

body.page-id-263 h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: #c49a6c;
  margin-top: 8px;
  border-radius: 2px;
}

body.page-id-263 h3 {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  margin-top: 20px;
}


body.page-id-263 p,
body.page-id-263 li {
  font-size: 16px;
  color: #333;
  margin-bottom: 15px;
}

body.page-id-263 ol {
  padding-left: 20px;
}

body.page-id-263 ol li::marker {
  color: #c49a6c;
}
@media (max-width: 768px) {
  body.page-id-263 {
    padding: 120px 20px 60px;
  }

  body.page-id-263 h2 {
    font-size: 20px;
  }

  body.page-id-263 p,
  body.page-id-263 li {
    font-size: 15px;
  }

}
.woocommerce-Addresses {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.woocommerce-Address {
  flex: 1 1 45%;
  background: #f9f9f9;
  padding: 20px;
  border: 1px solid #eee;
  border-radius: 10px;
}

.woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.woocommerce-Address h3 {
  margin: 0;
  font-size: 18px;
  color: #333;
}

.woocommerce-Address .edit {
  font-size: 14px;
  color: #c7a17a;
  text-decoration: none;
  font-weight: bold;
}

.woocommerce-Address .edit:hover {
  text-decoration: underline;
}


.woocommerce-account table.my_account_orders {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.woocommerce-account table.my_account_orders thead {
  background-color: #fafafa;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
}

.woocommerce-account table.my_account_orders th,
.woocommerce-account table.my_account_orders td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eaeaea;
  font-size: 15px;
}

.woocommerce-account table.my_account_orders tr:last-child td {
  border-bottom: none;
}

.woocommerce-account .woocommerce-button.button.view {
  background-color: #bfa480;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.woocommerce-account .woocommerce-button.button.view:hover {
  background-color: #a98e6a;
}

.woocommerce-account .order-actions {
  text-align: right;
}

@media screen and (max-width: 768px) {
  .woocommerce-account table.my_account_orders thead {
    display: none;
  }

  .woocommerce-account table.my_account_orders tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    padding: 10px;
  }

  .woocommerce-account table.my_account_orders td {
    display: flex;
    justify-content: space-between;
    padding: 10px;
    font-size: 14px;
  }

  .woocommerce-account .order-actions {
    margin-top: 10px;
    text-align: center;
  }
}

/*Logowanie sie*/

/* === Kontener formularzy logowania i rejestracji === */
.woocommerce form.login,
.woocommerce form.register {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  margin: 0 auto 40px auto;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* === Nagłówki === */
.woocommerce form.login h2,
.woocommerce form.register h2 {
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 700;
  text-align: center;
  width: 100%;
}

/* === Pola tekstowe === */
.woocommerce form input[type="text"],
.woocommerce form input[type="email"],
.woocommerce form input[type="password"] {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 10px;
  background-color: #f9f9f9;
  font-size: 15px;
  margin-bottom: 16px;
  box-sizing: border-box;
}

/* === Checkbox + etykieta "Zapamiętaj mnie" === */
.woocommerce form .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin: 12px 0 16px 0;
  font-weight: 500;
  width: 100%;
}

/* === Styl samego checkboxa === */
.woocommerce form input[type="checkbox"] {
  transform: scale(1.2);
  accent-color: #bfa480;
}

/* === Przycisk Zaloguj się i Zarejestruj się === */
.woocommerce form button.button {
  background-color: #bfa480;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.2s ease;
  width: 100%;
}

.woocommerce form button.button:hover {
  background-color: #a98e6a;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* === Link: Nie pamiętasz hasła === */
.woocommerce-LostPassword.lost_password a {
  color: #8c52ff;
  font-weight: 500;
  font-size: 14px;
  display: inline-block;
  margin-bottom: 16px;
  text-decoration: underline;
}

.woocommerce-privacy-policy-text {
  margin-bottom: 24px;
}
.woocommerce-form-register .form-row.form-row:last-of-type {
  margin-top: 24px;
}

