html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
    width: 100%;
    height: 100%;
    background-color: #F9F9F9;

    /* blokada lewego przycisku  */
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;

    /* Blokada przeciągania */
    -webkit-user-drag: none; 
    /* działa tam, gdzie jest obsługiwana */
}




* {
    font-family: "Nunito Sans", "Arial", serif;
    box-sizing: border-box;
    font-size: 16px;
    margin: 0;
    padding: 0; 

}

p::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
img::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
a::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
header::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
li::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
i::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
br::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
b::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
span::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
button::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}

h1::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
h2::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
h3::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
h4::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}

.product-info::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}

.price::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}
form::selection  {
    background-color:rgba(0, 0, 0, 0.88);
    color:white;
}

#product-1 {
  scroll-margin-top: 60px; /* lub tyle, ile wysokość Twojego nagłówka */
}



.spaced {
    margin-top: 1.5rem;
}
.spaced-bottom {
    margin-bottom: 2.5rem;
}
.spaced-top {
    margin-top: 2.5rem;
}
.spaced-high {
  margin-top: 12rem;
  margin-bottom: 12rem;
} 




.pc {
    display: block;
}
.phone {
    display: none;
}

@media (max-width: 768px) {
    .pc {
        display: none;
    }
    .phone {
        display: block;
    }
}



/* ukrywanie nagłówków strukturalnych  */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}






/* OŚ ZAKUPU  */
.purchase-ritual {
  margin: 8rem auto;
  max-width: 1400px;
  padding: 0 4rem;
}

.purchase-ritual h2 {
  font-size: 2rem;
  margin-bottom: 4rem;
  /* letter-spacing: 0.05em; */
  text-transform: uppercase;
  font-weight: 200;
}

/* LISTA */
.ritual-steps {
  list-style: none;
  margin: 0;
  padding: 0;

  display: flex;
  gap: 4rem;
  position: relative;
}

/* LINIA (DESKTOP) */
.ritual-steps::before {
  content: "";
  position: absolute;
  top: 2.2rem;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(0,0,0,1);
  z-index: 0;
}

/* POJEDYNCZY ETAP */
.ritual-step {
  position: relative;
  max-width: 220px;
  z-index: 1;
}

.step-index {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
  /* opacity: 0.6; */
  color: black;
  font-weight: 900;
}

.ritual-step h3 {
  font-size: 1rem;
  margin-bottom: 0.75rem;

  margin-top: 40px;
  font-weight: 700;
  color: black;
}

.ritual-step p {
  font-size: 0.97rem;
  line-height: 1.6;
  /* opacity: 0.85; */
  font-weight: 200;
  color: black;
}
.purchase-ritual p {
  font-size: 0.97rem;
  line-height: 1.6;
  /* opacity: 0.85; */
  font-weight: 200;
  color: black;
}



@media (max-width: 768px) {

  .purchase-ritual {
    padding: 0 2rem;
  }

  .ritual-steps {
    flex-direction: column;
    gap: 3rem;
  }

  .ritual-steps::before {
    top: 0;
    bottom: 0;
    left: 0.6rem;
    width: 1px;
    height: auto;
  }

  .ritual-step {
    padding-left: 2rem;
    max-width: 100%;
  }
}




















/* GALERIA – ATELIER-pełna szerokość, minimalistyczna responsywna siatka */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
    padding: 20px;
}

.gallery-item {
    text-align: center;
}

.gallery-item img {
    width: 100%;
    height: auto;
    cursor: pointer;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.03);
}

.caption {
    margin-top: 8px;
    font-size: 0.95em;
    color: #333;
}

/* LIGHTBOX (duże zdjęcie) */
#lightbox {
    display: none;          /* ukryte domyślnie */
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.8);
    justify-content: center;
    align-items: center;
    flex-direction: column;
    z-index: 9999;
    padding: 20px;
}

#lightbox-img {
    max-width: 90%;
    max-height: 80vh;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

#lightbox-caption {
    color: white;
    font-size: 1.1em;
    text-align: center;
}

/* Przycisk zamknięcia */
#close-btn {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 50px;
    color: white;
    cursor: pointer;
}









/* szczalka przypieta na stale 
 */

 #scrollTopBtn {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.6);
  color: white;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 20px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#scrollTopBtn:hover {
  background-color: #000000;
  transform: scale(1.1);
}










/* menu aktywny index w kolorze  */
.nav-link {
  text-decoration: none;
  color: #000000;
  transition: color 0.3s ease;
}

.nav-link.active {
  color:#755e3b; /* lub inny kolor aktywny */
  /* border-bottom: 1px solid #000000; */
}





















/* opinie */
.testimonials {
    text-align: center;
    /* padding: 50px 20px; */
    margin: 1% 30% 5% 30%;
    background: #f8f8f8;
    position: relative;
}
.testimonial {
    display: none;
    max-width: 700px;
    margin: auto;
}
.testimonial.active {
    display: block;
}
.testimonial img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin-bottom: 30px;
}
.testimonial p {
    font-style: italic;
    color: #555;
    font-size: 1.6em;
}
.controls button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 30px;
    cursor: pointer;
}
.prev { left: 10px; }
.next { right: 10px; }

@media (max-width: 768px) {
    .testimonials {
        margin: 3% 5% 5% 5%;

    }
}

















/* container-contact */
.container-contact {
    list-style: none;
    padding: 0;
    margin: 0;

}
.container-contact  li {
    display: flex;
    

}
.container-contact  li a {
    text-decoration: none;
    color: #000000;
    font-weight: 200;
    transition-duration: 0.4s;
    padding: 5px 0;
    /* font-size: 18px; */
    font-weight: 100;
    border: none;
    text-align: left;
}
.container-contact  li span {
    /* font-size: 18px; */
    font-weight: 600;
}


.container-contact li i {
    color: #000000;
    margin: 0 20px 0 0; 
    display: flex;
    align-items: center;
    font-size: 14px;  
}
.container-contact p {
    margin: 0;
}







/* .contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 310px;
    height: 100%;
}
.contact-details h4 {
    color: white;
    text-transform: uppercase;
    font-weight: 100;
    font-size: 22px;
    padding: 30px 0 15px 0;
}
.contact-details li {
    display: flex;
    border-bottom: .5px solid #3f3f3f;
}
.contact-details li:last-child {
    border-bottom: none;
}
.contact-details li a {
    text-decoration: none;
    color: #cecece;
    font-weight: 200;
    transition-duration: 0.4s;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 100;
}


.contact-details i {
    color: #cecece;
    margin: 0 30px 0 0; 
    display: flex;
    align-items: center;
    font-size: 20px;  
} */












/* kontakt w hederze  */
/* Stylowanie przycisku */
.contact-button {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    background-color: transparent;
    /* background-color: black; */
    color: rgb(0, 0, 0);
    font-size: 18px;
    /* border: 1px solid black; */
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
    /* border-radius: 5px; */
}

.contact-button:hover {
    background-color: black;
    color: white;
}

/* Ukryty numer, który pojawia się po najechaniu */
.contact-button .phone-number {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    /* background-color: black; */
    color: rgb(0, 0, 0);
    padding: 2px 10px;
    font-size: 14px;
    /* border-radius: 5px; */
    white-space: nowrap;
    transition: opacity 0.3s;
}

/* Pokazanie numeru po najechaniu */
.contact-button:hover .phone-number {
    display: block;
    opacity: 1;
}
@media (max-width: 1280px) {
    .contact-button {
        display: none;
    }
}
/* Styl dla mobile – od razu działa jako link do dzwonienia */
@media (max-width: 768px) {
    .contact-button .phone-number {
        display: none;
    }
}






























.img-fluid-phone {
    display: none;
}




























/* PROBKI MATERIAŁÓW I KOLOR DREWNA   ---   WYBIERZ */

/* NOWA SEKCJA */
.feature-section {
    padding: 20px 70px 120px 70px;
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-container {
    display: flex;
    max-width: 1300px;
    width: 100%;
    gap: 40px;
    align-items: center;
}

.feature-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: cover;
}

.feature-content {
    flex: 1;
    text-align: left;
}

.feature-content h2 {
    font-size: 1.4em;
    font-weight: 700;
    color: #000;
    /* text-transform: uppercase; */
    margin-bottom: 10px;
}
.feature-container h3 {
    text-transform: uppercase;
    font-size: 30x;
    font-weight: 200;

}
/* DOTYCZY OFERTY NA STRONIE GŁÓWNEJ */
.feature-container h3 span {
    text-transform: none;
    font-size: 16x;
    font-weight: 600;
    line-height: 1.5;
    display: block;
}



.feature-content p {
    /* font-size: 1.2em; */
    color: #000;
    font-weight: 200;
    margin-bottom: 20px;
}
.feature-content p b {
    /* font-size: 1.2em; */
    font-weight: 600;

}

.feature-button {
    font-size: 1em;
    color: #000;
    text-decoration: none;
    border: 0.5px solid rgba(0, 0, 0, 0.713);
    padding: 10px 40px;
    margin: 5px;
    display: inline-block;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.feature-button:hover {
    background-color: #29231d;
    color: white;
}

/* Responsywność */
@media (max-width: 1200px) {
    .feature-container {
        flex-direction: column;
        text-align: center;
    }
    .feature-content {
        text-align: center;
        
    }
    
}
@media (max-width: 768px) {
    .feature-section {
        padding: 15% 5%;
    }
    .feature-content p {
        text-align: justify;
        text-align-last: center;
    }



    .feature-container .feature-image img {
    max-width: 100%;

}

    
}





























/* Article figuryfiguryfiguryfiguryfiguryfiguryfigury */ 
/* Stylowanie sekcji artykułów */
.article-index {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 20px;
    text-align: center;
    background-color: #F9F9F9;
}

.section-header h2 {
    font-size: 2.4em;
    font-weight: 100;
    color: #000;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-header p {
    /* font-size: 1em; */
    color: #000000;
    font-weight: 100;
    margin-bottom: 30px;
}

/* Siatka artykułów */
.article-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* Styl artykułów */
.article-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease;
    text-align: left;
}

.article-card:hover {
    transform: scale(1.02);
}

.article-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 20px;
}

.article-content h3 {
    font-size: 1.3em;
    color: #000;
    font-weight: 700;
    margin-bottom: 10px;
}

.article-content p {
    font-size: 1em;
    color: #666;
    font-weight: 400;
}

.read-more {
    display: inline-block;
    margin-top: 10px;
    padding: 8px 20px;
    font-size: 1em;
    color: #000;
    text-decoration: none;
    border: 1px solid #000;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.read-more:hover {
    background-color: #000;
    color: white;
}

/* Responsywność */
@media (max-width: 1200px) {
    .article-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .article-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .article-card img {
        height: 200px;
    }
}













/* BLOG BLOG BLOG BLOG BLOG */

/* BLOG BLOG BLOG BLOG BLOG */

/* Sekcja Inspiracji */
.inspiration-section {
    padding: 20px 40px;
    background-color: #F9F9F9;
    text-align: center;
    max-width: 1615px;
    margin: 0 auto;
}

.section-header h2 {
    font-size: 2em;
    font-weight: 100;
    color: #000000;
    text-transform: uppercase;
    margin-bottom: 10px;
    margin-top: 50px;
}
.section-header h2 b {
    font-size: 1.1em;
    font-weight: 700;
    color: #000000;
    text-transform: none;
    margin-bottom: 10px;
    margin-top: 50px;
}

.section-header p {
    font-size: 1em;
    color: #000000;
    font-weight: 200;
    margin-bottom: 30px;
    padding: 1% 28%;
}

/* Siatka artykułów */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
    width: 100%;
}

/* Styl artykułów */
.blog-card {
    background-color: #F9F9F9;
    padding: 10px;
    text-align: center;
}

/* 🔥 Zdjęcia zachowują naturalne proporcje */
.blog-card img {
    width: 100%;
    height: auto;       /* najważniejsze – naturalny kształt */
    object-fit: cover;  /* można zmienić na contain jeśli chcesz bez przycinania */
    display: block;
}

.blog-card h3 {
    font-size: 1.05em;
    color: #000;
    font-weight: 700;
    text-transform: uppercase;
    margin: 15px 0;
    margin-top: 30px;
}
.blog-card h3 span {
    font-size: 0,8em;
    color: #000;
    font-weight: 300;
    text-transform: none;
    /* margin: 15px 0; */
    
}

.blog-card p {
    font-size: 1em;
    color: #000;
    font-weight: 200;
    text-align: justify;
}

.blog-card .read-more {
    font-size: 1em;
    color: #000;
    text-decoration: none;
    border: 0.5px solid rgba(0, 0, 0, 0.713);
    padding: 8px 40px;
    display: inline-block;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.blog-card .read-more:hover {
    background-color: #000;
    color: white;
}

/* Responsywność */
@media (max-width: 1200px) {
    .inspiration-section {
        padding: 20px;
    }
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .inspiration-section {
        padding: 0;
    }
    .section-header h2 {
        font-size: 1.9em;
        padding: 1% 5%;
    }
    .section-header p {
        text-align: justify;
        text-align-last: center;
        padding: 1% 5%;
    }
    .blog-grid {
        grid-template-columns: repeat(1, 1fr);
    }
}









/* Kwadratowy kontener na video */
.video-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    padding: 10px;      /* 👈 tutaj */
    box-sizing: border-box;
}
/* Video wypełnia idealnie kwadrat */
.video-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
































/* KAFELKI KAFELKI KAFELKI BESSTSELLERY*/

.product-section {
    padding: 20px 40px; /* Padding na sekcji głównej – wypełnia przestrzeń po bokach */
    background-color: #f9f9f9; /* Tło sekcji głównej */
    box-sizing: border-box; /* Padding wliczany do szerokości */
    max-width: 1400px; /* Ograniczenie szerokości na dużych ekranach */
    margin: 0 auto; /* Wycentrowanie sekcji */
    
}

.product-section h2 {
    text-align: center;
    margin-bottom: 10px;
    font-size: 2em;
    color: #000000;
    /* font-weight: 700; */
    padding-top: 20px;

    font-weight: 100;
    text-transform: uppercase;
    color: rgb(0, 0, 0);
}
.product-section p {
    text-align: center;
    font-weight: 200;
    padding: 1% 28%;
    color: black;

}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); /* Dynamiczne kolumny */
    gap: 30px; /* Odstępy między kafelkami */
    width: 100%; /* Wypełnia całą szerokość dostępnej przestrzeni */
}

.product-grid a {
    text-align: center;

}

/* Styl kafelków produktów */
.product-card {
    background-color: #F9F9F9; /* Biały kolor tła kafelka */
    overflow: hidden;
    /* transition: transform 0.3s, box-shadow 0.3s; */
    padding: 30px 20px;
    text-align: center;
    /* border: 1px solid #dddddd; */
    /* border-radius: 8px; */
    transition: transform 0.3s ease;
    
    

    
}



.product-card:hover {
    transform: translateY(-20px);
}





/* .product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
} */

.product-card img {
    width: 100%;
    height: 300px; /* Stała wysokość obrazków */
    object-fit: cover;
    border-radius: 8px; /* Zaokrąglenie rogów obrazka */

    /* transition-duration: 0.3s; */
  

}

.chair-space {
    padding: 15px;
}

.product-card-content {
    padding: 0 15px 20px 15px;
}

.product-card h3 {
    font-size: 1.1em;
    margin: 15px 0 10px 0;
    color: #000000;
    font-weight: 100;
    text-transform: uppercase;
}

.product-card p {
    font-size: 1.15em;
    color: #000000;
    font-weight: 800;
    margin: 0;
    padding: 0;
    
}
.product-card p span {
    font-size: 0.75em;
    color:rgb(139, 102, 57);
    font-weight: 800;
    /* margin: 0; */
    
}
.product-card p span i {
    font-size: 0.75em;
    color:rgb(139, 102, 57);
    /* font-weight: 800;
    margin: 0; */
    
}
.product-card p b {
    font-size: 0.75em;
    color:rgba(0, 0, 0, 0.7);
    font-weight: 800;
    /* margin: 0; */
    
}
.product-card p b i {
    font-size: 0.75em;
    color:rgba(0, 0, 0, 0.7);
    /* font-weight: 400; */
    /* margin: 0; */
    
}

.product-card .price {
    font-size: 1em;
    color: #000000;
    margin: 15px 0;
    font-weight: 400;
}
.product-card .price span {
    font-size: 0.8em;
    color: #000000;
    margin: 14px 0;
    font-weight: 300;
}

.product-card a {
    padding: 10px 40px;
    background-color: #F9F9F9;
    color: #000000;
    border: 0.5px solid rgba(0, 0, 0, 0.713);
    /* border-radius: 5px; */
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.4s;
    text-decoration: none;
    
}
/* .product-card a {
    text-decoration: none;
    color: rgb(0, 0, 0);
} */
/* .product-card a:hover {
    color: rgb(255, 255, 255);
} */

.product-card a:hover {
    background-color: #000000;
    color: white;
}

/* Responsywność */
@media (max-width: 1400px) {
    .product-card img {
    width: 100%;
    height: 400px; /* Stała wysokość obrazków */
    object-fit: cover;
    border-radius: 8px; /* Zaokrąglenie rogów obrazka */

    /* transition-duration: 0.3s; */
  

}
}
@media (max-width: 1200px) {
    .product-section {
        padding: 20px; /* Zmniejszenie paddingów na mniejszych ekranach */
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 produkty na szerokość */
    }
}

@media (max-width: 768px) {
    .product-section p {
        padding: 0;
        text-align: justify;
        text-align-last: center;
    }
    .product-section h2 {
    font-size: 2em;
    padding-bottom: 5px;
    }
    .product-grid {
        grid-template-columns: repeat(1, 1fr); /* 1 produkt na szerokość */
    }
    .product-card {
    padding: 20px 0;
    }
    .product-card:hover {
            transform: none; /* Brak przesunięcia na urządzeniach mobilnych */
            box-shadow: none;
    } 
    .product-card h3 {
        margin: 0 0 10px 0;
    }
    .product-card img {
        /* height: 250px;  */
        width: 100%;
        height: auto;
        object-fit: cover; /* lub contain, w zależności od efektu */
    }
    .chair-space {
    padding: 0;
    }
}

@media (min-width: 1920px) {
    .product-section {
        padding: 30px 80px; /* Większe paddingi na ekranach 4K */
        max-width: 1600px; /* Ograniczenie szerokości na bardzo dużych ekranach */
    }
}














/* KOLEKCJA  -   W GŁ INDEKSIE    KOLEKCJA */


/* Sekcja szerokich produktów */
.wide-product-section {
    padding: 20px 0 20px 0;
    background-color: #f9f9f9;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wide-product-section h2 {
    font-size: 2.1em;
    font-weight: 100;
    text-transform: uppercase;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
}
.wide-product-section h3 {
    font-size: 1.8em;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    text-align: center;
    
}

.wide-product-section p {
    font-size: 1em;
    font-weight: 200;
    color: #000000;
    margin-bottom: 0;
    text-align: center;
    padding: 1% 30%;
}
.wide-product-section p b {
    font-weight: 700;

}

/* Siatka produktów */
.wide-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Dwa produkty w rzędzie */
    gap: 30px;
    width: 75%; /* Zajmuje 3/4 szerokości ekranu */
}

/* Styl kafelków */
.wide-product-card {
    background-color: #f9f9f9;
    padding: 20px;
    text-align: center;
    width: 100%;
    transition: transform 0.3s ease;
}
.wide-product-card:hover {
    transform: translateY(-20px);

}

/* Zdjęcia o proporcjach 2:1 */
.wide-product-card img {
    width: 100%;
    aspect-ratio: 2 / 1; /* Proporcja 2:1 */
    object-fit: cover;
}

.wide-product-card-content {
    padding: 15px;
    
}
.buttons-collection {
    display: flex;
    gap: 10px;
    justify-content: center; /* wyśrodkowanie linków */
    flex-wrap: wrap; /* Zapobiega wykraczaniu poza kontener */
    margin-top: 10px;
    align-items: center;
}

@media (max-width: 1320px) {
    .buttons-collection {
        flex-direction: column;
        align-items: center; /* wyśrodkuj linki pionowo na mobile */
    }
}



.wide-product-card h3 {
    font-size: 1.1em;
    font-weight: 100;
    text-transform: uppercase;
    color: #000;
    margin: 10px 0;
}

.wide-product-card p {
    font-size: 1em;
    font-weight: 800;
    color: #000;
}
.wide-product-card i {
    font-size: 1em;
    color: #000;
    padding: 0 10px;
}



.wide-product-card .price {
    font-size: 1.1em;
    font-weight: 300;
    color: #000;
    margin: 15px 0;
}

.wide-product-card a {
    padding: 8px 40px;
    font-size: 1em;
    color: #000;
    background-color: #f9f9f9;
    border: 0.5px solid rgba(0, 0, 0, 0.713);
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;
}

.wide-product-card a:hover {
    /* background-color: #000;
    color: white; */
    background-color: #e6e5df;
}

/* Responsywność */
@media (max-width: 1024px) {
    .wide-product-grid {
        width: 90%; /* Na mniejszych ekranach zajmuje więcej szerokości */
    }
}

@media (max-width: 768px) {
    .wide-product-grid {
        grid-template-columns: repeat(1, 1fr); /* Na telefonach po 1 produkcie w rzędzie */
    }
    .wide-product-section h2 {
    font-size: 2.2em;
}
    .wide-product-section p {
        text-align: justify;
        text-align-last: center;
        padding: 1% 5%;
    }

    .wide-product-card {
        padding: 20px 0;
    }
    .wide-product-card-content {
        padding: 0;  
}

}
@media (min-width: 3000px) {
    .wide-product-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr); /* Dwa produkty w rzędzie */
        gap: 30px;
        width: 60%; /* Zajmuje 3/4 szerokości ekranu */
    }
    .wide-product-section p {
        color: #000000;
        padding: 1% 40%;
    }
}



















/* PRODUKT PRODUKT PRODUKT  */

.container {
    /* max-width: 1200px; */
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  /* Sekcja lewa – zdjęcia */
  .image-section {
    flex: 1;
    /* min-width: 200px; */
    min-width: 200px;
  }

  .main-image {
    width: 100%;
    /* max-width: 500px; */
    max-width: 500px;
    height: auto;
  }

  .thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    flex-wrap: wrap;
    justify-content: left;
  }

  .thumbnail {
    width: 70px;
    height: 70px;
    object-fit: cover;
    cursor: pointer;
  }

  .thumbnail:hover {
    transform: scale(1.05);
    transition: transform 0.2s;
  }

  /* Sekcja prawa – ustawienia */
  .product-info {
    flex: 1;
    min-width: 200px;
    padding: 20px;
  }


  /* GATUNEK MEBLA  */
  .product-info h1 {
    font-size: 20px;
    /* font-size: 2.3em; */
    /* margin-bottom: 10px; */
    text-transform: uppercase;
    color:rgb(0, 0, 0);
    /* font-weight: 300; */
    font-weight: 300;
    padding-bottom: 10px;
    line-height: 1.6;
  }
  .product-info h1 span {
    font-size: 35px;
    /* margin-top: none; */
    font-weight: 800;
    text-transform: none;

  }

  
  .product-info .object-authenticity {
    font-size: 19px;
    color:rgb(139, 102, 57);
    font-weight: 800;
    padding-bottom: 20px;
    padding-right: 150px;
    line-height: 1.3;
  }
  
  /* NAZWA MEBLA w wersj poprzedniej  */
  /* .product-info h2 {
    font-size: 35px;
    font-weight: 800;
  } */



  .product-info p {
    margin-bottom: 5px;
    line-height: 1.6;
    color: #000000;
    font-weight: 200;
  }
  .product-info .edition-note {
    font-weight: 200;
  }


  .product-info b {
    font-weight: 600;
  }
  .product-info span {
    color: #000000;
    font-weight: 200;
  }
  .product-info .object-authenticity i {
    padding-right: 10px ;
    color:rgb(139, 102, 57);
  }
  .product-info p i {
    padding-right: 10px ;
    color: rgb(0, 0, 0);
  }

  .options-group {
    margin-bottom: 20px;
  }

  .options-group label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
  }

  .options-group select {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    /* border-radius: 8px; */
  }

  .price {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 30px 0;
  }




  /* Responsywność */
  @media (max-width: 768px) {
    .container {
      flex-direction: column;
      max-width: 100%;
    }
    .thumbnails {
      flex-wrap: wrap;
    }
    .thumbnail {
        width: 50px;
        height: 50px;
      }
    .product-info {
        padding: 3%;
    }
    /* GATUNEK MEBLA  */
    /* .product-info h1 {
      font-size: 20px;
      padding-bottom: 40px;
      margin: 0;
      font-weight: 800;
    } */
    .product-info h1 {
      font-size: 20px;
      padding-bottom: 40px;
      margin: 0;
      font-weight: 300;
    }
    /* NAZWA MEBLA  */
    /* .product-info h2 {
      margin-top: 20px;
    } */
    

    .product-info p {
      font-size: 14px;
    }


    .main-image {
      max-width: 100%;
    }
  }

  @media (min-width: 1400px) {
    .main-image {
      max-width: 600px;
    }
  }
  @media (max-width: 1400px) {
    .product-info .object-authenticity {
    padding-right: 0;
    }
  }
  








  /* Nowe elementy zdjecia drewna i tkanin */
.color-selection,
.fabric-selection {
  margin-top: 10px;
}

.color-options,
.fabric-options {
  display: flex;
  
  gap: 10px;
}

.color-option,
.fabric-option {
  text-align: center;
}

.color-option img,
.fabric-option img {
  width: 50px;
  height: 50px;
  /* border: 1px solid #ccc; */
  /* border-radius: 50%; */
  /* cursor: pointer; */
  transition: transform 0.3s;
}

.color-option img:hover,
.fabric-option img:hover {
  transform: scale(1.1);
}

.color-option p,
.fabric-option p {
  margin-top: 5px;
  font-size: 10px;
  font-weight: 300;
  color: #333;
  
}




/* Kontener na wszystkie przyciski */
.contact-buttons {
    display: flex;
    flex-direction: column; /* Układ pionowy */
    gap: 10px; /* Odstęp między wierszami */
}

/* Guzik "Zapytaj o produkt" */
.contact-buttons .main-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Odstęp między ikoną a tekstem */
    padding: 12px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #ffffff;
    /* background-color:#1D1A16; */
    background-color:#29231d;
    text-align: center;
    text-decoration: none;
    border: 1px solid #29231d;
    cursor: pointer;
    width: 100%; /* Cała szerokość kontenera */
    transition: background-color 0.3s, box-shadow 0.3s, color 0.3s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtelny cień */
}

/* Efekt hover dla guzika "Zapytaj o produkt" */
.contact-buttons .main-button:hover {
    background-color: #ffffff;
    color: #000000;
    border: 1px solid #000000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

/* Kontener dla pozostałych guzików */
.contact-buttons .secondary-buttons {
    display: flex;
    gap: 10px; /* Odstęp między guzikami w wierszu */
    width: 100%; /* Cała szerokość kontenera */
    padding-top: 4px;
}

/* Guziki w drugim wierszu */
.contact-buttons .secondary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px; /* Odstęp między ikoną a tekstem */
    padding: 12px 15px; /* Mniejsze odstępy wewnętrzne */
    font-size: 16px;
    color: #000000;
    background-color: #f9f9f9;
    text-align: center;
    text-decoration: none;
    border: 1px solid #ccc;
    border-radius: 0;
    cursor: pointer;
    flex: 1; /* Równy podział szerokości */
    transition: background-color 0.3s, box-shadow 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); 
    /* Subtelny cień */
}

/* Efekt hover dla pozostałych guzików */
.contact-buttons .secondary-button:hover {
    background-color: #eaeaea;
    border-color: #aaa;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.15);
}







/* ROZWIĄZANIE PROBLEMU Z RESPONSYWNOŚCIĄ PRODUKTU I DESCRIPTION NA MAŁYCH EKRANACH- pomniejszono fonty w guzikach i wielkosci zdjec tekstur drewna w produkcie  */
@media (max-width: 375px) {
    .contact-buttons .main-button {
        /* padding: 12px 20px; */
        font-size: 13px;
    }
    .contact-buttons .main-button i {
        font-size: 13px;
    }
    .contact-buttons .secondary-button {
        /* padding: 12px 10px;  */
        font-size: 13px;
    }
    .contact-buttons .secondary-button i {
        font-size: 13px;
    }
}

@media (max-width: 320px) {
    .contact-buttons .main-button {
        /* padding: 12px 20px; */
        font-size: 9px;
    }
    .contact-buttons .main-button i {
        font-size: 9px;
    }
    .contact-buttons .secondary-button {
        /* padding: 12px 10px;  */
        font-size: 9px;
    }
    .contact-buttons .secondary-button i {
        font-size: 9px;
    }
    .buttons-fold {
        display: none;
    }

}

@media (max-width: 280px) {
    

    .contact-form-container .submit-button {
        font-size: 9px;
    }
    .contact-buttons .main-button {
        /* padding: 12px 20px; */
        font-size: 9px;
    }
    .contact-buttons .main-button i {
        font-size: 9px;
    }
    .contact-buttons .secondary-button {
        /* padding: 12px 10px;  */
        font-size: 9px;
    }
    .contact-buttons .secondary-button i {
        font-size: 9px;
    }
    
    .color-option img,
    .fabric-option img {
        width: 40px;
        height: 40px;
    }
}















  /* description  description description description description description description description description */



  /* Stylowanie sekcji opisowej */
  .description-section {
    padding: 90px 20px 0 20px;
    /* background-color: #f7f7f7; */
  }

  .description-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .description-row {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    gap: 20px;
  }

  .description-row.reverse {
    flex-direction: row-reverse;
  }

  .text {
    flex: 1;
    min-width: 200px;
  }
  .text h2 {
    text-transform: uppercase;
    /* font-size: 34px; */
    font-size: 1.8em;
    font-weight: 200;
    /* padding-top: 150px; */
    color: rgb(0, 0, 0);
    text-align: left;
  }
  
  .text h3 {
    font-size: 21px;
    margin-bottom: 25px;
    color: #000000;
    font-weight: 700;
    /* text-transform: uppercase; */
  }
  .text h3 span {
    font-size: 24px;
    margin-bottom: 25px;
    color:rgb(139, 102, 57);
    font-weight: 800;
    /* text-transform: uppercase; */
  }
  .text b {
    font-weight: 800;

  }
  .text span {
    font-weight: 600;
  }

  .text p {
    /* font-size: 18px; */
    line-height: 1.6;
    color: #000000;
    font-weight: 200;
    text-align: justify;
  }
  /* szczałka w produktach */
  .text i {
    font-size: 18px;
  }
  .text p i {
    font-size: 15px;
    padding-right: 15px;
  }
  .text a {
    /* border: 1px solid black;
    text-decoration: none;
    color: black;
    padding: 10px 30px; */
    font-size: 1em;
    font-weight: 300;
    color: #000;
    text-decoration: none;
    border: 0.5px solid rgba(0, 0, 0, 0.713);
    padding: 10px 40px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
  }



  .text a:hover {
    background-color: #000;
    color: white;
}

  .image {
    flex: 1;
    min-width: 300px; 
    display: flex;
    justify-content: center;
  }

  .image img {
    width: 100%;
    max-width: 540px;
    height: auto;
  }
  .image .video-wrapper {
    width: 100%;
    max-width: 560px;
    height: auto;

  }


  /* STYLOWANIE GUZKIKOW ZAMOW PROBKI I POROZMAWIAJ Z DORADCĄ W INDEKSIE CONTACT  */
  .description-row .secondary-button:hover {
    color: black;
  }



  /* Sterowanie widocznością PC vs Phone obrazy wlaczenie i wylaczenie, zalezne od responsywnosci */
.pc-advantage {
  display: block;
}
.phone-advantage {
  display: none;
}



/* Tablet break: wymuszenie kolumny wcześniej */
@media (max-width: 1024px) {
  .description-row {
    flex-direction: column;
  }

  .description-row.reverse {
    flex-direction: column;
  }

  .feature-image,
  .image {
    /* justify-content: center;
    width: 100%; */
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .feature-image img,
  .image img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
    display: block;
  }
}
/* naprawienie problemu z deformacja obrazka dla szerokosci 1024-1140px  */
@media (min-width: 1024px) and (max-width: 1140px) {
  .description-row {
    flex-direction: column; /* lub column-reverse jeśli chcesz, by obrazek był nad tekstem */
    align-items: center;
  }

  .image {
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 0 20px; /* delikatne marginesy boczne */
  }

  .image img {
    max-width: 500px;
    width: 100%;
    height: auto;
  }

  .text {
    max-width: 100%;
    padding: 0 20px;
  }
}




/* pomniejszenie obrazow w wersji tabletowej dla większej estetyki  */
@media (min-width: 768px) and (max-width: 1024px) {
  .feature-image img {
    max-width: 550px; /* lub nawet 320px jeśli trzeba */
  }
  .image img {
    max-width: 550px; /* lub nawet 320px jeśli trzeba */
    
  }

  .feature-image {
    justify-content: center;
    text-align: center;
  }
}







  /* Responsywność */
  @media (max-width: 768px) {
    .description-row {
      flex-direction: column;
      max-width: 100%;
    }

    .description-row.reverse {
      flex-direction: column;
      max-width: 100%;
    }

    /* .text h2 {
      font-size: 20px;
    } */

    .text p {
      font-size: 16px;
    }
    .pc-advantage {
    display: none;
    }
    .phone-advantage {
    display: block;
  }
  
    
}




@media (max-width: 320px) {
    /* .buttons-fold {
        display: none;

    } */
    .image {
        min-width: 200px;
      }
      .description-container {
        max-width: 100%
      }
}

/* 
@media (max-width: 320px) {
  .text h1 {
    font-size: 24px;
  }

  .text h2 {
    font-size: 18px;
  }

  .text p {
    font-size: 14px;
  }

  .contact-form-container h1 {
    font-size: 24px;
  }
} */





















  /* FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY FORMULARZ KONTAKTOWY */


  /* Kontener formularza */
.contact-form-container {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    /* background-color: #f9f9f9; */
    /* border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); */
    /* font-family: Arial, sans-serif; */
  }
  .form-phone {
    display: none;
  }
  .form-pc {
    display: block;
  }
  .text .contact-form-container {
    max-width: 530px;
    margin: 20px auto;
    padding: 20px;
  }


  /* FORMULARZ W INDEKSIE PRODUKT !!!!! !!!!!  */
  .feature-container .contact-form-container {
    /* padding: 15px; */
    padding: 0;
    /* margin-left: 0; to blokuje wysrodkowanie formularza!!!!!!!!!! */
  } 
  /* FORMULARZ W INDEKSIE O NAS !!!!! !!!!!  */
  .text .contact-form-container {
    /* padding: 15px; */
    padding: 0;
  } 
  

  /* USATAWIENIE KTÓRE RELANIE ZMIENIA WŁASCIWOSCI NAPISU FORMULARZ REALIZACJI  */
  .feature-container .contact-form-container h1 {
    font-size: 25px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .text .contact-form-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
    /* text-align: center; */
    /* text-transform: uppercase; */
    font-weight: 700;
  }

 .contact-form-container h1 {
    font-size: 28px;
    margin-bottom: 10px;
    /* text-align: center; */
    /* text-transform: uppercase; */
    font-weight: 700;
  }
  
  .contact-form-container p {
    /* font-size: 17px; */
    margin-bottom: 20px;
    text-align: justify;
    /* text-align-last: justify; */
    color: #000000;
    font-weight: 200;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 5px;
    /* font-weight: bold; */
    color: rgb(0, 0, 0);
    font-size: 15px;
  }
  
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 10px;
    /* font-size: 17px; */
    border: 1px solid #ccc;
    /* border-radius: 4px; */
    font-weight: 200;
  }
  
  .form-group input[readonly] {
    background-color: #f9f9f9;
    color: #6c757d;
    cursor: not-allowed;
  }
  
  .form-group textarea {
    resize: none;
  }
  
  .submit-button {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 18px;
    color: #fff;
    /* background-color: rgb(129, 108, 75); */
    background-color: #29231d;
    border: none;
    /* border-radius: 4px; */
    cursor: pointer;
    text-align: center;
    transition: background-color 0.4s ease;
  }
  
  .submit-button:hover {
    /* background-color: rgb(129, 108, 75); */
    background-color: rgba(0, 0, 0, 0.85);
    color: rgb(255, 255, 255);

  }
  
  /* Responsywność */
  @media (max-width: 768px) {
    .contact-form-container {
      /* padding: 15px; */
      padding: 5%;
    
    }
    .submit-button {
      font-size: 14px;
      padding: 10px;
    }
  }
  @media (max-width: 1400px) {
    .form-pc {
        display: none;
      }
    .form-phone {
        display: block;
    }
    
  }




    /* Styl checkboxa – wersja finalna */
.form-group.checkbox-group {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  font-size: 13px;
  color: #3c3c3c;
  line-height: 1.4;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  flex-wrap: wrap;
  max-width: 100%;

  
}

.checkbox-label input[type="checkbox"] {
  width: 15px;
  height: 15px;
  margin: 0;
  flex-shrink: 0;
}

.checkbox-label span {
  display: inline;
  line-height: 1.4;
  margin: 0;
  padding: 0;
  font-size: 14px;
  font-weight: 300;
  
}

.checkbox-label a {
  color: #565656;
  text-decoration: none;
  font-size: 13px;
  font-weight: 300;
}

.checkbox-label a:hover {
  color: #000;
}

















/* header */
header {
    height: 90px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    position: fixed;
    width: 100%;
    background-color: #f9f9f99a;
    backdrop-filter: blur(3px);
    z-index: 1;
}
/* dot.loga */
header .navigation {
    display: flex;
    align-items: center;
}
.logo img {
    height: 27px;
    align-items: center;
}
.logo-phone img {
    height: 22px;
    align-items: center;
    padding: 0 0 0 20px;
}

/* menu */
header nav > ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding-left: 0;   
    align-items: center;
}
header li {
    padding: 0 20px;
    text-decoration: none; 
    text-align: center; 
}
header nav ul li a {
    text-decoration: none;
    text-transform: uppercase;
    
    color: rgb(0, 0, 0);
}
header nav ul li b {
    font-weight: 800;
    font-size: 13.4px;

}
.nav-pc li.separator {
  pointer-events: none;
  /* opacity: 0.4; */
}
/* header nav ul li span {
    font-weight: 800;
    font-size: 13.3px;
    color:rgb(139, 102, 57);
    transition-duration: 0.3s;
} */
.nav-pc {
    padding-left: 50px;
}
.navigation .nav-pc a {
    font-size: 13.3px;
    transition-duration: 0.3s;
    font-weight: 600;
}
.nav-utility a {
    font-size: 13px;
    transition-duration: 0.3s;
    font-weight: 600;
}
.nav-pc ul li i {
    font-size: 13px;
    transition-duration: 0.3s;
}
header a:hover {
    color:#5e4b2e;

}
header a span:hover {
    color:rgb(192, 136, 68);

}

header .nav-phone i {
    font-size: 30px;
    color: black;
    padding: 0;
}

header nav ul li a {
    font-size: 25px;
}


/* tel / email w header */
.contact {
    display: flex;
    height: 50px;
    align-items: center;
}
.contact div {
    transition-duration: 0.4s;
    align-items: center;
}
.contact div:hover {
    color: #5e4b2e;
}
header .contact a {
    color: black;
    text-decoration: none;
    font-size: 18px;
    font-weight: 300;
}
.contact i {
    padding: 0 15px;
    font-size: 13px;
}






/*Nested-menu*/
.nested-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: rgba(0, 0, 0, 0.92);
    position: absolute;
    top: 0px;
    display: none; 
    opacity: 0.95;
    right: 0; 
    width: 100%;
    z-index: -1;  
} 
.nav-phone .nested-menu {
  padding-top: 70px;
}
.nested-menu.active {
    display: block;
}
.nested-menu li {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    padding-left: 0;
}
.nested-menu a {
    font-size: 18px;
    font-weight: 100;
    color: white;
    /* letter-spacing: 2px; */
    transition-duration: 0.4s;
}
.nested-menu a b {
    font-size: 19px;
    font-weight: 700;

}
.nested-menu a:hover {
    cursor: pointer;
    color:#5e4b2e;
}
.nested-menu a span {
    font-size: 18px;
    font-weight: 700;
    color:rgb(139, 102, 57);
    /* letter-spacing: 2px; */
    transition-duration: 0.4s;
}

/* slides */
.slide button {
    z-index: -2;
}
.carousel {
    padding-top: 90px;
}


/* .carousel-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 3;
  object-fit: cover;
} */






/* Pojedynczy slajd */
.baner img {
    padding-top: 90px;
    position: relative;
    max-height: 100%;
    max-width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
}

.baner-sample-4k {
    display: none;

}
.baner-sample-hd {
    display: block;

}



/* color-section */
.color {
    background-color: #F9F9F9;
    padding-top: 120px;
}
.color-half {
    background-color: #F9F9F9;
    padding-top: 60px;
}



/* go-down and look-for*/
.go-down {
    /* height: 250px; */
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 0 0 40px 0;
}
.go-down img {
    height: 30px;
}

/* little-name- tytuł w indeksie Q&A  */
.little-name {
    /* height: 340px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2% 4% 0 4%;
    background-color: #F9F9F9;
    /* margin-top: 100px; */
    /* padding-top: 50px; */
}
.little-name h3 {
    font-size: 30px;
    font-weight: 700;
    color: black;
    margin: 30px 0 15px 0;
}


/* tittle */
.tittle {
    /* height: 340px; */
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0.5% 15% 0 15%;
    background-color: #F9F9F9;
    /* padding-top: 100px; */
    
}
.move {
    margin-top: 0;
}
/* Dla rodzielczości Full HD */
.tittle h1 {
    font-size: 23px;
    font-weight: 700;
    color: black;
    margin: 20px 0 15px 0;
}
.tittle p {
    font-weight: 250;
    color:black;
    margin: 0;
}
.tittle p span {
    font-weight: 250;
    font-size: 14px;
    color:black;
    margin: 0;
}

.tittle h2 {
    font-size: 38px;
    font-weight: 700;
    color: black;
    margin: 30px 0 15px 0;
}
.tittle h2 span {
    font-size: 25px;
    font-weight: 700;
}
/* tytul polityka prywatnosci  */
.tittle h3 {
    font-size: 30px;
    font-weight: 700;
    padding: 30px 0 30px 0;

    
}
/* .tittle .pc p {
    font-weight: 250;
    font-size: 15px;
    color:black;
    margin: 0;
} */
/* .tittle .pc p span {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 15.5px;
} */
/* .tittle .phone p span {
    font-weight: 800;
    letter-spacing: 0.5px;
    font-size: 15.5px;
} */


.tittle ul {
    padding: 0;
}
.tittle ul li {
    list-style: none;
    text-align: justify;
    display: flex;
    padding: 10px 0;
    font-weight: 300;
}
.tittle i {
    /* align-items: center; */
    justify-content: center;
    display: flex;
    padding-right: 30px;
    font-size: 23px;
}
.tittle b {
    font-weight: 700;
    font-size: 17px;
}
.tittle a {
    text-decoration: none;
    color: #000;
    font-size: 30px;
}


/* Sekcja opisowa w indeksie RODO */

.rodo h3 {
    text-align: center;
}
.rodo .rodo-paragraph {
    text-align: center;
}
.rodo div {
    max-width: 70%;
    padding: 3% 5%;
}
.rodo p {
    text-align: justify;
    padding: 4px 0;
}
.rodo p a {
    font-size: 16px;
    color:rgba(0, 0, 0, 0.5);
}
.rodo ul li {
    font-weight: 300;
    font-size: 15px;
    color:black;
    margin: 0;
    padding: 0;
}
.rodo li {
    padding: 0 !important;
}
.rodo ul li i {
    font-size: 7px;
    color:black;
    align-items: center;
}


/* Sekcja opisowa w indeksie O NAS */
.brand-container {
    /* margin: 0; */
    /* padding-top: 100px; */
    margin-top: 0;   
}
.brand-container .brand {
    display: flex;
    justify-content: center;
    align-items: center; 
    max-width: 50%;
    padding: 1% 3% 0 3%;
}
.brand-container .about-us h2 {
    font-size: 38px;
}
.brand-container .about-us h2 span {
    font-weight: 300;
}
.brand-container .about-us h3 {
    font-size: 33px;
}
.brand p {
    text-align: justify;
}

/* Mission*/
.mission {
    /* height: 300px; */
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2% 5% 2% 5%  !important;
}
/* napis motto  */
.mission h2 {
    color: rgb(0, 0, 0);
    /* font-size: 38px; */
    font-size: 1.9em;
    font-weight: 100;
    padding-bottom: 10px;
    margin: 0;
    text-transform: uppercase;
}
.mission h3 {
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: 700;
    /* padding-bottom:40px;
    margin: 0; */
    margin: 0;
}
.mission .autor p {
    color: 	rgb(0, 0, 0);
    font-size: 14px;
    font-weight: 200;
}
.mission i {
    font-size: 30px;
    padding-bottom: 10px;
}
.mission a {
    color:#000000;
    font-weight: 400;
    font-size: 26px;
    text-decoration: none;
    transition-duration: 0.4s;
}
.mission a:hover {
    color:#000000;
    font-weight: 600;
}
.information {/* height: 300px; */
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 1% 5% 3% 5%;

    
    

}
.information a {
    text-decoration: none;
    padding: 14px 50px;
    background-color: #29231d;
    color: #ffffff;
    /* border: 0.5px solid rgba(0, 0, 0, 0.713); */
    cursor: pointer;
    font-size: 1em;
    transition: background-color 0.4s;



}
.information a:hover {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    border: 0.5px solid rgba(0, 0, 0, 0.713);

}







/*TJ. GŁOWNA OFERTA Z GRAFIKAMI: krzesło i stół*/
.offer {
    /* height: 800px; */
    background-color: #F9F9F9;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3% 10% 10% 10%;
    flex-wrap: wrap;
}
.offer > section {
    margin: 0 3%;
}
.offer-objects {
    max-width: 30%;
}
.offer-img img {
    max-height: 100%;
    max-width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    padding: none;
}
.offer-objects h4 {
    /* font-size: 38px;  */
    font-size: 1.4em;
    font-weight: 100;
    color: rgb(0, 0, 0);
    /* margin: 0 0 30px 0; */
    text-align: center;
    text-transform: uppercase;
}
.offer-objects p {
    font-weight: 200;
    text-align: center;
    color: black;
    /* text-transform: uppercase; */
    
}
.offer-objects button {
    border: 1px solid rgb(0, 0, 0);
    padding: 9px 70px;
    margin-bottom: 17px;
    display: flex;
    justify-content: center;
    text-align: center;
    /* transition-duration: 0.6s; */
    transition: background-color 0.4s;
    background-color: #000000;;
    color: rgb(255, 255, 255);
    cursor: pointer;
}
.offer-objects a {
    font-size: 18px; 
    font-weight: 500;
    display: flex;
    justify-content: center;
    text-align: center;
    text-decoration: none;
}
.offer-objects button:hover {
    background-color:rgb(255, 255, 255);
    color: rgb(0, 0, 0);
}



/* Atuty produktu  */
.full-width-container {
    width: 100%; /* Pełna szerokość strony */
    background-color: #F9F9F9; /* Tło dla całej sekcji */
    padding: 5% 5% 3% 5%; /* Odstępy góra/dół */
}
.image-container {
    position: relative;
    max-width: 35%; /* Maksymalna szerokość obrazka */
    margin: 0 auto; /* Wycentrowanie kontenera */
    padding: 4%; /* Wewnętrzne odstępy w kontenerze */
    background-color: #F9F9F9; /* Tło sekcji */
    border-radius: 5px; /* Zaokrąglenie rogów dla estetyki */
}
.image-container img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}
.image-container .tag {
    position: absolute;
    color: #000000;
    font-weight: 200;
    /* border: 1px solid #191919; */
    padding: 1% 3%;
    cursor: pointer;
    transition: transform 0.3s;
    text-align: center;
}
.image-container .tag:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1);
}
.tag-description {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #191919;
    color: #ffffff;
    font-weight: 100;
    border: 1px solid #191919;
    padding: 10px;
    z-index: 10;
    max-width: 250px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.6);
}
.image-container .tag:hover .tag-description {
    display: block;
}
/* Style for lines */
.image-container .line {
    position: absolute;
    width: 1px;
    background-color: #333;
}
.line {
    width: 0.5px;
    opacity: 0.5; /* Bardziej subtelne linie */
}








/* Answer & Qustion */
.accordion {
    padding: 2% 15% 5% 15%;
    background-color: #F9F9F9;
}
.accordion-header button {
    background-color: #F9F9F9 !important;
    color: black !important;
    font-weight: 300 !important;
}
.accordion-button {
    background-color: #fff !important; /* Domyślne tło */
    color: #000 !important; /* Domyślny kolor tekstu */
    border: none !important; /* Usuń ramkę */
}
.accordion-button:focus {
    background-color: #191919 !important; /* Tło po kliknięciu */
    color: #fff !important; /* Kolor tekstu po kliknięciu */
    box-shadow: none !important; /* Usuń domyślny cień */
    outline: none !important; /* Usuń domyślny kontur */
}
.accordion-button:not(.collapsed) {
    background-color: #191919 !important; /* Tło dla otwartej sekcji */
    color: #fff !important; /* Tekst dla otwartej sekcji */
}
.accordion-button:active {
    background-color: #191919 !important; /* Tło podczas kliknięcia */
    color: #fff !important; /* Tekst podczas kliknięcia */
}
.accordion-button:hover {
    background-color: #191919 !important; /* Tło po najechaniu */
    color: #fff !important; /* Tekst po najechaniu */
}
 /* znak */
 .accordion-button::after {
    color: #000 !important; /* Ustaw kolor na czarny */
    border-color: #000 !important; /* Jeśli to obramowanie, zmień na czarny */
}
.accordion-button:not(.collapsed)::after {
    color: #000 !important; /* Kolor czarny, gdy pytanie otwarte */
    border-color: #000 !important;
}
.accordion-button:focus::after,
.accordion-button:active::after {
    color: #000 !important;
    border-color: #000 !important;
}
.accordion-button {
    box-shadow: none !important; /* Usuń niebieską ramkę */
}
.accordion-button:focus {
    box-shadow: none !important;
}
div.accordion div.accordion-item button.accordion-button::after {
    color: #000 !important;
    border-color: #000 !important;
}





/* Video - podstawowy styl */
.video-container {
    position: relative;
    width: 100%; 
    padding-top: 33.33%; 
    /* padding-top: 50%;  */
    overflow: hidden; 
    
    top: 90px; 
}
.responsive-video {
    position: absolute;
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    width: 100%; 
    height: auto; 
    min-height: 100%; 
    object-fit: cover; 
}
/* Styl dla urządzeń mobilnych (np. maksymalna szerokość 768px) */
@media (max-width: 768px) {
    .video-container {
        padding-top: 100%; 
    }
    .responsive-video {
        width: 100%; 
        height: auto; 
    }
}





/*footer      footer       footer       footer      footer      footer*/
.footer-logo {
    /* height: 100px; */
    display: flex;
    /* background-color:#191919; */
    background-color: #1D1A16;
    padding: 100px  100px 0 100px;
    justify-content: center;
    width: 100%;
}
footer {
    max-width: 100%;
    max-width: 100%;
    display: flex;
    /* background-color:#191919; */
    background-color: #1D1A16;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 0 10%;
}
.footer-logo img {
    height: 40px;
}
footer > section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5% 2%;    
}
.contact-details ul {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 310px;
    height: 100%;
}
.contact-details h2 {
    color: white;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 15px;
    padding: 30px 0 15px 0;
}
.contact-details li {
    display: flex;
    border-bottom: .5px solid #2a2a2a;
}
.contact-details li:last-child {
    border-bottom: none;
}
.contact-details li a {
    text-decoration: none;
    color: #cecece;
    font-weight: 200;
    transition-duration: 0.4s;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 100;
}
/* .contact-details li p {
    color: #cecece;
    font-weight: 200;
    padding: 12px 0;
    font-size: 16px;
} */
.contact-details i {
    color: #cecece;
    margin: 0 30px 0 0; 
    display: flex;
    align-items: center;
    font-size: 20px;  
}


/* Ikony kierujące do facebooka i Instagrama*/
.attach {
    /* background-color:#191919;  */
    background-color: #1D1A16; 
}
.attach p {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color:#191919;  */
    background-color: #1D1A16;
    color: #ffffff;
    padding-top: 50px;
    font-size: 20px;
}
.media {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background-color:#191919;   */    
    background-color: #1D1A16; 
}
.media a i {
    color: #ffffff;
    font-size: 40px;
    padding: 0 10px 50px 10px;
    transition-duration: 0.3s; 
}
.media a i:hover {
    transform: scale(1.3);
}

/* copyright */
.copyright {
    /* background-color:#191919; */
    background-color: #1D1A16;
    display: flex;
    justify-content: center;
    text-align: center;
    padding: 5%  12% 0 12%;
}
.copyright p {
    font-size: 15px;
    font-weight: 200;
    color: #A1A1A1;
    text-align: justify;
    text-align-last: center;
}
.copyright b {
    font-weight: 900;
    font-size: 15px;
}











@media(min-width: 3840px) { 

    .baner-sample-4k {
    display: block;

    }
    .baner-sample-hd {
        display: none;

    }



}
@media(min-width: 3000px) { 
    .baner-png {
        padding: 0 500px;  
    }
    .copyright p {
        padding: 0  14% 0 14%;
    }


}














@media(min-width: 2560px) { 
    .nav-pc ul li a {
        font-size: 15px;
    }

    .tittle h1 {
        font-size: 26px;
        font-weight: 700;
    }
    /* .tittle h1 span {
        font-size: 20px;
        letter-spacing: 2px;
    } */
    /* .tittle h1 b {
        font-size: 20px;
        letter-spacing: 2px;
    } */
    
    .tittle h2 {
        font-size: 41px;
    }
    .tittle p {
        font-size: 17px;
    }

     /* paragrafy w regulaminach */
    .tittle p b {
        font-size: 18px;
    }
    .tittle p span {
        font-size: 15px;
    }
    .tittle ul li {
        font-size: 20px;
    }
    .tittle ul li i {
        font-size: 25px;
    }




    .rodo ul li {
    font-size: 17px;
    }
    .rodo ul li i {
        font-size: 7px;
    }





    .rodo div {
        max-width: 50%;
        padding: 3% 5%;
    }
    .brand-container {
        /* margin: 0; */
        top: 100px;
        
    }
    .brand-container .brand {
        max-width: 45%;

    }


    .baner-png-margin {
        padding: 0 13%;
    }

    



    
    .offer {
        padding: 3% 10% 5% 10%;
    }
    .offer-objects {
        max-width: 20%;
    }
    .offer-objects h4 {
        font-size: 40px; 
    }
    .product h5 {
        font-size: 22px; 
    }
    .product h5 b {
        font-size: 20px; 
    }
    .product a {
        font-size: 20px; 
    }
    .mission {
        padding: 5% 5%;
    }
    /* .mission .autor p {
        font-size: 19px;
    } */
    .mission h2 {
        font-size: 1.9em;
    }
    .accordion {
        padding: 3% 32%;
    }
    /* .contact-details li a {
        font-size: 17px; 
    }
    .copyright p {
        font-size: 17px;
    } */
    .copyright {
        padding: 5%  21% 0 21%;
    }
} 
@media(max-width: 2499px) { 
    .offer-objects {
        font-size: 22px;
    }
} 
@media(max-width: 1920px) { 
    .brand-container .brand {
        max-width: 60%;

    }



}
@media(max-width: 1536px) { 
    header li {
        padding-left: 18px;
    }
    header .nav-pc ul li a {
        font-size: 15px;
    }
    .offer-objects {
        max-width: 33%;
    }
    .offer-objects h4 {
        font-size: 25px; 
    }
} 


@media(min-width: 1200px) { 
    .nav-phone {
        display: none;
    }
    .nav-pc {
        display: block;
    }
} 
@media(max-width: 1280px) { 
    .nav-pc {
        display: none;
    }
    .nav-utility {
        display: none;
    }
    .nav-phone {
        display: block;
    }
    .contact {
        display: none;
    }
    .carousel-caption p {
        display: none;
    }
    .tittle {
        padding: 1% 3% 2% 3%;
    }

    .brand-container .brand {
        max-width: 60%;

    }
    .go-down {
        padding: 15px 0 50px 0;
    }



    /* atuty */
    .image-container {
        max-width: 100%;  
    }
    .tag {
        font-size: 0.8rem;
        /* padding: 4px 2px; */ 
        
    }
    .tag-description {
        font-size: 0.8rem;
        
    }
    .image-container .tag {
        font-weight: 300;
        /* border: 0.5px solid #19191975; */
        color: #000000;
        
    }
    .line {
        width: 0.5px;
        opacity: 0.5; /* Bardziej subtelne linie */
    }

    




    .offer {
        padding: 0 3% 20% 3%;
    }
    .offer-objects {
        max-width: 100%;
    }
    .product {
        max-width: 50%;
        margin: 3% 0; 
    }  
} 
@media(min-width: 769px) { 
    .logo {
        display: block;
    }
    .logo-phone {
        display: none;
    }   
    .baner img {
        display: block;   
    }
    .baner-phone img {
        display: none;
    }
    .carousel {
        display: block;
    }
    .carousel-phone {
        display: none;
    }

} 
@media(max-width: 768px) { 

    .logo {
        display: none;
    }
    .logo-phone {
        display: block; 
    }
    header {
        background-color: #f9f9f973;
    }
    /* header .contact-button {
        display: none;
    } */
    .carousel {
        display: none;
    }
    .carousel-phone {
        display: block;
        position: static;
    }
    .carousel button {
        display: none;
    }
    .color {
        padding-top: 100px;
    }
    .slide {
        z-index: -2;
    }
    .brand-container .brand {
        display: flex;
        justify-content: center;
        align-items: center; 
        max-width: 50%;
        padding: 5% 3% 0 3%;
    }
    .brand-container .about-us h2 {
        font-size: 37px;
        font-weight: 700;
    }
    /* .brand-container .about-us h2 span {
        font-weight: 300;
    } */
    .brand-container .about-us h3 {
        font-size: 28px;
        /* margin: 0;
        padding: 0; */
    }
    .baner img {
        display: none;   
    }
    .baner-phone img {
        display: block;
        padding-top: 90px;
        position: relative;
        max-height: 100%;
        max-width: 100%;
        background-size: cover;
        background-repeat: no-repeat;
    }



    
    



    
    .img-fluid {
        display: none;   
    }
    .img-fluid-phone {
        display: block;
        max-width: 100%;
        max-height: 100%;
        padding-top: 20px;
    }

    




    






    

    .tittle h1 {
        font-size: 23px;
    }
    /* .tittle h1 span {
        font-size: 20px;
        letter-spacing: 2px;
    }
    .tittle h1 b {
        font-size: 20px;
        letter-spacing: 2px;
    } */
    .tittle h2 {
        font-size: 33px;
        margin: 20px 0;
        padding: 0 3%;
        top: 500px;
    }
    .tittle p {
        /* font-size: 20px; */
        text-align: justify;
        text-align-last: center;
        padding: 0 3%;
        font-weight: 250;
    }
    .tittle .brand {
        max-width: 100%;
        /* padding: 3% 15%; */
    
    }

    .brand-container p {
        padding: 0;
    }

 


    .rodo div {
        max-width: none;
        padding: 0 3%;
    }
    .rodo h2 {
        padding: 0 3%;

    }
    .rodo p {
        padding: 0;
        text-align-last: center;
    }
    .mission {
        padding: 25% 4%;
    }
    .mission h2 {
        font-size: 33px;
        padding-bottom: 20px;
        /* font-weight: 700; */
        padding-top: 30px;
    }
    .mission h3 {
        font-size: 20px;
    }
    .mission .autor p {
        font-size: 16px;
        text-align: justify;
        text-align-last: center;
    }
    .mission a {
        font-size: 22px;
        font-weight: 600;
    }
    .accordion {
        padding: 4% 5%;
    }
    footer {
        padding: 10% 3%;
    }
    footer > section {
        padding: 10% 5%;    
    }
    .contact-details {
        width: 100%;
    }
    .contact-details li {
        width: 100%;
    }
    .footer-logo {
        display: none;
      }
      .copyright {
        padding: 0  5%;
    }
    .copyright p {
        font-size: 13px;
    }
    .copyright b {
        font-weight: 900;
        font-size: 13px;
    }
    
} 
@media(max-width: 380px) { 
    .product {
        max-width: 100%;
        margin: 3% 0; 
    }
    .contact-details {
        width: 100%;
    }
    .contact-details li {
        width: 100%;
    }
} 
@media(max-width: 280px) { 
    header .nav-phone i {
        font-size: 23px;
        padding: 5px 5px;
    }

    .product-card {
        padding: 5px;

    }

} 

