/* Prezlo interface: design tokens, disclosures, controls and panel headers. */

/* prezlo-design-system.css */
/*
 * Prezlo design system
 *
 * Shared tokens and component classes for the theme, WooCommerce views and
 * native WordPress blocks. Page-specific styles should consume these tokens
 * instead of introducing their own colors, radii or typography.
 */
:root {
  --prezlo-color-primary: var(--primary, #ee741d);
  --prezlo-color-ink: var(--dark, #171717);
  --prezlo-color-text: var(--text, #545454);
  --prezlo-color-muted: #68645f;
  --prezlo-color-surface: #fdfcfa;
  --prezlo-color-surface-strong: #f8f3ed;
  --prezlo-color-line: #e9e3dc;
  --prezlo-font-family: 'Poppins', sans-serif;
  --prezlo-radius-control: 10px;
  --prezlo-radius-card: 16px;
  --prezlo-radius-primary: 999px;
  --prezlo-shadow-card: 0 12px 32px rgba(48, 35, 24, 0.07);
  --prezlo-shadow-card-hover: 0 18px 44px rgba(48, 35, 24, 0.13);
  --prezlo-transition: 180ms ease;
}

.prezlo-ui,
.prezlo-ui :is(input, select, textarea),
.prezlo-link {
  font-family: var(--prezlo-font-family);
}

.prezlo-ui button,
.prezlo-button,
.prezlo-ui .wp-element-button {
  font-family: var(--prezlo-button-font-family, var(--prezlo-font-family));
}

body .tf-btn {
  font-family: var(--prezlo-button-font-family, var(--prezlo-font-family));
  font-weight: var(--prezlo-button-font-weight, 600);
  font-style: var(--prezlo-button-font-style, normal);
}

.prezlo-link,
.prezlo-ui .prezlo-link {
  color: var(--prezlo-color-ink);
  text-decoration-line: underline;
  text-decoration-color: color-mix(in srgb, var(--prezlo-color-primary) 58%, transparent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  transition:
    color var(--prezlo-transition),
    text-decoration-color var(--prezlo-transition);
}

.prezlo-link:hover,
.prezlo-link:focus-visible,
.prezlo-ui .prezlo-link:hover,
.prezlo-ui .prezlo-link:focus-visible {
  color: var(--prezlo-color-primary);
  text-decoration-color: currentColor;
}

.prezlo-button,
.prezlo-ui .wp-element-button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid transparent;
  border-radius: var(--prezlo-radius-control);
  font-size: 15px;
  font-weight: var(--prezlo-button-font-weight, 600);
  font-style: var(--prezlo-button-font-style, normal);
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition:
    color var(--prezlo-transition),
    background-color var(--prezlo-transition),
    border-color var(--prezlo-transition),
    box-shadow var(--prezlo-transition),
    transform var(--prezlo-transition);
}

.prezlo-button--primary,
.prezlo-ui .wp-block-button:not(.is-style-outline) .wp-element-button {
  border-radius: var(--prezlo-radius-primary);
  color: #fff;
  border-color: var(--prezlo-color-primary);
  background: var(--prezlo-color-primary);
}

.prezlo-button--secondary,
.prezlo-ui .wp-block-button.is-style-outline .wp-element-button {
  color: var(--prezlo-color-ink);
  border-color: var(--prezlo-color-line);
  background: var(--prezlo-color-surface);
}

.prezlo-button:hover,
.prezlo-button:focus-visible,
.prezlo-ui .wp-element-button:hover,
.prezlo-ui .wp-element-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(48, 35, 24, 0.13);
}

.prezlo-button--primary:hover,
.prezlo-button--primary:focus-visible,
.prezlo-ui .wp-block-button:not(.is-style-outline) .wp-element-button:hover,
.prezlo-ui .wp-block-button:not(.is-style-outline) .wp-element-button:focus-visible {
  color: #fff;
  background: color-mix(in srgb, var(--prezlo-color-primary) 86%, #000);
  border-color: color-mix(in srgb, var(--prezlo-color-primary) 86%, #000);
}

.prezlo-button--secondary:hover,
.prezlo-button--secondary:focus-visible,
.prezlo-ui .wp-block-button.is-style-outline .wp-element-button:hover,
.prezlo-ui .wp-block-button.is-style-outline .wp-element-button:focus-visible {
  color: var(--prezlo-color-primary);
  border-color: var(--prezlo-color-primary);
}

.prezlo-card {
  border: 1px solid var(--prezlo-color-line);
  border-radius: var(--prezlo-radius-card);
  background: #fff;
  box-shadow: var(--prezlo-shadow-card);
  transition:
    border-color var(--prezlo-transition),
    box-shadow var(--prezlo-transition),
    transform var(--prezlo-transition);
}

.prezlo-card--interactive:hover,
.prezlo-card--interactive:focus-within {
  border-color: color-mix(in srgb, var(--prezlo-color-primary) 55%, var(--prezlo-color-line));
  box-shadow: var(--prezlo-shadow-card-hover);
  transform: translateY(-3px);
}

.prezlo-ui :is(a, button, input, select, textarea):focus-visible,
.prezlo-button:focus-visible,
.prezlo-link:focus-visible {
  outline: 2px solid var(--prezlo-color-primary);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {
  .prezlo-ui *,
  .prezlo-button,
  .prezlo-link,
  .prezlo-card {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/*
 * iOS Safari zooms the page when a focused form control renders below 16px.
 * Keep native pinch-to-zoom available and remove only the unwanted focus zoom.
 */
@media (max-width: 767px) {
  :where(
    input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='color']),
    select,
    textarea
  ) {
    font-size: 16px !important;
  }
}

/* prezlo-expandable.css */
.prezlo-expandable {
  width: 100%;
}

.prezlo-expandable > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 12px 0;
  cursor: pointer;
  list-style: none;
  font: inherit;
  color: inherit;
}

.prezlo-expandable > summary::-webkit-details-marker {
  display: none;
}

.prezlo-expandable > summary > strong::before {
  content: '';
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-20%) rotate(45deg);
  transition: transform 0.2s ease;
}

.prezlo-expandable[open] > summary > strong::before {
  transform: translateY(20%) rotate(225deg);
}

.prezlo-expandable > summary > strong {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  white-space: nowrap;
  font: inherit;
  font-weight: 500;
}

.prezlo-customer-shipping-plan > summary::after {
  content: '';
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-20%) rotate(45deg);
  transition: transform 0.2s ease;
}

.prezlo-customer-shipping-plan[open] > summary::after {
  transform: translateY(20%) rotate(225deg);
}

.tf-page-cart-sidebar .cart_totals .shop_table .prezlo-expandable > summary {
  font-size: 15px;
  line-height: 1.4;
  font-weight: 400;
}

.tfwc-minicart-totals .prezlo-expandable > summary {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
}

.tfwc-minicart-totals .prezlo-minicart-delivery {
  margin: 0;
  padding: 0;
  border-bottom: 0;
}

.woocommerce-checkout-review-order-table .prezlo-expandable > summary,
.prezlo-order-financial-summary .prezlo-expandable > summary,
.list-total .prezlo-expandable > summary {
  font-size: 14px;
  line-height: 20px;
  font-weight: 400;
}

.prezlo-expandable .prezlo-checkout-delivery-breakdown__recipients,
.prezlo-expandable .prezlo-vat-rates,
.prezlo-expandable .prezlo-customer-shipping-plan__list {
  margin-top: 6px;
}

.prezlo-vat-rates-row > td,
.prezlo-cart-delivery-details > td {
  padding-top: 0;
  padding-bottom: 0;
}

.prezlo-order-delivery-breakdown,
.prezlo-order-delivery-summary > li:has(> .prezlo-expandable),
.prezlo-order-financial-summary > li:has(> .prezlo-expandable),
.list-total > li:has(> .prezlo-expandable) {
  display: block;
  width: 100%;
}

.woocommerce-view-order .prezlo-customer-shipping-plan--account {
  margin: 0 0 24px;
  padding: 0 0 24px;
  border: 0;
  border-bottom: 1px solid rgba(161, 161, 161, 0.2);
}

.woocommerce-view-order .prezlo-customer-shipping-plan--account > summary {
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
}

.woocommerce-view-order .prezlo-order-actual-delivery {
  display: block;
  width: 100%;
}

.woocommerce-view-order .prezlo-order-actual-delivery__heading {
  margin-bottom: 10px;
}

.woocommerce-view-order .prezlo-order-actual-delivery__details {
  width: 100%;
}

.woocommerce-view-order
  .prezlo-order-actual-delivery__details
  .prezlo-checkout-delivery-breakdown__recipients {
  gap: 10px;
}

.woocommerce-view-order .prezlo-order-invoice__row {
  align-items: center;
  gap: 18px;
}

.woocommerce-view-order .prezlo-order-invoice__message {
  max-width: 460px;
  color: var(--rgba-dark);
  line-height: 1.5;
  text-align: right;
}

.woocommerce-view-order .prezlo-order-invoice__download {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
  gap: 8px;
  color: var(--primary) !important;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.woocommerce-view-order .prezlo-order-invoice__download:hover,
.woocommerce-view-order .prezlo-order-invoice__download:focus {
  color: var(--dark) !important;
  text-decoration: underline;
}

.woocommerce-view-order .prezlo-order-invoice__download-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

/*
 * One financial-summary component used in every storefront context.
 * The DOM may be a table, list or div, but row height, spacing and separators
 * stay identical in mini-cart, cart, checkout, thank-you and My Account.
 */
.prezlo-summary {
  --prezlo-summary-line: rgba(161, 161, 161, 0.28);
  --prezlo-summary-font-size: 16px;
  --prezlo-summary-line-height: 24px;
  --prezlo-summary-row-padding: 6px;
  --prezlo-summary-divider-height: 41px;
  --prezlo-summary-total-size: 18px;
  color: #161616;
}

.prezlo-summary .prezlo-summary__rows,
.prezlo-summary.prezlo-order-financial-summary,
.prezlo-summary .prezlo-checkout-financial-summary {
  display: flex !important;
  flex-direction: column;
  gap: 0 !important;
}

.prezlo-summary .prezlo-summary__row {
  margin: 0 !important;
  border: 0 !important;
  color: inherit !important;
  font-size: var(--prezlo-summary-font-size) !important;
  line-height: var(--prezlo-summary-line-height) !important;
}

.prezlo-summary .prezlo-summary__row:not(tr) {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  min-height: 36px;
  padding: var(--prezlo-summary-row-padding) 0 !important;
}

.prezlo-summary .prezlo-summary__row > :first-child {
  font: inherit !important;
  font-weight: 400 !important;
}

.prezlo-summary .prezlo-summary__row > :last-child {
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  font: inherit !important;
  font-weight: 500 !important;
}

.prezlo-summary tr.prezlo-summary__row > th,
.prezlo-summary tr.prezlo-summary__row > td {
  min-height: 36px;
  padding: var(--prezlo-summary-row-padding) 0 !important;
  border: 0 !important;
  color: inherit !important;
  font-size: var(--prezlo-summary-font-size) !important;
  line-height: var(--prezlo-summary-line-height) !important;
}

.prezlo-summary tr.prezlo-summary__row > th {
  text-align: left;
  font-weight: 400 !important;
}

.prezlo-summary tr.prezlo-summary__row > td {
  text-align: right;
  white-space: nowrap;
  font-weight: 500 !important;
}

.prezlo-summary .prezlo-summary__details {
  display: block;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.prezlo-summary .prezlo-summary__details > summary {
  font-size: var(--prezlo-summary-font-size) !important;
  line-height: var(--prezlo-summary-line-height) !important;
  font-weight: 400 !important;
}

.prezlo-summary .prezlo-summary__details[open] > :not(summary) {
  margin-top: 2px !important;
  margin-bottom: 4px !important;
}

.prezlo-summary .prezlo-checkout-products-breakdown,
.prezlo-summary .prezlo-checkout-delivery-breakdown,
.prezlo-summary .prezlo-minicart-delivery,
.prezlo-summary .prezlo-vat-rates,
.prezlo-summary .prezlo-expandable--vat,
.prezlo-summary .prezlo-checkout-financial-summary,
.prezlo-summary .prezlo-order-delivery-breakdown,
.prezlo-summary > li:has(> .prezlo-summary__details) {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.prezlo-summary .tf-cart-totals-discounts,
.prezlo-summary .tf-cart-net,
.prezlo-summary .tf-cart-grand-total,
.prezlo-summary .prezlo-order-gross-total {
  margin: 0 !important;
  border: 0 !important;
}

/* Exactly one separator with exactly the same vertical rhythm everywhere. */
.prezlo-summary .prezlo-summary-divider:not(tr) {
  display: block !important;
  flex: 0 0 var(--prezlo-summary-divider-height);
  width: 100%;
  height: var(--prezlo-summary-divider-height);
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: linear-gradient(
    to bottom,
    transparent 20px,
    var(--prezlo-summary-line) 20px,
    var(--prezlo-summary-line) 21px,
    transparent 21px
  ) !important;
  list-style: none !important;
}

.prezlo-summary tr.prezlo-summary-divider,
.prezlo-summary tr.prezlo-summary-divider > td {
  height: var(--prezlo-summary-divider-height);
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

.prezlo-summary tr.prezlo-summary-divider > td {
  background: linear-gradient(
    to bottom,
    transparent 20px,
    var(--prezlo-summary-line) 20px,
    var(--prezlo-summary-line) 21px,
    transparent 21px
  ) !important;
}

.prezlo-summary .prezlo-summary__total,
.prezlo-summary .prezlo-summary__total > * {
  font-size: var(--prezlo-summary-total-size) !important;
  line-height: 28px !important;
  font-weight: 600 !important;
}

/* Remove borders and padding supplied by the original theme/plugin tables. */
.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .prezlo-cart-delivery-details > td,
.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .prezlo-vat-rates-row > td,
.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .prezlo-cart-net-total > th,
.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .prezlo-cart-net-total > td,
.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .order-total > th,
.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .order-total > td {
  padding-top: var(--prezlo-summary-row-padding) !important;
  padding-bottom: var(--prezlo-summary-row-padding) !important;
  border: 0 !important;
}

.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .prezlo-cart-delivery-details > td,
.tf-page-cart-sidebar .cart_totals .shop_table.prezlo-summary .prezlo-vat-rates-row > td {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.woocommerce-checkout-review-order-table.prezlo-summary .prezlo-checkout-financial-summary,
.woocommerce-view-order .order-box .prezlo-order-financial-summary,
.order-box .prezlo-order-financial-summary {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
}

.prezlo-order-financial-summary {
  margin-top: 22px !important;
  padding-top: 0 !important;
  border-top: 0 !important;
}

/* My Account: four readable, independent order sections. */
.woocommerce-view-order .prezlo-customer-order-sections {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.woocommerce-view-order .prezlo-order-section {
  width: 100%;
  margin: 0 !important;
  padding: 24px !important;
  border: 1px solid rgba(161, 161, 161, 0.22) !important;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.woocommerce-view-order .prezlo-order-section--details > .woocommerce-order-details__title,
.woocommerce-view-order .prezlo-order-section__summary,
.woocommerce-view-order .prezlo-order-section__title {
  font-family: var(--prezlo-heading-font-family, var(--prezlo-font-family));
  font-size: 18px !important;
  line-height: 28px !important;
  font-weight: 500 !important;
  letter-spacing: normal;
  color: var(--dark);
  text-rendering: optimizeLegibility;
}

.woocommerce-view-order .prezlo-order-section--details > .woocommerce-order-details__title {
  margin: 0 0 24px;
}

.woocommerce-view-order .prezlo-order-section--collapsible {
  overflow: hidden;
  padding: 0 !important;
}

.woocommerce-view-order .prezlo-order-section__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 52px;
  padding: 24px !important;
  list-style: none;
  cursor: pointer;
}

.woocommerce-view-order .prezlo-order-section__summary::-webkit-details-marker {
  display: none;
}

.woocommerce-view-order .prezlo-order-section__summary::after {
  content: '';
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-20%) rotate(45deg);
  transition: transform 0.2s ease;
}

.woocommerce-view-order
  .prezlo-order-section--collapsible[open]
  > .prezlo-order-section__summary::after {
  transform: translateY(20%) rotate(225deg);
}

.woocommerce-view-order .prezlo-order-section__body {
  padding: 0 24px !important;
}

.woocommerce-view-order .prezlo-order-section__body::after {
  content: '';
  display: block;
  height: 24px;
}

.woocommerce-view-order .prezlo-order-section--invoice,
.woocommerce-view-order .prezlo-order-section--payment {
  min-height: 56px;
}

.woocommerce-view-order .prezlo-order-section--payment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.woocommerce-view-order .prezlo-order-section__title {
  margin: 0;
}

.woocommerce-view-order .prezlo-order-section__value--price {
  flex: 0 0 auto;
  line-height: 28px;
  font-weight: 500;
  white-space: nowrap;
}

.woocommerce-view-order .prezlo-order-section--payment .prezlo-order-section__value {
  color: var(--primary);
}

@media (max-width: 1199px) {
  .woocommerce-order-received .tf-page-cart-sidebar {
    margin-top: 0;
  }
}

@media (max-width: 767px) {
  .prezlo-expandable > summary {
    gap: 10px;
  }

  .tf-page-cart-sidebar .cart_totals .shop_table .prezlo-expandable > summary {
    font-size: 14px;
  }

  .woocommerce-view-order .prezlo-order-invoice__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .woocommerce-view-order .prezlo-order-invoice__message {
    max-width: none;
    text-align: left;
  }

  .woocommerce-view-order .prezlo-order-invoice__download {
    width: auto;
    text-align: left;
  }

  .woocommerce-view-order .prezlo-order-section {
    padding: 18px !important;
    border-radius: 12px;
  }

  .woocommerce-view-order .prezlo-order-section--collapsible {
    padding: 0 !important;
  }

  .woocommerce-view-order .prezlo-order-section__summary {
    padding: 16px 18px !important;
  }

  .woocommerce-view-order .prezlo-order-section__body {
    padding: 0 18px !important;
  }

  .woocommerce-view-order .prezlo-order-section__body::after {
    height: 18px;
  }

  .woocommerce-view-order .prezlo-order-section--payment {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }
}

/* prezlo-refinements.css */
/* PREZLO defaults. Deliberately exclude disclosure, quantity, dialog and icon controls. */
/* Active navigation follows the brand token, not legacy customizer colors. */
body #mainnav > ul > li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor) > a,
body
  #mainnav
  ul.sub-menu
  > li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor)
  > a,
body #mainnav-mobi ul li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor) > a,
body .nav-ul-mb li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor) > a,
body .woocommerce-MyAccount-navigation .is-active > .my-account-nav-item {
  color: var(--primary);
}
body
  #mainnav
  > ul
  > li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor)
  > a::after,
body
  .nav-ul-mb
  li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor)
  > a
  .btn-open-sub::before,
body
  .nav-ul-mb
  li:is(.current-menu-item, .current-menu-parent, .current-menu-ancestor)
  > a
  .btn-open-sub::after {
  background-color: var(--primary);
}
body .woocommerce-MyAccount-navigation .is-active > .my-account-nav-item {
  background-color: #fff4eb;
  background-color: color-mix(in srgb, var(--primary) 8%, white);
}
/* PREZLO brand color: override the legacy root value without rewriting saved options. */
html:root {
  --primary: #ee741d !important;
  /* One predictable stacking scale for the whole storefront. */
  --prezlo-z-content: 1;
  --prezlo-z-dropdown: 1200;
  --prezlo-z-toolbar: 2000;
  --prezlo-z-header: 2100;
  --prezlo-z-backdrop: 9000;
  --prezlo-z-drawer: 9010;
  --prezlo-z-modal-backdrop: 9020;
  --prezlo-z-modal: 9030;
  --prezlo-z-cart: 9040;
}
/*
 * Interactive layer order:
 * page < dropdowns < mobile toolbar < sticky header < backdrop < drawer < cart.
 * The WordPress admin bar intentionally remains above these layers.
 */
body #header {
  z-index: var(--prezlo-z-header) !important;
}
body .tf-toolbar-bottom {
  z-index: var(--prezlo-z-toolbar) !important;
}
body .offcanvas-backdrop {
  z-index: var(--prezlo-z-backdrop) !important;
}
body
  :is(
    .offcanvas,
    #mobileMenu,
    #tfsearch,
    #filterShop,
    #mbAccount,
    .canvas-mb,
    .canvas-filter,
    .offcanvas-search
  ) {
  z-index: var(--prezlo-z-drawer) !important;
  pointer-events: auto;
}
body .modal-backdrop {
  z-index: var(--prezlo-z-modal-backdrop) !important;
}
body .modal {
  z-index: var(--prezlo-z-modal) !important;
}
body .modal-shopping-cart {
  z-index: var(--prezlo-z-cart) !important;
}
/* Safari on iPhone zooms the viewport when a focused form control is below 16px. */
@media (max-width: 767px) {
  body
    :is(
      input:not([type='checkbox']):not([type='radio']):not([type='range']):not([type='color']):not(
          [type='button']
        ):not([type='submit']):not([type='reset']),
      select,
      textarea
    ) {
    font-size: 16px !important;
  }
}
/* Keep product spacing consistent with the legacy responsive product bundles. */
body .flat-single-product {
  padding: 10px 0px 30px;
}
@media (max-width: 991px) {
  body .flat-single-product {
    padding: 10px 0px 0;
  }
}
/* Product bundles add spacing after the cart; keep it inside the main section only. */
body .tf-product-info-wrap .tf-product-info-heading {
  margin-bottom: 0;
  padding-bottom: 0;
}
@media (max-width: 991px) {
  body .flat-single-product .sticky-top {
    position: static !important;
    top: auto !important;
  }
}
/* CF7 owns visibility and live announcements; only style its validation summary. */
.wpcf7 form:is(.invalid, .unaccepted):has(.footer-newsletter) .wpcf7-response-output {
  box-sizing: border-box;
  margin: 18px 0 0;
  padding: 12px 14px;
  border: 1px solid #f0d3cd;
  border-inline-start: 3px solid #b42318;
  border-radius: 8px;
  background-color: #fff3f0;
  color: #8a2818;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.45;
  text-align: start;
  overflow-wrap: anywhere;
}
footer .footer-newsletter > p,
footer .footer-newsletter > p.mb-20 {
  font-size: 14px;
  line-height: 1.35;
}
/* 1.0.37: legal links, deterministic white ticks and unobtrusive form feedback. */
form.checkout #payment .woocommerce-terms-and-conditions-checkbox-text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 0.16em;
  text-decoration-thickness: 1px;
}
body
  :is(
    form.checkout #payment #terms,
    .prezlo-acceptance > input[type='checkbox'],
    .wpcf7 .prezlo-consent input[type='checkbox'],
    form.woocommerce-form-login input[name='rememberme']
  ) {
  appearance: none !important;
  -webkit-appearance: none !important;
  box-sizing: border-box;
  border: 1px solid #767676;
  border-radius: 2px;
  background-color: #fff;
  background-image: none;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
body
  :is(
    form.checkout #payment #terms,
    .prezlo-acceptance > input[type='checkbox'],
    .wpcf7 .prezlo-consent input[type='checkbox'],
    form.woocommerce-form-login input[name='rememberme']
  ):checked {
  border-color: var(--primary);
  background-color: var(--primary);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='m3 8 3.2 3.2L13 4.5' fill='none' stroke='white' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
body
  :is(
    form.checkout #payment #terms,
    .prezlo-acceptance > input[type='checkbox'],
    .wpcf7 .prezlo-consent input[type='checkbox'],
    form.woocommerce-form-login input[name='rememberme']
  ):focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
body
  :is(
    form.checkout #payment #terms,
    .prezlo-acceptance > input[type='checkbox'],
    .wpcf7 .prezlo-consent input[type='checkbox'],
    form.woocommerce-form-login input[name='rememberme']
  ):disabled {
  opacity: 0.55 !important;
  cursor: not-allowed;
}
#footer .footer-newsletter .subscribe-button,
#footer .footer-newsletter .subscribe-button *,
.wpcf7 .footer-newsletter .subscribe-button,
.wpcf7 .footer-newsletter .subscribe-button * {
  color: #fff;
}
.footer-newsletter .subscribe-button [fill]:not([fill='none']) {
  fill: currentColor;
}
.footer-newsletter .subscribe-button [stroke]:not([stroke='none']) {
  stroke: currentColor;
}
.wpcf7 .footer-newsletter .wpcf7-not-valid-tip {
  position: static;
  display: block;
  margin: 8px 0 0;
  padding: 0 2px;
  color: #b42318 !important;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}
.wpcf7 .footer-newsletter input.wpcf7-not-valid {
  border-color: #b42318;
}
.wpcf7 .footer-newsletter fieldset.email input[type='email'] {
  min-height: 56px;
  box-sizing: border-box;
  padding-inline-end: 64px;
}
.wpcf7 .footer-newsletter .form-newsletter .button-submit {
  top: 4px;
  right: 4px !important;
  transform: none;
}
.wpcf7 .footer-newsletter .button-submit > p {
  margin: 0;
}
.wpcf7 .footer-newsletter .subscribe-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
}
.woocommerce-account .woocommerce-MyAccount-content:has([name='prezlo_newsletter_account_action']) {
  line-height: 1.6;
}
.woocommerce-account
  .woocommerce-MyAccount-content:has([name='prezlo_newsletter_account_action'])
  > p {
  margin: 0 0 10px;
}
.woocommerce-account
  .woocommerce-MyAccount-content:has([name='prezlo_newsletter_account_action'])
  > h2 {
  margin-bottom: 18px;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  form:has([name='prezlo_newsletter_account_action']) {
  margin-top: 18px;
}
.woocommerce-account
  .woocommerce-MyAccount-content
  form:has([name='prezlo_newsletter_account_action'])
  > p {
  margin: 0 0 14px;
}
.woocommerce-account .woocommerce-MyAccount-content [name='prezlo_newsletter_account_action'] {
  margin-top: 4px;
  margin-inline-end: 8px;
}
@media (forced-colors: active) {
  /* Preserve system contrast preferences and the platform's accessible checkbox. */
  body
    :is(
      form.checkout #payment #terms,
      .prezlo-acceptance > input[type='checkbox'],
      .wpcf7 .prezlo-consent input[type='checkbox'],
      form.woocommerce-form-login input[name='rememberme']
    ) {
    appearance: auto !important;
    -webkit-appearance: auto !important;
    background-image: none !important;
    forced-color-adjust: auto;
  }
}
footer .footer-body,
footer .footer-bottom {
  background-color: var(--prezlo-footer-background, #fdfcfa);
}
body .tf-btn,
body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .wpcf7-submit,
body .footer-newsletter .subscribe-button,
body #place_order {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}
body .tf-btn > span,
body .footer-newsletter .subscribe-button > span {
  color: inherit;
}
body .tf-btn.bg-dark-2 {
  background-color: var(--primary) !important;
}
#footer a.tf-btn,
#footer .subscribe-button {
  color: white;
}
/* Identical hanging indent and native 16px inputs for Woo terms and PREZLO consent. */
form.checkout .woocommerce-terms-and-conditions-wrapper {
  margin: 0 0 12px;
}
form.checkout .woocommerce-terms-and-conditions-wrapper > .form-row {
  margin: 0;
  padding: 0;
}
form.checkout .woocommerce-terms-and-conditions-wrapper label.woocommerce-form__label-for-checkbox,
form.checkout #payment .prezlo-acceptance {
  position: relative;
  display: block !important;
  padding: 0 0 0 24px;
  font-size: inherit;
  line-height: 1.5;
  font-weight: 400;
  text-align: start;
}
form.checkout .woocommerce-terms-and-conditions-wrapper label.woocommerce-form__label-for-checkbox {
  margin: 0;
}
form.checkout #payment .prezlo-acceptance {
  margin: 0 0 24px;
}
form.checkout .woocommerce-terms-and-conditions-wrapper #terms,
form.checkout #payment .prezlo-acceptance > input[type='checkbox'] {
  position: absolute !important;
  inset-inline-start: 0;
  top: 0.25em;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  padding: 0;
  appearance: auto !important;
  opacity: 1 !important;
  accent-color: var(--primary);
}
form.checkout #payment .prezlo-acceptance__body {
  display: inline;
}
form.checkout #payment .prezlo-acceptance__body > label {
  margin: 0;
}
/* Four independent widget areas. Fractions consume exactly 100% including padding. */
footer .footer-body .row-footer.prezlo-footer-four {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
}
footer .footer-body .prezlo-footer-four > .footer-inner-wrap {
  grid-column: auto;
  display: block;
  width: auto;
  min-width: 0;
  box-sizing: border-box;
  padding: 24px 0 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  overflow-wrap: anywhere;
}
footer .prezlo-footer-four .footer-newsletter .subscribe-content {
  margin-right: 0;
}
@media (max-width: 1199px) {
  footer .footer-body,
  footer.footer-default .footer-body,
  footer.footer-style-2 .footer-body {
    padding-top: 0;
    padding-bottom: 0;
  }
  footer .footer-body .prezlo-footer-four > .footer-inner-wrap:last-child {
    border-bottom: 0;
  }
}
@media (min-width: 576px) and (max-width: 1199px) {
  footer .footer-body .row-footer.prezlo-footer-four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  footer .footer-body .prezlo-footer-four > .footer-inner-wrap {
    padding: 28px 20px;
  }
  footer .footer-body .prezlo-footer-four > .footer-inner-wrap:nth-child(odd) {
    border-inline-end: 1px solid var(--line);
  }
  footer .footer-body .prezlo-footer-four > .footer-inner-wrap:nth-last-child(-n + 2) {
    border-bottom: 0;
  }
}
@media (min-width: 1200px) {
  footer .footer-body .row-footer.prezlo-footer-four {
    grid-template-columns: minmax(0, var(--prezlo-footer-1, 25fr)) minmax(
        0,
        var(--prezlo-footer-2, 35fr)
      ) minmax(0, var(--prezlo-footer-3, 15fr)) minmax(0, var(--prezlo-footer-4, 25fr));
  }
  footer .footer-body .prezlo-footer-four > .footer-inner-wrap {
    padding: 60px clamp(16px, 2vw, 36px) 40px;
    border-bottom: 0;
    border-inline-end: 1px solid var(--line);
  }
  footer .footer-body .prezlo-footer-four > .footer-inner-wrap:first-child {
    padding-inline-start: 0;
  }
  footer .footer-body .prezlo-footer-four > .footer-inner-wrap:last-child {
    padding-inline-end: 0;
    border-inline-end: 0;
  }
}

/* Buyer-type radios keep their selection and validation semantics. */
form.checkout .prezlo-customer-type input[type='radio']:checked + label {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
}
form.checkout .prezlo-customer-type input[type='radio']:focus-visible + label {
  outline-color: var(--primary);
}
/* Mobile cards use existing Woo data-title labels; no template override. */
@media (max-width: 767px) {
  .woocommerce-account .woocommerce-MyAccount-content table.woocommerce-orders-table {
    display: block;
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100%;
    border: 0;
    margin-bottom: 20px;
  }
  .woocommerce-account table.woocommerce-orders-table > thead {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    white-space: nowrap;
  }
  .woocommerce-account table.woocommerce-orders-table > tbody {
    display: grid;
    gap: 14px;
    border: 0;
  }
  .woocommerce-account table.woocommerce-orders-table > tbody > tr {
    display: block;
    margin: 0;
    border: 1px solid var(--line, #e5e5e5);
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
  }
  .woocommerce-account table.woocommerce-orders-table > tbody > tr > :is(th, td) {
    position: relative;
    display: block;
    width: auto !important;
    min-width: 0;
    min-height: 44px;
    padding: 12px 16px 12px 38%;
    margin: 0;
    border: 0;
    border-bottom: 1px solid var(--line, #e5e5e5);
    text-align: right !important;
    white-space: normal !important;
    overflow-wrap: anywhere;
    font-size: 14px;
    line-height: 1.5;
    background: transparent;
  }
  .woocommerce-account table.woocommerce-orders-table > tbody > tr > :is(th, td)::before {
    content: attr(data-title);
    position: absolute;
    inset-inline-start: 16px;
    top: 12px;
    width: calc(38% - 28px);
    text-align: left;
    white-space: normal;
    font-weight: 500;
    color: #545454;
  }
  .woocommerce-account table.woocommerce-orders-table > tbody > tr > :last-child {
    border-bottom: 0;
  }
  .woocommerce-account
    table.woocommerce-orders-table
    .woocommerce-orders-table__cell-order-actions
    .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    max-width: 100%;
    margin: 0 0 6px 6px;
    padding: 8px 14px;
    white-space: normal;
  }
}

/* Formularz konfiguratora: natywne checkboxy używają koloru marki. */
.wapf-wrapper input[type='checkbox'] {
  accent-color: var(--primary);
}
/* Hover musi mieć ten sam priorytet co zapisane stare ustawienia menu. */
body #mainnav > ul > li:hover > a,
body #mainnav > ul > li > a:focus-visible,
body #mainnav ul.sub-menu > li > a:hover,
body #mainnav ul.sub-menu > li > a:focus-visible,
body #mainnav-mobi a:hover,
body #mainnav-mobi a:focus-visible,
body .nav-ul-mb a:hover,
body .nav-ul-mb a:focus-visible {
  color: var(--primary);
}
body #mainnav > ul > li:hover > a::after,
body #mainnav > ul > li > a:focus-visible::after {
  background-color: var(--primary);
}

/* The bottom toolbar is shown at the same breakpoint in responsive.css. */
@media (max-width: 1199px) {
  body:has(.tf-toolbar-bottom) #header :is(.nav-cart, .nav-account) {
    display: none !important;
  }
}
/* Bootstrap locks the body; also lock the root scroller, as for the mini-cart. */
html:has(#mobileMenu:is(.show, .showing, .hiding)),
body:has(#mobileMenu:is(.show, .showing, .hiding)) {
  overflow: hidden !important;
  overscroll-behavior: none;
}
#mobileMenu .mb-body {
  min-height: 0;
}

/* Search suggestions: fixed media box also for WooCommerce's placeholder. */
.tf-form-search .search-suggests-results-inner .search-result-item .img-box {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border-radius: 6px;
  background: #fdfcfa;
}
.tf-form-search .search-suggests-results-inner .search-result-item .img-box img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.tf-form-search .search-suggests-results-inner .search-result-item .box-content {
  min-width: 0;
  overflow-wrap: anywhere;
}
#tfsearch .prezlo-search-results-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
#tfsearch .prezlo-search-results-grid > :is(.tf-no-results, .no-results, .error) {
  grid-column: 1 / -1;
}
@media (max-width: 1199px) {
  #tfsearch .prezlo-search-results-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
  }
}
@media (max-width: 767px) {
  #tfsearch .prezlo-search-results-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Search categories replace popular terms on every viewport. */
#tfsearch .prezlo-search-categories {
  gap: 12px;
}
#tfsearch .prezlo-search-categories ul {
  margin: 0;
  padding: 0;
  gap: 10px;
}
#tfsearch .prezlo-search-categories li {
  list-style: none;
  max-width: 100%;
}
#tfsearch .prezlo-search-categories a {
  display: block;
  line-height: 1.4;
  overflow-wrap: anywhere;
}
body #header .form-search button[type='submit'],
body #tfsearch .form-search button[type='submit'] {
  background: transparent;
  color: #000;
  border-color: transparent;
}
body #header .nav-search .nav-icon-item {
  background: transparent;
  color: #000;
  border-radius: 50%;
}
@media (hover: hover) {
  body #header .form-search button[type='submit']:hover,
  body #tfsearch .form-search button[type='submit']:hover,
  body #header .nav-search .nav-icon-item:hover {
    background: transparent;
    color: var(--primary);
  }
}
body #header .form-search button[type='submit']:focus-visible,
body #tfsearch .form-search button[type='submit']:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}
@media (max-width: 767px) {
  body.woocommerce-checkout
    :is(#billing_country_field, #shipping_country_field)
    .select2-selection__rendered,
  body.woocommerce-checkout .prezlo-shipping-planner select {
    font-size: 16px !important;
  }
}
@media (max-width: 575px) {
  .footer-col-block.footer-inner-wrap h2 {
    margin-bottom: 0 !important;
  }
  .footer-col-block > .widget_block:nth-child(2) {
    margin-top: 20px;
  }
  .footer-col-block > .widget_block:nth-child(2) > .wp-block-group.tf-collapse-content {
    margin-top: 0 !important;
  }
}

body #header .form-search button[type='submit'],
body #tfsearch .form-search button[type='submit'] {
  min-width: 40px;
  min-height: 40px;
  border-radius: 999px;
}

body .tf-product-info-wrap .tf-product-info-heading .brands {
  margin-bottom: 0;
  padding: 0 2px 5px;
}

/* The bottom toolbar is the menu entry point below the desktop breakpoint. */
@media (max-width: 1199px) {
  body.header_sticky #header {
    position: relative !important;
    top: auto !important;
    transform: none !important;
  }
  #header .prezlo-header-toolbar-menu {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
  #header .prezlo-header-toolbar-menu > .prezlo-header-brand {
    grid-column: 2;
    width: auto;
    max-width: min(52vw, 240px);
  }
  #header .prezlo-header-toolbar-menu > .prezlo-header-actions {
    grid-column: 3;
    width: auto;
    min-width: 0;
    justify-self: end;
  }
  #header .prezlo-header-toolbar-menu .prezlo-header-brand img {
    max-width: 100%;
    height: auto;
  }
}

/* Checkout account controls follow the contact fields and the shared consent style. */
body .woocommerce-info {
  margin-bottom: 1em;
}
body form.checkout .prezlo-checkout-account {
  clear: both;
  margin: 0 0 16px;
}
body form.checkout .prezlo-checkout-account > p.create-account {
  margin: 0;
  padding: 0;
}
body form.checkout #prezlo-checkout-account-details {
  margin-top: 12px;
}
body form.checkout #prezlo-checkout-account-details .prezlo-acceptance {
  width: 100%;
  margin: 0 0 12px;
  padding: 0;
}

/* The legacy nth-child rules assume one field wrapper; full-width address rows do not. */
body form.checkout .woocommerce-billing-fields__field-wrapper > .form-row-wide {
  width: 100%;
  float: none;
  padding-left: 0;
  padding-right: 0;
}
body form.checkout .woocommerce-billing-fields__field-wrapper > .form-row-wide .tf-field-label {
  left: 12px;
}

/* Login and discount-code prompts use the same link style and pointer feedback. */
body .woocommerce-info a.showlogin,
body .woocommerce-info a.showcoupon {
  margin-left: 5px;
  text-decoration: none;
  cursor: pointer;
}

/* The terms error is already linked in the checkout summary; avoid a visual duplicate. */
body form.checkout #terms_description.checkout-inline-error-message {
  display: none;
}

/* Match checkout/account login persistence to the shared PREZLO checkboxes. */
body form.woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  cursor: pointer;
}
body form.woocommerce-form-login input[name='rememberme'] {
  flex: 0 0 16px;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  padding: 0;
  position: static;
  opacity: 1;
}

/* Preserve the cart checkout label's sentence case. */
body.woocommerce-cart .wc-proceed-to-checkout > .tf-btn {
  text-transform: none;
}

/* prezlo-panel-headers.css */
/* One header style for the menu, filters, mini-cart and account drawers. */
:is(#mobileMenu, #filterShop, #shoppingCart, #prezloAccountPanel) .prezlo-panel-header {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 0;
  padding: max(22px, env(safe-area-inset-top)) 28px 20px;
  border: 0;
  border-bottom: 1px solid var(--prezlo-color-line, #e9e3dc);
  background: var(--white, #fff);
  color: var(--prezlo-color-ink, #171717);
}
:is(#mobileMenu, #filterShop, #shoppingCart, #prezloAccountPanel) .prezlo-panel-header::after {
  display: none;
}
:is(#mobileMenu, #filterShop, #shoppingCart, #prezloAccountPanel) .prezlo-panel-title {
  min-width: 0;
  margin: 0;
  color: inherit;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.25;
  text-transform: none;
}
:is(#mobileMenu, #filterShop, #shoppingCart, #prezloAccountPanel) .prezlo-panel-close {
  display: inline-flex;
  position: static;
  align-items: center;
  justify-content: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--prezlo-color-line, #e9e3dc);
  border-radius: 50%;
  background: var(--prezlo-color-surface, #fdfcfa);
  color: var(--primary);
  font: inherit;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}
:is(#mobileMenu, #filterShop, #shoppingCart, #prezloAccountPanel) .prezlo-panel-close:hover {
  border-color: var(--primary);
}
:is(#mobileMenu, #filterShop, #shoppingCart, #prezloAccountPanel)
  .prezlo-panel-close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}
/* The heading replaces the old empty space reserved for the floating X. */
#mobileMenu .mb-canvas-content {
  flex: 1 1 auto;
  min-height: 0;
  height: auto;
  padding-top: 0;
}
#mobileMenu .mb-body {
  padding-top: 20px;
}
#filterShop .canvas-body {
  min-height: 0;
}
@media (max-width: 575px) {
  :is(#mobileMenu, #filterShop, #shoppingCart, #prezloAccountPanel) .prezlo-panel-header {
    padding-inline: 18px;
  }
}

/* Payment options use the same native control size as the terms checkbox. */
form.checkout #payment .wc_payment_methods > li { font-size: inherit; line-height: 1.5; }
form.checkout #payment .wc_payment_methods > li > .input-radio {
  appearance: auto; width: 16px; height: 16px; flex: 0 0 16px;
  padding: 0; margin: 0; accent-color: var(--primary); opacity: 1;
}
form.checkout #payment .wc_payment_methods > li > .input-radio::before { content: none; }
form.checkout #payment .wc_payment_methods > li > .input-radio:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
form.checkout #payment .wc_payment_methods > li > label { margin-inline-start: 8px; flex: 1; min-width: 0; cursor: pointer; font-size: inherit; }
.prezlo-search-pagination { width: 100%; }
.prezlo-search-pagination nav { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; padding: 12px 0; }
.prezlo-search-pagination button { border: 1px solid var(--line); border-radius: 6px; padding: 6px 12px; background: transparent; }
.prezlo-search-pagination a { width: 100%; }
.single-product .prezlo-product-taxonomy .prezlo-taxonomy-links a:hover,
.single-product .prezlo-product-taxonomy .prezlo-taxonomy-links a:focus-visible {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.single-product .prezlo-product-taxonomy.brands .prezlo-taxonomy-links a:hover,
.single-product .prezlo-product-taxonomy.brands .prezlo-taxonomy-links a:focus-visible { color: #545454; }
