@charset "UTF-8";
.breadcrumbs {
  display: flex;
  flex-direction: row;
  max-width: 1920px;
  margin: 0 auto;
  padding: 1em 6vw 0em 6vw;
}

.breadcrumbs .aioseo-breadcrumbs .aioseo-breadcrumb a {
  color: #333333;
  text-decoration: none;
}

.breadcrumbs .aioseo-breadcrumbs .aioseo-breadcrumb:last-of-type {
  font-weight: 600 !important;
}

/* Sidebar */
.top-info-bar {
  background: linear-gradient(to right, #0099cc, #00bfff);
  text-align: center;
  padding: 10px 0;
  font-family: "Manrope", sans-serif;
  font-weight: 400;
}

.top-info-bar .info-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.top-info-bar .info-items p {
  color: #ffffff;
  margin: 0;
}

.top-info-bar .info-item {
  display: flex;
  align-items: center;
}

.top-info-bar .info-item::before {
  content: "•";
  margin-right: 10px;
}

.top-info-bar .info-item:first-child::before {
  display: none;
}

/* Main menu*/
.site-header {
  background-color: #ffffff;
  transition: box-shadow 0.3s ease;
}

.site-header.sticky-mobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  background-color: #ffffff;
}

.site-header-inner {
  max-width: 1920px;
  padding: 1em 6vw 1em 6vw;
  width: 100%;
  margin: 0 auto;
}

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

.site-branding-logo {
  max-width: 180px;
}

.site-branding-logo img {
  max-width: 100%;
  height: auto;
}

.header-search {
  flex-grow: 1;
  max-width: 600px;
  margin: 0 20px;
  position: relative;
}

.header-search form {
  display: flex;
  position: relative;
}

.dgwt-wcas-style-pirx.dgwt-wcas-style-pirx-compact .dgwt-wcas-sf-wrapp button.dgwt-wcas-search-submit {
  left: auto;
  top: 7px;
  right: 23px;
}

.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input {
  padding: 1em 1.3em;
  line-height: 24px;
  font-size: 1em;
  border: 1px solid #dfdfdf !important;
  border-radius: 4px !important;
  height: auto;
  font-family: "Manrope", sans-serif;
  box-shadow: none !important;
}
.dgwt-wcas-style-pirx .dgwt-wcas-sf-wrapp input[type=search].dgwt-wcas-search-input:focus {
  outline: none;
  border: 1px solid #dfdfdf !important;
}

.header-contact {
  display: flex;
  gap: 2em;
}

.header-contact .contact-item {
  display: flex;
  flex-direction: row;
  gap: 1em;
}

.header-contact .contact-item .contact-item-inner {
  display: flex;
  flex-direction: column;
}

.header-contact .contact-item .contact-item-inner a {
  color: #333333;
  text-decoration: none;
}

.header-contact .contact-item .contact-item-inner span {
  color: #00bfff;
  text-decoration: none;
}

.main-navigation {
  background-color: #ffffff;
}

.main-navigation ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  gap: 2em;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  color: #333333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.main-navigation a:hover {
  color: #00bfff;
}

.main-navigation.sticky {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.nav-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1920px;
  padding: 1em 6vw 1.5em 6vw;
  width: 100%;
  margin: 0 auto;
}

.site-branding-icons {
  display: flex;
  align-items: center;
  gap: 1.8em;
}

.site-branding-icons a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-branding-icons img {
  width: 20px;
  height: 20px;
}

.cart-icon {
  width: 46px !important;
  height: 46px !important;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: black;
  color: #ffffff;
  border-radius: 50%;
  font-size: 12px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  margin: 4px 0;
  background-color: #333333;
  transition: transform 0.3s;
}

.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.mobile-menu-overlay.active {
  opacity: 1;
}

.mobile-menu-panel {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 96%;
  background-color: #fff;
  z-index: 9999;
  overflow-y: auto;
  flex-direction: column;
  transition: right 0.3s ease, margin-top 0.3s ease, height 0.3s ease;
  margin-top: 2.5em;
}
.mobile-menu-panel.active {
  right: 0;
}
.mobile-menu-panel.header-sticky {
  margin-top: 0;
  height: 100%;
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px;
  border-bottom: 1px solid #f1f1f1;
}

.mobile-logo {
  max-width: 180px;
}

.mobile-logo img {
  max-width: 100%;
  height: auto;
}

.mobile-menu-close {
  background: none;
  border: none;
  padding: 0px;
  cursor: pointer;
  color: #333333;
}

.mobile-search {
  padding: 15px;
}

.mobile-search .dgwt-wcas-search-wrapp {
  max-width: 100% !important;
}

.mobile-navigation {
  flex-grow: 1;
}

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

.mobile-navigation li {
  position: relative;
}

.mobile-navigation a {
  display: block;
  padding: 10px 25px;
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

.mobile-navigation a[href*=personalizacja] {
  color: #00bfff;
}

.mobile-navigation .sub-menu {
  display: none;
  background-color: #f9f9f9;
}

.mobile-navigation .sub-menu a {
  padding-left: 30px;
}

.mobile-navigation .menu-item-has-children > a:after {
  content: "›";
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  transition: transform 0.3s;
}

.mobile-navigation .menu-item-has-children.active > a:after {
  transform: translateY(-50%) rotate(90deg);
}

.mobile-icons {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 20px;
  gap: 1em;
}

.mobile-icon-item {
  position: relative;
  color: #333333;
}

.mobile-icons img {
  width: 20px;
  height: 20px;
}

.mobile-icons a .cart-icon {
  width: 50px;
  height: 50px;
}

.cart-icon-btn {
  position: relative;
  background-color: #00bfff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-icon-btn svg {
  color: white;
}

.mobile-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #000;
  color: #fff;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

.mobile-contact {
  padding: 20px;
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.mobile-contact-item {
  margin-bottom: 15px;
}

.mobile-contact-item .contact-label {
  display: block;
  color: #00bfff;
  font-size: 14px;
  font-family: "Manrope", sans-serif;
}

.mobile-contact-item a {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-family: "Manrope", sans-serif;
}

@media (max-width: 1124px) {
  .header-contact {
    display: none;
  }
  .header-search {
    max-width: 300px;
    margin: 0px;
  }
}
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
  .main-navigation .nav-container {
    display: none;
  }
  .site-branding-icons {
    display: none;
  }
  .header-search {
    display: none;
  }
  .site-branding {
    justify-content: space-between;
  }
  .site-branding-logo {
    margin: 0;
  }
  .main-navigation.sticky {
    position: static;
    box-shadow: none;
  }
  .site-header:not(.sticky-mobile) + .mobile-menu-panel {
    margin-top: 2.5em;
    height: 96%;
  }
  .site-header.sticky-mobile + .mobile-menu-panel {
    margin-top: 0;
    height: 100%;
  }
  .top-info-bar .info-items {
    white-space: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 10px;
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
  .top-info-bar .info-items::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .top-info-bar .info-items p {
    font-size: 14px;
    padding: 0 5px;
  }
}
@media (max-width: 576px) {
  .mobile-menu-header {
    padding: 10px 20px;
  }
  .mobile-logo {
    max-width: 150px;
  }
  .site-header-inner {
    padding: 0.7em 4vw;
  }
  .site-branding-logo {
    max-width: 150px;
  }
}
.site-footer {
  display: flex;
  flex-direction: column;
  background: linear-gradient(to right, #0099cc, #00bfff);
  width: 100%;
  margin-top: 5em;
}
.site-footer .footer-logo img {
  height: 50px;
}
.site-footer a,
.site-footer p {
  color: #ffffff;
}
.site-footer a:hover {
  color: #ffffff;
}
.site-footer .site-footer-inner {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 5em 6vw 5em 6vw;
  margin: 0 auto;
  max-width: 1920px;
  gap: 2em;
}
.site-footer .site-footer-inner .site-info {
  display: flex;
  flex-direction: row;
  width: 100%;
  flex-wrap: wrap;
}
.site-footer .site-footer-inner .site-info .info-inner {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(1) {
  width: 40%;
  padding-right: 5em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(2) {
  width: 20%;
  padding-right: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(3) {
  width: 20%;
  padding-right: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner:nth-child(4) {
  width: 20%;
  padding-right: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner .info-inner-block {
  display: flex;
  flex-direction: column;
  gap: 0.3em;
}
.site-footer .site-footer-inner .site-info .info-inner .info-inner-block .p-big {
  font-weight: 600;
  margin-bottom: 1em;
}
.site-footer .site-footer-inner .site-info .info-inner .social-icons {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.5em;
}
.site-footer .site-footer-inner .site-info .info-inner .social-icons a {
  line-height: 1;
  height: 36px;
  width: 36px;
}
.site-footer .site-footer-inner .site-info .info-inner .social-icons a img {
  height: 80%;
  width: 80%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner .site-info .info-inner {
    width: 100% !important;
    gap: 2.5em;
    padding-right: 0em !important;
  }
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner .site-info {
    justify-content: flex-start;
    gap: 2.5em;
  }
}
.site-footer .site-footer-inner hr {
  width: 100%;
  height: 1px;
  background: #ffffff;
  border: none;
  margin-top: 2em;
}
.site-footer .site-footer-inner .footer-policy {
  display: flex;
  flex-direction: row;
  gap: 1em;
  width: 100%;
  justify-content: space-between;
}
.site-footer .site-footer-inner .footer-policy .footer-links {
  color: #acacac;
}
.site-footer .site-footer-inner .footer-policy .footer-copyright span {
  text-decoration: underline;
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner .footer-policy {
    flex-direction: column;
    justify-content: flex-start;
  }
}
@media (max-width: 1024px) {
  .site-footer .site-footer-inner {
    margin-top: 3em;
    padding: 2em 6vw 5em 6vw;
  }
}

.custom-archive-layout {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 2em 6vw 0em 6vw;
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}
.custom-archive-layout .product-spinner {
  transform: translate(0%, 0%);
  top: auto !important;
  left: auto !important;
}
.custom-archive-layout .custom-archive-sidebar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  gap: 2em;
  padding: 1.5rem 0em;
  overflow-y: auto;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-sidebar {
    width: 100%;
  }
}
.custom-archive-layout .custom-archive-sidebar .filter-container {
  width: 100%;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 2em;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item {
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: background-color 0.3s ease-in-out, transform 0.2s ease-in-out;
  cursor: pointer;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item:hover {
  transform: translateY(-1px);
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .category-header {
  display: flex;
  justify-content: center;
  align-items: center;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .category-header a {
  color: #252525;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  padding: 0.5em 2.4em;
  border-radius: 4px;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .category-header a.active-color {
  background: linear-gradient(to right, #0099cc, #00bfff);
  color: white;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .category-header .toggle-subcategory {
  color: #252525;
  font-size: 0.875rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  transition: color 0.3s ease-in-out;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .category-header .toggle-subcategory.active-color {
  background: linear-gradient(to right, #0099cc, #00bfff);
  color: white;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .category-header .toggle-subcategory::after {
  content: "+";
  display: inline-block;
  font-size: 1.25rem;
  margin-left: 0.25rem;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .subcategories {
  background-color: #000000;
  border-radius: 4px;
  color: white;
  padding: 0em;
  margin: 0.75rem 0 0;
  list-style: none;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .subcategories li {
  padding: 0.2em 0;
}
.custom-archive-layout .custom-archive-sidebar .product-categories-filter .category-item .subcategories a {
  color: white;
  text-decoration: none;
  font-size: 0.9rem;
}
.custom-archive-layout .custom-archive-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 2em;
}
.custom-archive-layout .custom-archive-content .custom-shop-controls {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-content .custom-shop-controls .custom-catalog-ordering {
    width: 100%;
  }
}
.custom-archive-layout .custom-archive-content .custom-shop-controls .woocommerce-ordering {
  position: relative;
}
.custom-archive-layout .custom-archive-content .custom-shop-controls .woocommerce-ordering select.orderby {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.5em 2.4em;
  min-width: 210px;
  cursor: pointer;
  color: #252525;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-content .custom-shop-controls .woocommerce-ordering select.orderby {
    width: 100%;
  }
}
.custom-archive-layout .custom-archive-content .custom-shop-controls .woocommerce-ordering::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 2.4em;
  background-image: url("../../images/arrow-down.svg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  width: 13px;
  height: 13px;
  display: inline-block;
  pointer-events: none;
  z-index: 1;
  transform: translateY(-50%) rotate(180deg);
}
.custom-archive-layout .custom-archive-content .custom-shop-controls .woocommerce-ordering select.orderby option {
  padding: 10px 20px;
  font-weight: normal;
  background-color: white;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-content .custom-shop-controls .woocommerce-ordering {
    width: 100%;
  }
}
.custom-archive-layout .custom-archive-content .custom-shop-controls .woocommerce-ordering select.orderby:focus {
  outline: none;
}
.custom-archive-layout .custom-archive-content .products-with-filters-container {
  display: flex;
  flex-direction: row;
  width: 100%;
  gap: 2em;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-content .products-with-filters-container {
    flex-direction: column;
  }
}
.custom-archive-layout .custom-archive-content .facetwp-template {
  width: 80%;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-content .facetwp-template {
    width: 100%;
  }
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 20%;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-slider-reset {
  margin-top: 1em;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-reset,
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-slider-reset {
  padding: 0.8em 1.8em !important;
  background-image: linear-gradient(to right, #0099cc 0%, #00bfff 50%, #0099cc 100%) !important;
  background-size: 200% 100% !important;
  background-position: right bottom !important;
  color: white !important;
  text-decoration: none !important;
  border-radius: 4px !important;
  transition: background-position 0.3s ease-in-out !important;
  font-weight: 400 !important;
  cursor: pointer !important;
  border: none !important;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-reset span,
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-slider-reset span {
  color: white !important;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-reset:hover,
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-slider-reset:hover {
  background-position: left bottom !important;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-content .facetwp-filters-container {
    width: 100%;
    margin-bottom: 1.5em;
    display: none;
  }
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container.mobile-visible {
  display: flex;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-filter-section {
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-filter-section .facetwp-facet {
  margin-bottom: 1em !important;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-filter-section .facetwp-checkbox {
  background: none !important;
  margin-bottom: 4px;
  padding-left: 32px;
  cursor: pointer;
  position: relative;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-filter-section .facetwp-checkbox::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background-color: #fff;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-filter-section .facetwp-checkbox.checked::before {
  background: linear-gradient(to right, #0099cc, #00bfff);
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-filter-section .facetwp-checkbox.checked::after {
  content: "✓";
  position: absolute;
  left: 11px;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 12px;
  font-weight: bold;
}
.custom-archive-layout .custom-archive-content .facetwp-filters-container .facetwp-filter-section .noUi-connect {
  background: linear-gradient(to right, #0099cc, #00bfff);
}
.custom-archive-layout .custom-archive-content .custom-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1em;
  width: 100%;
}
@media (max-width: 1250px) {
  .custom-archive-layout .custom-archive-content .custom-products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 724px) {
  .custom-archive-layout .custom-archive-content .custom-products-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 30px 0;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li {
  margin: 0;
  display: flex;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  text-decoration: none;
  color: #252525;
  transition: all 0.3s ease;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.current {
  color: #252525;
  font-weight: bold;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.next, .custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.prev {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 1px solid #e0e0e0;
  text-decoration: none;
  color: #252525;
  transition: all 0.3s ease;
  background-color: #252525;
  font-size: 0;
  position: relative;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.next:hover, .custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.prev:hover {
  background-color: #252525;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.next::before, .custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.prev::before {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.next::before {
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='24' viewBox='0 0 20 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M9 6L15 12L9 18' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M3 12H15' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.prev::before {
  background-image: url("data:image/svg+xml,%3Csvg width='28' height='24' viewBox='0 0 28 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M15 18L9 12L15 6' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M21 12H9' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.custom-archive-layout .custom-archive-content .woocommerce-pagination ul.page-numbers li .page-numbers.disabled {
  background-color: hsla(0, 0%, 0%, 0);
  pointer-events: none;
  color: #252525;
  border: 1px solid #252525;
}
.custom-archive-layout .custom-archive-content .products-sale-section .woocommerce-pagination {
  display: flex;
  justify-content: center;
}

.mobile-filter-toggle {
  display: none;
  width: 100%;
  color: #252525;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 0.7em 2.4em;
  cursor: pointer;
  margin-bottom: 15px;
  text-align: left;
  position: relative;
  background-color: white;
}

.mobile-filter-toggle span {
  position: absolute;
  right: 2.4em;
  top: 50%;
  transform: translateY(-50%);
}

.mobile-filter-toggle span::before {
  content: "+";
  font-size: 1.5rem;
  display: block;
}

.mobile-filter-toggle.active span::before {
  content: "-";
}

@media (max-width: 1250px) {
  .custom-archive-layout {
    flex-direction: column;
    gap: 0em;
  }
  .custom-archive-layout .custom-archive-sidebar {
    width: 100%;
    position: relative;
    top: 0;
    max-height: none;
    overflow-y: visible;
    margin-bottom: 20px;
    display: none;
  }
  .custom-archive-layout .custom-archive-sidebar .product-categories-filter {
    margin-top: 0em;
  }
  .custom-archive-layout .custom-archive-content {
    width: 100%;
  }
  .custom-archive-layout .mobile-filter-toggle {
    display: block;
  }
  .custom-archive-layout .no-display-mobile {
    display: none;
  }
}
.mobile-filters-toggle {
  display: none;
}
@media (max-width: 1250px) {
  .mobile-filters-toggle {
    display: block;
  }
}
.mobile-filters-toggle.active {
  background-color: #444;
}

.facetwp-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px 0;
  padding: 20px 0;
}
.facetwp-pagination.loading .facetwp-page {
  pointer-events: none;
  opacity: 0.6;
}
.facetwp-pagination .dots {
  display: inline-flex;
  align-items: center;
  padding: 0 8px;
  color: #9ca3af;
  font-weight: bold;
}

.facetwp-pager {
  display: flex;
  align-items: center;
  gap: 8px;
}

.facetwp-page {
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid #e5e7eb;
  background-color: #ffffff;
  color: #374151;
  position: relative;
  animation: fadeIn 0.3s ease-in-out;
}
.facetwp-page.active {
  background-color: #00bfff;
  color: #ffffff;
  border-color: #00bfff;
}
.facetwp-page:not(.active):hover {
  background-color: #00bfff;
  color: white;
}
.facetwp-page.next, .facetwp-page.prev {
  font-size: 12px;
  font-weight: 600;
}
.facetwp-page.next {
  padding-left: 2px;
}
.facetwp-page.prev {
  padding-right: 2px;
}
.facetwp-page.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

@media (max-width: 768px) {
  .facetwp-pagination {
    margin: 20px 0;
    padding: 15px 0;
  }
  .facetwp-pager {
    gap: 6px;
  }
  .facetwp-page {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.single-product-hero-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 2em;
  padding: 0 6vw;
  box-sizing: border-box;
}

.product-summary-inner {
  display: flex;
  flex-direction: row;
  gap: 2em;
}
@media (max-width: 1300px) {
  .product-summary-inner {
    flex-direction: column;
  }
}
.product-summary-inner .product-summary-inner-left {
  width: 60%;
  border-right: 1px solid #ddd;
  padding-right: 2em;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1300px) {
  .product-summary-inner .product-summary-inner-left {
    width: 100%;
    border-right: 0px solid #ddd;
    padding-right: 0em;
  }
}
.product-summary-inner .product-summary-inner-right {
  width: 40%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
@media (max-width: 1300px) {
  .product-summary-inner .product-summary-inner-right {
    width: 100%;
  }
}
.product-summary-inner .product-summary-inner-right .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg,
.product-summary-inner .product-summary-inner-right .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor img {
  width: auto !important;
  height: 18px !important;
}
.product-summary-inner .product-summary-inner-right .yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor {
  gap: 1.2em !important;
}
.product-summary-inner .product-summary-inner-right .yith-add-to-wishlist-button-block {
  margin: 0px !important;
}

.product-images .flex-direction-nav {
  display: none !important;
}
.product-images .onsale {
  display: none !important;
}
.product-images .woocommerce-product-gallery {
  width: 100%;
  position: relative;
  margin-bottom: 1.5rem;
}
.product-images .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  margin: 0;
  padding: 0;
}
.product-images .woocommerce-product-gallery .woocommerce-product-gallery__image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
}
.product-images .woocommerce-product-gallery .woocommerce-product-gallery__image a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-images .woocommerce-product-gallery .woocommerce-product-gallery__image a img {
  width: 60%;
  height: auto;
  display: block;
  border-radius: 8px;
}
.product-images .woocommerce-product-gallery .woocommerce-product-gallery__trigger {
  display: none;
}
.product-images .woocommerce-product-gallery .flex-viewport {
  border-radius: 8px;
  margin-bottom: 1rem;
  border: 1px solid #eee;
}
.product-images .woocommerce-product-gallery .flex-control-thumbs {
  display: flex;
  flex-wrap: wrap;
  margin: 0.5rem -5px 0;
  padding: 0;
  list-style: none;
}
.product-images .woocommerce-product-gallery .flex-control-thumbs li {
  flex: 0 0 25%;
  padding: 0 5px;
  margin-bottom: 10px;
  box-sizing: border-box;
  cursor: pointer;
}
.product-images .woocommerce-product-gallery .flex-control-thumbs li img {
  width: 100%;
  height: auto;
  opacity: 0.6;
  border-radius: 4px;
  border: 1px solid #eee;
  transition: opacity 0.3s;
}
.product-images .woocommerce-product-gallery .flex-control-thumbs li img.flex-active,
.product-images .woocommerce-product-gallery .flex-control-thumbs li img:hover {
  opacity: 1;
  border-color: #00bfff;
}
.product-images .woocommerce-product-gallery .flex-direction-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-images .woocommerce-product-gallery .flex-direction-nav a {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0;
  color: #333;
}
.product-images .woocommerce-product-gallery .flex-direction-nav a:before {
  font-size: 1.5rem;
}
.product-images .woocommerce-product-gallery .flex-direction-nav a.flex-prev {
  left: 10px;
}
.product-images .woocommerce-product-gallery .flex-direction-nav a.flex-prev:before {
  content: "‹";
}
.product-images .woocommerce-product-gallery .flex-direction-nav a.flex-next {
  right: 10px;
}
.product-images .woocommerce-product-gallery .flex-direction-nav a.flex-next:before {
  content: "›";
}

.product-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 2rem 0;
  gap: 2rem;
}
.product-container .product-images {
  flex: 1 1 30%;
  min-width: 300px;
}
.product-container .product-summary {
  flex: 1 1 60%;
  min-width: 300px;
}
.product-container .product-summary .product-title {
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .product-container .product-summary .product-title {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .product-container .product-summary .product-title {
    font-size: 2.625rem;
  }
}
.product-container .product-summary .product-title span {
  font-weight: 700;
  font-size: 2.15rem;
}
@media (min-width: 768px) {
  .product-container .product-summary .product-title span {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .product-container .product-summary .product-title span {
    font-size: 2.625rem;
  }
}
.product-container .product-summary .product-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  margin-top: 0.5rem;
}
.product-container .product-summary .product-rating .star-rating-custom {
  display: flex;
}
.product-container .product-summary .product-rating .star-rating-custom .star {
  font-size: 1.1rem;
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.product-container .product-summary .product-rating .star-rating-custom .star.star-empty {
  opacity: 0.5;
}
.product-container .product-summary .product-rating .star-rating-custom .star.star-half {
  position: relative;
}
.product-container .product-summary .product-rating .star-rating-custom .star.star-half:after {
  content: "★";
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.product-container .product-summary .product-rating .review-count-custom {
  color: #333333;
  text-decoration: none;
  font-size: 0.9rem;
}
.product-container .product-summary .product-codes {
  margin-bottom: 1rem;
}
.product-container .product-summary .product-codes span {
  margin-right: 1rem;
}
.product-container .product-summary .product-prices {
  margin-bottom: 1.5rem;
}
.product-container .product-summary .product-prices .price-brutto h2 {
  font-size: 2.7rem;
  font-weight: 600;
  margin: 0;
}
@media (max-width: 1024px) {
  .product-container .product-summary .product-prices .price-brutto h2 {
    font-size: 2.15rem;
  }
}
.product-container .product-summary .product-prices .price-brutto h2 bdi {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
.product-container .product-summary .product-prices .price-brutto h2 bdi span {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
  font-weight: 600;
}
.product-container .product-summary .product-prices .price-netto {
  margin-bottom: 0.5rem;
}
.product-container .product-summary .product-prices .lower-price-info {
  margin-bottom: 0.5rem;
}
.product-container .product-summary .product-prices .product-status {
  margin-top: 1rem;
}
.product-container .product-summary .product-prices .product-status .in-stock {
  color: #248f38;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4em;
}
.product-container .product-summary .product-prices .product-status .out-of-stock {
  color: #e32020;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.4em;
}
.product-container .product-summary .buy-together {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 2rem;
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.product-container .product-summary .buy-together h3 {
  margin-top: 0;
}
.product-container .product-summary .buy-together .bundled-products {
  display: flex;
  flex-direction: column;
  margin-top: 3em;
  gap: 1rem;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product {
  display: flex;
  align-items: center;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-checkbox {
  margin-right: 10px;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-product-image {
  width: 60px;
  margin-right: 20px;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-product-image img {
  max-width: 100%;
  height: auto;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-product-info {
  display: flex;
  flex-direction: column;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-product-info .bundle-product-title {
  margin-bottom: 0.5rem;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-product-info .bundle-product-price {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-product-info .bundle-product-price bdi {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label .bundle-product-info .bundle-product-price bdi span {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 1px solid black;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 1em;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label input[type=checkbox]:checked {
  background-color: #00bfff;
  border-color: #00bfff;
}
.product-container .product-summary .buy-together .bundled-products .bundled-product label input[type=checkbox]:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.product-container .product-summary .cart-actions {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.product-container .product-summary .cart-actions .quantity-buttons {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.product-container .product-summary .cart-actions .quantity-buttons .minus-btn,
.product-container .product-summary .cart-actions .quantity-buttons .plus-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 1.2rem;
}
.product-container .product-summary .cart-actions .quantity-buttons #product-quantity {
  width: 40px;
  text-align: center;
  border: none;
  padding: 0.5rem 0;
}
.product-container .product-summary .cart-actions .quantity-buttons input[type=number]#product-quantity {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.product-container .product-summary .cart-actions .quantity-buttons input[type=number]#product-quantity::-webkit-inner-spin-button, .product-container .product-summary .cart-actions .quantity-buttons input[type=number]#product-quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-container .product-summary .cart-actions .add-to-cart-button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: #0095ff;
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: background 0.3s;
  overflow: hidden;
  text-decoration: none;
}
.product-container .product-summary .cart-actions .add-to-cart-button:hover {
  background: #0077cc;
}
.product-container .product-summary .cart-actions .add-to-cart-button .button-text {
  display: inline-block;
  transition: opacity 0.3s ease;
  position: relative;
  z-index: 1;
}
.product-container .product-summary .cart-actions .add-to-cart-button .spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  animation: spin 0.8s linear infinite;
  z-index: 2;
  margin: 0;
  padding: 0;
}
.product-container .product-summary .cart-actions .add-to-cart-button.loading .button-text {
  opacity: 0;
}
.product-container .product-summary .cart-actions .add-to-cart-button.loading .spinner {
  opacity: 1;
  visibility: visible;
}
.product-container .product-summary .cart-actions .main-button-gradient {
  background: linear-gradient(to right, #0083e8, #00b2ff);
}
.product-container .product-summary .cart-actions .main-button-gradient:hover {
  background: linear-gradient(to right, #0077cc, #0095ff);
}
.product-container .product-summary .promo-info {
  margin-bottom: 2em;
}
.product-container .product-summary .benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 40px 0;
}
.product-container .product-summary .benefits-grid .benefit-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-container .product-summary .benefits-grid .benefit-card .benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  margin-bottom: 10px;
}
.product-container .product-summary .benefits-grid .benefit-card .benefit-icon img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-container .product-summary .product-action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  margin-bottom: 1.5rem;
}
.product-container .product-summary .product-action-buttons .action-button {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  background-color: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #555;
  font-size: 16px;
}
.product-container .product-summary .product-action-buttons .action-button .icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
}
.product-container .product-summary .pickup-info {
  margin-bottom: 1.5rem;
  width: 100%;
  box-sizing: border-box;
}
.product-container .product-summary .pickup-info p {
  font-size: 1em;
}
.product-container .product-summary .pickup-info a {
  font-size: 1em;
}
.product-container .product-summary .pickup-info a:hover {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.product-container .product-summary .product-tabs {
  margin-bottom: 1.5rem;
  width: 100%;
}
.product-container .product-summary .product-tabs .tab-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  cursor: pointer;
}
.product-container .product-summary .product-tabs .tab-header .tab-header-inner {
  display: flex;
  gap: 1em;
  align-items: center;
}
.product-container .product-summary .product-tabs .tab-header .rotate {
  transform: rotate(180deg);
  transition: transform 0.3s ease;
}
.product-container .product-summary .product-tabs .tab-content {
  padding: 1rem;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 0.5rem;
}
.product-container .product-summary .product-parameters {
  margin-bottom: 1.5rem;
  width: 100%;
}
.product-container .product-summary .product-parameters .parameter {
  display: flex;
  margin-bottom: 0.5rem;
}
.product-container .product-summary .product-parameters .parameter .param-name {
  width: 120px;
  font-weight: bold;
}
.product-container .product-summary .view-full-specs {
  text-decoration: none;
  display: inline-block;
  margin-bottom: 1.5rem;
}
.product-container .product-summary .view-full-specs:hover {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}

.single-product div.product form.cart {
  display: none;
}

@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (max-width: 992px) {
  .product-container .product-images,
  .product-container .product-summary {
    flex: 0 0 100%;
  }
  .cart-actions {
    flex-direction: column;
  }
  .cart-actions .add-to-cart-button {
    width: 100%;
  }
  .product-images .woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 20%;
  }
}
@media (max-width: 768px) {
  .single-product-hero-section {
    padding: 0 4vw;
  }
  .product-container {
    gap: 1rem;
  }
  .product-summary .product-title {
    font-size: 1.5rem;
  }
  .product-images .woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 25%;
  }
  .product-images .woocommerce-product-gallery .flex-direction-nav a {
    width: 30px;
    height: 30px;
  }
}
@media (max-width: 576px) {
  .cart-actions {
    align-items: flex-start;
  }
  .cart-actions .quantity-buttons {
    justify-content: flex-start;
  }
  .product-parameters .parameter {
    flex-direction: column;
  }
  .product-parameters .parameter .param-name {
    width: 100%;
    margin-bottom: 5px;
  }
  .product-images .woocommerce-product-gallery .flex-control-thumbs li {
    flex: 0 0 33.333%;
  }
}
/* Add this to your theme's style.css file */
/* Print-specific styles */
@media print {
  /* Hide elements not needed in print version */
  header,
  footer,
  .cart-actions,
  .product-action-buttons,
  .product-tabs,
  nav,
  .benefit-card,
  .buy-together,
  .promo-info,
  .woocommerce-breadcrumb,
  .view-full-specs {
    display: none !important;
  }
  /* Make sure the product details are visible */
  .product-container {
    display: block !important;
    width: 100% !important;
  }
  /* Ensure images print well */
  .product-images img {
    max-width: 100% !important;
    height: auto !important;
  }
  /* Add a title to the printed page */
  .product-container::before {
    content: "Karta produktu";
    font-size: 24px;
    font-weight: bold;
    display: block;
    text-align: center;
    margin-bottom: 20px;
  }
  /* Add page breaks where needed */
  .product-summary-inner {
    page-break-inside: avoid;
  }
  /* Ensure the product parameters are visible */
  .product-parameters {
    display: block !important;
    page-break-inside: avoid;
  }
  /* Ensure text is black for better printing */
  body {
    color: #000 !important;
  }
}
/* Styles for product variations */
.product-variations {
  margin-bottom: 1.5rem;
  padding: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  width: 100%;
  box-sizing: border-box;
}

.product-variations .variations {
  width: 100%;
  border-spacing: 0;
  margin-bottom: 1rem;
}

.product-variations .variations td {
  padding: 10px 0;
  border: none;
}

.product-variations .variations td.label {
  width: 90px;
  font-weight: bold;
  color: #333;
}

.product-variations .variations td.value {
  width: calc(100% - 90px);
}

.product-variations .variations select {
  width: 100%;
  padding: 0.5rem 0.8rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 16px;
  background: white;
  transition: border-color 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("../../images/arrow-down.svg");
  background-repeat: no-repeat;
  background-position: right 0.7rem top 50%;
  background-size: 0.65rem auto;
}

.product-variations .variations select:focus {
  border-color: #007cba;
  outline: none;
}

.single_variation_wrap {
  margin-top: 1rem;
}

.single_variation {
  padding: 0;
  background: none;
  border: none;
}

.single_variation .price {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 10px;
}

.single_variation .stock {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 0.4em;
}

.single_variation .stock.in-stock {
  color: #248f38;
}

.single_variation .stock.out-of-stock {
  color: #e32020;
}

/* Variation cart form styles */
.woocommerce-variation-add-to-cart {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: flex-start;
}

/* Dostosowane style dla ilości w wariantach - identyczne jak w pojedynczym produkcie */
.woocommerce-variation-add-to-cart .quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.woocommerce-variation-add-to-cart .quantity .minus-btn,
.woocommerce-variation-add-to-cart .quantity .plus-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 1.2rem;
}

.woocommerce-variation-add-to-cart .quantity input {
  width: 40px;
  text-align: center;
  border: none;
  padding: 0.5rem 0;
}

/* Ukrycie strzałek w input type="number" dla wariantów */
.woocommerce-variation-add-to-cart .quantity input[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}

.woocommerce-variation-add-to-cart .quantity input[type=number]::-webkit-inner-spin-button,
.woocommerce-variation-add-to-cart .quantity input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(to right, #0083e8, #00b2ff);
  color: white;
  border: none;
  border-radius: 4px;
  padding: 0.5rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 16px;
  font-weight: normal;
  overflow: hidden;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:hover {
  background: linear-gradient(to right, #0077cc, #0095ff);
  transform: translateY(-1px);
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button:disabled {
  background: #ccc;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

/* Loading spinner for variation buttons */
.woocommerce-variation-add-to-cart .single_add_to_cart_button.loading {
  pointer-events: none;
}

.woocommerce-variation-add-to-cart .single_add_to_cart_button.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  animation: spin 0.8s linear infinite;
}

.woocommerce-variation {
  display: none !important;
}

/* Spinner animation */
@keyframes spin {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Responsive styles */
@media (max-width: 768px) {
  .product-variations .variations td.label,
  .product-variations .variations td.value {
    display: block;
    width: 100%;
    padding: 5px 0;
  }
  .product-variations .variations td.label {
    width: 100%;
    margin-bottom: 5px;
  }
  .woocommerce-variation-add-to-cart {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .woocommerce-variation-add-to-cart .quantity {
    justify-content: flex-start;
    margin-bottom: 15px;
  }
  .woocommerce-variation-add-to-cart .single_add_to_cart_button {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .product-variations {
    padding: 1rem;
  }
  .product-variations .variations .parameter {
    flex-direction: column;
  }
  .product-variations .variations .parameter .param-name {
    width: 100%;
    margin-bottom: 5px;
  }
}
.single-product-quantity-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 5em;
  padding: 0 6vw;
  box-sizing: border-box;
  gap: 2em;
}
.single-product-quantity-section .quantity-discount-table-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  width: 70%;
}
@media (max-width: 1024px) {
  .single-product-quantity-section .quantity-discount-table-wrapper {
    width: 100%;
  }
}
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 !important;
  /* Styl dla wszystkich komórek w ostatnim wierszu */
}
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table th,
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table th {
  font-weight: 600;
  color: #333;
  border-right: 1px solid #eee; /* Dodany border między kolumnami nagłówka */
}
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table th:last-child {
  border-right: none; /* Usunięcie bordera dla ostatniej kolumny */
}
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table td {
  color: #666;
  border-right: 1px solid #eee; /* Dodany border między kolumnami */
}
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table td:last-child {
  border-right: none; /* Usunięcie bordera dla ostatniej kolumny */
}
.single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 576px) {
  .single-product-quantity-section .quantity-discount-title {
    font-size: 20px;
  }
  .single-product-quantity-section .quantity-discount-table-wrapper {
    width: 100%; /* Pełna szerokość na małych ekranach */
  }
  .single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table th,
  .single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table td {
    padding: 12px 15px;
  }
  .single-product-quantity-section .quantity-discount-table-wrapper .quantity-discount-table tbody tr:last-child td {
    padding-bottom: 12px; /* Dostosuj padding ostatniego wiersza dla małych ekranów */
  }
}
.single-product-description-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 5em;
  padding: 0 6vw;
  box-sizing: border-box;
  gap: 2em;
}
.single-product-description-section .product-description-content {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 70%;
}
@media (max-width: 1024px) {
  .single-product-description-section .product-description-content {
    width: 100%;
  }
}
.single-product-description-section .product-description-content ul {
  margin-left: 2em;
}

.single-product-specification-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  margin-top: 5em;
  padding: 0 6vw;
  box-sizing: border-box;
  gap: 2em;
}
.single-product-specification-section .spec-table-wrapper {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #eee;
  width: 70%;
}
@media (max-width: 1024px) {
  .single-product-specification-section .spec-table-wrapper {
    width: 100%;
  }
}
.single-product-specification-section .spec-table-wrapper .spec-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 !important;
  /* Styl dla wszystkich komórek w ostatnim wierszu */
}
.single-product-specification-section .spec-table-wrapper .spec-table th,
.single-product-specification-section .spec-table-wrapper .spec-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.single-product-specification-section .spec-table-wrapper .spec-table th {
  font-weight: 600;
  color: #333;
  border-right: 1px solid #eee; /* Dodany border między kolumnami nagłówka */
}
.single-product-specification-section .spec-table-wrapper .spec-table th:last-child {
  border-right: none; /* Usunięcie bordera dla ostatniej kolumny */
}
.single-product-specification-section .spec-table-wrapper .spec-table td {
  color: #666;
  border-right: 1px solid #eee; /* Dodany border między kolumnami */
}
.single-product-specification-section .spec-table-wrapper .spec-table td:last-child {
  border-right: none; /* Usunięcie bordera dla ostatniej kolumny */
}
.single-product-specification-section .spec-table-wrapper .spec-table tbody tr:last-child td {
  border-bottom: none;
}

@media (max-width: 576px) {
  .single-product-quantity-section .spec-title {
    font-size: 20px;
  }
  .single-product-quantity-section .spec-table-wrapper {
    width: 100%; /* Pełna szerokość na małych ekranach */
  }
  .single-product-quantity-section .spec-table-wrapper .spec-table th,
  .single-product-quantity-section .spec-table-wrapper .spec-table td {
    padding: 12px 15px;
  }
  .single-product-quantity-section .spec-table-wrapper .spec-table tbody tr:last-child td {
    padding-bottom: 12px; /* Dostosuj padding ostatniego wiersza dla małych ekranów */
  }
}
.related-product-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.related-product-section .related-product-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 5em 0vw 5em 0vw;
}
.related-product-section .related-product-section-inner .top-related-product-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
  width: 100%;
  padding: 0em 6vw 0em 6vw;
}
.related-product-section .related-product-section-inner .top-related-product-section .title {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.related-product-section .related-product-section-inner .down-related-product-section {
  width: 100%;
  margin-top: 3em;
  position: relative;
  padding: 0em 6vw 0em 6vw;
}
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-next,
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-prev {
  width: 46px;
  height: 46px;
  background: #29b7f6;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
}
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-next:after,
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-prev:after {
  display: none;
}
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-next:hover,
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-prev:hover {
  background-color: #0a9fe6;
}
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-next {
  background-image: url("../../images/arrow-right-2.svg");
  right: 60px;
  transform: translateY(-50%);
}
.related-product-section .related-product-section-inner .down-related-product-section .swiper-button-prev {
  background-image: url("../../images/arrow-right-2.svg");
  left: 60px;
  transform: translateY(-50%) rotate(180deg);
}
.related-product-section .related-product-section-inner .down-related-product-section .related-product-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.related-product-section .related-product-section-inner .down-related-product-section .related-product-swiper .swiper-wrapper {
  display: flex;
  transition-property: transform;
}
.related-product-section .related-product-section-inner .down-related-product-section .related-product-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  position: relative;
  padding: 10px;
}

@media (max-width: 1024px) {
  .related-product-section .related-product-section-inner .top-related-product-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
  }
  .related-product-section .related-product-section-inner .top-related-product-section .title {
    width: 100%;
  }
  .related-product-section .related-product-section-inner .top-related-product-section .description {
    width: 100%;
  }
  .related-product-section .related-product-section-inner .down-related-product-section .swiper-button-next,
  .related-product-section .related-product-section-inner .down-related-product-section .swiper-button-prev {
    width: 46px;
    height: 46px;
    background: #29b7f6;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    top: auto;
    bottom: -80px;
    z-index: 10;
    cursor: pointer;
  }
  .related-product-section .related-product-section-inner .down-related-product-section .swiper-button-next {
    background-image: url("../../images/arrow-right-2.svg");
    right: auto;
    left: 90px;
    transform: translateY(-50%);
  }
  .related-product-section .related-product-section-inner .down-related-product-section .swiper-button-prev {
    background-image: url("../../images/arrow-right-2.svg");
    left: 30px;
    transform: translateY(-50%) rotate(180deg);
  }
}
/* WooCommerce Cart Custom Styles - Simple SCSS Version */
.empty-cart-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  padding: 2em 6vw 0em 6vw;
  max-width: 1920px;
  margin: 0 auto;
}

.cart-section {
  display: flex;
  flex-direction: column;
  gap: 2em;
  padding: 2em 6vw 0em 6vw;
  max-width: 1920px;
  margin: 0 auto;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 2em;
}
.cart-items-container {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}

.cart-item {
  display: flex;
  padding: 1.5em;
  background-color: #fff;
}
.cart-item:last-child {
  border-bottom: none;
}

.product-thumbnail {
  width: 130px;
  margin-right: 1.5em;
}
.product-thumbnail img {
  width: 100%;
  height: auto;
  border-radius: 4px;
  border: 1px solid #f0f0f0;
}
.product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1em;
}
.product-info {
  display: flex;
  justify-content: space-between;
}
.product-name {
  font-weight: 600;
}
.product-name a {
  color: #333;
  text-decoration: none;
}
.product-category {
  font-size: 0.85em;
  color: #777;
  margin-top: 0.3em;
}
.product-remove a {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.product-remove a img {
  width: 25px;
  height: 25px;
}
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-quantity {
  display: flex;
  align-items: center;
}
.product-pricing {
  text-align: right;
}

.price-netto {
  color: #777;
  font-size: 0.9em;
}
.price-brutto {
  font-weight: 600;
  font-size: 1.1em;
  margin-top: 0.2em;
}

.cart-totals {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
  background-color: #fff;
  border-radius: 8px;
  padding: 1.5em;
  border: 1px solid #f0f0f0;
}

.cart-summary {
  margin-bottom: 1.5em;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
}

.total-brutto {
  font-size: 1.2em;
  font-weight: 700;
}
.total-netto {
  color: #777;
  font-size: 0.9em;
}

.tax-info {
  margin-top: 0.5em;
}
.tax-info .cart-label {
  color: #777;
  font-size: 0.9em;
}

.cart-buttons {
  display: flex;
  gap: 1em;
  margin-top: 1.5em;
}

.custom-quantity-input {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.custom-quantity-input .minus-btn,
.custom-quantity-input .plus-btn {
  background: none;
  border: none;
  padding: 0.5rem 0.8rem;
  cursor: pointer;
  font-size: 1.2rem;
}
.custom-quantity-input .qty {
  text-align: center;
  border: none;
  padding: 0.5rem 0;
  width: 40px;
}
.custom-quantity-input input[type=number].qty {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
.custom-quantity-input input[type=number].qty::-webkit-inner-spin-button, .custom-quantity-input input[type=number].qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity-group {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 1.5rem;
}

.unit-price-info {
  border: 1px dashed #ddd;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0.5rem;
}
.unit-price-info .unit-price-brutto {
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}
.unit-price-info .unit-price-netto {
  font-weight: 500;
  font-size: 0.95rem;
  color: #333;
}

@media (max-width: 768px) {
  .product-quantity-group {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .unit-price-info {
    width: 100%;
    text-align: left;
    flex-direction: column;
  }
}
.product-actions {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .product-actions {
    flex-direction: column;
    gap: 1rem;
  }
  .product-actions .product-pricing {
    width: 100%;
  }
}

.button-back {
  text-decoration: none;
  padding: 0.8em 1.5em;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
  background-color: #f5f5f5;
  color: #333;
  border: 1px solid #ddd;
  flex: 1;
}
.button-back:hover {
  background-color: #eaeaea;
}
.button-next {
  text-decoration: none;
  padding: 0.8em 1.5em;
  border-radius: 4px;
  font-weight: 500;
  text-align: center;
  transition: all 0.2s;
  background-color: #0097e6;
  color: white;
  border: none;
  flex: 1;
}
.button-next:hover {
  background-color: #0087d1;
}

.hide-update {
  display: none;
}

.total-brutto .cart-label {
  font-weight: 600;
  font-size: 1.2em !important;
}
.total-brutto .cart-label bdi {
  font-weight: 600;
  font-size: 1.2em !important;
}
.total-brutto .cart-label bdi span {
  font-weight: 600;
  font-size: 1.2em !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  .cart-item {
    flex-direction: column;
    gap: 1em;
    padding: 1em;
    position: relative;
  }
  .product-info {
    flex-direction: column;
    gap: 0.5em;
  }
  .product-remove {
    position: absolute;
    top: 1em;
    right: 1em;
  }
  .product-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 1em;
  }
  .product-pricing {
    text-align: left;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-direction: column;
  }
  .cart-buttons {
    flex-direction: column;
  }
  .product-thumbnail {
    width: 130px;
    margin-right: 1.5em;
  }
  .price-brutto {
    font-weight: 600;
    font-size: 1.2em !important;
  }
  .price-brutto bdi {
    font-weight: 600;
    font-size: 1.2em !important;
  }
  .price-brutto bdi span {
    font-weight: 600;
    font-size: 1.2em !important;
  }
  .cart-totals {
    flex-direction: column;
    align-items: flex-start;
  }
  .cart-totals .cart-buttons {
    display: flex;
    gap: 1em;
    margin-top: 0em;
  }
  .total-brutto .cart-label {
    font-weight: 600;
    font-size: 1.2em !important;
  }
  .total-brutto .cart-label bdi {
    font-weight: 600;
    font-size: 1.3em !important;
  }
  .total-brutto .cart-label bdi span {
    font-weight: 600;
    font-size: 1.3em !important;
  }
}
.gift-qualified,
.gift-threshold {
  display: flex;
  align-items: center;
  padding: 2em;
  border-radius: 12px;
  border: 1px solid #ddd;
}

.gift-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gift-content-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.gift-content-inner h4 {
  font-size: 1.3em;
}
.gift-content-inner h4 span {
  font-weight: 700;
  font-size: 1em;
}
.gift-content-inner h4 span bdi {
  font-weight: 700;
  font-size: 1em;
}
.gift-content-inner h4 span bdi span {
  font-weight: 700;
  font-size: 1em;
}

.gift-icon {
  font-size: 24px;
  flex-shrink: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .gift-qualified,
  .gift-threshold {
    padding: 15px;
    gap: 12px;
  }
  .gift-content h4 {
    font-size: 16px;
  }
  .gift-content p {
    font-size: 13px;
  }
}
.addons-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 3em;
  margin-bottom: 3em;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.addons-section .addons-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.addons-section .addons-section-inner .top-addons-section {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5em;
  width: 100%;
}
.addons-section .addons-section-inner .top-addons-section .title {
  display: flex;
  flex-direction: column;
  gap: 1.3em;
}
.addons-section .addons-section-inner .down-addons-section {
  width: 100%;
  margin-top: 3em;
  position: relative;
}
.addons-section .addons-section-inner .down-addons-section .swiper-button-next,
.addons-section .addons-section-inner .down-addons-section .swiper-button-prev {
  width: 46px;
  height: 46px;
  background: #29b7f6;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 20px;
  position: absolute;
  top: 50%;
  z-index: 10;
  cursor: pointer;
}
.addons-section .addons-section-inner .down-addons-section .swiper-button-next:after,
.addons-section .addons-section-inner .down-addons-section .swiper-button-prev:after {
  display: none;
}
.addons-section .addons-section-inner .down-addons-section .swiper-button-next:hover,
.addons-section .addons-section-inner .down-addons-section .swiper-button-prev:hover {
  background-color: #0a9fe6;
}
.addons-section .addons-section-inner .down-addons-section .swiper-button-next {
  background-image: url("../../images/arrow-right-2.svg");
  right: -60px;
  transform: translateY(-50%);
}
.addons-section .addons-section-inner .down-addons-section .swiper-button-prev {
  background-image: url("../../images/arrow-right-2.svg");
  left: -60px;
  transform: translateY(-50%) rotate(180deg);
}
.addons-section .addons-section-inner .down-addons-section .addons-swiper {
  width: 100%;
  position: relative;
  overflow: hidden;
}
.addons-section .addons-section-inner .down-addons-section .addons-swiper .swiper-wrapper {
  display: flex;
  transition-property: transform;
}
.addons-section .addons-section-inner .down-addons-section .addons-swiper .swiper-slide {
  flex-shrink: 0;
  height: auto;
  position: relative;
  padding: 10px;
}

@media (max-width: 1024px) {
  .addons-section .addons-section-inner .top-addons-section {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 2em;
  }
  .addons-section .addons-section-inner .top-addons-section .title {
    width: 100%;
  }
  .addons-section .addons-section-inner .top-addons-section .description {
    width: 100%;
  }
  .addons-section .addons-section-inner .down-addons-section .swiper-button-next,
  .addons-section .addons-section-inner .down-addons-section .swiper-button-prev {
    width: 46px;
    height: 46px;
    background: #29b7f6;
    border-radius: 50%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 20px;
    position: absolute;
    top: auto;
    bottom: -80px;
    z-index: 10;
    cursor: pointer;
  }
  .addons-section .addons-section-inner .down-addons-section .swiper-button-next {
    background-image: url("../../images/arrow-right-2.svg");
    right: auto;
    left: 70px;
    transform: translateY(-50%);
  }
  .addons-section .addons-section-inner .down-addons-section .swiper-button-prev {
    background-image: url("../../images/arrow-right-2.svg");
    left: 10px;
    transform: translateY(-50%) rotate(180deg);
  }
}
.checkout-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  padding: 3em 6vw 0em 6vw;
}
.checkout-section a {
  color: #0d87e9;
}
.checkout-section a:hover {
  color: #0d87e9;
}
.checkout-section a:visited {
  color: #0d87e9;
}
.checkout-section form.checkout {
  display: flex;
  flex-direction: row;
  gap: 30px;
  margin: 0 auto;
  margin-top: 2em;
}
.checkout-section form.checkout .col2-set {
  width: 60%;
}
.checkout-section form.checkout .col2-set .col-1,
.checkout-section form.checkout .col2-set .col-2 {
  width: 100%;
  margin-bottom: 30px;
}
.checkout-section form.checkout .col2-set .col-1 h3,
.checkout-section form.checkout .col2-set .col-2 h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.checkout-section form.checkout .product-summary-details {
  width: 40%;
}
.checkout-section form.checkout .product-summary-details h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #333;
  border-bottom: 1px solid #eee;
  padding-bottom: 10px;
}
.checkout-section .form-row-wide {
  display: flex;
  flex-direction: column;
  gap: 0em;
  width: 100%;
  padding-top: 0em;
}
.checkout-section .form-row {
  margin-bottom: 15px;
}
.checkout-section .form-row label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-weight: 500;
  font-size: 14px;
}
.checkout-section .form-row label .required {
  color: #e2401c;
}
.checkout-section .form-row .woocommerce-input-wrapper {
  display: block;
  width: 100%;
}
.checkout-section .form-row .woocommerce-input-wrapper input[type=text],
.checkout-section .form-row .woocommerce-input-wrapper input[type=email],
.checkout-section .form-row .woocommerce-input-wrapper input[type=tel],
.checkout-section .form-row .woocommerce-input-wrapper input[type=password],
.checkout-section .form-row .woocommerce-input-wrapper textarea,
.checkout-section .form-row .woocommerce-input-wrapper select {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #fff;
  font-size: 14px;
  transition: border-color 0.3s;
}
.checkout-section .form-row .woocommerce-input-wrapper input[type=text]:focus,
.checkout-section .form-row .woocommerce-input-wrapper input[type=email]:focus,
.checkout-section .form-row .woocommerce-input-wrapper input[type=tel]:focus,
.checkout-section .form-row .woocommerce-input-wrapper input[type=password]:focus,
.checkout-section .form-row .woocommerce-input-wrapper textarea:focus,
.checkout-section .form-row .woocommerce-input-wrapper select:focus {
  outline: none;
  border-color: #2196f3;
  box-shadow: 0 0 0 1px rgba(33, 150, 243, 0.2);
}
.checkout-section .form-row .woocommerce-input-wrapper textarea {
  min-height: 100px;
}
.checkout-section .woocommerce-checkout-review-order-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}
.checkout-section .woocommerce-checkout-review-order-table th,
.checkout-section .woocommerce-checkout-review-order-table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #eee;
}
.checkout-section .woocommerce-checkout-review-order-table th.product-total,
.checkout-section .woocommerce-checkout-review-order-table td.product-total {
  text-align: right;
}
.checkout-section .woocommerce-checkout-review-order-table thead th {
  background-color: #f9f9f9;
  font-weight: 600;
}
.checkout-section .woocommerce-checkout-review-order-table .cart_item .product-name {
  font-size: 14px;
}
.checkout-section .woocommerce-checkout-review-order-table .cart_item .product-name .product-quantity {
  color: #777;
}
.checkout-section .woocommerce-checkout-review-order-table tfoot th {
  font-weight: 500;
}
.checkout-section .woocommerce-checkout-review-order-table tfoot td {
  text-align: right;
}
.checkout-section .woocommerce-checkout-review-order-table tfoot tr.order-total {
  background-color: #f9f9f9;
}
.checkout-section .woocommerce-checkout-review-order-table tfoot tr.order-total th,
.checkout-section .woocommerce-checkout-review-order-table tfoot tr.order-total td {
  padding: 15px;
  font-weight: 600;
}
.checkout-section .woocommerce-checkout-review-order-table tfoot tr.order-total .woocommerce-Price-amount {
  font-size: 18px;
  color: #2196f3;
}
.checkout-section .woocommerce-checkout-payment {
  background-color: #fff;
  border-radius: 4px;
  border: 1px solid #eee;
  margin-top: 20px;
}
.checkout-section .woocommerce-checkout-payment .payment_methods {
  list-style: none;
  margin: 0;
  padding: 0;
}
.checkout-section .woocommerce-checkout-payment .payment_methods li {
  padding: 15px;
  border-bottom: 1px solid #eee;
}
.checkout-section .woocommerce-checkout-payment .payment_methods li:last-child {
  border-bottom: none;
}
.checkout-section .woocommerce-checkout-payment .payment_methods li label {
  font-weight: 500;
  margin-left: 10px;
}
.checkout-section .woocommerce-checkout-payment .payment_methods li .payment_box {
  background-color: #f9f9f9;
  padding: 15px;
  margin-top: 10px;
  border-radius: 4px;
  font-size: 14px;
  color: #666;
}
.checkout-section .woocommerce-checkout-payment .place-order {
  padding: 20px;
}
.checkout-section .woocommerce-checkout-payment .place-order button {
  background-color: #2196f3;
  color: #fff;
  border: none;
  padding: 15px 25px;
  font-size: 16px;
  font-weight: 500;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}
.checkout-section .woocommerce-checkout-payment .place-order button:hover {
  background-color: #0d87e9;
}
.checkout-section .podsumowanie-platnosc {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}
.checkout-section .podsumowanie-platnosc h1 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
}
.checkout-section .podsumowanie-platnosc h1 .platnosc {
  color: #2196f3;
  margin-left: 5px;
}
.checkout-section .podsumowanie-platnosc .checkout-container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
}
@media (max-width: 768px) {
  .checkout-section .podsumowanie-platnosc .checkout-container {
    grid-template-columns: 1fr;
  }
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-tabs {
  display: flex;
  margin-bottom: 20px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-tabs .tab {
  padding: 10px 20px;
  border-bottom: 2px solid transparent;
  cursor: pointer;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-tabs .tab.active {
  border-bottom-color: #2196f3;
  font-weight: 500;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-form-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media (max-width: 600px) {
  .checkout-section .podsumowanie-platnosc .checkout-left .checkout-form-container {
    grid-template-columns: 1fr;
  }
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-form-container .form-group {
  margin-bottom: 15px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-form-container .form-group label {
  display: block;
  margin-bottom: 5px;
  color: #555;
  font-size: 14px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-form-container .form-group input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy,
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci,
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia {
  margin-top: 30px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy h2,
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci h2,
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia h2 {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 15px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy .options .option,
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci .options .option,
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia .options .option {
  display: flex;
  align-items: center;
  padding: 15px;
  border: 1px solid #eee;
  border-radius: 4px;
  margin-bottom: 10px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy .options .option input[type=radio],
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy .options .option input[type=checkbox],
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci .options .option input[type=radio],
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci .options .option input[type=checkbox],
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia .options .option input[type=radio],
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia .options .option input[type=checkbox] {
  margin-right: 10px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy .options .option label,
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci .options .option label,
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia .options .option label {
  display: flex;
  align-items: center;
  width: 100%;
  cursor: pointer;
}
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy .options .option label img,
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci .options .option label img,
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia .options .option label img {
  height: 24px;
  margin-right: 10px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-dostawy .options .option label .option-price,
.checkout-section .podsumowanie-platnosc .checkout-left .opcje-platnosci .options .option label .option-price,
.checkout-section .podsumowanie-platnosc .checkout-left .zgody-oswiadczenia .options .option label .option-price {
  margin-left: auto;
  background-color: #f1f1f1;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 500;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-actions {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-actions button {
  padding: 12px 25px;
  border-radius: 4px;
  font-weight: 500;
  cursor: pointer;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-actions button.btn-back {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #555;
}
.checkout-section .podsumowanie-platnosc .checkout-left .checkout-actions button.btn-proceed {
  background-color: #2196f3;
  border: none;
  color: #fff;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary {
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #eee;
  overflow: hidden;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary h2 {
  padding: 15px 20px;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  border-bottom: 1px solid #eee;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items {
  padding: 0;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item {
  display: flex;
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item .item-image {
  width: 60px;
  height: 60px;
  border-radius: 4px;
  overflow: hidden;
  margin-right: 15px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item .item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item .item-details {
  flex: 1;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item .item-details .item-name {
  font-weight: 500;
  margin-bottom: 5px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item .item-details .item-price {
  display: flex;
  justify-content: space-between;
  color: #777;
  font-size: 14px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item .item-details .item-price .brutto {
  font-weight: 500;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-items .cart-item .item-details .item-price .netto {
  color: #999;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .promo-code {
  padding: 15px 20px;
  border-bottom: 1px solid #eee;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .promo-code input {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-totals {
  padding: 15px 20px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-totals .total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-totals .total-row.final-total {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #eee;
  font-weight: 600;
  font-size: 18px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .cart-totals .total-row.final-total .price {
  color: #2196f3;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .gift-threshold {
  padding: 15px 20px;
  background-color: #f8fcff;
  border-top: 1px solid #eee;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .gift-threshold .gift-message {
  display: flex;
  align-items: center;
  color: #2196f3;
  font-weight: 500;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .gift-threshold .gift-message .gift-icon {
  margin-right: 10px;
  color: #2196f3;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .gift-threshold .gift-description {
  font-size: 13px;
  color: #777;
  margin-top: 5px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products {
  padding: 15px 20px;
  border-top: 1px solid #eee;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products h3 {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 15px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products .product-item {
  display: flex;
  align-items: center;
  padding: 10px 0;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products .product-item input[type=checkbox] {
  margin-right: 10px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products .product-item .product-image {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products .product-item .product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products .product-item .product-details {
  flex: 1;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products .product-item .product-details .product-name {
  font-size: 14px;
  margin-bottom: 5px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .recommended-products .product-item .product-details .product-price {
  color: #2196f3;
  font-weight: 500;
  font-size: 14px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .checkout-button {
  padding: 15px 20px;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .checkout-button button {
  width: 100%;
  padding: 15px;
  background-color: #2196f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s;
}
.checkout-section .podsumowanie-platnosc .checkout-right .cart-summary .checkout-button button:hover {
  background-color: #0d87e9;
}
.checkout-section input[type=radio],
.checkout-section input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fff;
  cursor: pointer;
}
.checkout-section input[type=radio]:checked,
.checkout-section input[type=checkbox]:checked {
  background-color: #2196f3;
  border-color: #2196f3;
}
.checkout-section input[type=radio]:checked:after,
.checkout-section input[type=checkbox]:checked:after {
  content: "";
  position: absolute;
  top: 2px;
  left: 6px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkout-section input[type=radio] {
  border-radius: 50%;
}
.checkout-section input[type=radio]:checked:after {
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: white;
  transform: none;
}
@media (max-width: 991px) {
  .checkout-section form.checkout .col2-set,
  .checkout-section form.checkout .product-summary-details {
    flex: 0 0 100%;
    min-width: auto;
  }
}
@media (max-width: 767px) {
  .checkout-section form.checkout {
    padding: 15px;
  }
  .checkout-section form.checkout .col-1,
  .checkout-section form.checkout .col-2 {
    padding: 15px;
  }
  .checkout-section .form-row.form-row-first, .checkout-section .form-row.form-row-last {
    width: 100%;
    float: none;
  }
}

/* Artykuł z zamówieniem */
#post-21 {
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e1e5e9;
  overflow: hidden;
  width: 100%;
  /* Header z tytułem */
  /* Główna zawartość */
  /* Wiadomość sukcesu */
  /* Przegląd zamówienia */
  /* Tytuł sekcji szczegółów */
  /* Tabela zamówienia */
  /* Linki produktów */
  /* Ilość produktu */
  /* Ceny */
  /* Sekcja danych klienta */
  /* Footer */
  /* Responsywność */
  /* Usunięcie wszystkich animacji dla minimalizmu */
}
#post-21 .entry-header {
  padding: 32px 40px;
  border-bottom: 1px solid #e1e5e9;
}
#post-21 .entry-title {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0;
}
#post-21 .entry-content {
  padding: 40px;
}
#post-21 .woocommerce-notice--success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 16px 20px;
  border-radius: 4px;
  border: 1px solid #c8e6c9;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 32px;
  border-left: 4px solid #4caf50;
}
#post-21 .order_details {
  margin-left: 0em !important;
}
#post-21 .woocommerce-order-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 24px;
  margin: 32px 0;
  padding: 0;
  list-style: none;
}
#post-21 .woocommerce-order-overview li {
  background: #ffffff;
  padding: 20px;
  border-radius: 4px;
  border: 1px solid #e1e5e9;
  text-align: left;
}
#post-21 .woocommerce-order-overview li strong {
  display: block;
  font-size: 16px;
  color: #1a1a1a;
  margin-top: 4px;
  font-weight: 600;
}
#post-21 .woocommerce-order-overview li:not(:has(strong))::before {
  content: attr(class);
  font-size: 12px;
  color: #6c757d;
  font-weight: 500;
  text-transform: capitalize;
}
#post-21 .woocommerce-order-details__title {
  color: #1a1a1a;
  font-size: 18px;
  font-weight: 600;
  margin: 40px 0 24px;
  padding: 0;
  border: none;
}
#post-21 .woocommerce-table {
  width: 100%;
  background: white;
  border-radius: 4px;
  border: 1px solid #e1e5e9;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 14px;
}
#post-21 .woocommerce-table thead th {
  background: #f8f9fa;
  color: #495057;
  padding: 16px 20px;
  font-weight: 600;
  text-align: left;
  border-bottom: 1px solid #e1e5e9;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
#post-21 .woocommerce-table tbody td {
  padding: 16px 20px;
  border-bottom: 1px solid #f1f3f4;
  vertical-align: middle;
  color: #495057;
}
#post-21 .woocommerce-table tbody tr:last-child td {
  border-bottom: none;
}
#post-21 .woocommerce-table tfoot th,
#post-21 .woocommerce-table tfoot td {
  padding: 16px 20px;
  border-top: 1px solid #e1e5e9;
  font-weight: 600;
  color: #1a1a1a;
}
#post-21 .woocommerce-table tfoot tr:last-child {
  background: #f8f9fa;
}
#post-21 .woocommerce-table a {
  color: #1a1a1a;
  text-decoration: none;
  font-weight: 500;
}
#post-21 .woocommerce-table a:hover {
  color: #0066cc;
}
#post-21 .product-quantity {
  color: #6c757d;
  font-weight: 400;
  font-size: 13px;
}
#post-21 .woocommerce-Price-amount {
  font-weight: 600;
  color: #1a1a1a;
}
#post-21 .woocommerce-customer-details {
  margin-top: 40px;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 4px;
  border: 1px solid #e1e5e9;
}
#post-21 .woocommerce-column__title {
  color: #1a1a1a;
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: 600;
}
#post-21 .woocommerce-customer-details address {
  font-style: normal;
  line-height: 1.6;
  color: #495057;
  font-size: 14px;
}
#post-21 .woocommerce-customer-details--email {
  color: #495057 !important;
  font-weight: 500;
  margin-top: 8px;
}
#post-21 .entry-footer {
  padding: 24px 40px;
  background: #f8f9fa;
  border-top: 1px solid #e1e5e9;
  text-align: right;
}
#post-21 .entry-footer .edit-link a {
  color: #6c757d;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
}
#post-21 .entry-footer .edit-link a:hover {
  color: #495057;
}
@media (max-width: 768px) {
  #post-21 .single-page-section {
    padding: 20px 16px;
  }
  #post-21 .entry-content {
    padding: 24px;
  }
  #post-21 .entry-header {
    padding: 24px;
  }
  #post-21 .woocommerce-order-overview {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  #post-21 .woocommerce-table {
    font-size: 13px;
  }
  #post-21 .woocommerce-table thead {
    display: none;
  }
  #post-21 .woocommerce-table tbody tr {
    display: block;
    margin-bottom: 16px;
    border: 1px solid #e1e5e9;
    border-radius: 4px;
    overflow: hidden;
  }
  #post-21 .woocommerce-table tbody td {
    display: block;
    padding: 12px 16px;
    border: none;
    position: relative;
    padding-left: 120px;
  }
  #post-21 .woocommerce-table tbody td::before {
    content: attr(data-title);
    position: absolute;
    left: 16px;
    top: 12px;
    width: 90px;
    font-weight: 600;
    color: #6c757d;
    font-size: 12px;
    text-transform: uppercase;
  }
  #post-21 .entry-footer {
    padding: 16px 24px;
    text-align: center;
  }
}
#post-21 *,
#post-21 *::before,
#post-21 *::after {
  transition: none !important;
  animation: none !important;
}

.woocommerce-notices-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0em 6vw 0em 6vw;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 0.5em;
}
.woocommerce-notices-wrapper .woocommerce-message {
  margin-top: 10px;
  background-color: #00bfff;
  padding: 0.5em 1em;
  border-radius: 5px;
  color: white !important;
}
.woocommerce-notices-wrapper .woocommerce-message a {
  color: white !important;
}
.woocommerce-notices-wrapper .woocommerce-message a:focus {
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-message:focus {
  outline: none;
}
.woocommerce-notices-wrapper ul {
  list-style: none;
  padding-top: 2em;
}
.woocommerce-notices-wrapper ul strong {
  color: #b42318;
}

.login-form-woocommerce {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2em 6vw 0em 6vw;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.u-columns {
  display: flex;
  flex-direction: row;
  gap: 2em;
  width: 100%;
}
@media (max-width: 1024px) {
  .u-columns {
    flex-direction: column;
  }
}

.u-column1,
.u-column2 {
  background-color: white;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
  width: 50%;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
}
.u-column1 h2,
.u-column2 h2 {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .u-column1,
  .u-column2 {
    width: 100%;
  }
}

.woocommerce-form {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  padding-top: 1em;
}
.woocommerce-form .woocommerce-form-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
}
.woocommerce-form .woocommerce-form-row .required {
  color: #b42318;
}
.woocommerce-form .woocommerce-form-row .woocommerce-Input {
  padding: 1.1em 1.5em;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #dfdfdf !important;
  background-color: white;
  color: black;
}
.woocommerce-form .woocommerce-form-row .woocommerce-Input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #333333;
}
.woocommerce-form .woocommerce-privacy-policy-text p a {
  color: #333333;
}
.woocommerce-form .woocommerce-LostPassword {
  padding-top: 2em;
}
.woocommerce-form .woocommerce-LostPassword a {
  color: #333333;
  font-weight: 600;
}

.form-row-wide {
  display: flex;
  flex-direction: row;
  gap: 2em;
  width: 100%;
  padding-top: 1em;
}
.form-row-wide .main-button {
  font-weight: 600;
  padding: 1.5em 3vw;
}
@media (max-width: 724px) {
  .form-row-wide .main-button {
    width: 100%;
  }
}
.form-row-wide .woocommerce-form__label {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}
.form-row-wide .woocommerce-form__label .remember-me {
  font-weight: 600;
}
.form-row-wide .woocommerce-form__label .woocommerce-form__input-checkbox {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 18px;
  height: 18px;
  border: 2px solid black;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  position: relative;
}
.form-row-wide .woocommerce-form__label .woocommerce-form__input-checkbox:checked {
  background-color: #00bfff;
  border-color: #00bfff;
}
.form-row-wide .woocommerce-form__label .woocommerce-form__input-checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
@media (max-width: 724px) {
  .form-row-wide {
    flex-direction: column;
  }
}

.lost-password-form-woocommerce {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2em 6vw 0em 6vw;
  width: 100%;
}
.lost-password-form-woocommerce h2 {
  font-weight: 700;
}
.lost-password-form-woocommerce .woocommerce-ResetPassword {
  background-color: white;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
  width: 50%;
}
@media (max-width: 1124px) {
  .lost-password-form-woocommerce .woocommerce-ResetPassword {
    width: 100%;
  }
}
.lost-password-form-woocommerce .form-row {
  padding-top: 1em;
}
.lost-password-form-woocommerce .woocommerce-form-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.lost-password-form-woocommerce .woocommerce-form-row .required {
  color: #b42318;
}
.lost-password-form-woocommerce .woocommerce-form-row .woocommerce-Input {
  padding: 1.1em 1.5em;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #dfdfdf !important;
  background-color: white;
  color: black;
}
.lost-password-form-woocommerce .woocommerce-form-row .woocommerce-Input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #333333;
}

.lost-password-confirmation-woocommerce {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2em 6vw 0em 6vw;
  margin-top: 7em;
  gap: 2em;
  width: 100%;
}
.lost-password-confirmation-woocommerce h2 {
  font-weight: 700;
}
.lost-password-confirmation-woocommerce .lost-password-confirmation-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.lost-password-confirmation-woocommerce .lost-password-confirmation-inner p {
  text-align: center;
}

.reset-password-form-woocommerce {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  padding: 2em 6vw 0em 6vw;
  width: 100%;
}
.reset-password-form-woocommerce h2 {
  font-weight: 700;
}
.reset-password-form-woocommerce .woocommerce-ResetPassword {
  background-color: white;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
  display: flex;
  flex-direction: column;
  gap: 1em;
  padding: 2em;
  width: 50%;
}
@media (max-width: 1124px) {
  .reset-password-form-woocommerce .woocommerce-ResetPassword {
    width: 100%;
  }
}
.reset-password-form-woocommerce .form-row {
  padding-top: 1em;
}
.reset-password-form-woocommerce .woocommerce-form-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
}
.reset-password-form-woocommerce .woocommerce-form-row .required {
  color: #b42318;
}
.reset-password-form-woocommerce .woocommerce-form-row .woocommerce-Input {
  border-radius: 4px;
  border: 1px solid #dfdfdf !important;
  background-color: white;
  padding: 1.1em 1.5em;
  width: 100%;
  color: black;
}
.reset-password-form-woocommerce .woocommerce-form-row .woocommerce-Input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #333333;
}

.my-account-woocommerce {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  padding: 2em 6vw 0em 6vw;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  gap: 3em;
}
@media (max-width: 1024px) {
  .my-account-woocommerce {
    flex-direction: column;
  }
}

.woocommerce-MyAccount-navigation {
  width: 25%;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
  padding: 2em;
  border-radius: 4px;
  min-height: 500px;
  position: relative;
}
.woocommerce-MyAccount-navigation ul {
  list-style: none;
  padding: 0;
  margin: 0;
  height: 100%;
}
.woocommerce-MyAccount-navigation ul .account-icon {
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}
.woocommerce-MyAccount-navigation ul li {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  padding: 0.5em 0;
}
.woocommerce-MyAccount-navigation ul li a {
  color: #333333;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.woocommerce-MyAccount-navigation ul li a:hover {
  color: #333333;
}
.woocommerce-MyAccount-navigation ul li.is-active a {
  font-weight: 700;
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
}
.woocommerce-MyAccount-navigation ul li:last-child {
  position: absolute;
  bottom: 2em;
  left: 2em;
  width: calc(100% - 4em);
}
.woocommerce-MyAccount-navigation ul li:last-child a {
  background-image: linear-gradient(to right, #0099cc, #00bfff);
  -webkit-background-clip: text;
  color: transparent;
  border: 1px solid #0099cc;
  border-radius: 4px;
  padding: 0.5em 1.5em;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-navigation {
    width: 100%;
  }
}

.woocommerce-MyAccount-content {
  width: 75%;
  background-color: white;
  border-radius: 4px;
  border: 1px solid #dfdfdf;
  display: flex;
  flex-direction: column;
  padding: 2em;
  border-radius: 4px;
}
.woocommerce-MyAccount-content a {
  color: #333333;
  font-weight: 600;
}
.woocommerce-MyAccount-content h2 {
  font-weight: 700;
}
@media (max-width: 1024px) {
  .woocommerce-MyAccount-content {
    width: 100%;
  }
}

.woocommerce-EditAccountForm {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: 100%;
  padding-top: 1em;
}
.woocommerce-EditAccountForm .form-inline {
  display: flex;
  flex-direction: row;
  gap: 1em;
}
@media (max-width: 724px) {
  .woocommerce-EditAccountForm .form-inline {
    width: 100%;
    flex-direction: column;
  }
}
.woocommerce-EditAccountForm .form-row {
  padding-top: 0em;
}
.woocommerce-EditAccountForm .woocommerce-form-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  width: 100%;
  /* Usuń wszelkie domyślne style przycisków */
}
.woocommerce-EditAccountForm .woocommerce-form-row .required {
  color: #b42318;
}
.woocommerce-EditAccountForm .woocommerce-form-row .password-field {
  position: relative;
}
.woocommerce-EditAccountForm .woocommerce-form-row .password-input {
  position: relative;
  display: block;
  width: 100%;
}
.woocommerce-EditAccountForm .woocommerce-form-row button {
  background: hsla(0, 0%, 0%, 0);
}
.woocommerce-EditAccountForm .woocommerce-form-row .show-password-input {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background-image: url("../../images/show-pass.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  padding: 0;
  margin: 0;
  height: 25px;
  width: 25px;
  outline: none;
}
.woocommerce-EditAccountForm .woocommerce-form-row .show-password-input:hover,
.woocommerce-EditAccountForm .woocommerce-form-row .show-password-input:focus,
.woocommerce-EditAccountForm .woocommerce-form-row .show-password-input:active {
  border: none;
  box-shadow: none;
  outline: none;
}
.woocommerce-EditAccountForm .woocommerce-form-row .woocommerce-Input {
  border-radius: 4px;
  border: 1px solid #dfdfdf !important;
  background-color: white;
  padding: 1.1em 1.5em;
  width: 100%;
  color: black;
}
.woocommerce-EditAccountForm .woocommerce-form-row .woocommerce-Input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #333333;
}
.woocommerce-EditAccountForm .password-change {
  margin-top: 1em;
  text-transform: uppercase;
  font-size: 1.2em;
  font-weight: 700;
}
.woocommerce-EditAccountForm .main-button {
  font-weight: 600;
  padding: 1.5em 3vw;
}
@media (max-width: 724px) {
  .woocommerce-EditAccountForm .main-button {
    width: 100%;
  }
}

.shop_table.my_account_orders {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 2rem;
  border: 1px solid #e0e0e0;
}
.shop_table.my_account_orders thead {
  background-color: #ffffff;
  color: rgb(0, 0, 0);
}
.shop_table.my_account_orders thead th {
  padding: 1rem 2rem;
  text-align: left;
}
.shop_table.my_account_orders thead th span {
  font-weight: 700;
}
.shop_table.my_account_orders thead th.order-actions {
  text-align: right;
}
.shop_table.my_account_orders tbody tr:last-child {
  border-bottom: none;
}
.shop_table.my_account_orders tbody tr td {
  padding: 2rem;
  vertical-align: middle;
  font-weight: 500;
}
.shop_table.my_account_orders tbody tr td span {
  font-weight: 500;
}
.shop_table.my_account_orders tbody tr td.order-status {
  color: #5b5b5b;
}
.shop_table.my_account_orders tbody tr td.order-number a {
  color: #095540;
  font-weight: 500;
  text-decoration: none;
}
.shop_table.my_account_orders tbody tr td.order-number a:hover {
  text-decoration: underline;
}
.shop_table.my_account_orders tbody tr td.order-actions {
  text-align: right;
  position: relative;
}
.shop_table.my_account_orders tbody tr td.order-actions .button {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px 10px;
  color: #095540;
}
.shop_table.my_account_orders tbody tr td.order-actions .button:hover {
  text-decoration: underline;
}
.shop_table.my_account_orders tbody tr td.order-actions:after {
  content: "⠇";
  font-size: 1.5rem;
  color: #5b5b5b;
  cursor: pointer;
}
.shop_table.my_account_orders tbody tr td.order-actions:hover .button {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .shop_table.my_account_orders thead {
    display: none;
  }
  .shop_table.my_account_orders tbody tr {
    display: block;
    border-bottom: 2px solid #095540;
    margin-bottom: 1rem;
  }
  .shop_table.my_account_orders tbody tr td,
  .shop_table.my_account_orders tbody tr th {
    display: flex;
    justify-content: space-between;
    text-align: right;
    padding: 0.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
  }
  .shop_table.my_account_orders tbody tr td:before,
  .shop_table.my_account_orders tbody tr th:before {
    content: attr(data-title);
    font-weight: 600;
    float: left;
    color: #095540;
  }
  .shop_table.my_account_orders tbody tr td.order-actions,
  .shop_table.my_account_orders tbody tr th.order-actions {
    border-bottom: none;
  }
  .shop_table.my_account_orders tbody tr td.order-actions:before,
  .shop_table.my_account_orders tbody tr th.order-actions:before {
    content: "";
  }
}

.order-details-container {
  margin: 0 auto;
  width: 100%;
  color: black;
}
.order-details-container .order-header {
  margin-bottom: 20px;
  padding-bottom: 10px;
}
.order-details-container .back-link {
  color: black;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .order-details-container .back-link {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .order-details-container .back-link {
    font-size: 2.625rem;
  }
}
.order-details-container .back-link .arrow-back-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 1px;
  vertical-align: middle;
  background-image: url("../../images/arrow-back.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.order-info {
  margin-bottom: 20px;
}
.order-info p {
  margin: 5px 0;
  font-size: 14px;
}

.order-items {
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
  border: 1px solid #e0e0e0;
}
.order-items .order-item-header {
  display: flex;
  color: black;
  font-weight: 600;
  padding: 1.3em 1em;
}
.order-items .product-column {
  flex: 3;
}
.order-items .total-column {
  flex: 1;
}

.order-item {
  display: flex;
  padding: 1.3em 1em;
}
.order-item:last-child {
  border-bottom: none;
}
.order-item .product-name {
  flex: 3;
  color: #333333;
  font-weight: 500;
}
.order-item .product-total {
  flex: 1;
}
.order-item.total {
  font-weight: 600;
}

.subtotal-item {
  border-top: 2px solid rgb(230, 230, 230);
}

.discount-label,
.subtotal-label,
.shipping-label,
.payment-label,
.total-label {
  flex: 3;
  font-weight: 700;
}

.discount-value,
.subtotal-value,
.shipping-value,
.payment-value,
.total-value {
  flex: 1;
  font-weight: 700;
  font-size: 0.875rem;
}
.discount-value span,
.subtotal-value span,
.shipping-value span,
.payment-value span,
.total-value span {
  font-weight: 700;
}

.shipping-method {
  font-size: 12px;
  color: #777;
  display: block;
}

.address-section {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
}
.address-section .billing-address,
.address-section .shipping-address {
  flex: 1;
  min-width: 250px;
  border: 1px solid #e0e0e0;
  padding: 15px;
  border-radius: 8px;
}
.address-section .billing-address h3,
.address-section .shipping-address h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-weight: 700;
}

address {
  font-style: normal;
  line-height: 1.6;
  font-size: 14px;
}

.phone-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
  background-image: url("../../images/phone.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.email-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  margin-right: 5px;
  background-image: url("../../images/email.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.woocommerce-Address {
  background-color: #f5f5f5;
  margin-top: 3em;
}

.addresses-title {
  font-weight: 700;
  padding-bottom: 10px;
}

.addresses-description {
  font-size: 16px;
  color: black;
  margin-bottom: 25px;
}

.addresses-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 20px;
}

.address-box {
  border-radius: 4px;
  border: 1px solid #dfdfdf !important;
  background-color: white;
  padding: 20px;
  width: calc(50% - 10px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.address-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 5px;
}

.address-header h3 {
  font-size: 1.2em;
  font-weight: 700;
  margin: 0;
}

.edit-button {
  color: #4caf50;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.address-content {
  font-size: 14px;
  line-height: 1.6;
  color: black;
}

.address-name {
  font-weight: 500;
  margin-bottom: 5px;
}

.address-street,
.address-location {
  margin-bottom: 5px;
}

.address-phone,
.address-email {
  display: flex;
  align-items: center;
  margin-top: 8px;
  color: #666;
}

.phone-icon,
.email-icon {
  margin-right: 5px;
}

@media (max-width: 767px) {
  .addresses-container {
    flex-direction: column;
  }
  .address-box {
    width: 100%;
  }
}
.woocommerce-form {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-top: 1em;
}
.woocommerce-form .back-link {
  color: black;
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 5px;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  margin: 0;
  padding: 0;
}
@media (min-width: 768px) {
  .woocommerce-form .back-link {
    font-size: 2.25rem;
  }
}
@media (min-width: 1024px) {
  .woocommerce-form .back-link {
    font-size: 2.625rem;
  }
}
.woocommerce-form .back-link .arrow-back-icon {
  display: inline-block;
  width: 24px;
  height: 24px;
  padding: 1px;
  vertical-align: middle;
  background-image: url("../../images/arrow-back.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.woocommerce-form .form-row {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 1em;
  padding-top: 2em;
  width: 100%;
  /* Custom Select2 styles to match inputs */
  /* Main container styling */
  /* Focus states */
  /* Dropdown styling */
  /* Dropdown options */
  /* Search field in dropdown */
  /* Focus state handling */
  /* Remove unwanted borders when open */
  /* Dropdown position adjustment */
  /* Dropdown scrollbar styling */
}
.woocommerce-form .form-row .required {
  color: #b42318;
}
.woocommerce-form .form-row .woocommerce-input-wrapper {
  width: 100%;
}
.woocommerce-form .form-row .woocommerce-input-wrapper input {
  border-radius: 4px;
  border: 1px solid #dfdfdf !important;
  background-color: white;
  padding: 1.1em 1.5em;
  width: 100%;
  color: black;
}
.woocommerce-form .form-row .woocommerce-input-wrapper input:focus {
  outline: none;
  box-shadow: 0 0 0 2px #333333;
}
.woocommerce-form .form-row .select2-container {
  width: 100% !important;
}
.woocommerce-form .form-row .select2-container .select2-selection--single {
  padding: 0.5em 0.5em;
  height: auto;
  min-height: 3.6em; /* Matches the height of your inputs (1.1em + 1.5em) */
  width: 100%;
  border-radius: 4px;
  border: 1px solid #dfdfdf !important;
  background-color: white;
  color: black;
}
.woocommerce-form .form-row .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: black;
  line-height: 1.5;
  padding: 0.5em 0.5em;
}
.woocommerce-form .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 10px;
}
.woocommerce-form .form-row .select2-container--default .select2-selection--single:focus,
.woocommerce-form .form-row .select2-container--default.select2-container--focus .select2-selection--single {
  outline: none;
  box-shadow: 0 0 0 2px #333333;
}
.woocommerce-form .form-row .dropdown-wrapper {
  background-color: #f5f5f5;
  border: none;
  border-radius: 4px;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
  margin-top: 1px;
}
.woocommerce-form .form-row .select2-results__option {
  padding: 1.1em 1.5em;
  color: black;
  transition: background-color 0.2s;
}
.woocommerce-form .form-row .select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #e6e6e6;
}
.woocommerce-form .form-row .select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #333333;
  color: white;
}
.woocommerce-form .form-row .select2-search--dropdown {
  padding: 10px;
}
.woocommerce-form .form-row .select2-search--dropdown .select2-search__field {
  border-radius: 4px;
  padding: 0.8em 1em;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  color: black;
}
.woocommerce-form .form-row .select2-search--dropdown .select2-search__field:focus {
  outline: none;
  box-shadow: 0 0 0 2px #333333;
  border-color: transparent;
}
.woocommerce-form .form-row .select2-container--default.select2-container--open .select2-selection--single {
  box-shadow: 0 0 0 2px #333333;
}
.woocommerce-form .form-row .select2-container--open .select2-dropdown {
  border-color: transparent;
}
.woocommerce-form .form-row .select2-container--default.select2-container--open.select2-container--above .select2-selection--single,
.woocommerce-form .form-row .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.woocommerce-form .form-row .select2-container--default.select2-container--open.select2-container--below .select2-selection--single,
.woocommerce-form .form-row .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.woocommerce-form .form-row .select2-results__options::-webkit-scrollbar {
  width: 6px;
}
.woocommerce-form .form-row .select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
.woocommerce-form .form-row .select2-results__options::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}
.woocommerce-form .form-row .select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
.woocommerce-form .main-button {
  font-weight: 600;
  padding: 1.5em 3vw;
}
@media (max-width: 724px) {
  .woocommerce-form .main-button {
    width: 100%;
  }
}/*# sourceMappingURL=woocommerce.css.map */