/*
Theme Name: Centrum Techniczne
Theme URI: https://centrum-techniczne.eu
Description: Motyw potomny dla Blocksy przygotowany dla sklepu Centrum Techniczne.
Author: Centrum Techniczne
Template: blocksy
Version: 1.0.0
Text Domain: centrum-techniczne
*/


/* =========================================================
   01. SYSTEM PROJEKTOWY
========================================================= */

:root {
  --ct-bg: #f4f6f8;
  --ct-surface: #ffffff;
  --ct-surface-soft: #eef2f5;
  --ct-surface-warm: #f7f5f1;

  --ct-dark: #15191d;
  --ct-dark-soft: #1d2227;

  --ct-text: #171b20;
  --ct-text-soft: #4f5963;
  --ct-muted: #737e88;

  --ct-orange: #e86416;
  --ct-orange-dark: #c94e0b;
  --ct-orange-soft: rgba(232, 100, 22, 0.1);

  --ct-border: #dce2e7;
  --ct-border-dark: rgba(255, 255, 255, 0.12);

  --ct-success: #2f9e55;
  --ct-danger: #cf3f3f;

  --ct-shadow-sm: 0 8px 24px rgba(20, 27, 34, 0.07);
  --ct-shadow-md: 0 18px 48px rgba(20, 27, 34, 0.1);

  --ct-radius-sm: 6px;
  --ct-radius: 10px;
  --ct-radius-lg: 14px;

  --ct-container: 1380px;
}


/* =========================================================
   02. PODSTAWY
========================================================= */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ct-bg);
  color: var(--ct-text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

button,
input,
select,
textarea {
  font: inherit;
}

.ct-container {
  width: min(var(--ct-container), calc(100% - 48px));
  margin-inline: auto;
}

.ct-home {
  background: var(--ct-bg);
}


/* =========================================================
   03. TOPBAR
========================================================= */

.ct-topbar {
  background: #0d1013;
  border-bottom: 1px solid var(--ct-border-dark);
}

.ct-topbar__inner {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.ct-topbar p {
  margin: 0;
  color: #aeb5bc;
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

.ct-topbar__links {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ct-topbar__links a {
  color: #aeb5bc;
  font-size: 0.76rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ct-topbar__links a:hover {
  color: var(--ct-orange);
}


/* =========================================================
   04. HEADER
========================================================= */

.ct-site-header {
  position: relative;
  z-index: 1000;
  width: 100%;
  background: var(--ct-dark);
}

.ct-header-main {
  background: var(--ct-dark);
}

.ct-header-main__inner {
  min-height: 108px;
  display: grid;
  grid-template-columns: 280px minmax(320px, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.ct-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.ct-logo img {
  width: 255px;
  max-height: 84px;
  object-fit: contain;
}

/* =========================================================
   05. WYSZUKIWARKA HEADERA
========================================================= */

.ct-search {
  display: grid;
  grid-template-columns: 1fr 58px;
  min-height: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--ct-radius-sm);
  background: #ffffff;
}

.ct-search input[type="search"] {
  width: 100%;
  min-width: 0;
  padding: 0 20px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ct-text);
  font-size: 0.95rem;
}

.ct-search input[type="search"]::placeholder {
  color: #7e8790;
}

.ct-search button {
  display: grid;
  place-items: center;
  border: 0;
  background: var(--ct-orange);
  color: #ffffff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.ct-search button:hover {
  background: var(--ct-orange-dark);
}

.ct-search button svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   06. KONTO I KOSZYK
========================================================= */

.ct-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
}

.ct-header-action,
.ct-header-action:link,
.ct-header-action:visited {
  display: flex;
  align-items: center;
  gap: 12px;

  color: #ffffff;

  text-decoration: none;

  white-space: nowrap;

  -webkit-tap-highlight-color: rgba(232, 100, 22, 0.16);

  transition:
    color 0.2s ease,
    opacity 0.2s ease;
}

.ct-header-action__icon {
  position: relative;

  display: grid;
  place-items: center;

  width: 42px;
  height: 42px;

  flex: 0 0 42px;

  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;

  color: #ffffff;

  background: transparent;

  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease;
}

.ct-header-action__icon svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-header-action__text {
  display: flex;
  flex-direction: column;

  line-height: 1.15;
}

.ct-header-action__text small {
  margin-bottom: 4px;

  color: #aeb5bc;

  font-size: 0.7rem;
}

.ct-header-action__text strong {
  color: #ffffff;

  font-size: 0.84rem;
  font-weight: 700;
}


/* HOVER — ZERO NIEBIESKIEGO */

.ct-header-action:hover,
.ct-header-action:active {
  color: #ffffff;
}

.ct-header-action:hover .ct-header-action__icon,
.ct-header-action:active .ct-header-action__icon {
  border-color: var(--ct-orange);

  background: rgba(232, 100, 22, 0.09);

  color: var(--ct-orange);
}

.ct-header-action:hover .ct-header-action__text strong {
  color: var(--ct-orange);
}


/* Dostępny focus klawiatury */

.ct-header-action:focus {
  color: #ffffff;
  outline: none;
}

.ct-header-action:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--ct-orange);
  outline-offset: 5px;
}


/* LICZNIK KOSZYKA */

.ct-cart-count {
  position: absolute;

  top: -6px;
  right: -5px;

  display: grid;
  place-items: center;

  min-width: 19px;
  height: 19px;

  padding-inline: 5px;

  border-radius: 999px;

  background: var(--ct-orange);
  color: #ffffff;

  font-size: 0.68rem;
  font-weight: 800;
}
/* =========================================================
   07. NAWIGACJA
========================================================= */

.ct-main-nav {
  background: var(--ct-dark-soft);

  border-top: 1px solid var(--ct-border-dark);
  border-bottom: 1px solid var(--ct-border-dark);
}

.ct-main-nav__inner {
  min-height: 58px;

  display: grid;

  grid-template-columns: 245px 1fr auto;

  align-items: stretch;

  gap: 30px;
}


/* =========================================================
   WSZYSTKIE KATEGORIE
========================================================= */

.ct-category-button,
.ct-category-button:link,
.ct-category-button:visited,
.ct-category-button:hover,
.ct-category-button:focus,
.ct-category-button:active {
  display: flex;
  align-items: center;

  gap: 13px;

  padding: 0 22px;

  background: var(--ct-orange);

  color: #ffffff !important;

  font-size: 0.87rem;
  font-weight: 800;

  text-decoration: none !important;

  -webkit-tap-highlight-color: rgba(255, 255, 255, 0.12);
}

.ct-category-button {
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.ct-category-button:hover {
  background: var(--ct-orange-dark);
}

.ct-category-button:focus {
  outline: none;
}

.ct-category-button:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: -4px;
}

.ct-category-button__icon {
  display: flex;
  flex-direction: column;

  gap: 4px;
}

.ct-category-button__icon span {
  width: 18px;
  height: 2px;

  border-radius: 999px;

  background: #ffffff;
}


/* =========================================================
   LINKI MENU
========================================================= */

.ct-main-nav__links {
  display: flex;
  align-items: center;

  gap: 30px;
}

.ct-main-nav__links a,
.ct-main-nav__links a:link,
.ct-main-nav__links a:visited {
  position: relative;

  display: flex;
  align-items: center;

  height: 100%;

  color: #ffffff !important;

  font-size: 0.84rem;
  font-weight: 700;

  letter-spacing: 0.02em;

  text-decoration: none !important;

  -webkit-tap-highlight-color: rgba(232, 100, 22, 0.14);

  transition: color 0.2s ease;
}

.ct-main-nav__links a::after {
  content: "";

  position: absolute;

  left: 0;
  bottom: 0;

  width: 0;
  height: 2px;

  background: var(--ct-orange);

  transition: width 0.2s ease;
}

.ct-main-nav__links a:hover,
.ct-main-nav__links a:active {
  color: var(--ct-orange) !important;
}

.ct-main-nav__links a:hover::after,
.ct-main-nav__links a:focus-visible::after {
  width: 100%;
}

.ct-main-nav__links a:focus {
  outline: none;
}

.ct-main-nav__links a:focus-visible {
  color: var(--ct-orange) !important;
}


/* =========================================================
   TELEFON
========================================================= */

.ct-main-nav__phone,
.ct-main-nav__phone:link,
.ct-main-nav__phone:visited {
  display: flex;
  flex-direction: column;

  align-items: flex-end;
  justify-content: center;

  color: #ffffff;

  text-decoration: none;

  line-height: 1.15;

  -webkit-tap-highlight-color: rgba(232, 100, 22, 0.14);
}

.ct-main-nav__phone span {
  margin-bottom: 3px;

  color: #aeb5bc;

  font-size: 0.67rem;
}

.ct-main-nav__phone strong {
  color: var(--ct-orange);

  font-size: 0.84rem;
}

.ct-main-nav__phone:hover strong {
  color: #ffffff;
}

.ct-main-nav__phone:focus {
  outline: none;
}

.ct-main-nav__phone:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--ct-orange);
  outline-offset: 4px;
}
/* =========================================================
   08. WSPÓLNE ELEMENTY
========================================================= */

.ct-button {
  min-height: 52px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ct-radius-sm);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.ct-button:hover {
  transform: translateY(-2px);
}

.ct-button--primary {
  background: var(--ct-orange);
  color: #ffffff;
}

.ct-button--primary:hover {
  background: var(--ct-orange-dark);
}

.ct-button--secondary {
  border: 1px solid var(--ct-border);
  background: #ffffff;
  color: var(--ct-text);
}

.ct-button--secondary:hover {
  border-color: var(--ct-orange);
}

.ct-section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 38px;
}

.ct-section-heading__eyebrow {
  margin: 0 0 10px;
  color: var(--ct-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-section-heading h2 {
  margin: 0;
  color: var(--ct-text);
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.035em;
}

.ct-section-heading__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ct-text);
  font-size: 0.84rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
}

.ct-section-heading__link span {
  color: var(--ct-orange);
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.ct-section-heading__link:hover span {
  transform: translateX(4px);
}


/* =========================================================
   09. HERO — CIEMNY WARIANT
========================================================= */

.ct-hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      90deg,
      rgba(12, 14, 17, 0.98) 0%,
      rgba(12, 14, 17, 0.9) 36%,
      rgba(12, 14, 17, 0.35) 62%,
      rgba(12, 14, 17, 0.08) 100%
    ),
    url("https://centrum-techniczne.eu/wp-content/uploads/2026/07/hero.png")
    center center / cover no-repeat;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.ct-hero::before {
  display: none;
}

.ct-hero__inner {
  position: relative;
  z-index: 2;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
  align-items: center;
  gap: 64px;
  padding-block: 76px;
}

.ct-hero__content {
  position: relative;
  z-index: 3;
  max-width: 760px;
}

.ct-hero__eyebrow {
  margin: 0 0 20px;
  color: var(--ct-orange);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-hero h1 {
  max-width: 760px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.2rem, 5.6vw, 5.8rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.ct-hero__description {
  max-width: 650px;
  margin: 28px 0 0;
  color: #b8c0c7;
  font-size: 1.08rem;
  line-height: 1.75;
}

.ct-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.ct-hero .ct-button--primary {
  background: var(--ct-orange);
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(232, 100, 22, 0.22);
}

.ct-hero .ct-button--primary:hover {
  background: var(--ct-orange-dark);
}

.ct-hero .ct-button--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: #ffffff;
}

.ct-hero .ct-button--secondary:hover {
  border-color: var(--ct-orange);
  background: rgba(232, 100, 22, 0.08);
  color: #ffffff;
}

.ct-hero__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 48px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ct-hero__benefits div {
  position: relative;
  min-width: 0;
  padding: 22px 24px 22px 0;
}

.ct-hero__benefits div:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: 1px;
  background: rgba(255, 255, 255, 0.12);
}

.ct-hero__benefits strong,
.ct-hero__benefits span {
  display: block;
}

.ct-hero__benefits strong {
  margin-bottom: 6px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 800;
}

.ct-hero__benefits span {
  max-width: 220px;
  color: #8f9aa3;
  font-size: 0.74rem;
  line-height: 1.55;
}

.ct-hero__visual {
  display: none;
}


/* =========================================================
   10. KATEGORIE
========================================================= */

.ct-categories {
  padding: 92px 0;
  background: var(--ct-surface);
  border-bottom: 1px solid var(--ct-border);
}

.ct-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ct-category-card {
  position: relative;
  min-height: 250px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  background: var(--ct-surface);
  color: #ffffff;
  text-decoration: none;
  box-shadow: var(--ct-shadow-sm);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.ct-category-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(8, 12, 18, 0.02) 0%,
    rgba(8, 12, 18, 0.06) 42%,
    rgba(8, 12, 18, 0.42) 75%,
    rgba(8, 12, 18, 0.78) 100%
  );
}

.ct-category-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.ct-category-card__number,
.ct-category-card__content,
.ct-category-card__arrow {
  position: relative;
  z-index: 2;
}

.ct-category-card__icon {
  display: none;
}

.ct-category-card__content {
  margin-top: auto;
  padding-top: 90px;
  max-width: 85%;
}

.ct-category-card__content strong {
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.08rem;
}

.ct-category-card__content span {
  display: block;
  max-width: 310px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.78rem;
  line-height: 1.55;
}

.ct-category-card__number {
  color: rgba(255, 255, 255, 0.8);
}

.ct-category-card__arrow {
  position: absolute;
  right: 24px;
  bottom: 24px;
  color: var(--ct-orange);
  font-size: 1.2rem;
}

.ct-category-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 100, 22, 0.55);
  box-shadow: var(--ct-shadow-md);
}


/* =========================================================
   11. CIEMNY BANER PROMOCYJNY
========================================================= */

.ct-promo {
  padding: 18px 0 28px;
  background: #ffffff;
}

.ct-promo__inner {
  position: relative;
  min-height: 150px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  padding: 30px 42px;
  border-radius: 6px;
  background:
    linear-gradient(
      90deg,
      rgba(13, 14, 16, 0.98) 0%,
      rgba(13, 14, 16, 0.92) 38%,
      rgba(13, 14, 16, 0.4) 62%,
      rgba(13, 14, 16, 0.08) 100%
    ),
    url("https://centrum-techniczne.eu/wp-content/uploads/2026/07/baner.png")
    80% center / cover no-repeat;
  box-shadow: 0 12px 32px rgba(15, 17, 20, 0.15);
}

.ct-promo__content {
  position: relative;
  z-index: 3;
  max-width: 620px;
}

.ct-promo__eyebrow {
  display: none;
}

.ct-promo h2 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: clamp(1.55rem, 2.3vw, 2.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.ct-promo__content > p:not(.ct-promo__eyebrow) {
  max-width: 580px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.92rem;
  line-height: 1.5;
}

.ct-promo .ct-button--primary {
  min-height: 44px;
  padding: 0 22px;
  border-color: #ff6a00;
  color: #ffffff;
  background: #ff6a00;
  box-shadow: none;
}

.ct-promo .ct-button--primary:hover {
  border-color: #ffffff;
  color: #101113;
  background: #ffffff;
}

.ct-promo__visual {
  display: none;
}

.ct-promo__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(
      115deg,
      transparent 0%,
      transparent 55%,
      rgba(255, 255, 255, 0.035) 55.2%,
      transparent 70%
    );
}

.ct-promo__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 43%;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.25));
}


/* =========================================================
   12. MARKI
========================================================= */

.ct-brands {
  padding: 92px 0;
  background: var(--ct-surface);
  border-bottom: 1px solid var(--ct-border);
}

.ct-brand-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

.ct-brand-card {
  min-height: 150px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  background: var(--ct-surface);
  color: var(--ct-text);
  text-decoration: none;
  box-shadow: var(--ct-shadow-sm);
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    box-shadow 0.22s ease;
}

.ct-brand-card:hover {
  transform: translateY(-4px);
  border-color: rgba(232, 100, 22, 0.5);
  box-shadow: var(--ct-shadow-md);
}

.ct-brand-card__logo {
  display: block;
  max-width: 100%;
  max-height: 60px;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: left center;
}

.ct-brand-card__type {
  margin-top: 10px;
  color: var(--ct-muted);
  font-size: 0.78rem;
  line-height: 1.5;
}


/* =========================================================
   13. KARTY PRODUKTÓW WOOCOMMERCE
========================================================= */

.ct-products {
  padding: 92px 0;
  background: var(--ct-bg);
}

.ct-products ul.products,
.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0;
}

.ct-products ul.products::before,
.ct-products ul.products::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.ct-products ul.products li.product,
.woocommerce ul.products li.product {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ct-border);
  border-radius: var(--ct-radius);
  background: var(--ct-surface);
  box-shadow: var(--ct-shadow-sm);
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.ct-products ul.products li.product:hover,
.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  border-color: rgba(232, 100, 22, 0.55);
  box-shadow: var(--ct-shadow-md);
}

.ct-products ul.products li.product > a.woocommerce-LoopProduct-link,
.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: inherit;
  text-decoration: none;
}

.ct-products ul.products li.product img,
.woocommerce ul.products li.product img {
  width: 100%;
  height: 300px;
  margin: 0;
  padding: 22px;
  background: var(--ct-surface-warm);
  object-fit: contain;
  transition: transform 0.3s ease;
}

.ct-products ul.products li.product:hover img,
.woocommerce ul.products li.product:hover img {
  transform: scale(1.025);
}


/* Etykieta promocji */

.ct-products ul.products li.product .onsale,
.woocommerce ul.products li.product .onsale {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  right: auto;
  min-width: auto;
  min-height: auto;
  margin: 0;
  padding: 7px 10px;
  border-radius: 4px;
  background: var(--ct-orange);
  color: #ffffff;
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}


/* Marka produktu */

.ct-product-card__brand {
  display: block;
  margin: 20px 22px 0;
  color: var(--ct-orange);
  font-size: 0.65rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}


/* Nazwa produktu */

.ct-products ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  min-height: 76px;
  margin: 0;
  padding: 22px 22px 14px;
  color: var(--ct-text);
  font-size: 1rem;
  font-weight: 750;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.ct-product-card__brand + .woocommerce-loop-product__title {
  padding-top: 8px;
}


/* Cena */

.ct-products ul.products li.product .price,
.woocommerce ul.products li.product .price {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
  margin: auto 0 0;
  padding: 0 22px 18px;
  color: var(--ct-orange);
  font-size: 1.25rem;
  font-weight: 800;
}

.ct-products ul.products li.product .price del,
.woocommerce ul.products li.product .price del {
  color: var(--ct-muted);
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 1;
}

.ct-products ul.products li.product .price ins,
.woocommerce ul.products li.product .price ins {
  color: var(--ct-orange);
  text-decoration: none;
}


/* Przycisk */

.ct-products ul.products li.product .button,
.woocommerce ul.products li.product .button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  margin: 0 22px 22px;
  padding: 13px 18px;
  border: 1px solid var(--ct-orange);
  border-radius: var(--ct-radius-sm);
  background: var(--ct-orange);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.07em;
  text-align: center;
  text-transform: uppercase;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ct-products ul.products li.product .button:hover,
.woocommerce ul.products li.product .button:hover {
  background: var(--ct-orange-dark);
  color: #ffffff;
  transform: translateY(-1px);
}


/* Link po dodaniu do koszyka */

.ct-products ul.products li.product .added_to_cart,
.woocommerce ul.products li.product .added_to_cart {
  margin: -10px 22px 20px;
  color: var(--ct-text-soft);
  font-size: 0.74rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
}

.ct-products ul.products li.product .added_to_cart:hover,
.woocommerce ul.products li.product .added_to_cart:hover {
  color: var(--ct-orange);
}


/* Oceny ukryte do czasu zebrania opinii */

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


/* Jeden produkt tylko na stronie głównej */

.ct-products ul.products:has(li.product:only-child) {
  grid-template-columns: minmax(280px, 340px);
}

.ct-products ul.products li.product:only-child {
  max-width: 340px;
}


/* =========================================================
   14. PASEK KORZYŚCI
========================================================= */

.ct-benefits {
  padding: 38px 0;
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
}

.ct-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ct-benefit {
  position: relative;
  display: flex;
  align-items: center;
  gap: 22px;
  min-height: 100px;
  padding: 8px 32px;
}

.ct-benefit:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background: #e5e7eb;
}

.ct-benefit__icon {
  flex: 0 0 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #ea580c;
}

.ct-benefit__icon svg {
  display: block;
  width: 48px;
  height: 48px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ct-benefit h3 {
  margin: 0 0 7px;
  color: #16181d;
  font-size: 17px;
  line-height: 1.3;
  font-weight: 700;
}

.ct-benefit p {
  margin: 0;
  max-width: 210px;
  color: #626975;
  font-size: 14px;
  line-height: 1.55;
}


/* =========================================================
   15. CTA PRZED STOPKĄ
========================================================= */

.ct-footer-cta {
  padding: 74px 0;
  background: var(--ct-orange);
}

.ct-footer-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 42px;
}

.ct-footer-cta__content {
  max-width: 760px;
}

.ct-footer-cta__eyebrow {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ct-footer-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.ct-footer-cta p {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.7;
}

.ct-footer-cta .ct-button {
  flex: 0 0 auto;
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--ct-text);
}

.ct-footer-cta .ct-button:hover {
  border-color: var(--ct-dark);
  background: var(--ct-dark);
  color: #ffffff;
}


/* =========================================================
   16. STOPKA
========================================================= */

.ct-footer {
  background: var(--ct-dark);
  color: #ffffff;
}

.ct-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(3, minmax(150px, 1fr));
  gap: 54px;
  padding: 74px 0 58px;
}

.ct-footer__brand {
  max-width: 420px;
}

.ct-footer__brand img {
  width: 270px;
  max-height: 96px;
  margin-bottom: 24px;
  object-fit: contain;
  object-position: left center;
}

.ct-footer__brand p {
  margin: 0;
  color: #aeb5bc;
  font-size: 0.84rem;
  line-height: 1.75;
}

.ct-footer__column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.ct-footer__column h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ct-footer__column a,
.ct-footer__column span {
  color: #aeb5bc;
  font-size: 0.82rem;
  line-height: 1.5;
  text-decoration: none;
}

.ct-footer__column a + a,
.ct-footer__column a + span,
.ct-footer__column span + a {
  margin-top: 12px;
}

.ct-footer__column a {
  transition:
    color 0.2s ease,
    transform 0.2s ease;
}

.ct-footer__column a:hover {
  color: var(--ct-orange);
  transform: translateX(3px);
}

.ct-footer__bottom {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  border-top: 1px solid var(--ct-border-dark);
}

.ct-footer__bottom p {
  margin: 0;
  color: #7f8992;
  font-size: 0.72rem;
}

.ct-footer__bottom > div {
  display: flex;
  align-items: center;
  gap: 22px;
}

.ct-footer__bottom a {
  color: #7f8992;
  font-size: 0.72rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.ct-footer__bottom a:hover {
  color: var(--ct-orange);
}


/* =========================================================
   17. SKLEP — NAGŁÓWEK, WYSZUKIWARKA I FILTRY
========================================================= */

.ct-shop-page {
  background: #ffffff;
}

.ct-shop-hero {
  position: relative;
  overflow: hidden;
  padding: 70px 0 50px;
  background:
    radial-gradient(
      circle at 82% 15%,
      rgba(240, 93, 35, 0.08),
      transparent 30%
    ),
    #f7f8fa;
  border-bottom: 1px solid #e8eaed;
}

.ct-shop-hero__heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.ct-shop-hero__eyebrow {
  margin: 0 0 12px;
  color: var(--ct-orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ct-shop-hero__heading h1 {
  margin: 0;
  color: #17202a;
  font-size: clamp(38px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: -0.04em;
}

.ct-shop-hero__heading > p:last-child {
  max-width: 660px;
  margin: 18px 0 0;
  color: #69727d;
  font-size: 16px;
  line-height: 1.65;
}

.ct-shop-filter {
  overflow: hidden;
  width: 100%;
  border: 1px solid #e1e5e9;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 35px rgba(20, 30, 40, 0.07);
}

.ct-shop-filter__search {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px;
  gap: 12px;
  padding: 24px 24px 18px;
}

.ct-shop-filter__search input[type="search"] {
  width: 100%;
  height: 58px;
  padding: 0 20px;
  border: 1px solid #dce1e6;
  border-radius: 10px;
  background: #ffffff;
  color: #17202a;
  font-size: 15px;
  outline: none;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.ct-shop-filter__search input[type="search"]:focus {
  border-color: var(--ct-orange);
  box-shadow: 0 0 0 3px rgba(232, 100, 22, 0.09);
}

.ct-shop-filter__search button {
  height: 58px;
  padding: 0 25px;
  border: 0;
  border-radius: 10px;
  background: var(--ct-orange);
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.ct-shop-filter__search button:hover {
  background: var(--ct-orange-dark);
  transform: translateY(-1px);
}

.ct-shop-filter__fields {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 0 24px 24px;
}

.ct-shop-filter__fields label {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.ct-shop-filter__fields label > span {
  color: #69727d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ct-shop-filter__fields select {
  width: 100%;
  height: 54px;
  padding: 0 14px;
  border: 1px solid #dce1e6;
  border-radius: 10px;
  background-color: #ffffff;
  color: #17202a;
  font-size: 14px;
  outline: none;
  cursor: pointer;
}

.ct-shop-filter__fields select:focus {
  border-color: var(--ct-orange);
}

.ct-shop-filter__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 18px 24px;
  border-top: 1px solid #e8eaed;
  background: #fbfcfd;
}

.ct-shop-filter__brands {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 9px;
}

.ct-shop-filter__brands > span {
  margin-right: 4px;
  color: #69727d;
  font-size: 12px;
  font-weight: 600;
}

.ct-shop-filter__brands a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #dfe3e7;
  border-radius: 7px;
  background: #ffffff;
  color: #26313c;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.ct-shop-filter__brands a:hover {
  border-color: var(--ct-orange);
  color: var(--ct-orange);
  transform: translateY(-1px);
}

.ct-shop-filter__clear {
  flex: 0 0 auto;
  color: var(--ct-orange);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
}

.ct-shop-filter__clear:hover {
  color: var(--ct-orange-dark);
}


/* =========================================================
   18. SKLEP — LISTA PRODUKTÓW
========================================================= */

.ct-shop-products {
  padding: 45px 0 80px;
  background: #ffffff;
}

.ct-shop-products__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e8eaed;
}

.ct-shop-products__toolbar .woocommerce-result-count {
  margin: 0;
  color: #69727d;
  font-size: 13px;
}

.ct-shop-products__toolbar .woocommerce-ordering {
  margin: 0;
}

.ct-shop-products__toolbar select {
  min-width: 220px;
  height: 46px;
  padding: 0 14px;
  border: 1px solid #dce1e6;
  border-radius: 9px;
  background: #ffffff;
  color: #26313c;
}


/* =========================================================
   19. RESPONSYWNOŚĆ — TABLET
========================================================= */

@media (max-width: 1100px) {

  .ct-header-main__inner {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 24px;
  }

 

  .ct-main-nav__inner {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .ct-main-nav__phone {
    display: none;
  }

  .ct-hero__inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .ct-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-products ul.products,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ct-footer__top {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ct-benefit {
    padding: 24px 30px;
  }

  .ct-benefit:nth-child(2)::after {
    display: none;
  }

  .ct-benefit:nth-child(-n + 2) {
    border-bottom: 1px solid #e5e7eb;
  }

}


/* =========================================================
   20. RESPONSYWNOŚĆ — SKLEP / TABLET
========================================================= */

@media (max-width: 1000px) {

  .ct-shop-hero {
    padding: 55px 0 40px;
  }

  .ct-shop-filter__fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}


/* =========================================================
   21. RESPONSYWNOŚĆ — TELEFON
========================================================= */

@media (max-width: 768px) {

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .ct-container {
    width: calc(100% - 32px);
    max-width: none;
  }

  .ct-topbar {
    display: none;
  }


  /* HEADER */

  .ct-header-main__inner {
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    padding: 18px 0;
  }

  .ct-logo {
    justify-content: flex-start;
  }

  .ct-logo img {
    width: min(290px, 82vw);
    max-height: 88px;
  }

  .ct-search {
    width: 100%;
    min-width: 0;
    grid-template-columns: minmax(0, 1fr) 52px;
  }

  .ct-search input[type="search"] {
    min-width: 0;
    padding: 0 14px;
  }

  .ct-header-actions {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 10px;

  width: 100%;
}

.ct-header-action {
  min-width: 0;

  padding: 12px 14px;

  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;

  background: rgba(255, 255, 255, 0.035);
}

.ct-header-action__icon {
  width: 38px;
  height: 38px;

  flex-basis: 38px;
}

.ct-header-action__text {
  min-width: 0;
}

.ct-header-action__text small {
  display: block;

  font-size: 0.62rem;
}

.ct-header-action__text strong {
  max-width: 100%;

  overflow: hidden;

  font-size: 0.74rem;

  text-overflow: ellipsis;
  white-space: nowrap;
}


  /* MENU */

  .ct-main-nav {
    width: 100%;
    overflow: hidden;
  }

  .ct-main-nav__inner {
    min-height: auto;
    display: block;
    width: 100%;
  }

  .ct-category-button {
    width: 100%;
    min-height: 58px;
    justify-content: flex-start;
    padding: 0 20px;
  }

  .ct-main-nav__links,
  .ct-main-nav__phone {
    display: none;
  }


  /* HERO */

  .ct-hero__inner {
    min-height: auto;
    display: block;
    width: 100%;
    padding: 52px 0;
  }

  .ct-hero__content {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .ct-hero__eyebrow {
    max-width: 100%;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    white-space: normal;
  }

  .ct-hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.7rem);
    line-height: 1.02;
    overflow-wrap: normal;
    word-break: normal;
    hyphens: none;
  }

  .ct-hero__description {
    width: 100%;
    max-width: 100%;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .ct-hero__actions {
    flex-direction: column;
  }

  .ct-hero__actions .ct-button {
    width: 100%;
  }

  .ct-hero__benefits {
    grid-template-columns: 1fr;
  }

  .ct-hero__benefits div {
    width: 100%;
    padding: 18px 0;
  }

  .ct-hero__benefits div:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }


  /* SEKCJE */

  .ct-categories,
  .ct-brands,
  .ct-products,
  .ct-promo {
    padding: 60px 0;
  }

  .ct-section-heading {
    display: block;
    margin-bottom: 28px;
  }

  .ct-section-heading h2 {
    max-width: 100%;
    font-size: clamp(2rem, 9vw, 3rem);
    line-height: 1.05;
  }

  .ct-section-heading__link {
    margin-top: 18px;
  }

  .ct-category-grid {
    grid-template-columns: 1fr;
  }


  /* PRODUKTY */

  .ct-products ul.products,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ct-products ul.products li.product img,
  .woocommerce ul.products li.product img {
    height: 210px;
    padding: 15px;
  }

  .ct-products ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .woocommerce-loop-product__title {
    min-height: auto;
    padding: 15px 15px 10px;
    font-size: 0.88rem;
  }

  .ct-products ul.products li.product .price,
  .woocommerce ul.products li.product .price {
    padding: 0 15px 14px;
    font-size: 1rem;
  }

  .ct-products ul.products li.product .button,
  .woocommerce ul.products li.product .button {
    min-height: 46px;
    margin: 0 15px 15px;
    padding: 11px 8px;
    font-size: 0.65rem;
  }


  /* BANER */

  .ct-promo {
    padding: 14px 0 24px;
  }

  .ct-promo__inner {
    min-height: auto;
    display: block;
    padding: 30px 24px;
  }

  .ct-promo h2 {
    max-width: 100%;
    font-size: clamp(1.8rem, 8vw, 2.5rem);
  }

  .ct-promo__content > p:not(.ct-promo__eyebrow) {
    max-width: 100%;
  }


  /* PASEK KORZYŚCI */

  .ct-benefits {
    padding: 12px 0;
  }

  .ct-benefits__grid {
    grid-template-columns: 1fr;
  }

  .ct-benefit {
    min-height: auto;
    padding: 22px 8px;
  }

  .ct-benefit:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
  }

  .ct-benefit:nth-child(2)::after {
    display: block;
  }

  .ct-benefit:nth-child(-n + 2) {
    border-bottom: 0;
  }

  .ct-benefit__icon {
    flex-basis: 48px;
    width: 48px;
    height: 48px;
  }

  .ct-benefit__icon svg {
    width: 42px;
    height: 42px;
  }


  /* STOPKA */

  .ct-footer__top {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 52px 0 40px;
  }

  .ct-footer__brand {
    max-width: 100%;
  }

  .ct-footer__brand img {
    width: min(260px, 78vw);
  }

  .ct-footer__bottom {
    min-height: auto;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 0;
  }

  .ct-footer__bottom > div {
    flex-wrap: wrap;
  }

}


/* =========================================================
   22. RESPONSYWNOŚĆ — SKLEP / TELEFON
========================================================= */

@media (max-width: 650px) {

  .ct-shop-hero {
    padding: 38px 0 28px;
  }

  .ct-shop-hero__heading {
    margin-bottom: 24px;
  }

  .ct-shop-hero__heading h1 {
    font-size: 36px;
  }

  .ct-shop-filter__search {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .ct-shop-filter__fields {
    grid-template-columns: 1fr;
    padding: 0 16px 16px;
  }

  .ct-shop-filter__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px;
  }

  .ct-shop-products {
    padding: 30px 0 55px;
  }

  .ct-shop-products__toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .ct-shop-products__toolbar select {
    width: 100%;
  }

}


/* =========================================================
   23. MAŁE TELEFONY
========================================================= */

@media (max-width: 480px) {

  .ct-container {
    width: calc(100% - 24px);
  }

  .ct-logo img {
    width: min(250px, 78vw);
  }

  .ct-products ul.products,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .ct-category-card {
    min-height: 250px;
  }

  .ct-brand-grid {
    grid-template-columns: 1fr;
  }

}
/* =========================================================
   24. POJEDYNCZY PRODUKT — FINAL
========================================================= */

.single-product {
  background: #ffffff;
}

.single-product .ct-single-product {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 42px 0 82px;
}


/* =========================================================
   GÓRA — GALERIA + KARTA PRODUKTU
========================================================= */

.single-product .ct-single-product__main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr);
  gap: 58px;
  align-items: start;
}


/* =========================================================
   GALERIA
========================================================= */

.single-product .ct-single-product__gallery {
  min-width: 0;
}

.single-product .ct-product-gallery {
  width: 100%;
}

.single-product .ct-product-gallery__main {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 520px;
  padding: 34px;

  overflow: hidden;

  border: 1px solid #e1e5e9;
  border-radius: 12px;

  background: #ffffff;
}

.single-product .ct-product-gallery__main-image {
  display: block;

  width: auto !important;
  height: auto !important;

  max-width: 100% !important;
  max-height: 455px !important;

  margin: 0 auto;

  object-fit: contain;
}


/* Miniatury */

.single-product .ct-product-gallery__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 12px;
}

.single-product .ct-product-gallery__thumb {
  width: 76px;
  height: 76px;

  padding: 6px;

  border: 1px solid #dfe4e8;
  border-radius: 7px;

  background: #ffffff;

  cursor: pointer;

  opacity: 0.72;

  transition:
    border-color 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.single-product .ct-product-gallery__thumb:hover {
  border-color: var(--ct-orange);
  opacity: 1;
  transform: translateY(-1px);
}

.single-product .ct-product-gallery__thumb.is-active {
  border-color: var(--ct-orange);
  opacity: 1;
}

.single-product .ct-product-gallery__thumb img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* =========================================================
   PRAWA KARTA
========================================================= */

.single-product .ct-single-product__summary {
  width: 100% !important;
  max-width: none !important;

  float: none !important;

  margin: 0 !important;
  padding: 30px 32px !important;

  border: 1px solid #e1e5e9;
  border-radius: 10px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(20, 27, 34, 0.055);
}


/* =========================================================
   TYTUŁ
========================================================= */

.single-product .ct-single-product__summary .product_title {
  max-width: 620px;

  margin: 0 0 16px !important;

  color: #171b20;

  font-size: clamp(26px, 2.3vw, 36px);
  font-weight: 750;
  line-height: 1.14;

  letter-spacing: -0.025em;
}


/* =========================================================
   CENA
========================================================= */

.single-product .ct-single-product__summary .price {
  display: block;

  margin: 0 0 22px !important;
  padding-bottom: 20px;

  border-bottom: 1px solid #e7eaed;

  color: var(--ct-orange) !important;

  font-size: 29px !important;
  font-weight: 800 !important;
  line-height: 1.1;
}

.single-product .ct-single-product__summary .price ins {
  color: var(--ct-orange) !important;
  text-decoration: none;
}

.single-product .ct-single-product__summary .price del {
  margin-right: 9px;

  color: #8a939c !important;

  font-size: 17px;
  font-weight: 500;

  opacity: 1;
}


/* =========================================================
   KRÓTKI OPIS
========================================================= */

.single-product
.ct-single-product__summary
.woocommerce-product-details__short-description {
  margin: 0 0 22px;

  color: #535d66;

  font-size: 15px;
  line-height: 1.72;
}

.single-product
.ct-single-product__summary
.woocommerce-product-details__short-description p {
  margin: 0 0 12px;
}

.single-product
.ct-single-product__summary
.woocommerce-product-details__short-description p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   KOSZYK — LICZNIK + PRZYCISK WYŚRODKOWANE
========================================================= */

.single-product .ct-single-product__summary form.cart {
  display: flex !important;
  align-items: center;
  justify-content: center;

  gap: 12px;

  width: 100%;

  margin: 0 !important;
  padding: 20px 0;

  border-top: 1px solid #edf0f2;
}

.single-product
.ct-single-product__summary
form.cart .quantity {
  flex: 0 0 108px;

  width: 108px !important;

  margin: 0 !important;
}

.single-product
.ct-single-product__summary
form.cart .quantity input.qty {
  width: 100% !important;

  height: 48px !important;
  min-height: 48px !important;

  margin: 0 !important;

  border: 1px solid #d9dee3;
  border-radius: 5px;

  background: #ffffff;

  color: #171b20;

  font-size: 14px;
  font-weight: 700;

  text-align: center;
}

.single-product
.ct-single-product__summary
form.cart .single_add_to_cart_button {
  flex: 0 0 auto;

  width: auto !important;
  min-width: 220px;

  height: 48px !important;
  min-height: 48px !important;

  margin: 0 !important;
  padding: 0 24px !important;

  border: 0 !important;
  border-radius: 5px !important;

  background: var(--ct-orange) !important;

  color: #ffffff !important;

  box-shadow: none !important;

  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 48px !important;

  letter-spacing: 0.055em;

  text-transform: uppercase;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.single-product
.ct-single-product__summary
form.cart .single_add_to_cart_button:hover {
  background: var(--ct-orange-dark) !important;

  color: #ffffff !important;

  transform: translateY(-1px);
}


/* =========================================================
   SKU / KATEGORIA / MARKA — LEKKI PASEK
========================================================= */

.single-product .ct-single-product__summary .product_meta {
  display: flex;
  flex-wrap: wrap;

  gap: 7px 18px;

  margin: 0 !important;
  padding: 15px 0 0;

  border: 0;
  border-top: 1px solid #edf0f2;

  background: transparent;

  color: #8a939c;

  font-size: 10px;
  line-height: 1.55;

  letter-spacing: 0.045em;

  text-transform: uppercase;
}

.single-product
.ct-single-product__summary
.product_meta > span {
  display: inline-flex;
  align-items: baseline;

  margin: 0;
}

.single-product
.ct-single-product__summary
.product_meta a {
  margin-left: 4px;

  color: #4f5963;

  font-weight: 700;

  text-decoration: none;
}

.single-product
.ct-single-product__summary
.product_meta a:hover {
  color: var(--ct-orange);
}


/* =========================================================
   DOLNA SEKCJA PRODUKTU
========================================================= */

.single-product .ct-single-product__details {
  width: 100%;

  margin-top: 62px;
}


/* =========================================================
   ZAKŁADKI + OPIS PRODUKTU — FINAL
========================================================= */


/* =========================================================
   GŁÓWNA KARTA
========================================================= */

.single-product .woocommerce-tabs {
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;

  overflow: hidden;

  border: 1px solid #e1e5e9;
  border-radius: 10px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(20, 27, 34, 0.05);
}


/* =========================================================
   ZAKŁADKI
========================================================= */

.single-product
.woocommerce-tabs ul.tabs {
  display: flex !important;
  align-items: stretch;

  width: 100%;

  gap: 34px;

  margin: 0 !important;
  padding: 0 34px !important;

  border: 0 !important;
  border-bottom: 1px solid #e4e8eb !important;

  background: #f7f8f9 !important;
}

.single-product
.woocommerce-tabs ul.tabs::before,
.single-product
.woocommerce-tabs ul.tabs::after {
  display: none !important;
}

.single-product
.woocommerce-tabs ul.tabs li {
  position: relative;

  display: block !important;

  margin: 0 !important;
  padding: 0 !important;

  border: 0 !important;
  border-radius: 0 !important;

  background: transparent !important;
}

.single-product
.woocommerce-tabs ul.tabs li::before,
.single-product
.woocommerce-tabs ul.tabs li::after {
  display: none !important;
}

.single-product
.woocommerce-tabs ul.tabs li a {
  display: flex !important;
  align-items: center;

  min-height: 62px;

  padding: 0 !important;

  color: #66717b !important;

  font-size: 11px !important;
  line-height: 1.2;

  letter-spacing: 0.055em;

  text-decoration: none !important;
  text-transform: uppercase;

  transition:
    color 0.2s ease;
}
.single-product
.woocommerce-tabs ul.tabs li a:focus-visible {
  outline: 2px solid var(--ct-orange) !important;
  outline-offset: 2px;
}
.single-product
.woocommerce-tabs ul.tabs li:hover a {
  color: #171b20 !important;
}

.single-product
.woocommerce-tabs ul.tabs li.active a {
  color: #171b20 !important;
}

.single-product
.woocommerce-tabs ul.tabs li.active::after {
  content: "";

  display: block !important;

  position: absolute;

  right: 0;
  bottom: 0;
  left: 0;

  height: 3px;

  background: var(--ct-orange);
}


/* =========================================================
   PANEL TREŚCI
========================================================= */

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel {
  width: 100% !important;
  max-width: none !important;

  margin: 0 !important;
  padding: 42px 46px 50px !important;

  border: 0 !important;

  background: #ffffff !important;

  color: #515b64;

  font-size: 15px;
  line-height: 1.75;
}


/* =========================================================
   DOMYŚLNY TYTUŁ PANELU
========================================================= */

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel > h2:first-child {
  margin: 0 0 24px;

  color: #171b20 !important;

  font-size: 19px !important;
  font-weight: 800 !important;
  line-height: 1.3;

  letter-spacing: -0.015em;
}


/* =========================================================
   AKAPITY — PODSTAWA POD XML
========================================================= */

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel p {
  max-width: 900px;

  margin: 0 0 18px;

  color: #515b64;

  font-size: 15px;
  line-height: 1.75;
}

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel p:last-child {
  margin-bottom: 0;
}


/* =========================================================
   NAGŁÓWKI, JEŚLI XML / OPIS JE ZAWIERA
========================================================= */

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel h2:not(:first-child) {
  max-width: 900px;

  margin: 34px 0 14px;

  color: #171b20 !important;

  font-size: 21px !important;
  font-weight: 800 !important;
  line-height: 1.3;

  letter-spacing: -0.02em;
}

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel h3 {
  max-width: 900px;

  margin: 28px 0 12px;

  color: #171b20 !important;

  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.3;
}


/* =========================================================
   LISTY, JEŚLI XML / OPIS JE ZAWIERA
========================================================= */

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel ul {
  max-width: 880px;

  margin: 20px 0 28px;
  padding: 0;

  list-style: none;
}

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel ul li {
  position: relative;

  margin: 0;

  padding: 10px 0 10px 25px;

  border-bottom: 1px solid #edf0f2;

  color: #4f5963;

  font-size: 14px;
  line-height: 1.6;
}

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel ul li:first-child {
  border-top: 1px solid #edf0f2;
}

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel ul li::before {
  content: "";

  position: absolute;

  top: 18px;
  left: 3px;

  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: var(--ct-orange);
}


/* =========================================================
   TABELA ATRYBUTÓW
   INFORMACJE DODATKOWE
========================================================= */

.single-product
.woocommerce-tabs
table.shop_attributes {
  width: 100%;
  max-width: 920px;

  margin: 0;

  border: 1px solid #e2e6e9;
  border-radius: 8px;

  border-collapse: separate;
  border-spacing: 0;

  overflow: hidden;

  background: #ffffff;
}

.single-product
.woocommerce-tabs
table.shop_attributes th,
.single-product
.woocommerce-tabs
table.shop_attributes td {
  padding: 14px 18px;

  border: 0;
  border-bottom: 1px solid #e7eaed;

  text-align: left;
  vertical-align: middle;
}

.single-product
.woocommerce-tabs
table.shop_attributes tr:last-child th,
.single-product
.woocommerce-tabs
table.shop_attributes tr:last-child td {
  border-bottom: 0;
}

.single-product
.woocommerce-tabs
table.shop_attributes th {
  width: 32%;

  background: #f7f8f9;

  color: #171b20;

  font-size: 12px;
  font-weight: 800;
}

.single-product
.woocommerce-tabs
table.shop_attributes td {
  background: #ffffff;

  color: #59636d;

  font-size: 14px;
}


/* =========================================================
   LINKI W OPISIE
========================================================= */

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel a {
  color: var(--ct-orange) !important;

  font-weight: 700;

  text-decoration: none;
}

.single-product
.woocommerce-tabs
.woocommerce-Tabs-panel a:hover {
  color: var(--ct-orange-dark) !important;
}


/* =========================================================
   RESPONSYWNOŚĆ
========================================================= */

@media (max-width: 768px) {

  .single-product
  .woocommerce-tabs ul.tabs {
    gap: 24px;

    overflow-x: auto;

    padding: 0 20px !important;

    white-space: nowrap;
  }

  .single-product
  .woocommerce-tabs ul.tabs li {
    flex: 0 0 auto;
  }

  .single-product
  .woocommerce-tabs ul.tabs li a {
    min-height: 58px;

    font-size: 9px !important;
  }

  .single-product
  .woocommerce-tabs
  .woocommerce-Tabs-panel {
    padding: 28px 22px 34px !important;
  }

  .single-product
  .woocommerce-tabs
  .woocommerce-Tabs-panel p {
    font-size: 14px;

    line-height: 1.7;
  }

  .single-product
  .woocommerce-tabs
  table.shop_attributes th {
    width: 40%;
  }

}


/* =========================================================
   INFORMACJE DODATKOWE — TABELA
========================================================= */

.single-product
.ct-single-product__details
table.shop_attributes {
  width: 100%;
  max-width: 900px;

  margin: 0;

  border: 0;
}

.single-product
.ct-single-product__details
table.shop_attributes th,
.single-product
.ct-single-product__details
table.shop_attributes td {
  padding: 14px 18px;

  border: 0;
  border-bottom: 1px solid #e5e8eb;

  background: transparent;

  text-align: left;
}

.single-product
.ct-single-product__details
table.shop_attributes th {
  width: 34%;

  color: #171b20;

  font-weight: 800;
}

.single-product
.ct-single-product__details
table.shop_attributes td {
  color: #59636d;
}


/* =========================================================
   POWIĄZANE / UPSELL
========================================================= */

.single-product
.ct-single-product__details .related,
.single-product
.ct-single-product__details .upsells {
  margin-top: 70px;
}

.single-product
.ct-single-product__details .related > h2,
.single-product
.ct-single-product__details .upsells > h2 {
  margin-bottom: 28px;

  color: #171b20;

  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;

  letter-spacing: -0.03em;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

  .single-product .ct-single-product__main {
    grid-template-columns:
      minmax(0, 1fr)
      minmax(340px, 0.9fr);

    gap: 32px;
  }

  .single-product .ct-single-product__summary {
    padding: 26px !important;
  }

}


/* =========================================================
   TELEFON
========================================================= */

@media (max-width: 768px) {

  .single-product .ct-single-product {
    width: calc(100% - 28px);

    padding: 24px 0 50px;
  }

  .single-product .ct-single-product__main {
    display: block;
  }

  .single-product .ct-single-product__gallery {
    margin-bottom: 24px;
  }

  .single-product .ct-product-gallery__main {
    min-height: 330px;

    padding: 20px;
  }

  .single-product .ct-product-gallery__main-image {
    max-height: 300px !important;
  }

  .single-product .ct-single-product__summary {
    padding: 23px 20px !important;
  }

  .single-product
  .ct-single-product__summary
  .product_title {
    font-size: 27px;
  }

  .single-product
  .ct-single-product__summary
  .price {
    font-size: 25px !important;
  }


  /* KOSZYK */

  .single-product
  .ct-single-product__summary
  form.cart {
    justify-content: flex-start;
  }

  .single-product
  .ct-single-product__summary
  form.cart .quantity {
    flex-basis: 96px;

    width: 96px !important;
  }

  .single-product
  .ct-single-product__summary
  form.cart
  .single_add_to_cart_button {
    min-width: 0;

    padding: 0 14px !important;

    font-size: 10px !important;
  }


  /* META */

  .single-product
  .ct-single-product__summary
  .product_meta {
    display: block;
  }

  .single-product
  .ct-single-product__summary
  .product_meta > span {
    display: block;

    margin-bottom: 5px;
  }


  /* OPIS */

  .single-product .ct-single-product__details {
    margin-top: 38px;
  }

  .single-product
  .ct-single-product__details
  .woocommerce-tabs ul.tabs {
    overflow-x: auto;

    padding: 0 10px !important;
  }

  .single-product
  .ct-single-product__details
  .woocommerce-tabs ul.tabs li {
    flex: 0 0 auto;
  }

  .single-product
  .ct-single-product__details
  .woocommerce-tabs ul.tabs li a {
    min-height: 56px;

    padding: 0 13px !important;

    font-size: 9px !important;
  }

  .single-product
  .ct-single-product__details
  .woocommerce-Tabs-panel {
    padding: 28px 22px 34px !important;

    font-size: 14px;
  }

  .single-product
  .ct-single-product__details
  .woocommerce-Tabs-panel h2 {
    font-size: 23px;
  }

}

/* =========================================================
   25. KOSZYK
========================================================= */

.woocommerce-cart {
  background: #f7f8fa;
}

.woocommerce-cart .wp-site-blocks,
.woocommerce-cart main {
  background: #f7f8fa;
}


/* =========================================================
   GŁÓWNY OBSZAR KOSZYKA
========================================================= */

.woocommerce-cart .wc-block-cart {
  width: min(1380px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 80px;
}

.woocommerce-cart .wc-block-cart h1,
.woocommerce-cart .entry-title {
  margin: 0 0 34px;

  color: #171b20;

  font-size: clamp(38px, 5vw, 58px);
  font-weight: 800;
  line-height: 1;

  letter-spacing: -0.04em;
}


/* =========================================================
   PRODUKT W KOSZYKU
========================================================= */

.woocommerce-cart
.wc-block-cart-items {
  border: 1px solid #e1e5e9;
  border-radius: 10px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(20, 27, 34, 0.05);
}

.woocommerce-cart
.wc-block-cart-items
.wc-block-cart-items__row {
  padding: 24px;

  border-bottom: 1px solid #e7eaed;
}

.woocommerce-cart
.wc-block-cart-items
.wc-block-cart-items__row:last-child {
  border-bottom: 0;
}


/* Zdjęcie produktu */

.woocommerce-cart
.wc-block-cart-item__image {
  overflow: hidden;

  border: 1px solid #e3e7ea;
  border-radius: 8px;

  background: #ffffff;
}

.woocommerce-cart
.wc-block-cart-item__image img {
  width: 100%;
  height: 100%;

  object-fit: contain;
}


/* Nazwa produktu */

.woocommerce-cart
.wc-block-components-product-name {
  color: #171b20 !important;

  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;

  text-decoration: none !important;
}

.woocommerce-cart
.wc-block-components-product-name:hover {
  color: var(--ct-orange) !important;
}


/* Cena */

.woocommerce-cart
.wc-block-components-product-price {
  color: var(--ct-orange);

  font-size: 18px;
  font-weight: 800;
}

.woocommerce-cart
.wc-block-components-product-price__value {
  color: var(--ct-orange);
}


/* Opis */

.woocommerce-cart
.wc-block-components-product-metadata,
.woocommerce-cart
.wc-block-components-product-metadata__description {
  color: #66717b;

  font-size: 13px;
  line-height: 1.6;
}


/* =========================================================
   ILOŚĆ
========================================================= */

.woocommerce-cart
.wc-block-components-quantity-selector {
  overflow: hidden;

  min-height: 46px;

  border: 1px solid #dce1e6 !important;
  border-radius: 6px !important;

  background: #ffffff;
}

.woocommerce-cart
.wc-block-components-quantity-selector input {
  color: #171b20 !important;

  font-weight: 800;
}

.woocommerce-cart
.wc-block-components-quantity-selector button {
  color: #59636d !important;

  background: transparent !important;
}

.woocommerce-cart
.wc-block-components-quantity-selector button:hover {
  color: var(--ct-orange) !important;
}


/* =========================================================
   USUWANIE PRODUKTU
========================================================= */

.woocommerce-cart
.wc-block-cart-item__remove-link {
  color: #737e88 !important;

  font-size: 12px;
  font-weight: 700;

  text-decoration: none !important;
}

.woocommerce-cart
.wc-block-cart-item__remove-link:hover {
  color: var(--ct-orange) !important;
}


/* =========================================================
   KUPON
========================================================= */

.woocommerce-cart
.wc-block-components-totals-coupon {
  border-top: 1px solid #e7eaed;
}

.woocommerce-cart
.wc-block-components-totals-coupon__button {
  color: #171b20 !important;

  font-weight: 700;
}

.woocommerce-cart
.wc-block-components-totals-coupon__button:hover {
  color: var(--ct-orange) !important;
}

.woocommerce-cart
.wc-block-components-totals-coupon__input input {
  border: 1px solid #dce1e6 !important;
  border-radius: 6px !important;

  background: #ffffff !important;
}


/* =========================================================
   PODSUMOWANIE KOSZYKA
========================================================= */

.woocommerce-cart
.wc-block-cart__sidebar {
  padding: 28px;

  border: 1px solid #e1e5e9;
  border-radius: 10px;

  background: #ffffff;

  box-shadow:
    0 10px 30px rgba(20, 27, 34, 0.05);
}

.woocommerce-cart
.wc-block-cart__totals-title {
  color: #171b20;

  font-size: 18px;
  font-weight: 800;
}

.woocommerce-cart
.wc-block-components-totals-item {
  padding: 17px 0;

  border-bottom: 1px solid #e7eaed;
}

.woocommerce-cart
.wc-block-components-totals-item__label {
  color: #4f5963;

  font-size: 14px;
}

.woocommerce-cart
.wc-block-components-totals-item__value {
  color: #171b20;

  font-size: 15px;
  font-weight: 800;
}


/* Mocniejsze wyróżnienie sumy */

.woocommerce-cart
.wc-block-components-totals-footer-item {
  margin-top: 4px;

  border-top: 1px solid #dce1e6;
  border-bottom: 0;
}

.woocommerce-cart
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__label,
.woocommerce-cart
.wc-block-components-totals-footer-item
.wc-block-components-totals-item__value {
  color: #171b20;

  font-size: 18px;
  font-weight: 800;
}


/* =========================================================
   PRZEJDŹ DO PŁATNOŚCI
========================================================= */

.woocommerce-cart
.wc-block-cart__submit {
  margin-top: 22px;
}

.woocommerce-cart
.wc-block-cart__submit-button,
.woocommerce-cart
.wc-block-components-button.wc-block-cart__submit-button {
  min-height: 56px;

  border: 0 !important;
  border-radius: 6px !important;

  background: var(--ct-orange) !important;

  color: #ffffff !important;

  font-size: 14px !important;
  font-weight: 800 !important;

  letter-spacing: 0.035em;

  box-shadow: none !important;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

.woocommerce-cart
.wc-block-cart__submit-button:hover,
.woocommerce-cart
.wc-block-components-button.wc-block-cart__submit-button:hover {
  background: var(--ct-orange-dark) !important;

  color: #ffffff !important;

  transform: translateY(-1px);
}

.woocommerce-cart
.wc-block-cart__submit-button:focus-visible {
  outline: 2px solid var(--ct-orange) !important;
  outline-offset: 3px;
}


/* =========================================================
   LINKI I FOCUS
========================================================= */

.woocommerce-cart
.wc-block-cart a:focus-visible,
.woocommerce-cart
.wc-block-cart button:focus-visible {
  outline-color: var(--ct-orange) !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

  .woocommerce-cart .wc-block-cart {
    width: calc(100% - 28px);

    padding: 36px 0 56px;
  }

  .woocommerce-cart .wc-block-cart h1,
  .woocommerce-cart .entry-title {
    margin-bottom: 28px;

    font-size: 42px;
  }

  .woocommerce-cart
  .wc-block-cart-items {
    border-radius: 8px;
  }

  .woocommerce-cart
  .wc-block-cart-items
  .wc-block-cart-items__row {
    padding: 18px 0;
  }

  .woocommerce-cart
  .wc-block-components-product-name {
    font-size: 15px;
  }

  .woocommerce-cart
  .wc-block-components-product-price {
    font-size: 17px;
  }

  .woocommerce-cart
  .wc-block-components-product-metadata,
  .woocommerce-cart
  .wc-block-components-product-metadata__description {
    font-size: 12px;
  }

  .woocommerce-cart
  .wc-block-cart__sidebar {
    margin-top: 24px;

    padding: 22px 18px;
  }

  .woocommerce-cart
  .wc-block-cart__submit-button,
  .woocommerce-cart
  .wc-block-components-button.wc-block-cart__submit-button {
    width: 100%;

    min-height: 56px;

    font-size: 14px !important;
  }

}

.wc-block-components-checkout-place-order-button {
    background: var(--ct-orange) !important;
    color: #fff !important;
    border-color: var(--ct-orange) !important;
}
.wc-block-components-order-summary-item__quantity {
  background: var(--ct-orange) !important;
  color: #fff !important;
}
/* =========================================================
   27. MOJE KONTO
========================================================= */

.woocommerce-account .woocommerce-form-login__submit {
    background: var(--ct-orange) !important;
    border-color: var(--ct-orange) !important;
    color: #fff !important;
}
.woocommerce-account .woocommerce-MyAccount-navigation-link.is-active a {
    background: var(--ct-orange) !important;
    color: #fff !important;
}
/* =========================================================
   28. WOOCOMMERCE — KOLORY GLOBALNE
========================================================= */
/* =========================================================
   GLOBALNA KOLORYSTYKA WOOCOMMERCE
========================================================= */

/* Linki WooCommerce */
.woocommerce a:not(.button):hover,
.woocommerce-page a:not(.button):hover {
    color: var(--ct-orange);
}

/* Moje konto — aktywna pozycja */
.woocommerce-account
.woocommerce-MyAccount-navigation
li.is-active > a {
    background-color: var(--ct-orange) !important;
    color: #fff !important;
}

/* Moje konto — pozycja po najechaniu */
.woocommerce-account
.woocommerce-MyAccount-navigation
li:hover > a {
    background-color: var(--ct-orange) !important;
    color: #fff !important;
}

/* Focus pól WooCommerce */
.woocommerce input:focus,
.woocommerce select:focus,
.woocommerce textarea:focus {
    border-color: var(--ct-orange) !important;
    outline-color: var(--ct-orange) !important;
}

/* Checkboxy i radio — kolor aktywny */
.woocommerce input[type="checkbox"],
.woocommerce input[type="radio"] {
    accent-color: var(--ct-orange);
}
/* Przyciski WooCommerce */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce-page a.button,
.woocommerce-page button.button,
.woocommerce-page input.button {
    background: var(--ct-orange) !important;
    border-color: var(--ct-orange) !important;
    color: #fff !important;
}

/* Hover / focus przycisków WooCommerce */
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover,
.woocommerce-page a.button:hover,
.woocommerce-page button.button:hover,
.woocommerce-page input.button:hover,
.woocommerce a.button:focus,
.woocommerce button.button:focus,
.woocommerce input.button:focus {
    background: var(--ct-orange-dark) !important;
    border-color: var(--ct-orange-dark) !important;
    color: #fff !important;
}