/* === BREDCRUMB === */
.kadence-breadcrumbs { font-size: 10px!important; }

/* === SEARCH FORM – CARPARTS === */
.carparts-search-form {
    width: 100%;
    position: relative;
    font-family: var(--global-body-font-family);
}

.carparts-search-inner {
    display: flex;
    align-items: stretch;
    border: 0;
    border-radius: 0;
    overflow: hidden;
    background-color: var(--global-palette9);
}

.carparts-search-inner > .carparts-search-field {
    flex: 1;
    border: 1px solid var(--global-palette7);
    border-radius: 0.75rem 0 0 0.75rem;
    padding: 0.75rem 20px;
    font-size: var(--global-font-size-small);
    color: var(--global-palette3);
    background: transparent;
    outline: none;
}

.carparts-search-field::placeholder {
    color: var(--global-palette6);
}

/* Button z lupką po prawej */
.carparts-search-submit {
    border: 0;
    border-radius: 0 0.75rem 0.75rem 0;
    background: var(--global-palette1);
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--global-palette9);
    cursor: pointer;
}

.carparts-search-submit:hover {
    background: var(--global-palette2);
}

.carparts-search-submit:active {
    transform: translateY(1px);
}

.carparts-search-svg,
.carparts-search-icon svg {
    width: 20px;
    height: 20px;
    display: block;
}

.kadence-search-icon-wrap {
    display: none !important;
}


/* === SUGESTIE LIVE === */
.carparts-search-suggestions {
    position: absolute;
    top: calc(100% + 0.25rem);
    left: 0;
    right: 0;
    background: var(--global-palette9);
    border-radius: 0.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    max-height: 420px;
    overflow-y: auto;
    z-index: 9999;
    padding: 0.5rem 0;
    border: 1px solid var(--global-palette7);
    opacity: 0;
    pointer-events: none;
    transform: translateY(4px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

.carparts-search-suggestions[data-visible="true"] {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.carparts-search-suggestion-empty {
    padding: 0.75rem 1rem;
    font-size: var(--global-font-size-small);
    color: var(--global-palette5);
}

.carparts-search-suggestion-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.5rem 1rem;
    text-decoration: none !important;
    color: var(--global-palette3);
    font-size: var(--global-font-size-small);
}

.carparts-search-suggestion-item:hover {
    background: var(--global-palette8);
    text-decoration: none !important;
}

.carparts-search-suggestion-thumb {
    width: 48px;
    height: 48px;
    border-radius: 0.5rem;
    overflow: hidden;
    background: var(--global-palette7);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* === STOCK BOX (PRODUCT) === */
.carparts-stock-box {
    margin-top: 12px;
    padding: 10px;
    border: 1px solid #ddd;
}

.carparts-stock-box__lines {
    margin-top: 6px;
    font-size: 0.95em;
}

.carparts-search-suggestion-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carparts-search-suggestion-title {
    font-weight: 500;
    line-height: 1.3;
}

.carparts-search-suggestion-price {
    white-space: nowrap;
    font-weight: 600;
    color: var(--global-palette11); /* zielony pod cenę */
}

/* Mobile drobna poprawka */
@media (max-width: 480px) {
    .carparts-search-suggestion-item {
        grid-template-columns: 48px 1fr;
        grid-template-rows: auto auto;
    }

    .carparts-search-suggestion-price {
        grid-column: 2 / 3;
        justify-self: flex-start;
        margin-top: 0.15rem;
    }
}

/* === MOBILE SEARCH ICON === */
.carparts-mobile-search-toggle {
	border: 0;
	background: transparent;
	padding: 0.35rem;
	display: none;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	color: var(--global-palette3);
}

.carparts-mobile-search-toggle:hover { background: none; box-shadow: none; color: var(--global-palette3) }
.carparts-mobile-search-toggle:focus { background: none; box-shadow: none; color: var(--global-palette3) }

.carparts-mobile-search-toggle:hover .carparts-mobile-search-icon { color: black;}

.carparts-mobile-search-toggle svg {
	width: 30px;
	height: 30px;
	display: block;
}

@media (max-width: 1024px) {
	.carparts-mobile-search-toggle {
		display: inline-flex;
	}
}

/* === PANEL === */
.carparts-mobile-search-panel {
    position: fixed;
    left: 0;
    right: 0;
    top: 80px;
    z-index: 9999;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity .18s ease, transform .18s ease;
    background: var(--global-palette9);
}

/* === HEADER BOTTOM BAR === */
.carparts-header-bottom-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  width: 100%;
  padding: 16px 0;
}

.carparts-header-bottom-bar__form {
  display: grid;
  grid-template-columns: minmax(200px, 1.2fr) minmax(145px, 0.82fr) minmax(145px, 0.82fr) auto;
  gap: 0;
  margin: 0;
  max-width: 1040px;
  border-radius: 0;
  overflow: visible;
  background: transparent;
  justify-self: start;
}

.carparts-header-bottom-bar__search,
.carparts-header-bottom-bar__select-wrap {
  position: relative;
  background: #fff;
  border-right: 1px solid #e5e7eb;
}

.carparts-header-bottom-bar__search {
  border-radius: 0;
}

.carparts-header-bottom-bar__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid #6A7282;
  border-bottom: 1.5px solid #6A7282;
  transform: translateY(-60%) rotate(45deg);
  pointer-events: none;
}

.carparts-header-bottom-bar__select-wrap:last-of-type {
  border-right: 0;
}

.carparts-header-bottom-bar__field,
.carparts-header-bottom-bar__select {
  width: 100%;
  height: 52px;
  padding: .4em 1em;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  color: var(--global-palette4);
  font-size: 14px;
}

.carparts-header-bottom-bar__field::placeholder {
  color: #6A7282;
}

.carparts-header-bottom-bar__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: none;
  padding-right: 52px;
}

.carparts-header-bottom-bar__submit {
  min-width: 168px;
  height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 0 28px 28px 0;
  background: #e4002b;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.carparts-header-bottom-bar__submit:hover,
.carparts-header-bottom-bar__submit:focus {
  background: #c60025;
  color: #fff;
}

.carparts-header-bottom-bar__contact {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--global-palette4);
  text-decoration: none !important;
  white-space: nowrap;
}

.carparts-header-bottom-bar__contact:hover,
.carparts-header-bottom-bar__contact:focus,
.carparts-header-bottom-bar__contact:active {
  text-decoration: none !important;
}

.carparts-header-bottom-bar__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 999px;
  color: #e4002b;
  background: color-mix(in srgb, #e4002b 8%, white);
}

.carparts-header-bottom-bar__contact-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.carparts-header-bottom-bar__contact-label {
  color: #6A7282;
  font-size: 13px;
  line-height: 1.1;
}

.carparts-header-bottom-bar__contact-phone {
  font-size: 15px;
  line-height: 1.2;
}

.carparts-header-bottom-bar .carparts-search-inner {
  display: block;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.carparts-header-bottom-bar .carparts-search-submit {
  display: none !important;
}

.carparts-header-bottom-bar .carparts-search-suggestions {
  top: calc(100% + 10px);
  border-radius: 18px;
  z-index: 10020;
}

.carparts-header-top-bar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 44px;
  width: 100%;
}

.carparts-header-top-bar__center {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 26px;
  min-width: 0;
}

.site-main-header-wrap .site-header-row-container-inner > .site-container,
.site-bottom-header-wrap .site-header-row-container-inner > .site-container {
  max-width: 1500px !important;
  width: 100% !important;
  padding-left: var(--global-content-edge-padding) !important;
  padding-right: var(--global-content-edge-padding) !important;
}

.site-main-header-wrap .site-main-header-inner-wrap,
.site-main-header-wrap .site-header-main-section-center,
.site-main-header-wrap .site-header-main-section-center .site-header-item,
.site-main-header-wrap .site-header-main-section-center .header-html,
.site-main-header-wrap .site-header-main-section-center .header-html-inner,
.site-bottom-header-wrap .site-bottom-header-inner-wrap,
.site-bottom-header-wrap .site-header-bottom-section-center,
.site-bottom-header-wrap .site-header-bottom-section-center .site-header-item,
.site-bottom-header-wrap .site-header-bottom-section-center .header-html2,
.site-bottom-header-wrap .site-header-bottom-section-center .header-html-inner {
  width: 100%;
  max-width: none;
}

.carparts-header-top-bar__brand {
  display: flex;
  align-items: center;
  justify-self: start;
}

.carparts-header-top-bar__logo .custom-logo-link,
.carparts-header-top-bar__logo .custom-logo {
  display: block;
}

.carparts-header-top-bar__logo .custom-logo {
  max-height: 62px;
  width: auto;
}

.carparts-header-top-bar__site-title {
  color: var(--global-palette4);
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
}

.carparts-header-top-bar__nav {
  min-width: 0;
}

.carparts-header-top-bar__categories {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.carparts-header-top-bar__categories .cp-cat-trigger {
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--global-palette8);
  color: var(--global-palette4);
  box-shadow: none;
}

.carparts-header-top-bar__categories .cp-cat-trigger:hover,
.carparts-header-top-bar__categories .cp-cat-trigger:focus {
  color: #e4002b;
}

.carparts-header-top-bar__categories .cp-cat-trigger__label {
  font-size: 15px;
  font-weight: 600;
}

.carparts-header-top-bar__menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.carparts-header-top-bar__menu > li {
  margin: 0;
  padding: 0;
}

.carparts-header-top-bar__menu > li > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: var(--global-palette4);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none !important;
}

.carparts-header-top-bar__menu > li > a:hover,
.carparts-header-top-bar__menu > li > a:focus {
  color: #e4002b;
  text-decoration: none !important;
}

.carparts-header-top-bar__actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 18px;
  justify-self: end;
}

.carparts-header-top-bar__action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--global-palette8);
  color: var(--global-palette4);
  text-decoration: none !important;
}

.carparts-header-top-bar__action--cart {
  width: fit-content;
  min-width: 0;
  height: 56px;
  padding: 0 18px 0 16px;
  gap: 12px;
  border-radius: 999px;
  justify-content: flex-start;
  background: var(--global-palette1);
  color: #fff;
}

.carparts-header-top-bar__action:hover,
.carparts-header-top-bar__action:focus {
  color: #e4002b;
  text-decoration: none !important;
}

.carparts-header-top-bar__action--wishlist svg path {
  fill: transparent;
  transition: fill 0.18s ease, stroke 0.18s ease;
}

.carparts-header-top-bar__action--account svg path {
  transition: fill 0.18s ease, color 0.18s ease;
}

.carparts-header-top-bar__action--account:hover,
.carparts-header-top-bar__action--account:focus {
  color: #e4002b;
}

.carparts-header-top-bar__action--wishlist.has-items {
  color: #e4002b;
}

.carparts-header-top-bar__action--wishlist.has-items svg path {
  stroke: #e4002b;
  fill: #e4002b;
}

.carparts-header-top-bar__action--cart:hover,
.carparts-header-top-bar__action--cart:focus {
  color: #fff;
  background: var(--global-palette2);
}

.carparts-header-top-bar__action svg {
  width: 22px;
  height: 22px;
  display: block;
  flex: 0 0 auto;
}

.carparts-header-top-bar__action--cart svg {
  width: 30px;
  height: 30px;
  color: #fff;
  fill: #fff;
}

.carparts-header-top-bar__action--cart svg path {
  fill: #fff;
}

.carparts-header-top-bar__cart-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  line-height: 1.1;
}

.carparts-header-top-bar__cart-label {
  color: rgba(255, 255, 255, 0.76);
  font-size: 12px;
  font-weight: 500;
}

.carparts-header-top-bar__cart-amount {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
}

.carparts-header-top-bar__cart-amount .woocommerce-Price-amount,
.carparts-header-top-bar__cart-amount .amount,
.carparts-header-top-bar__cart-amount bdi,
.carparts-header-top-bar__cart-amount .woocommerce-Price-currencySymbol {
  font: inherit;
  color: inherit;
}

.carparts-header-top-bar__count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.carparts-header-top-bar__count.is-empty {
  display: none;
}

.carparts-mobile-wishlist {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--global-palette4);
  text-decoration: none !important;
}

.carparts-mobile-wishlist:hover,
.carparts-mobile-wishlist:focus,
.carparts-mobile-wishlist:active {
  color: #e4002b;
  text-decoration: none !important;
}

.carparts-mobile-wishlist__icon svg path {
  fill: transparent;
  transition: fill 0.18s ease, stroke 0.18s ease;
}

.carparts-mobile-wishlist.has-items {
  color: #e4002b;
}

.carparts-mobile-wishlist.has-items svg path {
  stroke: #e4002b;
  fill: #e4002b;
}

.carparts-mobile-wishlist__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.carparts-mobile-wishlist__icon svg {
  width: 30px;
  height: 30px;
  display: block;
}

.carparts-mobile-wishlist__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
}

.carparts-mobile-wishlist__count {
  position: absolute;
  top: -6px;
  right: -8px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e4002b;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
}

.yith-wcwl-add-to-wishlist-button__feedback a,
.yith-wcwl-add-to-wishlist-button__label,
.yith-wcwl-add-to-wishlist-button__feedback a:hover,
.yith-wcwl-add-to-wishlist-button__label:hover,
.yith-wcwl-add-to-wishlist-button__feedback a:focus,
.yith-wcwl-add-to-wishlist-button__label:focus {
  text-decoration: none !important;
}

@media (max-width: 1200px) {
  .carparts-header-top-bar {
    gap: 24px;
  }

  .carparts-header-top-bar__menu {
    gap: 28px;
  }

  .carparts-header-top-bar__cart-copy {
    display: none;
  }

  .carparts-header-top-bar__action--cart {
    width: 50px;
    min-width: 50px;
    height: 50px;
    padding: 0;
    justify-content: center;
  }

  .carparts-header-bottom-bar {
    grid-template-columns: 1fr;
  }

  .carparts-header-bottom-bar__contact {
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .carparts-header-top-bar {
    display: none;
  }

  .carparts-header-bottom-bar__form {
    grid-template-columns: 1fr;
    gap: 10px;
    border-radius: 0;
    overflow: visible;
  }

  .carparts-header-bottom-bar__search,
  .carparts-header-bottom-bar__select-wrap {
    border-right: 0;
    border-radius: 18px;
  }

  .carparts-header-bottom-bar__submit {
    width: 100%;
  }
}

.carparts-mobile-search-panel--open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.carparts-mobile-search-panel-inner {
    padding: 1rem var(--global-edge-spacing);
    max-width: var(--global-content-width);
    margin: 0 auto;
}

.carparts-mobile-search-open {
	overflow: hidden;
}

@media (min-width: 1025px) {
	.carparts-mobile-search-panel {
		display: none;
	}
}

/* === HEADER ICONS in MOBILE === */
@media (max-width: 1024px) {
  .header-cart-button svg { width: 30px; height: 30px; }
  .header-mobile-account-in-wrap svg { width: 30px; height: 30px; }

  .header-mobile-cart-wrap .header-cart-button {
    position: relative;
  }

  .header-mobile-cart-wrap .header-cart-total,
  .carparts-mobile-wishlist__count {
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    border-radius: 999px;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 18px;
    text-align: center;
    top: -6px;
    right: -8px;
  }

  .header-mobile-cart-wrap .header-cart-total {
    background: #000;
  }

  .carparts-mobile-wishlist__count {
    background: #000;
  }

  .header-mobile-cart-wrap .header-cart-is-empty-true + .header-cart-total,
  .header-mobile-cart-wrap .header-cart-total.header-cart-is-empty-true,
  .header-mobile-cart-wrap .header-cart-total:empty,
  .carparts-mobile-wishlist__count:empty {
    display: none !important;
  }
}

#mobile-drawer .drawer-inner { min-width: 100%; }

/* === ADD DO CART BUTTON === */
.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button) {
  border: 1px solid var(--global-palette1)!important;
}

/* === INPUTS === */
input[type=text]:focus, input[type=email]:focus, input[type=url]:focus, input[type=password]:focus, input[type=search]:focus, input[type=number]:focus, input[type=tel]:focus, input[type=range]:focus, input[type=date]:focus, input[type=month]:focus, input[type=week]:focus, input[type=time]:focus, input[type=datetime]:focus, input[type=datetime-local]:focus, input[type=color]:focus, textarea:focus {
color: var(--global-palette3);
border-color: var(--global-palette1)!important;
}

/* === GRID PRODUCTS HOME PAGE === */
.kt-repeater216_987b76-73 .wp-block-kadence-repeatertemplate {
    grid-template-columns: repeat(7, minmax(0, 1fr))!important;
}

@media (max-width: 1024px) {
  .kt-repeater216_987b76-73 .wp-block-kadence-repeatertemplate {
    grid-template-columns: repeat(4, minmax(0, 1fr))!important;
  }
}

/* === PRODUCT CARD === */
.woocommerce ul.products li.product {
  border: 1px solid #e5e7eb;
  background: #fff;
  position: relative;
}

.single-product .woocommerce ul.products li.product,
.single-product .woocommerce .related ul.products li.product,
.single-product .woocommerce .upsells ul.products li.product {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.single-product .woocommerce ul.products li.product.content-bg,
.single-product .woocommerce .related ul.products li.product.content-bg,
.single-product .woocommerce .upsells ul.products li.product.content-bg,
.single-product .woocommerce ul.products li.product .product-details.entry-content-wrap,
.single-product .woocommerce .related ul.products li.product .product-details.entry-content-wrap,
.single-product .woocommerce .upsells ul.products li.product .product-details.entry-content-wrap {
  border: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.single-product section.related.products ul.products,
.single-product section.related.products ul.products li.product,
.single-product section.related.products ul.products li.product.content-bg,
.single-product section.related.products ul.products li.product .product-details.entry-content-wrap {
  border: 0 !important;
  box-shadow: none !important;
}

.woocommerce ul.products li.product a.woocommerce-loop-image-link {
  margin: 0;
  background: #fff;
}

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist-button-over-image {
  left: auto !important;
  right: 0 !important;
  top: 0 !important;
  box-shadow: none !important;
}

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist-button,
.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist-button-over-image {
  box-shadow: none !important;
  z-index: 2 !important;
}

.woocommerce ul.products li.product .yith-wcwl-add-to-wishlist-button {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  border-radius: 999px;
  background: var(--global-palette8) !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 0.78;
  object-fit: contain;
  background: #fff;
}

.woocommerce ul.products li.product .product-details.entry-content-wrap {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 20px 20px;
  margin: 0;
  border-radius: 0;
  min-height: 172px;
  background: var(--global-palette8);
}

.woocommerce ul.products li.product .carparts-loop-category {
  color: #6A7282;
  font-size: 12px;
  line-height: 1.3;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title a {
  color: var(--global-palette4);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
}

.woocommerce ul.products li.product .product-excerpt,
.woocommerce ul.products li.product .star-rating {
  display: none !important;
}

.woocommerce ul.products li.product .product-action-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  position: relative;
}

.woocommerce ul.products li.product .carparts-copy-product-id {
  border: 1px dashed #cbd5e1;
  background: transparent;
  color: #64748b;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 6px;
  cursor: pointer;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.single-product .summary .carparts-copy-product-id {
  border: 1px dashed #e5e7eb;
  color: #94a3b8;
  font-size: 10px;
  padding: 3px 7px;
  opacity: 0.9;
}

.carparts-under-atc__row .carparts-copy-product-id {
  border: 1px dashed #e5e7eb;
  background: transparent;
  color: #94a3b8;
  font-size: 10px;
  padding: 2px 6px;
  border-radius: 6px;
  margin-left: 8px;
  cursor: pointer;
  line-height: 1;
}

.woocommerce ul.products li.product .carparts-copy-product-id:hover,
.woocommerce ul.products li.product .carparts-copy-product-id:focus {
  border-color: #e4002b;
  color: #e4002b;
}

.woocommerce ul.products li.product .carparts-copy-product-id.is-copied {
  border-color: #16a34a;
  color: #16a34a;
}

.woocommerce ul.products li.product .carparts-product-card-footer {
  flex: 1 1 auto;
  min-width: 0;
}

.woocommerce ul.products li.product .carparts-product-card-price .price,
.woocommerce ul.products li.product .carparts-product-card-price {
  color: #334155;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.woocommerce ul.products li.product .carparts-product-card-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.woocommerce ul.products li.product .carparts-product-card-price__gross {
  color: #334155;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.woocommerce ul.products li.product .carparts-product-card-price__net {
  color: #6A7282;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.2;
}

.woocommerce ul.products li.product .carparts-product-card-price__label {
  font-size: .85em;
  font-weight: 500;
}

@media (max-width: 767px) {
  .woocommerce ul.products li.product .carparts-product-card-price .price,
  .woocommerce ul.products li.product .carparts-product-card-price,
  .woocommerce ul.products li.product .carparts-product-card-price__gross {
    font-size: 12px;
  }

  .woocommerce ul.products li.product .carparts-product-card-price__net {
    font-size: 13px;
  }
}

.woocommerce ul.products.woo-archive-btn-button .product-action-wrap .button:not(.kb-button),
.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button) {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px;
  background: #e4002b !important;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  font-size: 0;
  line-height: 1;
}

.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button):hover {
  background: #c60025 !important;
}

.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button) .kadence-arrow-right-alt-svg,
.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button) .kadence-check-svg,
.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button) .kadence-spinner-svg {
  margin: 0;
}

.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button) .kadence-arrow-right-alt-svg {
  display: none !important;
}

.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button) .kadence-check-svg,
.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button) .kadence-spinner-svg {
  display: none;
}

.woocommerce ul.products li.product .product-action-wrap .button:not(.kb-button)::before {
  content: "";
  width: 20px;
  height: 20px;
  display: block;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m17.283 7.25c0-.414.336-.75.75-.75s.75.336.75.75v3c0 .414-.336.75-.75.75s-.75-.336-.75-.75z'/%3E%3Cpath fill='black' d='m13.283 7.25c0-.414.336-.75.75-.75s.75.336.75.75v3c0 .414-.336.75-.75.75s-.75-.336-.75-.75z'/%3E%3Cpath fill='black' d='m9.283 7.25c0-.414.336-.75.75-.75s.75.336.75.75v3c0 .414-.336.75-.75.75s-.75-.336-.75-.75z'/%3E%3Cpath fill='black' d='m19.033 17c1.518 0 2.75 1.232 2.75 2.75s-1.232 2.75-2.75 2.75-2.75-1.232-2.75-2.75 1.232-2.75 2.75-2.75zm0 1.5c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25z'/%3E%3Cpath fill='black' d='m9.533 17c1.518 0 2.75 1.232 2.75 2.75s-1.232 2.75-2.75 2.75-2.75-1.232-2.75-2.75 1.232-2.75 2.75-2.75zm0 1.5c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25z'/%3E%3Cpath fill='black' d='m2.033 3c-.414 0-.75-.336-.75-.75s.336-.75.75-.75h2.198c.82 0 1.53.57 1.708 1.37l2.478 11.151c.127.572.635.979 1.221.979h10.395c.414 0 .75.336.75.75s-.336.75-.75.75h-10.395c-1.289 0-2.405-.895-2.685-2.153l-2.478-11.151c-.025-.115-.127-.196-.244-.196z'/%3E%3Cpath fill='black' d='m20.358 12.073.832-7.073h-15.657c-.414 0-.75-.336-.75-.75s.336-.75.75-.75h15.938c.357 0 .697.153.934.419.237.267.349.623.307.977l-.888 7.549c-.067.575-.522 1.029-1.098 1.095l-12.607 1.455c-.411.048-.783-.248-.831-.659-.047-.411.248-.784.659-.831z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='black' d='m17.283 7.25c0-.414.336-.75.75-.75s.75.336.75.75v3c0 .414-.336.75-.75.75s-.75-.336-.75-.75z'/%3E%3Cpath fill='black' d='m13.283 7.25c0-.414.336-.75.75-.75s.75.336.75.75v3c0 .414-.336.75-.75.75s-.75-.336-.75-.75z'/%3E%3Cpath fill='black' d='m9.283 7.25c0-.414.336-.75.75-.75s.75.336.75.75v3c0 .414-.336.75-.75.75s-.75-.336-.75-.75z'/%3E%3Cpath fill='black' d='m19.033 17c1.518 0 2.75 1.232 2.75 2.75s-1.232 2.75-2.75 2.75-2.75-1.232-2.75-2.75 1.232-2.75 2.75-2.75zm0 1.5c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25z'/%3E%3Cpath fill='black' d='m9.533 17c1.518 0 2.75 1.232 2.75 2.75s-1.232 2.75-2.75 2.75-2.75-1.232-2.75-2.75 1.232-2.75 2.75-2.75zm0 1.5c-.69 0-1.25.56-1.25 1.25s.56 1.25 1.25 1.25 1.25-.56 1.25-1.25-.56-1.25-1.25-1.25z'/%3E%3Cpath fill='black' d='m2.033 3c-.414 0-.75-.336-.75-.75s.336-.75.75-.75h2.198c.82 0 1.53.57 1.708 1.37l2.478 11.151c.127.572.635.979 1.221.979h10.395c.414 0 .75.336.75.75s-.336.75-.75.75h-10.395c-1.289 0-2.405-.895-2.685-2.153l-2.478-11.151c-.025-.115-.127-.196-.244-.196z'/%3E%3Cpath fill='black' d='m20.358 12.073.832-7.073h-15.657c-.414 0-.75-.336-.75-.75s.336-.75.75-.75h15.938c.357 0 .697.153.934.419.237.267.349.623.307.977l-.888 7.549c-.067.575-.522 1.029-1.098 1.095l-12.607 1.455c-.411.048-.783-.248-.831-.659-.047-.411.248-.784.659-.831z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.woocommerce ul.products li.product .product-action-wrap .added_to_cart.wc-forward {
  position: absolute;
  right: 0;
  bottom: calc(100% + 6px);
  z-index: 2;
  margin: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--global-palette9);
  color: var(--global-palette4);
  border: 1px solid var(--global-palette7);
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none !important;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.08);
}

.woocommerce ul.products li.product .product-action-wrap .added_to_cart.wc-forward:hover,
.woocommerce ul.products li.product .product-action-wrap .added_to_cart.wc-forward:focus {
  background: var(--global-palette8);
  color: var(--global-palette4);
}

@media (max-width: 767px) {
  .woocommerce ul.products li.product .product-action-wrap .added_to_cart.wc-forward {
    bottom: calc(100% + 4px);
    padding: 5px 9px;
    font-size: 11px;
  }
}

@media (max-width: 768px) {
  .kt-repeater216_987b76-73 .wp-block-kadence-repeatertemplate {
    grid-template-columns: repeat(3, minmax(0, 1fr))!important;
}
}

/* === PRODUCT POSTMETA ON FRONT */
.carparts-under-atc {
  margin: 20px 0 18px;
  padding: 16px 18px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #fff;
}

.carparts-under-atc__status {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.carparts-under-atc__status-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  border-radius: 999px;
  position: relative;
  background: #2ca24c;
}

.carparts-under-atc__status-icon::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 4px;
  width: 5px;
  height: 9px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.carparts-under-atc__status.is-outofstock .carparts-under-atc__status-icon {
  background: #dc2626;
}

.carparts-under-atc__status.is-outofstock .carparts-under-atc__status-icon::after {
  left: 5px;
  top: 9px;
  width: 10px;
  height: 2px;
  border: 0;
  background: #fff;
  transform: none;
}

.carparts-under-atc__status-text {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  color: var(--global-palette4);
}

.carparts-under-atc__status-label {
  font-weight: 700;
}

.carparts-under-atc__status-sep {
  display: inline-block;
  color: #6b7280;
  font-weight: 500;
}

.carparts-under-atc__shipping {
  color: var(--global-palette4);
}

@media (max-width: 767px) {
  .carparts-under-atc__status {
    align-items: flex-start;
  }

  .carparts-under-atc__status-text {
    display: block;
    min-width: 0;
  }

  .carparts-under-atc__status-label {
    display: inline;
  }

  .carparts-under-atc__status-sep {
    display: none;
  }

  .carparts-under-atc__shipping {
    display: block;
    margin-top: 4px;
  }
}

.carparts-under-atc__list,
.carparts-product-data__list {
  margin: 0;
}

.carparts-under-atc__row,
.carparts-product-data__row {
  display: flex;
  gap: 10px;
  padding: 3px 0;
}

.carparts-under-atc__row dt,
.carparts-product-data__row dt {
  min-width: 110px;
  color: #4b5563;
}

.carparts-under-atc__row dd,
.carparts-product-data__row dd {
  margin: 0;
  color: var(--global-palette4);
}

.carparts-product-data code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(0,0,0,.04);
}

.carparts-single-price {
  display: flex;
  align-items: baseline;
  gap: 18px;
  flex-wrap: wrap;
  margin: 10px 0 6px;
}

.carparts-single-price__gross {
  color: #111827;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.1;
}

.carparts-single-price__net {
  color: var(--global-palette4);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
}

.carparts-single-price__label {
  font-size: .8em;
  font-weight: 500;
}

.carparts-single-price__vat {
  flex-basis: 100%;
  margin-top: -4px;
  color: #6A7282;
  font-size: 14px;
  line-height: 1.35;
}

/* === FOOTER === */
#footer-top a:hover {
  color: var(--global-palette1)!important;
}
.carparts-compact-pagination,
.woocommerce-pagination.carparts-compact-pagination {
  display: flex;
  justify-content: center;
}

.carparts-compact-pagination .page-numbers {
  justify-content: center;
}

/* === WOO NOTICES === */
.woocommerce-notices-wrapper {
  margin-bottom: 20px;
}

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

.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
  padding: 16px 18px;
  border: 1px solid var(--global-palette7);
  border-left: 4px solid var(--global-palette1);
  border-radius: 18px;
  background: var(--global-palette8);
  color: var(--global-palette4);
  box-shadow: none;
  line-height: 1.45;
}

.woocommerce-notices-wrapper .woocommerce-message {
  border-left-color: #16a34a;
}

.woocommerce-notices-wrapper .woocommerce-info {
  border-left-color: var(--global-palette2);
}

.woocommerce-notices-wrapper .woocommerce-error {
  border-left-color: #dc2626;
}

.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-info::before,
.woocommerce-notices-wrapper .woocommerce-error::before {
  position: static;
  margin-right: 8px;
  color: inherit;
  display: inline-flex;
  vertical-align: middle;
}

.woocommerce-notices-wrapper .woocommerce-message > :not(.button.wc-forward),
.woocommerce-notices-wrapper .woocommerce-info > :not(.button.wc-forward),
.woocommerce-notices-wrapper .woocommerce-error > :not(.button.wc-forward) {
  flex: 1 1 480px;
  min-width: 260px;
}

.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward,
.woocommerce-notices-wrapper .woocommerce-info .button.wc-forward,
.woocommerce-notices-wrapper .woocommerce-error .button.wc-forward {
  margin-left: auto;
  align-self: center;
  order: 2;
  margin: 0;
  padding: 10px 15px;
  border-radius: 999px;
  background: var(--global-palette1);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: none;
}

.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward:hover,
.woocommerce-notices-wrapper .woocommerce-info .button.wc-forward:hover,
.woocommerce-notices-wrapper .woocommerce-error .button.wc-forward:hover,
.woocommerce-notices-wrapper .woocommerce-message .button.wc-forward:focus,
.woocommerce-notices-wrapper .woocommerce-info .button.wc-forward:focus,
.woocommerce-notices-wrapper .woocommerce-error .button.wc-forward:focus {
  background: var(--global-palette2);
  color: #fff;
  text-decoration: none !important;
}

.woocommerce-notices-wrapper .woocommerce-error,
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
  list-style: none;
}

.woocommerce-notices-wrapper ul,
.woocommerce-notices-wrapper ol {
  margin: 0;
  padding: 0;
}

.woocommerce-notices-wrapper .woocommerce-error li,
.woocommerce-notices-wrapper .woocommerce-message li,
.woocommerce-notices-wrapper .woocommerce-info li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
  list-style: none;
}

.woocommerce-notices-wrapper .woocommerce-error li > :not(.button.wc-forward),
.woocommerce-notices-wrapper .woocommerce-message li > :not(.button.wc-forward),
.woocommerce-notices-wrapper .woocommerce-info li > :not(.button.wc-forward) {
  flex: 1 1 480px;
  min-width: 260px;
}

.woocommerce-notices-wrapper .woocommerce-error li .button.wc-forward,
.woocommerce-notices-wrapper .woocommerce-message li .button.wc-forward,
.woocommerce-notices-wrapper .woocommerce-info li .button.wc-forward {
  margin-left: auto;
  align-self: center;
  order: 2;
}

@media (max-width: 767px) {
  .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce-notices-wrapper .woocommerce-info,
  .woocommerce-notices-wrapper .woocommerce-error {
    display: block;
    padding: 8px 12px;
    font-size: 13px;
    line-height: 1.35;
  }

  .woocommerce-notices-wrapper .woocommerce-message .button.wc-forward,
  .woocommerce-notices-wrapper .woocommerce-info .button.wc-forward,
  .woocommerce-notices-wrapper .woocommerce-error .button.wc-forward {
    display: inline-flex;
    margin-top: 6px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .woocommerce-notices-wrapper .woocommerce-error li,
  .woocommerce-notices-wrapper .woocommerce-message li,
  .woocommerce-notices-wrapper .woocommerce-info li {
    display: block;
  }

  .woocommerce-notices-wrapper .woocommerce-error li .button.wc-forward,
  .woocommerce-notices-wrapper .woocommerce-message li .button.wc-forward,
  .woocommerce-notices-wrapper .woocommerce-info li .button.wc-forward {
    margin-top: 6px;
  }
}

@media (max-width: 1024px) {
  .header-mobile-cart-wrap .header-cart-button .header-cart-total {
    position: absolute !important;
    top: -6px !important;
    right: -8px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 18px !important;
    width: 18px !important;
    height: 18px !important;
    padding: 0 !important;
    border-radius: 999px !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  .header-mobile-cart-wrap .header-cart-button .header-cart-empty-check.header-cart-is-empty-true + .header-cart-total,
  .header-mobile-cart-wrap .header-cart-button .header-cart-total.header-cart-is-empty-true,
  .header-mobile-cart-wrap .header-cart-button .header-cart-total:empty {
    display: none !important;
  }
}


@media (max-width: 767px) {
  .woocommerce-cart .coupon button[name="apply_coupon"] {
    position: relative;
    min-width: 118px;
    color: transparent !important;
    text-shadow: none !important;
  }

  .woocommerce-cart .coupon button[name="apply_coupon"]::after {
    content: "Wykorzystaj";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    line-height: 1;
    color: var(--global-palette9, #fff);
  }
}

@media (max-width: 767px) {
  .wishlist_table .product-name a,
  .yith-wcwl-table .product-name a,
  .woocommerce table.shop_table.wishlist_table .product-name a {
    font-size: 16px;
    line-height: 1.3;
  }
}

@media (max-width: 767px) {
  .wishlist_table.mobile li .additional-info-wrapper .product-remove,
  .yith-wcwl-table.mobile li .additional-info-wrapper .product-remove {
    display: block;
    margin-top: 10px;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist,
  .yith-wcwl-table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #dc2626;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none !important;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist i,
  .yith-wcwl-table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist i {
    display: none;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist::before,
  .yith-wcwl-table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist::before {
    content: "×";
    font-size: 18px;
    line-height: 1;
  }

  .wishlist_table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist::after,
  .yith-wcwl-table.mobile li .additional-info-wrapper .product-remove .remove_from_wishlist::after {
    content: "Usuń produkt";
  }
}

@media (max-width: 767px) {
  .carparts-search-inner > .carparts-search-field,
  .carparts-header-bottom-bar .carparts-search-field,
  .carparts-mobile-search-panel .carparts-search-field,
  input.carparts-search-field[type="search"] {
    font-size: 16px !important;
  }
}

.carparts-header-top-bar__action--account:hover svg,
.carparts-header-top-bar__action--account:focus svg,
.carparts-header-top-bar__action--account:hover svg path,
.carparts-header-top-bar__action--account:focus svg path {
  color: #e4002b !important;
  fill: #e4002b !important;
}

@media (max-width: 1024px) {
  .carparts-mobile-search-toggle:hover,
  .carparts-mobile-search-toggle:focus,
  .carparts-mobile-wishlist:hover,
  .carparts-mobile-wishlist:focus,
  .header-mobile-account-in-wrap a:hover,
  .header-mobile-account-in-wrap a:focus,
  .header-mobile-cart-wrap .header-cart-button:hover,
  .header-mobile-cart-wrap .header-cart-button:focus,
  .cp-cat-trigger:hover,
  .cp-cat-trigger:focus {
    color: #e4002b !important;
    text-decoration: none !important;
  }

  .carparts-mobile-search-toggle:hover svg,
  .carparts-mobile-search-toggle:focus svg,
  .carparts-mobile-wishlist:hover svg,
  .carparts-mobile-wishlist:focus svg,
  .carparts-mobile-wishlist:hover svg path,
  .carparts-mobile-wishlist:focus svg path,
  .header-mobile-account-in-wrap a:hover svg,
  .header-mobile-account-in-wrap a:focus svg,
  .header-mobile-account-in-wrap a:hover svg path,
  .header-mobile-account-in-wrap a:focus svg path,
  .header-mobile-cart-wrap .header-cart-button:hover svg,
  .header-mobile-cart-wrap .header-cart-button:focus svg,
  .header-mobile-cart-wrap .header-cart-button:hover svg path,
  .header-mobile-cart-wrap .header-cart-button:focus svg path,
  .cp-cat-trigger:hover svg,
  .cp-cat-trigger:focus svg,
  .cp-cat-trigger:hover svg path,
  .cp-cat-trigger:focus svg path {
    color: #e4002b !important;
    fill: #e4002b !important;
  }
}

/* === SLIDER HOME === */
@media (min-width: 1550px) {
  .kb-splide .splide__arrow--next {
    right: -50px!important;
  }
  .kb-splide .splide__arrow--prev {
    left: -50px!important;
  }
}

.kb-splide .splide__arrow {
  background: none!important;
}

/* === PRODUCT SLIDER (HOME) === */
.carparts-product-slider {
  margin: 24px 0;
  position: relative;
  --carparts-slider-gap: 16px;
  --carparts-slider-edge: 56px;
  isolation: isolate;
  overflow: visible;
  padding: 0 var(--carparts-slider-edge);
  display: flex;
  flex-direction: column;
}

.carparts-product-slider__nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  gap: 8px;
  pointer-events: none;
  z-index: 25;
}

.carparts-product-slider__btn {
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #0f172a;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, transform 0.2s ease;
  pointer-events: auto;
  position: relative;
  font-size: 0;
  z-index: 26;
  box-shadow: none;
}

.carparts-product-slider__btn::before {
  content: '';
  width: 12px;
  height: 12px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  transform: translate(-50%, -50%) rotate(-135deg);
}

.carparts-product-slider__btn[data-slider-next]::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.carparts-product-slider__btn:hover,
.carparts-product-slider__btn:focus {
  color: #e4002b;
  transform: translateY(-1px);
  background: transparent;
  box-shadow: none;
}

.carparts-product-slider__btn:focus-visible {
  outline: 2px solid rgba(228, 0, 43, 0.35);
  outline-offset: 2px;
}

.carparts-product-slider__viewport {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
  overscroll-behavior-x: contain;
}

.carparts-product-slider__viewport::-webkit-scrollbar {
  display: none;
}

.carparts-product-slider__track {
  display: flex;
  gap: var(--carparts-slider-gap);
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.carparts-product-slider__item {
  flex: 0 0 calc((100% - (var(--carparts-slider-gap) * (var(--carparts-slider-cols-desktop) - 1))) / var(--carparts-slider-cols-desktop));
  margin: 0;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.carparts-product-slider li.product {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

.carparts-product-slider .product-details.entry-content-wrap {
  display: flex !important;
  flex-direction: column !important;
  flex: 1 1 auto !important;
}

.carparts-product-slider .product-action-wrap {
  margin-top: auto !important;
}

.carparts-product-slider .yith-wcwl-add-to-wishlist-button,
.carparts-product-slider .yith-wcwl-add-to-wishlist-button-over-image,
.carparts-product-slider .yith-wcwl-add-to-wishlist,
.carparts-product-slider .yith-wcwl-add-button {
  position: absolute !important;
  top: 8px !important;
  right: 8px !important;
  left: auto !important;
  bottom: auto !important;
  z-index: 40 !important;
  pointer-events: auto !important;
}
@media (max-width: 1024px) {
  .carparts-product-slider__item {
    flex-basis: calc((100% - (var(--carparts-slider-gap) * (var(--carparts-slider-cols-tablet) - 1))) / var(--carparts-slider-cols-tablet));
  }
}

@media (max-width: 768px) {
  .carparts-product-slider {
    --carparts-slider-edge: 0px;
    --carparts-slider-gap: 12px;
    --carparts-slider-cols-mobile: 2;
    padding: 0;
  }
  .carparts-product-slider__nav {
    position: static;
    transform: none;
    justify-content: center;
    gap: 16px;
    margin-top: 12px;
    order: 2;
    pointer-events: auto;
  }
  .carparts-product-slider__viewport {
    order: 1;
  }
  .carparts-product-slider__item {
    flex-basis: calc((100% - (var(--carparts-slider-gap) * (var(--carparts-slider-cols-mobile) - 1))) / var(--carparts-slider-cols-mobile));
  }
}

@media (max-width: 520px) {
  .carparts-product-slider {
    padding: 0;
  }
  .carparts-product-slider__btn {
    width: 26px;
    height: 26px;
  }
}

/* === form === */
.forminator-ui.forminator-custom-form[data-design="default"] .forminator-button {
  border-radius: 36px!important;
  padding: 14px 28px!important;
  font-weight: 600!important;
  font-size: 16px!important;
}

.forminator-ui.forminator-custom-form[data-design="default"] .forminator-button:active, .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button:focus, .forminator-ui.forminator-custom-form[data-design="default"] .forminator-button:hover {
  box-shadow: none!important;
}

/* === CONTACT FORM 7 === */
.wpcf7 {
  font-family: var(--global-body-font-family);
}

.wpcf7 .wpcf7-form {
  display: grid;
  gap: 14px;
}

.wpcf7 .wpcf7-form p {
  margin: 0;
}

.wpcf7 label {
  display: block;
  margin: 0 0 6px;
  font-weight: 600;
  font-size: 14px;
  color: var(--global-palette3);
}

.wpcf7 .wpcf7-form-control.wpcf7-text,
.wpcf7 .wpcf7-form-control.wpcf7-email,
.wpcf7 .wpcf7-form-control.wpcf7-tel,
.wpcf7 .wpcf7-form-control.wpcf7-url,
.wpcf7 .wpcf7-form-control.wpcf7-number,
.wpcf7 .wpcf7-form-control.wpcf7-date,
.wpcf7 .wpcf7-form-control.wpcf7-textarea,
.wpcf7 select.wpcf7-form-control {
  width: 100%;
  border: 1px solid var(--global-palette7);
  border-radius: 10px;
  background: var(--global-palette9);
  padding: 0.75rem 1rem;
  font-size: 15px;
  color: var(--global-palette3);
  outline: none;
  box-shadow: none;
}

.wpcf7 .wpcf7-form-control:focus {
  border-color: var(--global-palette1);
  box-shadow: 0 0 0 3px rgba(228, 0, 43, 0.15);
}

.wpcf7 .wpcf7-form-control::placeholder {
  color: var(--global-palette6);
}

.wpcf7 .wpcf7-list-item {
  margin: 0 16px 0 0;
}

.wpcf7 .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 16px;
  background: var(--global-palette1);
  color: var(--global-palette9);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.wpcf7 .wpcf7-submit:hover,
.wpcf7 .wpcf7-submit:focus {
  background: var(--global-palette2);
  box-shadow: none;
}

.wpcf7 .wpcf7-submit:active {
  transform: translateY(1px);
}

.wpcf7 .wpcf7-not-valid-tip {
  margin-top: 6px;
  font-size: 13px;
  color: #c1272d;
}

.wpcf7 .wpcf7-response-output {
  margin: 6px 0 0;
  padding: 12px 14px;
  border-radius: 10px;
  font-size: 14px;
}

.wpcf7 .wpcf7-mail-sent-ok,
.wpcf7 .wpcf7-acceptance-missing {
  border: 1px solid #2e7d32;
  background: rgba(46, 125, 50, 0.12);
  color: #1b5e20;
}

.wpcf7 .wpcf7-validation-errors,
.wpcf7 .wpcf7-spam-blocked,
.wpcf7 .wpcf7-aborted,
.wpcf7 .wpcf7-mail-sent-ng {
  border: 1px solid #c1272d;
  background: rgba(193, 39, 45, 0.12);
  color: #8a1d22;
}

@media (max-width: 640px) {
  .wpcf7 .wpcf7-form-control.wpcf7-text,
  .wpcf7 .wpcf7-form-control.wpcf7-email,
  .wpcf7 .wpcf7-form-control.wpcf7-tel,
  .wpcf7 .wpcf7-form-control.wpcf7-url,
  .wpcf7 .wpcf7-form-control.wpcf7-number,
  .wpcf7 .wpcf7-form-control.wpcf7-date,
  .wpcf7 .wpcf7-form-control.wpcf7-textarea,
  .wpcf7 select.wpcf7-form-control {
    padding: 0.65rem 0.9rem;
    font-size: 14px;
  }

  .wpcf7 .wpcf7-submit {
    width: 100%;
  }
}
