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

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #d3d3d3;
  padding: 10px 20px;
}

.menuWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hamburger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.logo {
  width: 25%;
}
.logo img {
  width: 128px;
}

.menu {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.menu ul {
  list-style: none;
  display: flex;
}
.menu li {
  padding: 0 25px;
  font-size: 16px;
  font-family: "Clash Grotesk";
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s;
}
.menu li:hover {
  color: #909090;
}

.basket-wrapper {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.basket-wrapper ul {
  list-style: none;
  display: flex;
  align-items: center;
}
.basket-wrapper li {
  padding: 0 10px;
  font-size: 16px;
  font-family: "Clash Grotesk";
  text-transform: uppercase;
  cursor: pointer;
}
.basket-wrapper li a {
  text-decoration: none;
  transition: all 0.3s;
}
.basket-wrapper li:hover {
  color: #909090;
}
.basket-wrapper li:visited {
  color: #000;
}
.basket-wrapper li img {
  width: 22px;
  margin-top: 4px;
}

.mobileMenu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: #fff;
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease-in-out;
  z-index: 2000;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.closeBtn {
  font-size: 28px;
  cursor: pointer;
  margin-bottom: 20px;
  position: absolute;
  top: 20px;
  right: 20px;
}

ul {
  list-style: none;
  padding: 0;
}
ul li {
  margin: 20px 0;
  font-family: "Clash Grotesk";
  font-size: 18px;
  text-align: center;
}
ul a {
  text-decoration: none;
  color: #000;
}
ul a:hover {
  color: #909090;
}

.mobileMenu.active {
  right: 0;
}

@media (max-width: 1024px) {
  .menu {
    display: none;
  }
  .basket-wrapper {
    display: none;
  }
  .hamburger {
    display: block;
  }
}
h2 {
  font-size: 48px;
  font-family: "Blacker Display";
  font-weight: 400;
}

p {
  font-size: 20px;
  font-family: "Clash Grotesk";
  font-weight: 400;
}

.container {
  max-width: 1260px;
  margin: 0 auto;
}

.web-wrapper {
  width: 100%;
  display: flex;
  margin-top: 20px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .web-wrapper {
    flex-wrap: wrap;
    margin-top: 0;
  }
}
.web-wrapper a {
  width: 50%;
  margin-right: 20px;
  color: #fff;
  text-decoration: none;
}
@media screen and (max-width: 1024px) {
  .web-wrapper a {
    padding: 0 20px 20px 20px;
    width: 100%;
    margin: 0;
  }
}
.web-wrapper a .left {
  width: 100%;
  color: #000;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .web-wrapper a .left {
    height: 350px;
  }
}
.web-wrapper a .left .wrapper-name {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
  font-family: "Clash Grotesk";
  align-items: center;
  color: #fff;
}
.web-wrapper a .left .wrapper-name h3 {
  font-size: 25px;
  font-weight: normal;
}
.web-wrapper a .left .wrapper-name a {
  font-size: 18px;
  color: #fff;
}
.web-wrapper .left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .web-wrapper .left {
    padding: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 500px) {
  .web-wrapper .left h2 {
    font-size: 32px;
  }
}
.web-wrapper .left p {
  padding-right: 90px;
  padding-top: 10px;
  line-height: 24px;
}
@media screen and (max-width: 500px) {
  .web-wrapper .left p {
    font-size: 16px;
    padding-right: 0;
  }
}
.web-wrapper .left img {
  width: 100%;
  padding-right: 10px;
}
.web-wrapper .left .imageHeader {
  width: 100%;
  height: 600px;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .web-wrapper .left .imageHeader {
    width: 100%;
  }
}
.web-wrapper .image {
  width: 50%;
  background-size: cover;
  background-repeat: none;
  background-position: center;
  height: 550px;
  transition: 0.4s;
  cursor: pointer;
}
.web-wrapper .image:hover {
  filter: grayscale(0.8);
}
.web-wrapper .right {
  width: 50%;
  padding-left: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .web-wrapper .right {
    width: 100%;
    padding: 0 20px;
  }
}
@media screen and (max-width: 500px) {
  .web-wrapper .right h2 {
    font-size: 32px;
    padding: 0;
  }
}
.web-wrapper .right a {
  width: 100%;
  height: 600px;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .web-wrapper .right a {
    width: 100%;
    padding: 0;
  }
}
.web-wrapper .right .imageHeader {
  width: 100%;
  height: 600px;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .web-wrapper .right .imageHeader {
    width: 100%;
  }
}
.web-wrapper .right img {
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .web-wrapper .right img {
    display: none;
  }
}
.web-wrapper .right p {
  border-left: 3px solid brown;
  padding-left: 10px;
  padding-right: 70px;
  font-size: 20px;
  margin-top: 15px;
}
@media screen and (max-width: 500px) {
  .web-wrapper .right p {
    font-size: 16px;
  }
}

.web-wrapper-image {
  width: 100%;
  display: flex;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .web-wrapper-image {
    flex-wrap: wrap;
  }
}
.web-wrapper-image a {
  width: 50%;
  text-decoration: none;
}
.web-wrapper-image a:nth-child(1) {
  margin: 0 10px 0 0;
  color: #000;
}
@media screen and (max-width: 1024px) {
  .web-wrapper-image a:nth-child(1) {
    width: 100%;
    margin: 0 20px 20px 20px;
  }
}
.web-wrapper-image a:nth-child(2) {
  margin: 0 0 0 10px;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .web-wrapper-image a:nth-child(2) {
    width: 100%;
    margin: 0 20px 20px 20px;
  }
}
.web-wrapper-image a:nth-child(2) a {
  color: #fff;
}
.web-wrapper-image .image {
  width: 100%;
  background-size: cover;
  background-repeat: none;
  background-position: top;
  height: 800px;
  transition: 0.4s;
  cursor: pointer;
  height: 550px;
}
.web-wrapper-image .image:hover {
  filter: grayscale(0.8);
}
@media screen and (max-width: 1024px) {
  .web-wrapper-image .image {
    height: 350px;
  }
}
.web-wrapper-image .image .wrapper-name {
  display: flex;
  width: 100%;
  justify-content: space-between;
  padding: 20px;
  font-family: "Clash Grotesk";
  align-items: center;
}
.web-wrapper-image .image .wrapper-name h3 {
  font-size: 25px;
  font-weight: normal;
}
.web-wrapper-image .image .wrapper-name a {
  font-size: 18px;
}

.three-wrappers {
  display: flex;
  width: 100%;
}
.three-wrappers .photo {
  width: 33.33%;
  height: 400px;
  margin: 20px 0;
  background-size: cover;
  background-position: bottom;
}
@media screen and (max-width: 734px) {
  .three-wrappers .photo {
    height: 250px;
  }
}
.three-wrappers .photo:nth-child(2) {
  margin: 20px;
  background-position: center;
}

.long-wrappers {
  display: flex;
  width: 100%;
}
.long-wrappers a {
  width: 100%;
  color: #fff;
  text-decoration: none;
}
.long-wrappers .photo {
  width: 100%;
  background-size: cover;
  background-position: center;
  height: 470px;
  transition: 0.4s;
}
.long-wrappers .photo:hover {
  filter: grayscale(0.8);
}
@media screen and (max-width: 734px) {
  .long-wrappers .photo {
    height: 250px;
  }
}
.long-wrappers .photo .wrapper-text {
  padding: 20px;
  font-family: "Clash Grotesk";
  display: flex;
  justify-content: space-between;
}
.long-wrappers .photo .wrapper-text h3 {
  font-size: 25px;
  font-weight: normal;
}

footer {
  margin: 20px 20px 0 0;
  background-color: #ececec;
  padding: 20px 0;
  width: 100%;
  font-family: "Clash Grotesk";
}
footer .wrapper-footer {
  display: flex;
}
@media screen and (max-width: 1024px) {
  footer .wrapper-footer {
    flex-wrap: wrap;
  }
}
footer .wrapper-footer .col25 {
  width: 33.33%;
}
@media screen and (max-width: 1024px) {
  footer .wrapper-footer .col25 {
    width: 50%;
  }
}
@media screen and (max-width: 770px) {
  footer .wrapper-footer .col25 {
    width: 100%;
  }
  footer .wrapper-footer .col25:nth-child(3) {
    width: 50%;
  }
  footer .wrapper-footer .col25:nth-child(4) {
    width: 50%;
  }
}
@media screen and (max-width: 470px) {
  footer .wrapper-footer .col25 {
    width: 100%;
  }
  footer .wrapper-footer .col25:nth-child(3) {
    width: 100%;
  }
  footer .wrapper-footer .col25:nth-child(4) {
    width: 100%;
  }
}
footer .wrapper-footer .col25 .photo {
  height: 300px;
  background-size: cover;
  background-position: center;
}
footer .wrapper-footer .col25 .wrapper-subscribe {
  padding-top: 25px;
}
@media screen and (max-width: 1024px) {
  footer .wrapper-footer .col25 .wrapper-subscribe {
    padding: 100px 50px 0 20px;
  }
}
@media screen and (max-width: 470px) {
  footer .wrapper-footer .col25 .wrapper-subscribe {
    padding: 0px 20px 40px 20px;
  }
}
footer .wrapper-footer .col25 .wrapper-subscribe h4 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 600;
}
footer .wrapper-footer .col25 .wrapper-subscribe p {
  text-transform: uppercase;
}
footer .wrapper-footer .col25 .wrapper-subscribe .text {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
footer .wrapper-footer .col25 .wrapper-subscribe .text input {
  background: transparent;
  border: 1px solid #000;
  border-top: none;
  border-left: none;
  border-right: none;
  margin-top: 40px;
  font-size: 18px;
  width: 60%;
}
footer .wrapper-footer .col25 .wrapper-subscribe .text input:focus {
  outline: none;
}
footer .wrapper-footer .col25 .wrapper-subscribe .text button {
  padding: 10px 20px;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid #000;
  cursor: pointer;
  transition: 0.4s;
}
footer .wrapper-footer .col25 .wrapper-subscribe .text button:hover {
  background: #000;
  color: #fff;
}
footer .wrapper-footer .col25 .links {
  padding: 20px 0 0 70px;
}
@media screen and (max-width: 470px) {
  footer .wrapper-footer .col25 .links {
    padding: 20px 20px 10px;
  }
}
footer .wrapper-footer .col25 .links h4 {
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 600;
}
@media screen and (max-width: 470px) {
  footer .wrapper-footer .col25 .links h4 {
    text-align: center;
    padding-bottom: 15px;
  }
}
footer .wrapper-footer .col25 .links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  width: 100%;
}
footer .wrapper-footer .col25 .links ul li {
  padding: 10px 0;
  margin: 0;
  width: 100%;
}
@media screen and (max-width: 470px) {
  footer .wrapper-footer .col25 .links ul li {
    padding: 5px 0;
  }
}
footer .wrapper-footer .col25 .links ul li a {
  text-decoration: none;
  color: #000;
  transition: 0.4s;
  display: flex;
  width: 100%;
}
footer .wrapper-footer .col25 .links ul li a:hover {
  color: #909090;
}

.single-product h2 {
  display: none;
}
.single-product .wrapperProduct {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .single-product .wrapperProduct {
    flex-wrap: wrap;
  }
}
.single-product .wrapperProduct .imageWrapper {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .single-product .wrapperProduct .imageWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .single-product .wrapperProduct .imageWrapper img {
    width: 70%;
    padding: 0px;
  }
}
@media screen and (max-width: 1024px) {
  .single-product .wrapperProduct .imageWrapper .product-gallery-thumbnails {
    display: none;
  }
}
.single-product .wrapperProduct .textWrapper {
  width: 50%;
  position: sticky;
  top: 100px;
  height: 80%;
  padding: 10px 20px 20px 20px;
}
@media screen and (max-width: 1024px) {
  .single-product .wrapperProduct .textWrapper {
    width: 100%;
  }
}
.single-product .wrapperProduct .textWrapper .entry-title {
  font-size: 28px;
  font-family: "Clash Grotesk";
  font-weight: 500;
}
.single-product .wrapperProduct .textWrapper .amount bdi {
  font-size: 32px;
  font-family: "Clash Grotesk";
}
.single-product .wrapperProduct .textWrapper .wc-tabs {
  display: none;
}
.single-product .wrapperProduct .textWrapper .woocommerce-Tabs-panel p {
  font-family: "Clash Grotesk";
  font-size: 14px;
}
.single-product .wrapperProduct .textWrapper .wrapperInfoPrice {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 20px;
}
.single-product .wrapperProduct .textWrapper .wc-tabs-wrapper {
  padding-bottom: 20px;
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}
.single-product .wrapperProduct .textWrapper .single_add_to_cart_button {
  width: 100%;
  padding: 13px 25px;
  background: black;
  text-transform: uppercase;
  transition: 0.4s;
}
.single-product .wrapperProduct .textWrapper .single_add_to_cart_button:hover {
  background: transparent;
  border: 1px solid #000;
  color: #000;
}
.single-product .wrapperProduct .textWrapper .quantity {
  border: 1px solid #000;
}
.single-product .wrapperProduct .textWrapper .quantity input[type=number]::-webkit-inner-spin-button,
.single-product .wrapperProduct .textWrapper .quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.single-product .wrapperProduct .textWrapper .quantity input[type=number] {
  -moz-appearance: textfield;
}
.single-product .wrapperProduct .textWrapper .quantity .qty-button {
  background: transparent;
  border: none;
  font-size: 16px;
  padding: 10px;
}
.single-product .wrapperProduct .textWrapper .quantity .qty-button .qty {
  width: 3.631em;
  text-align: center;
  font-size: 16px;
  text-align: center;
  border: none !important;
}

.single-product .wrapperProduct .textWrapper .quantity input[type=number] {
  border: none !important;
}

.hero-products {
  margin-top: 20px;
}
.hero-products h2 {
  font-size: 38px;
}
@media screen and (max-width: 570px) {
  .hero-products h2 {
    width: 100%;
    padding: 0 20px;
    font-size: 26px;
  }
}
.hero-products p {
  font-size: 18px;
  width: 560px;
  padding-top: 20px;
}
@media screen and (max-width: 570px) {
  .hero-products p {
    width: 100%;
    padding: 5px 20px 0;
    font-size: 14px;
  }
}

.products-wrapper {
  display: flex;
  width: 100%;
  margin-top: 20px;
  flex-wrap: wrap;
  margin-bottom: 120px;
}
.products-wrapper a {
  width: 33%;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 1024px) {
  .products-wrapper a {
    width: 50%;
    padding: 20px;
  }
}
@media screen and (max-width: 425px) {
  .products-wrapper a {
    width: 100%;
    padding: 10px;
  }
}
.products-wrapper a:nth-child(even) {
  padding: 0 10px;
}
@media screen and (max-width: 1024px) {
  .products-wrapper a:nth-child(even) {
    padding: 10px;
  }
}
.products-wrapper a .product {
  width: 100%;
}
.products-wrapper a .product .image-product {
  width: 100%;
}
.products-wrapper a .product .image-product .image {
  width: 100%;
  height: 450px;
  background-size: cover;
  background-position: bottom;
}
.products-wrapper a .product .product-text {
  margin-top: 10px;
}
.products-wrapper a .product .product-text h4 {
  font-family: "Clash Grotesk";
  font-size: 22px;
  font-weight: normal;
  color: #000;
  text-decoration: none;
}
.products-wrapper a .product .product-text p {
  font-family: "Clash Grotesk";
  font-size: 17px;
  color: #000;
}
.products-wrapper a:hover {
  filter: grayscale(0.6);
}

.accordion-details {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.accordion-details.open {
  max-height: 500px;
  transition: max-height 0.3s;
  border-left: 1px solid rgb(0, 0, 0);
  border-right: 1px solid rgb(0, 0, 0);
  border-bottom: 1px solid rgb(0, 0, 0);
  padding: 15px;
  margin-top: -10px;
  margin-bottom: 10px;
}

.accordion-title {
  cursor: pointer;
  padding: 10px 10px;
  border: 1px solid;
  text-transform: uppercase;
  font-size: 16px;
  font-family: "Clash Grotesk";
  margin-top: 10px;
  margin-bottom: 5px;
}

.accordion-details {
  font-size: 14px;
  font-family: "Clash Grotesk";
  overflow: hidden;
}

strong {
  font-weight: 600 !important;
}

.customize-support main h1 {
  display: none;
}

.woocommerce {
  max-width: 1260px;
  display: flex;
  margin: 40px auto 150px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1260px) {
  .woocommerce {
    flex-wrap: wrap;
  }
}
.woocommerce .woocommerce-cart-form {
  width: 60%;
}
@media screen and (max-width: 1260px) {
  .woocommerce .woocommerce-cart-form {
    width: 100%;
  }
}
.woocommerce .woocommerce-cart-form .product-thumbnail img {
  max-width: 128px;
}
.woocommerce .cart-collaterals {
  width: 40%;
  padding: 0 20px 20px 20px;
  border-left: 1px solid #000;
}
@media screen and (max-width: 1260px) {
  .woocommerce .cart-collaterals {
    padding: 0 20px 20px 20px;
    border-left: none;
    width: 100%;
  }
}
.woocommerce .cart-collaterals .calculated_shipping {
  width: 100%;
}
.woocommerce .cart-collaterals .calculated_shipping .shop_table_responsive {
  border-radius: 0;
  font-family: "Clash Grotesk" !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  padding: 0 20px;
}
.woocommerce .cart-collaterals .calculated_shipping .shop_table_responsive .cart-subtotal th {
  font-size: 16px;
  font-weight: 600;
  border: none;
}
.woocommerce .cart-collaterals .calculated_shipping .shop_table_responsive .woocommerce-shipping-totals th {
  font-weight: 600;
  font-size: 15px;
  border: none;
  font-family: "Clash Grotesk";
  display: flex;
}
.woocommerce .cart-collaterals .calculated_shipping .shop_table_responsive .woocommerce-shipping-methods li .amount bdi {
  font-weight: 600;
}
.woocommerce .cart-collaterals .calculated_shipping .shop_table_responsive .woocommerce-shipping-destination {
  font-size: 16px;
}
.woocommerce .cart-collaterals .calculated_shipping .shop_table_responsive .amount bdi {
  font-weight: 600;
  font-size: 17px;
}

.woocommerce table.shop_table {
  border: none;
}
.woocommerce table.shop_table tbody {
  border-left: 1px solid #000;
  border-right: none;
  border-bottom: none;
  border-top: none;
  border-radius: 0;
}
.woocommerce table.shop_table th {
  font-weight: 600 !important;
  border-top: none !important;
}
.woocommerce table.shop_table td {
  border-top: none;
}

.woocommerce-cart-form__cart-item a {
  font-family: "Clash Grotesk";
  color: #000;
  text-decoration: none;
}

.woocommerce-cart-form__contents {
  font-family: "Clash Grotesk";
}

.woocommerce-shipping-methods label {
  font-size: 16px;
}
.woocommerce-shipping-methods label .amount bdi {
  font-size: 16px;
  padding-left: 5px;
}

.order-total {
  border: none;
}
.order-total th {
  font-weight: 600 !important;
  border: none;
  font-size: 16px;
}

.checkout-button {
  font-size: 17px !important;
  font-family: "Clash Grotesk" !important;
  width: 100% !important;
  background: #000 !important;
  font-weight: 400 !important;
  text-align: center !important;
}

.shipping-calculator-button {
  color: #000 !important;
}

.qty {
  border: none !important;
}

.woocommerce-notices-wrapper {
  display: none !important;
}

@media screen and (max-width: 1260px) {
  .product-remove {
    display: flex;
    justify-content: flex-end;
  }
}

@media screen and (max-width: 1260px) {
  .coupon {
    display: flex;
    justify-content: space-between;
  }
  .coupon .input-text {
    padding: 7px;
  }
}

.cart_totals {
  font-family: "Clash Grotesk";
}

@media screen and (max-width: 1260px) {
  .woocommerce-shipping-methods {
    margin: 30px 0 !important;
  }
}

@media screen and (max-width: 1260px) {
  .woocommerce-shipping-destination {
    font-size: 16px;
    text-align: center;
  }
}

.cart_totals {
  width: 100% !important;
}

.woocommerce-shipping-totals th {
  display: flex !important;
}

.woocommerce-shipping-destination {
  font-size: 16px !important;
}

.woocommerce #content table.cart td.actions .input-text, .woocommerce table.cart td.actions .input-text, .woocommerce-page #content table.cart td.actions .input-text, .woocommerce-page table.cart td.actions .input-text {
  width: 150px !important;
  padding: 7px;
}

.shipping-calculator-button {
  display: none !important;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 600 !important;
  font-size: 16px !important;
}

.select-paczkomat-button {
  font-size: 16px !important;
  color: #fff !important;
  background: #000 !important;
  margin: 10px 0 !important;
  font-weight: 400 !important;
  font-family: "Clash Grotesk" !important;
}

#selected-paczkomat {
  font-size: 16px !important;
  font-family: "Clash Grotesk" !important;
}

button[name=update_cart] {
  display: none !important;
}

.woocommerce-form-coupon-toggle {
  display: none !important;
}
.woocommerce-form-coupon-toggle .woocommerce-info {
  width: 100% !important;
  border-top-color: #000 !important;
  font-family: "Clash Grotesk" !important;
  font-size: 16px !important;
  color: #000 !important;
}
.woocommerce-form-coupon-toggle .woocommerce-info a {
  font-family: "Clash Grotesk" !important;
  font-size: 16px !important;
  color: #000 !important;
}

main h1 {
  display: none !important;
}

.woocommerce-shipping-fields {
  display: none !important;
}

.order_review_heading {
  display: none !important;
}

.woocommerce-billing-fields {
  font-family: "Clash Grotesk" !important;
}
.woocommerce-billing-fields h3 {
  font-family: "Clash Grotesk" !important;
  font-weight: 600;
}
.woocommerce-billing-fields label {
  font-family: "Clash Grotesk" !important;
  font-size: 16px !important;
}

#order_review_heading {
  font-family: "Clash Grotesk" !important;
  font-weight: 600;
}

.woocommerce-checkout-review-order {
  font-family: "false" !important;
}

.wc_payment_method payment_method_cod {
  font-size: 16px !important;
}

.payment_box payment_method_cod p {
  font-size: 16px !important;
}

.woocommerce-checkout-payment {
  background: none !important;
}

.woocommerce_checkout_place_order {
  background: #000 !important;
  color: #fff !important;
}

.payment_method_cod p {
  font-size: 16px !important;
}

.woocommerce-privacy-policy-text p {
  font-size: 16px !important;
}

#place_order {
  font-size: 17px !important;
  font-family: "Clash Grotesk" !important;
  width: 200px !important;
  background: #000 !important;
  font-weight: 400 !important;
  text-align: center !important;
  margin-top: 20px !important;
}

.product-template-default {
  margin: 0 auto !important;
  max-width: 100% !important;
}
.product-template-default footer {
  margin: 20px 0 0;
}
.product-template-default main {
  margin: 0 auto !important;
}

#wpcf7-f127-o1 form p label {
  font-size: 16px;
  font-family: "Clash Grotesk";
}

.wpcf7-submit {
  font-size: 17px !important;
  font-family: "Clash Grotesk" !important;
  width: 200px !important;
  background: #000 !important;
  font-weight: 400 !important;
  text-align: center !important;
  margin-top: 20px !important;
  color: #fff;
  padding: 5px;
  cursor: pointer;
}

.wpcf7-response-output {
  font-family: "Clash Grotesk" !important;
}

#wpcf7-f127-o1 input {
  border: 1px solid #000 !important;
  padding: 5px 10px !important;
  margin: 10px 0 0 !important;
}

.contacth2 {
  font-size: 38px;
}
@media screen and (max-width: 570px) {
  .contacth2 {
    width: 100%;
    padding: 0 20px;
    font-size: 26px;
  }
}

.product_title {
  display: block !important;
}

.entry-title {
  display: block !important;
}

.accordion-details table {
  border-collapse: collapse;
}
.accordion-details table td {
  padding: 5px 10px;
  border: 1px solid #000;
}

.paddingContent {
  padding: 40px 10px;
}
.paddingContent h2 {
  font-size: 26px;
  margin: 20px 0;
}
.paddingContent ul {
  list-style: disc;
}
.paddingContent ul li {
  text-align: left;
  margin: 0 0 0 15px;
}

.wrapperContat {
  padding-top: 9px;
}
.wrapperContat p {
  font-size: 17px;
  text-transform: uppercase;
}

@media screen and (max-width: 570px) {
  .contact-page .imageHeader {
    display: none;
  }
}

.wc-empty-cart-message {
  width: 100%;
  font-family: "Clash Grotesk" !important;
}

.microP {
  padding-top: 7px;
  font-size: 14px;
  font-family: "Clash Grotesk";
}

.microPC {
  padding-top: 7px;
  font-size: 14px;
  font-family: "Clash Grotesk";
  color: #7b6951;
}

.tnp-subscription form {
  display: flex;
}
.tnp-subscription form .tnp-field-email {
  width: 100%;
}
.tnp-subscription form .tnp-field-email label {
  display: none;
}
.tnp-subscription form .tnp-field-email .tnp-email {
  width: 85% !important;
  font-family: "Clash Grotesk";
}
.tnp-subscription form .tnp-submit {
  width: 100% !important;
  color: #000 !important;
  cursor: pointer;
  border: 1px solid #000 !important;
  font-family: "Clash Grotesk";
}

.social {
  display: flex;
  gap: 10px;
  width: 100%;
}
.social img {
  width: 24px;
}

.mailerlite-form-inputs {
  display: flex;
  align-items: flex-end;
}
.mailerlite-form-inputs .mailerlite-form-field {
  margin-bottom: 0 !important;
}
.mailerlite-form-inputs .mailerlite-form-field #mailerlite-1-field-email {
  width: 80%;
}
/* My account template */
.account-content a {
    color: #111; /* czarny tekst */
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 2px;
}


.account-content a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.account-content a:hover {
    color: #000;
}

.account-content a:hover::after {
    width: 100%;
}


.account-content table a {
    color: #444;
    font-weight: 500;
}

.account-content table a:hover {
    color: #000;
}
.custom-my-account {
    display: flex;
    gap: 20px;
    margin: 5px auto;
    width: 100%;
}
/* Linki */
.account-content input[type=text],
.account-content input[type=email],
.account-content input[type=password],
.account-content input[type=tel],
.account-content input[type=number],
.account-content select,
.account-content textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #fafafa;
    font-size: 15px;
    transition: border 0.3s ease;
}

.account-content input:focus,
.account-content select:focus,
.account-content textarea:focus {
    outline: none;
    border-color: #000;
    background: #fff;
}
/* Sidebar */
.account-sidebar {
    width: 250px;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 20px;
    flex-shrink: 0;
}

.account-navigation ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.account-navigation li {
    margin-bottom: 10px;
}

.account-navigation a {
    position: relative;
    display: block;
    padding: 12px 16px;
    border-radius: 8px;
    color: #111;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    overflow: hidden;
}


.account-navigation a::after {
    content: "";
    position: absolute;
    left: 16px;
    bottom: 8px;
    width: 0;
    height: 2px;
    background: #000;
    transition: width 0.3s ease;
}

.account-navigation a:hover::after {
    width: calc(100% - 32px);
}

.account-navigation a:hover {
    background: #f9f9f9;
    color: #000;
}


.account-navigation .is-active a {
    background: #000;
    color: #fff;
}

.account-navigation .is-active a::after {
    width: calc(100% - 32px);
    background: #fff;
}


.account-content {
    flex: 1;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 30px;
    min-height: 400px;
}

@media (max-width: 768px) {
    .custom-my-account {
        flex-direction: column;
    }

    .account-sidebar {
        width: 100%;
    }

    .account-content {
        width: 100%;
    }

    .account-navigation a::after {
        left: 8px;
        width: 0;
    }
}

/*# sourceMappingURL=style.css.map */