@charset "UTF-8";
footer .footer-container {
  background: #fff;
  padding-top: 80px;
  padding-bottom: 80px;
}
footer .footer-wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
@media only screen and (max-width: 991px) {
  footer .footer-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 576px) {
  footer .footer-wrapper {
    grid-template-columns: 1fr;
  }
}
footer .footer-wrapper .label {
  font-size: 20px;
  font-weight: 900;
  color: #0f2233;
  text-transform: uppercase;
  text-align: left;
  letter-spacing: 2px;
  margin-bottom: 20px;
}
footer .footer-wrapper .col .social-media {
  display: flex;
  margin-top: 10px;
  gap: 10px;
}
footer .footer-wrapper .col .social-media li a {
  display: flex;
  background-color: #f9f9f9;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
}
footer .footer-wrapper .col .social-media li a svg {
  width: 20px;
  height: 20px;
}
footer .footer-wrapper .col .social-media li a svg path {
  fill: #0f2233 !important;
}
footer .footer-wrapper .col ul {
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: flex-start;
}
footer .footer-wrapper .col ul li {
  list-style-type: none;
  display: flex;
  gap: 10px;
  align-items: center;
}
footer .footer-wrapper .col ul li svg {
  width: 32px;
  height: auto;
}
footer .footer-wrapper .col ul li svg path {
  fill: #fff;
}
footer .footer-wrapper .col ul li a,
footer .footer-wrapper .col ul li p {
  font-size: 14px;
  color: #0f2233;
  line-height: 24px;
  text-decoration: none;
  margin-bottom: 0;
  text-align: left;
}
footer .footer-wrapper .col ul a:hover {
  color: var(--primary);
}
footer .footer-wrapper .col-prod .wc-block-grid__products {
  display: flex;
  flex-direction: column;
}
footer .footer-wrapper .col-prod .wc-block-grid__products .wc-block-grid__product {
  max-width: 100%;
  border: 0;
  margin-bottom: 0;
}
footer .footer-wrapper .col-prod .wc-block-grid__products .wc-block-grid__product a {
  display: grid;
  grid-template-columns: 50px 1fr;
  margin-bottom: 0;
  gap: 20px;
  text-decoration: none;
}
footer .footer-wrapper .col-prod .wc-block-grid__products .wc-block-grid__product a .wc-block-grid__product-image {
  margin-bottom: 0;
}
footer .footer-wrapper .col-prod .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-title {
  font-size: 12px;
  color: #fff;
  font-weight: 400;
  margin-bottom: 0;
  text-align: left;
}
footer .footer-wrapper .col-prod .wc-block-grid__products .wc-block-grid__product .wc-block-grid__product-price {
  font-size: 14px;
  color: var(--primary);
  text-align: left;
  margin-left: 70px;
  margin-top: -12px;
}
footer .footer-copy {
  background-color: #fff;
}
footer .footer-copy .et-container {
  border-top: 1px solid #f2f2f5;
  padding-top: 20px;
  padding-bottom: 20px;
}
footer .footer-copy .footer-copy-inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
footer .footer-copy a {
  font-size: 12px;
  color: #000 !important;
  text-decoration: none;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 142, 1, 0.8);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 15px 10px rgba(255, 142, 1, 0.3);
    transform: scale(1.1);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 142, 1, 0);
    transform: scale(1);
  }
}
.et-mini-cart {
  background-color: rgba(255, 142, 1, 0.8);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0; /* Ukrycie na start */
  animation: fadeIn 0.5s forwards 1s, pulse 1.5s infinite 5.5s; /* Opóźnienie wejścia i start animacji */
}
.et-mini-cart .wc-block-mini-cart__badge {
  background-color: #000;
  color: #fff;
}

.wc-block-components-drawer__screen-overlay--with-slide-in .wc-block-components-drawer {
  background-color: rgb(249, 249, 249);
}

.editor-styles-wrapper table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name,
table.wc-block-cart-items .wc-block-cart-items__row .wc-block-components-product-name {
  font-size: 18px;
  font-weight: 700;
}

.wc-block-components-product-metadata {
  display: none;
}

.wp-block-woocommerce-empty-mini-cart-contents-block .wc-block-mini-cart__empty-cart-wrapper {
  text-align: center;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.et-mini-cart svg {
  height: 40px !important;
  width: auto !important;
}

.et-mini-cart svg path,
.et-mini-cart svg circle {
  fill: #fff;
}

.wc-block-mini-cart__drawer .wc-block-cart-items__row {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.wc-block-mini-cart__drawer .wc-block-cart-items__row:last-child {
  border-bottom: 0;
}
.wc-block-mini-cart__drawer .wp-block-woocommerce-mini-cart-cart-button-block {
  background-color: var(--secondary) !important;
  border-radius: 6px !important;
  box-shadow: none !important;
}
.wc-block-mini-cart__drawer .wc-block-components-button.wc-block-components-drawer__close {
  background-color: var(--primary) !important;
  border: 0;
  color: #fff;
  opacity: 1;
  width: 48px;
  height: 40px;
  padding: 0 !important;
  top: 0;
  right: 32px;
  border-radius: 6px;
}
.wc-block-mini-cart__drawer .wc-block-components-button.wc-block-components-drawer__close svg {
  width: 20px;
  height: 20px;
}
.wc-block-mini-cart__drawer .wc-block-components-button.wc-block-components-drawer__close svg path {
  fill: #fff;
}/*# sourceMappingURL=style.css.map */