/*
Theme Name: ShuffLore
Theme URI: https://shufflore.pl
Author: ShuffLore
Description: Motyw sklepu ShuffLore z akcesoriami TCG.
Version: 1.0.0
Text Domain: shufflore
Requires at least: 6.5
Requires PHP: 8.1
*/

/* Tutaj poniżej pozostaw całą zawartość obecnego styles.css */



:root {
  --teal-950: #022b30;
  --teal-900: #043f45;
  --teal-800: #05666d;
  --teal-700: #07858c;
  --teal-600: #0aa5ab;
  --teal-500: #18bfc4;
  --teal-400: #39d4d6;
  --teal-200: #b9eeef;
  --teal-100: #e5f8f8;
  --teal-050: #f4fbfb;

  --silver-900: #26383e;
  --silver-700: #607278;
  --silver-500: #9ba9ae;
  --silver-400: #bdc8cc;
  --silver-300: #d8e0e3;
  --silver-200: #e8edef;
  --silver-100: #f4f7f8;

  --white: #ffffff;
  --black: #071418;
  --text: #18272c;
  --muted: #647278;

  --border: rgba(5, 102, 109, 0.17);
  --border-strong: rgba(5, 102, 109, 0.36);

  --shadow-small: 0 6px 18px rgba(10, 76, 81, 0.08);
  --shadow: 0 16px 38px rgba(10, 76, 81, 0.14);

  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
}

/* =========================================================
   PODSTAWOWE
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(57, 212, 214, 0.08),
      transparent 27%
    ),
    radial-gradient(
      circle at 88% 7%,
      rgba(57, 212, 214, 0.08),
      transparent 25%
    ),
    #f8fbfb;
  font-family: var(--sans);
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

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

.icon {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* =========================================================
   GÓRNY PASEK
   ========================================================= */

.topbar {
  position: relative;
  z-index: 100;
  min-height: 40px;
  color: var(--white);
  background:
    linear-gradient(
      90deg,
      var(--teal-900),
      var(--teal-700) 50%,
      var(--teal-900)
    );
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 2px 9px rgba(2, 43, 48, 0.22);
}

.topbar__inner {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  letter-spacing: 0.04em;
}

.topbar__shipping,
.topbar__link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
}

.topbar__shipping .icon,
.topbar__link .icon {
  width: 18px;
  height: 18px;
  color: #dcffff;
}

.topbar__right {
  position: absolute;
  top: 0;
  right: 0;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 22px;
}

.topbar__link {
  opacity: 0.92;
  transition:
    color 0.18s ease,
    opacity 0.18s ease;
}

.topbar__link:hover {
  color: var(--teal-200);
  opacity: 1;
}

/* =========================================================
   NAGŁÓWEK I MENU
   ========================================================= */

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 5px 20px rgba(13, 82, 87, 0.07);
  backdrop-filter: blur(15px);
}

.navbar {
  min-height: 120px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr) 285px;
  align-items: center;
  gap: 24px;
}

.header-logo {
  position: relative;
  width: 260px;
  height: 120px;
  display: flex;
  align-items: center;
  margin: 0;
  filter: drop-shadow(0 10px 14px rgba(5, 66, 71, 0.16));
}

.header-logo::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 22px 36px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(24, 191, 196, 0.14),
      transparent 70%
    );
  filter: blur(10px);
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 31px);
  color: var(--teal-900);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.025em;
  white-space: nowrap;
}

.menu a {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--teal-900);
  transition: color 0.18s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--teal-600);
}
.menu a::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: 20px;
  left: 50%;
  height: 2px;
  background: var(--teal-700);
  transition:
    right 0.18s ease,
    left 0.18s ease;
}

.menu a:hover,
.menu a.active {
  color: var(--teal-800);
}

.menu a:hover::after,
.menu a.active::after {
  right: 0;
  left: 0;
}

.search-form {
  position: relative;
}

.search-form input {
  width: 100%;
  height: 43px;
  padding: 0 45px 0 16px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--silver-300);
  border-radius: 4px;
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.search-form input:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(10, 165, 171, 0.12);
}

.search-form button {
  position: absolute;
  top: 1px;
  right: 1px;
  width: 42px;
  height: 41px;
  display: grid;
  place-items: center;
  color: var(--teal-900);
  background: transparent;
  border: 0;
}

.mobile-menu-button {
  display: none;
  width: 43px;
  height: 43px;
  align-items: center;
  justify-content: center;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--border);
}

/* =========================================================
   PRZYCISKI
   ========================================================= */

.button {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 7px 15px rgba(6, 95, 101, 0.15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

.button--light {
  color: var(--teal-900);
  background: var(--white);
  border-color: var(--border-strong);
  box-shadow: none;
}

.button--small {
  min-height: 35px;
  padding-inline: 15px;
  font-size: 10px;
}

.ornate-button {
  position: relative;
  min-width: 285px;
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 34px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 2px solid var(--teal-900);
  outline: 3px double var(--silver-500);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.22),
    0 8px 18px rgba(6, 95, 101, 0.19);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition:
    transform 0.18s ease,
    filter 0.18s ease;
}

.ornate-button::before,
.ornate-button::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: var(--silver-100);
  border: 3px double var(--teal-800);
  transform: translateY(-50%) rotate(45deg);
}

.ornate-button::before {
  left: -13px;
}

.ornate-button::after {
  right: -13px;
}

.ornate-button:hover {
  transform: translateY(-2px);
  filter: brightness(1.06);
}

/* =========================================================
   STRONA GŁÓWNA — HERO
   ========================================================= */

.home-hero {
  position: relative;
  overflow: hidden;
  min-height: 470px;
  background:
    linear-gradient(
      90deg,
      #fbfefe 0%,
      #f4fbfb 44%,
      #e8f8f8 100%
    );
  border-bottom: 1px solid var(--border);
}

.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      circle at 82% 26%,
      transparent 0 65px,
      rgba(18, 174, 180, 0.1) 66px 69px,
      transparent 70px 108px,
      rgba(18, 174, 180, 0.07) 109px 113px,
      transparent 114px
    ),
    radial-gradient(
      circle at 96% 4%,
      rgba(57, 212, 214, 0.2),
      transparent 34%
    );
}

.home-hero__inner {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: 340px minmax(400px, 1fr) 520px;
  align-items: center;
  gap: 25px;
}

.home-hero__brand {
  position: relative;
  z-index: 3;
}

.home-hero__brand img {
  width: 340px;
  height: 340px;
  object-fit: contain;
  filter: drop-shadow(0 17px 21px rgba(5, 66, 71, 0.2));
}

.home-hero__copy {
  position: relative;
  z-index: 4;
  text-align: center;
}

.eyebrow {
  margin: 0 0 10px;
  color: #29383c;
  font-family: var(--serif);
  font-size: 18px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.home-hero__title {
  margin: 0;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(46px, 4.3vw, 69px);
  line-height: 0.96;
  letter-spacing: 0.015em;
}

.home-hero__title span {
  display: block;
  margin-top: 5px;
  color: var(--teal-800);
}

.home-hero__description {
  margin: 20px 0 26px;
  color: #4f6065;
  font-size: 17px;
}

.hero-art {
  position: relative;
  min-height: 420px;
}

.hero-art__circle {
  position: absolute;
  top: 20px;
  right: -45px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(10, 165, 171, 0.12) 0 3px,
      transparent 3px 24px
    );
}

.hero-art__platform {
  position: absolute;
  right: 5px;
  bottom: 20px;
  width: 455px;
  height: 115px;
  border-radius: 50%;
  background:
    radial-gradient(
      ellipse,
      #ffffff 0 52%,
      #e5eeee 53% 64%,
      #c8d9db 65% 68%,
      #ffffff 69%
    );
  box-shadow: 0 18px 30px rgba(27, 95, 99, 0.16);
}

.hero-art__box {
  position: absolute;
  right: 155px;
  bottom: 85px;
  width: 145px;
  height: 207px;
  border: 5px solid var(--silver-400);
  border-radius: 5px;
  background:
    radial-gradient(
      circle at 50% 35%,
      var(--teal-400) 0 7%,
      transparent 8%
    ),
    conic-gradient(
      from 25deg at 50% 35%,
      #11ced0,
      #075b63 15%,
      #16bfc3 30%,
      #032d33 48%,
      #14c8ca 66%,
      #074d54 82%,
      #11ced0
    );
  box-shadow:
    inset 0 0 0 7px #064047,
    9px 12px 18px rgba(0, 45, 48, 0.22);
}

.hero-art__box::after {
  content: "SHUFFLORE";
  position: absolute;
  right: 10px;
  bottom: 17px;
  left: 10px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}

.hero-art__card {
  position: absolute;
  width: 84px;
  height: 122px;
  border: 4px solid var(--silver-300);
  border-radius: 7px;
  background:
    radial-gradient(
      circle at 50% 45%,
      var(--teal-400) 0 7%,
      transparent 8%
    ),
    repeating-conic-gradient(
      from 0deg at 50% 45%,
      #0fcfd1 0 6deg,
      #063d43 7deg 18deg
    );
  box-shadow:
    inset 0 0 0 5px #064148,
    5px 9px 15px rgba(9, 80, 84, 0.2);
}

.hero-art__card--1 {
  right: 320px;
  bottom: 175px;
  transform: rotate(-18deg);
}

.hero-art__card--2 {
  right: 268px;
  bottom: 192px;
  transform: rotate(-4deg);
}

.hero-art__card--3 {
  right: 221px;
  bottom: 179px;
  transform: rotate(13deg);
}

.hero-art__dice {
  position: absolute;
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  color: #ddffff;
  background:
    linear-gradient(
      145deg,
      #08727a,
      #043a40
    );
  border: 3px solid #9cb9bd;
  clip-path:
    polygon(
      50% 0,
      92% 25%,
      84% 78%,
      50% 100%,
      16% 78%,
      8% 25%
    );
  filter: drop-shadow(4px 8px 5px rgba(0, 66, 70, 0.22));
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 700;
}

.hero-art__dice--1 {
  right: 330px;
  bottom: 70px;
  transform: rotate(-11deg);
}

.hero-art__dice--2 {
  right: 70px;
  bottom: 75px;
  transform: rotate(13deg);
}

/* =========================================================
   PODSTRONY — BANER
   ========================================================= */

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  color: var(--text);
  background:
    linear-gradient(
      110deg,
      #ffffff,
      #edfafa 58%,
      #dff5f5
    );
  border-bottom: 1px solid var(--border);
}

.page-hero::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -80px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background:
    repeating-radial-gradient(
      circle,
      rgba(10, 165, 171, 0.11) 0 3px,
      transparent 3px 28px
    );
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  align-items: center;
  gap: 30px;
}

.page-hero__copy {
  max-width: 760px;
}

.page-hero h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 65px);
  line-height: 1;
}

.page-hero h1 span {
  color: var(--teal-800);
}

.page-hero p {
  max-width: 680px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.page-hero__emblem {
  width: 220px;
  height: 220px;
  margin-left: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 20px rgba(5, 66, 71, 0.16));
}

/* =========================================================
   SEKCJE I PANELE
   ========================================================= */

.section {
  padding: 65px 0;
}

.section--white {
  background: var(--white);
}

.section--soft {
  background:
    linear-gradient(
      #f8fbfb,
      #eef8f8
    );
}

.section-heading {
  margin-bottom: 30px;
  text-align: center;
}

.section-heading__eyebrow {
  margin: 0 0 8px;
  color: var(--teal-700);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 45px);
}

.section-heading p {
  max-width: 680px;
  margin: 13px auto 0;
  color: var(--muted);
  line-height: 1.65;
}

.panel {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

.panel-heading {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 0 18px;
  border-bottom: 1px solid var(--border);
  font-family: var(--serif);
  font-size: 17px;
  letter-spacing: 0.035em;
}

/* =========================================================
   KORZYŚCI
   ========================================================= */

.benefits {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

.benefits__inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
}

.benefit {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 22px;
  border-right: 1px solid var(--border);
}

.benefit:last-child {
  border-right: 0;
}

.benefit .icon {
  width: 34px;
  height: 34px;
  color: var(--teal-800);
}

.benefit strong {
  display: block;
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.benefit span {
  display: block;
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

/* =========================================================
   PRODUKTY
   ========================================================= */

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

.product-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

.product-card__image-link {
  display: block;
}

.product-card__image-link:focus-visible,
.product-card__title-link:focus-visible,
.favorite-button:focus-visible,
.cart-button:focus-visible {
  outline: 3px solid rgba(10, 165, 171, 0.28);
  outline-offset: 3px;
}

.product-art {
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: grid;
  place-items: center;
  background: var(--white);
}

.product-art::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(9, 94, 100, 0.08);
  pointer-events: none;
}

.product-art__image {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: block;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background: transparent;
  transition: transform 0.25s ease;
}

.product-card:hover .product-art__image {
  transform: scale(1.035);
}

.product-art__shape {
  position: relative;
  z-index: 2;
  width: 125px;
  height: 165px;
  display: grid;
  place-items: center;
  color: var(--teal-400);
  background:
    radial-gradient(
      circle at 50% 38%,
      var(--teal-400) 0 7%,
      transparent 8%
    ),
    conic-gradient(
      from 15deg,
      #10c7ca,
      #06434a,
      #08767e,
      #032e34,
      #10c7ca
    );
  border: 4px solid var(--silver-400);
  box-shadow:
    inset 0 0 0 7px #064047,
    9px 13px 18px rgba(0, 55, 59, 0.2);
  font-family: var(--serif);
  font-size: 39px;
}

.product-art__shape--sleeves {
  width: 100px;
  height: 155px;
  border-radius: 6px;
  transform: rotate(-7deg);
}

.product-art__shape--mat {
  width: 185px;
  height: 118px;
  transform: rotate(4deg);
}

.product-art__shape--dice {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  clip-path:
    polygon(
      50% 0,
      92% 25%,
      84% 78%,
      50% 100%,
      16% 78%,
      8% 25%
    );
}

.product-art__shape--binder {
  width: 145px;
  height: 170px;
  border-radius: 4px;
}

.product-art__shape--token {
  width: 135px;
  height: 135px;
  border-radius: 50%;
}

.product-art__shape--bag {
  width: 130px;
  height: 160px;
  border-radius: 48% 48% 20% 20%;
}

.product-card__content {
  padding: 16px;
}

.product-card__category {
  margin-bottom: 6px;
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  min-height: 42px;
  margin: 0;
  font-size: 15px;
  line-height: 1.4;
}

.product-card__title-link {
  color: inherit;
  transition: color 0.18s ease;
}

.product-card__title-link:hover {
  color: var(--teal-800);
}

.product-price {
  margin: 9px 0 13px;
  color: var(--teal-800);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

.product-card__buttons {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  grid-template-rows: 40px;
  align-items: stretch;
  gap: 8px;
}

.product-card__buttons .favorite-button,
.product-card__buttons .cart-button {
  height: 40px;
  min-height: 40px;
  margin: 0;
  border: 1px solid var(--border-strong);
  border-radius: 0;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease,
    opacity 0.18s ease;
}

.product-card__buttons .favorite-button {
  grid-column: 1;
  grid-row: 1;
  width: 38px;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--teal-900);
  background: var(--white);
  font-size: 18px;
}

.product-card__buttons .cart-button {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
  padding: 0 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border-color: var(--teal-900);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.035em;
  text-align: center;
  text-transform: uppercase;
}

.product-card__buttons .favorite-button:hover,
.product-card__buttons .favorite-button.active {
  color: var(--white);
  background: var(--teal-800);
  border-color: var(--teal-800);
}

.product-card__buttons .cart-button:hover {
  color: var(--white);
  background: var(--teal-900);
}

.product-card__buttons .cart-button--added {
  color: var(--white);
  background: var(--teal-800);
}

.product-card__buttons .cart-button:disabled {
  cursor: default;
  opacity: 0.86;
}

.product-card__buttons .cart-button .icon {
  width: 15px;
  height: 15px;
  flex: 0 0 auto;
}

/* =========================================================
   FILTRY
   ========================================================= */

.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filter-panel {
  align-self: start;
  padding: 18px;
}

.filter-panel h2 {
  margin: 0 0 17px;
  font-family: var(--serif);
  font-size: 22px;
}

.filter-list {
  display: grid;
  gap: 8px;
}

.filter-button {
  min-height: 43px;
  padding: 0 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  text-align: left;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.filter-button:hover,
.filter-button.active {
  color: var(--white);
  background: var(--teal-800);
}

.shop-results {
  margin-bottom: 15px;
  color: var(--muted);
  font-size: 13px;
}

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

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

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 270px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background:
    radial-gradient(
      circle at 80% 20%,
      rgba(57, 212, 214, 0.18),
      transparent 34%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #e9f7f7
    );
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.category-card__symbol {
  position: absolute;
  top: 24px;
  right: 25px;
  width: 100px;
  height: 100px;
  display: grid;
  place-items: center;
  color: var(--teal-400);
  background:
    radial-gradient(
      circle,
      #0b7f86,
      #04363c
    );
  border: 6px double var(--silver-300);
  border-radius: 50%;
  box-shadow: 0 12px 20px rgba(4, 71, 76, 0.15);
  font-family: var(--serif);
  font-size: 35px;
}

.category-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 25px;
}

.category-card p {
  max-width: 320px;
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.55;
}

/* =========================================================
   GRY TCG
   ========================================================= */

.game-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.game-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

.game-card__art {
  position: relative;
  height: 240px;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(57, 212, 214, 0.32),
      transparent 24%
    ),
    repeating-radial-gradient(
      circle at 50% 50%,
      transparent 0 25px,
      rgba(13, 153, 160, 0.13) 26px 28px
    ),
    linear-gradient(
      145deg,
      #06383e,
      #086a71
    );
}

.game-card__art::before {
  content: "✦";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #bfffff;
  font-family: var(--serif);
  font-size: 75px;
}

.game-card__content {
  padding: 21px;
}

.game-card h3 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 24px;
}

.game-card p {
  margin: 0 0 17px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   NOWOŚCI I BLOG
   ========================================================= */

.news-grid,
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 21px;
}

.news-card,
.blog-card {
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.news-card:hover,
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.article-art {
  position: relative;
  height: 215px;
  display: grid;
  place-items: center;
  color: var(--teal-400);
  background:
    radial-gradient(
      circle,
      rgba(57, 212, 214, 0.18),
      transparent 40%
    ),
    linear-gradient(
      135deg,
      #06434a,
      #0b7d84
    );
  font-family: var(--serif);
  font-size: 60px;
}

.article-art::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(218, 255, 255, 0.45);
}

.article-content {
  padding: 21px;
}

.article-meta {
  margin-bottom: 9px;
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.article-content h2,
.article-content h3 {
  margin: 0 0 10px;
  font-family: var(--serif);
  font-size: 24px;
}

.article-content p {
  margin: 0 0 18px;
  color: var(--muted);
  line-height: 1.6;
}

/* =========================================================
   KONTAKT
   ========================================================= */

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 25px;
}

.contact-details,
.contact-form {
  padding: 28px;
}

.contact-details h2,
.contact-form h2 {
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: 29px;
}

.contact-details p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-list {
  display: grid;
  gap: 15px;
  margin-top: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border);
}

.contact-item .icon {
  flex: 0 0 auto;
  color: var(--teal-700);
}

.contact-item strong {
  display: block;
  margin-bottom: 3px;
}

.contact-item span {
  color: var(--muted);
  font-size: 14px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 17px;
}

.form-field {
  display: grid;
  gap: 7px;
}

.form-field--full {
  grid-column: 1 / -1;
}

.form-field label {
  font-size: 13px;
  font-weight: 700;
}

.form-field input,
.form-field textarea,
.form-field select {
  width: 100%;
  background: var(--white);
  border: 1px solid var(--silver-300);
  outline: none;
  transition:
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.form-field input,
.form-field select {
  height: 46px;
  padding: 0 14px;
}

.form-field textarea {
  min-height: 155px;
  padding: 13px 14px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(10, 165, 171, 0.11);
}

.form-status {
  display: none;
  grid-column: 1 / -1;
  padding: 13px;
  color: var(--teal-900);
  background: var(--teal-100);
  border: 1px solid var(--teal-200);
  font-size: 13px;
}

.form-status.visible {
  display: block;
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
  position: relative;
  overflow: hidden;
  padding: 60px 25px;
  color: var(--white);
  background:
    radial-gradient(
      circle at 80% 50%,
      rgba(57, 212, 214, 0.25),
      transparent 33%
    ),
    linear-gradient(
      120deg,
      var(--teal-950),
      var(--teal-800)
    );
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(220, 255, 255, 0.23);
}

.cta__inner {
  position: relative;
  z-index: 2;
}

.cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
}

.cta p {
  max-width: 670px;
  margin: 15px auto 23px;
  color: #d8f6f6;
  line-height: 1.65;
}

/* =========================================================
   STOPKA
   ========================================================= */

.site-footer {
  color: #d5e7e8;
  background: var(--teal-950);
}

.footer-main {
  padding: 45px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr repeat(3, 1fr);
  gap: 35px;
}

.footer-logo {
  width: 220px;
  height: 145px;
  margin-top: -30px;
  object-fit: contain;
}

.footer-description {
  max-width: 360px;
  margin: -15px 0 0;
  color: #b4ccce;
  font-size: 13px;
  line-height: 1.65;
}

.footer-column h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 18px;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a {
  color: #b4ccce;
  font-size: 13px;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  padding: 15px 0;
  color: #9eb6b8;
  border-top: 1px solid rgba(221, 255, 255, 0.12);
  font-size: 11px;
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.socials {
  display: flex;
  gap: 10px;
}

.socials a {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--white);
  border: 1px solid rgba(221, 255, 255, 0.22);
  border-radius: 50%;
  font-size: 12px;
}

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

@media (max-width: 1240px) {
  .navbar {
    grid-template-columns: 245px minmax(0, 1fr) 235px;
  }

  .header-logo {
    width: 225px;
    height: 110px;
  }

  .menu {
    gap: 14px;
    font-size: 11px;
  }

  .home-hero__inner {
    grid-template-columns: 275px minmax(360px, 1fr) 420px;
  }

  .home-hero__brand img {
    width: 280px;
  }

  .hero-art {
    transform: scale(0.88);
    transform-origin: center;
  }

  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .container {
    width: min(calc(100% - 30px), 940px);
  }

  .navbar {
    position: relative;
    min-height: 100px;
    grid-template-columns: 1fr auto;
  }

  .header-logo {
    width: 190px;
    height: 90px;
  }

  .search-form {
    display: none;
  }

  .mobile-menu-button {
    display: flex;
  }

  .menu {
    position: absolute;
    z-index: 200;
    top: 100%;
    right: 0;
    left: 0;
    max-height: calc(100vh - 100px);
    display: grid;
    align-content: start;
    gap: 0;
    padding: 12px 20px 35px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.99);
    box-shadow: 0 18px 30px rgba(10, 76, 81, 0.12);
    transform: translateX(110%);
    transition: transform 0.22s ease;
  }

  .menu.open {
    transform: translateX(0);
  }

  .menu a {
    min-height: 55px;
    justify-content: center;
    border-bottom: 1px solid var(--border);
    font-size: 13px;
  }

  .menu a::after {
    display: none;
  }

  .home-hero__inner {
    grid-template-columns: 230px minmax(0, 1fr);
  }

  .home-hero__brand img {
    width: 230px;
    height: 250px;
  }

  .hero-art {
    display: none;
  }

  .benefits__inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit:nth-child(2) {
    border-right: 0;
  }

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

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

  .category-grid,
  .game-grid,
  .news-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .shop-layout {
    grid-template-columns: 1fr;
  }

  .filter-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .container {
    width: min(calc(100% - 20px), 610px);
  }

  .topbar__right {
    display: none;
  }

  .navbar {
    min-height: 90px;
  }

  .header-logo {
    width: 170px;
    height: 82px;
  }

  .menu {
    max-height: calc(100vh - 90px);
  }

  .home-hero {
    min-height: 610px;
  }

  .home-hero__inner {
    min-height: 610px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    padding: 35px 0 55px;
  }

  .home-hero__brand img {
    width: 225px;
    height: 225px;
  }

  .home-hero__copy {
    margin-top: -20px;
  }

  .home-hero__title {
    font-size: 43px;
  }

  .eyebrow {
    font-size: 13px;
    letter-spacing: 0.2em;
  }

  .ornate-button {
    min-width: 225px;
    font-size: 15px;
  }

  .page-hero {
    min-height: 360px;
  }

  .page-hero__inner {
    display: block;
    padding: 45px 0;
    text-align: center;
  }

  .page-hero__emblem {
    width: 160px;
    height: 160px;
    margin: 15px auto -20px;
  }

  .benefits__inner {
    grid-template-columns: 1fr;
  }

  .benefit {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .benefit:last-child {
    border-bottom: 0;
  }

  .product-grid,
  .category-grid,
  .game-grid,
  .news-grid,
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .filter-list {
    grid-template-columns: 1fr 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-field--full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom__inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 420px) {
  .product-card__buttons {
    grid-template-columns: 36px minmax(0, 1fr);
  }

  .product-card__buttons .favorite-button {
    width: 36px;
  }

  .product-card__buttons .cart-button {
    padding-inline: 8px;
    font-size: 9px;
  }
}

.menu ul {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 1.8vw, 31px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu li {
  height: 100%;
}

.menu .current-menu-item > a,
.menu .current_page_item > a {
  color: var(--teal-800);
}

.menu .current-menu-item > a::after,
.menu .current_page_item > a::after {
  right: 0;
  left: 0;
}

/* =========================================================
   WP — POJEDYNCZY WPIS
   ========================================================= */

.single-entry {
  max-width: 1000px;
  margin-inline: auto;
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.single-entry__header {
  margin-bottom: 30px;
}

.single-entry__title {
  max-width: 850px;
  margin: 10px 0 28px;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.08;
}

.single-entry__image {
  overflow: hidden;
  margin-top: 28px;
  border: 1px solid var(--border);
}

.single-entry__image img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.single-entry__content {
  color: var(--text);
  font-size: 17px;
  line-height: 1.85;
}

.single-entry__content h2,
.single-entry__content h3,
.single-entry__content h4 {
  margin-top: 38px;
  color: var(--black);
  font-family: var(--serif);
}

.single-entry__content h2 {
  font-size: 34px;
}

.single-entry__content h3 {
  font-size: 27px;
}

.single-entry__content img {
  height: auto;
  margin-block: 24px;
}

.single-entry__content a {
  color: var(--teal-700);
  text-decoration: underline;
}

.single-entry__footer {
  margin-top: 34px;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 13px;
}

.single-entry__footer a {
  color: var(--teal-700);
}

.post-navigation {
  max-width: 1000px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 25px auto 0;
}

.post-navigation > div:last-child {
  text-align: right;
}

.post-navigation a {
  display: inline-block;
  padding: 14px 18px;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 700;
}

/* =========================================================
   WP — KARTY WPISÓW
   ========================================================= */

.article-art--image {
  display: block;
}

.article-art--image::before {
  z-index: 2;
  pointer-events: none;
}

.article-art--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-content h2 a {
  transition: color 0.18s ease;
}

.article-content h2 a:hover {
  color: var(--teal-700);
}

.article-excerpt p {
  margin: 0 0 17px;
  color: var(--muted);
  line-height: 1.65;
}

/* =========================================================
   WP — WYSZUKIWARKA
   ========================================================= */

.search-page-form {
  max-width: 700px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  margin: 0 auto 35px;
}

.search-page-form input {
  min-width: 0;
  height: 47px;
  padding: 0 17px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-strong);
  outline: none;
}

.search-page-form input:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(10, 165, 171, 0.12);
}

.search-results-count {
  margin: 0 0 24px;
  color: var(--muted);
}

.empty-results {
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
}

/* =========================================================
   WP — PAGINACJA
   ========================================================= */

.navigation.pagination {
  margin-top: 35px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
}

.nav-links .page-numbers {
  min-width: 42px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 12px;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 13px;
  font-weight: 700;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
  color: var(--white);
  background: var(--teal-800);
}

/* =========================================================
   WP — STRONA 404
   ========================================================= */

.error-page {
  min-height: 620px;
  display: grid;
  place-items: center;
  padding: 70px 0;
  background:
    radial-gradient(
      circle at 50% 35%,
      rgba(57, 212, 214, 0.14),
      transparent 35%
    ),
    linear-gradient(
      #f8fbfb,
      #eef8f8
    );
}

.error-page__inner {
  max-width: 850px;
  text-align: center;
}

.error-page__symbol {
  color: var(--teal-700);
  font-family: var(--serif);
  font-size: clamp(100px, 15vw, 190px);
  font-weight: 700;
  line-height: 0.85;
  opacity: 0.18;
}

.error-page h1 {
  margin: 15px 0;
  color: var(--black);
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 68px);
}

.error-page__description {
  max-width: 620px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.error-page__buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

/* Ukryty tekst dostępny dla czytników ekranu */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

@media (max-width: 700px) {
  .single-entry {
    padding: 24px 18px;
  }

  .single-entry__title {
    font-size: 38px;
  }

  .post-navigation {
    grid-template-columns: 1fr;
  }

  .post-navigation > div:last-child {
    text-align: left;
  }

  .search-page-form {
    grid-template-columns: 1fr;
  }

  .search-page-form .button {
    width: 100%;
  }
}

/* =========================================================
   WOOCOMMERCE — KATALOG PRODUKTÓW
   ========================================================= */

.shop-products {
  min-width: 0;
}

.filter-button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-decoration: none;
}

.filter-button__count {
  min-width: 25px;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 6px;
  color: var(--teal-800);
  background: var(--teal-050);
  border-radius: 50%;
  font-size: 10px;
}

.filter-button:hover .filter-button__count,
.filter-button.active .filter-button__count {
  color: var(--teal-900);
  background: var(--white);
}

/* Pasek wyników i sortowanie */

.woocommerce .shop-toolbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
  margin: 0;
}

.woocommerce .woocommerce-result-count {
  color: var(--muted);
  font-size: 13px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 0 38px 0 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  outline: none;
}

/* Siatka produktów */

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

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

.woocommerce ul.products li.product {
  position: relative;
  width: auto;
  min-width: 0;
  overflow: hidden;
  float: none;
  margin: 0;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* Zdjęcie produktu */

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: transform 0.25s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.035);
}

/* Kategoria */

.woocommerce ul.products li.product
.product-card__category {
  margin: 16px 18px 4px;
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Nazwa */

.woocommerce ul.products li.product
.woocommerce-loop-product__title {
  min-height: 48px;
  margin: 0;
  padding: 0 18px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.3;
}

/* Cena */

.woocommerce ul.products li.product .price {
  display: block;
  margin: 10px 0 16px;
  padding: 0 18px;
  color: var(--teal-800);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

/* Przyciski */

.woocommerce ul.products li.product
.product-card__buttons {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  padding: 0 18px 18px;
}

.woocommerce ul.products li.product
.favorite-button {
  width: 44px;
  min-height: 43px;
  display: grid;
  place-items: center;
  color: var(--teal-800);
  background: var(--white);
  border: 1px solid var(--border-strong);
  font-size: 22px;
}

.woocommerce ul.products li.product
.favorite-button.active {
  color: var(--white);
  background: var(--teal-800);
}

.woocommerce ul.products li.product
.cart-button {
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0 12px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

/* Promocja */

.woocommerce span.onsale {
  z-index: 5;
  min-width: auto;
  min-height: auto;
  top: 12px;
  right: 12px;
  left: auto;
  margin: 0;
  padding: 7px 10px;
  color: var(--white);
  background: var(--teal-800);
  border-radius: 2px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

/* Stronicowanie */

.woocommerce nav.woocommerce-pagination {
  margin-top: 32px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--border);
}

.woocommerce nav.woocommerce-pagination
ul li span.current,
.woocommerce nav.woocommerce-pagination
ul li a:hover {
  color: var(--white);
  background: var(--teal-800);
}

/* Responsywność */

@media (max-width: 1100px) {
  .woocommerce ul.products {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 650px) {
  .woocommerce .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

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

/* =========================================================
   WOOCOMMERCE — POPRAWIONY UKŁAD PRODUKTÓW
   ========================================================= */

/* Główny layout: sidebar + lista produktów */

.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-products {
  min-width: 0;
}

/* Pasek nad produktami */

.woocommerce .shop-toolbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
  margin: 0;
}

.woocommerce .woocommerce-result-count {
  color: var(--muted);
  font-size: 13px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
  outline: none;
}

/* Siatka produktów */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(260px, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

.woocommerce ul.products li.product {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    border-color 0.18s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* Link całej karty */

.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block;
  text-decoration: none;
}

/* Zdjęcie produktu */

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  display: block;
  margin: 0 !important;
  padding: 18px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}

/* Kategoria */

.woocommerce ul.products li.product .product-card__category {
  margin: 16px 18px 6px;
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* Tytuł */

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  margin: 0;
  padding: 0 18px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.35;
  min-height: 74px;

  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Cena */

.woocommerce ul.products li.product .price {
  display: block;
  margin: 10px 0 16px;
  padding: 0 18px;
  color: var(--teal-800);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

/* Obszar przycisków */

.woocommerce ul.products li.product .product-card__buttons {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 10px;
  padding: 0 18px 18px;
  margin-top: auto;
}

/* Serce */

.woocommerce ul.products li.product .favorite-button {
  width: 44px;
  min-width: 44px;
  min-height: 44px;
  display: grid;
  place-items: center;
  color: var(--teal-800);
  background: var(--white);
  border: 1px solid var(--border-strong);
  font-size: 22px;
  line-height: 1;
}

.woocommerce ul.products li.product .favorite-button.active {
  color: var(--white);
  background: var(--teal-800);
}

/* Przycisk dodania do koszyka */

.woocommerce ul.products li.product .button.cart-button,
.woocommerce ul.products li.product .add_to_cart_button,
.woocommerce ul.products li.product .product_type_simple {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 10px 12px;
  color: var(--white);
  background: linear-gradient(
    var(--teal-600),
    var(--teal-800)
  );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  white-space: normal;
  word-break: break-word;
}

/* Etykieta promocji */

.woocommerce span.onsale {
  z-index: 5;
  min-width: auto;
  min-height: auto;
  top: 12px;
  right: 12px;
  left: auto;
  margin: 0;
  padding: 7px 10px;
  color: var(--white);
  background: var(--teal-800);
  border-radius: 2px;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

/* Stronicowanie */

.woocommerce nav.woocommerce-pagination {
  margin-top: 32px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: flex;
  justify-content: center;
  gap: 7px;
  margin: 0;
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  min-width: 42px;
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--border);
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover {
  color: var(--white);
  background: var(--teal-800);
}

/* Responsywność */

@media (max-width: 1100px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 700px) {
  .woocommerce .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

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

/* =========================================================
   WOOCOMMERCE — 3 PRODUKTY W RZĘDZIE
   ========================================================= */

.shop-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.shop-products {
  min-width: 0;
}

/* Siatka produktów */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 22px;
  margin: 0;
  padding: 0;
  list-style: none;
  align-items: stretch;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
  content: none !important;
}

/* Karta produktu */

.woocommerce ul.products li.product {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
  padding: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.woocommerce ul.products li.product:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* Link zawierający zdjęcie, nazwę i cenę */

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

/* Mniejsze, wyśrodkowane zdjęcie produktu */

.woocommerce ul.products li.product a img {
  width: 100% !important;
  max-width: 175px !important;
  height: 175px !important;
  display: block;
  margin: 20px auto 10px !important;
  padding: 8px;
  object-fit: contain;
  object-position: center;
  background: var(--white);
  border: 0;
  transition: transform 0.22s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.035);
}

/* Kategoria */

.woocommerce ul.products li.product
.product-card__category {
  margin: 12px 18px 5px;
  color: var(--teal-700);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

/* Nazwa produktu */

.woocommerce ul.products li.product
.woocommerce-loop-product__title {
  min-height: 68px;
  margin: 0;
  padding: 0 18px;
  color: var(--text);
  font-family: var(--serif);
  font-size: 17px;
  line-height: 1.32;

  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

/* Cena */

.woocommerce ul.products li.product .price {
  display: block;
  margin: 10px 0 16px;
  padding: 0 18px;
  color: var(--teal-800);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 700;
}

/* Przyciski na dole karty */

.woocommerce ul.products li.product
.product-card__buttons {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 9px;
  margin-top: auto;
  padding: 0 18px 18px;
}

.woocommerce ul.products li.product
.favorite-button {
  width: 44px;
  min-width: 44px;
  min-height: 43px;
  display: grid;
  place-items: center;
  color: var(--teal-800);
  background: var(--white);
  border: 1px solid var(--border-strong);
  font-size: 21px;
  line-height: 1;
}

.woocommerce ul.products li.product
.favorite-button.active {
  color: var(--white);
  background: var(--teal-800);
}

/* Dodaj do koszyka */

.woocommerce ul.products li.product
.product-card__buttons .button,
.woocommerce ul.products li.product
.product-card__buttons .add_to_cart_button {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 8px 10px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  white-space: normal;
  text-transform: uppercase;
}

/* Pasek sortowania */

.woocommerce .shop-toolbar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  float: none;
  margin: 0;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 0 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border);
}

/* Tablet */

@media (max-width: 1100px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }

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

  .woocommerce ul.products li.product a img {
    max-width: 190px !important;
    height: 190px !important;
  }
}

/* Telefon */

@media (max-width: 650px) {
  .woocommerce .shop-toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .woocommerce .woocommerce-ordering select {
    width: 100%;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

  .woocommerce ul.products li.product a img {
    max-width: 220px !important;
    height: 220px !important;
  }
}

/* =========================================================
   STRONA GŁÓWNA — HERO BEZ PRAWEGO PLACEHOLDERA
   ========================================================= */

.home-hero__inner {
  min-height: 470px;
  display: grid;
  grid-template-columns:
    minmax(280px, 360px)
    minmax(480px, 720px);
  justify-content: center;
  align-items: center;
  gap: clamp(35px, 5vw, 80px);
}

.home-hero__brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-hero__brand img {
  width: min(100%, 340px);
  height: auto;
  object-fit: contain;
}

.home-hero__copy {
  width: 100%;
  max-width: 720px;
  text-align: center;
}

/* Placeholder nie pojawi się nawet, jeśli pozostał w PHP */

.home-hero .hero-art {
  display: none !important;
}

@media (max-width: 1000px) {
  .home-hero__inner {
    grid-template-columns: 280px minmax(0, 600px);
    gap: 30px;
  }

  .home-hero__brand img {
    width: 280px;
  }

  .home-hero__title {
    font-size: clamp(42px, 7vw, 58px);
  }
}

@media (max-width: 760px) {
  .home-hero {
    min-height: auto;
    padding: 45px 0 55px;
  }

  .home-hero__inner {
    min-height: auto;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }

  .home-hero__brand img {
    width: min(280px, 80vw);
  }

  .home-hero__copy {
    max-width: 560px;
  }

  .home-hero__title {
    font-size: clamp(40px, 12vw, 57px);
  }

  .home-hero__description {
    font-size: 15px;
  }
}

/* =========================================================
   WOOCOMMERCE — STRONA KOSZYKA
   ========================================================= */

.cart-page__content,
.woocommerce-cart .entry-content {
  min-width: 0;
}

/* Blokowy koszyk WooCommerce */

.wc-block-cart {
  margin: 0;
  color: var(--text);
}

.wc-block-components-sidebar-layout {
  align-items: start;
  gap: 28px;
}

.wc-block-cart__main {
  overflow: hidden;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

.wc-block-cart__sidebar {
  padding: 26px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

.wc-block-cart-items {
  border-collapse: collapse;
}

.wc-block-cart-items__row {
  border-bottom: 1px solid var(--border);
}

.wc-block-cart-item__image img {
  width: 110px;
  height: 110px;
  object-fit: contain;
  background: var(--white);
}

.wc-block-components-product-name {
  color: var(--black);
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.wc-block-components-product-price,
.wc-block-components-totals-item__value {
  color: var(--teal-800);
  font-weight: 700;
}

.wc-block-components-quantity-selector {
  border-color: var(--border-strong);
  border-radius: 0;
}

.wc-block-components-button:not(.is-link) {
  min-height: 48px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    0 7px 15px rgba(6, 95, 101, 0.15);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-transform: uppercase;
}

.wc-block-components-button:not(.is-link):hover {
  color: var(--white);
  filter: brightness(1.05);
}

.wc-block-cart__submit {
  margin-top: 20px;
}

.wc-block-components-totals-wrapper {
  border-color: var(--border);
}

/* Pusty koszyk */

.wp-block-woocommerce-empty-cart-block {
  padding: 45px 30px;
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

/* Klasyczny koszyk shortcode */

.woocommerce-cart-form,
.cart_totals {
  padding: 25px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

.woocommerce table.shop_table {
  border-color: var(--border);
  border-radius: 0;
}

.woocommerce table.shop_table th {
  color: var(--teal-900);
  font-family: var(--serif);
}

.woocommerce-cart table.cart img {
  width: 90px;
  height: 90px;
  object-fit: contain;
}

.woocommerce-cart .cart-collaterals {
  margin-top: 28px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  width: min(100%, 500px);
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.checkout-button {
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.checkout-button:hover {
  color: var(--white);
  background: var(--teal-800);
}

/* Telefon */

@media (max-width: 780px) {
  .wc-block-components-sidebar-layout {
    display: block;
  }

  .wc-block-cart__main,
  .wc-block-cart__sidebar {
    padding: 18px;
  }

  .wc-block-cart__sidebar {
    margin-top: 20px;
  }
}

/* =========================================================
   WOOCOMMERCE — MOJE KONTO
   ========================================================= */

.account-page__content {
  min-width: 0;
}



/* Menu konta */

.woocommerce-account
.woocommerce-MyAccount-navigation {
  width: auto;
  float: none;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

.woocommerce-account
.woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.woocommerce-account
.woocommerce-MyAccount-navigation li {
  margin: 0;
}

.woocommerce-account
.woocommerce-MyAccount-navigation a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

.woocommerce-account
.woocommerce-MyAccount-navigation a:hover,
.woocommerce-account
.woocommerce-MyAccount-navigation
.is-active a {
  color: var(--white);
  background: var(--teal-800);
  border-color: var(--teal-900);
}

/* Główna zawartość konta */

.woocommerce-account
.woocommerce-MyAccount-content {
  width: auto;
  min-width: 0;
  float: none;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
}

.woocommerce-account
.woocommerce-MyAccount-content h2,
.woocommerce-account
.woocommerce-MyAccount-content h3 {
  color: var(--black);
  font-family: var(--serif);
}

.woocommerce-account
.woocommerce-MyAccount-content a {
  color: var(--teal-700);
}

/* Formularze logowania i rejestracji */

.woocommerce-account
.woocommerce-form-login,
.woocommerce-account
.woocommerce-form-register {
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 0;
  box-shadow: var(--shadow-small);
}

.woocommerce-account
.woocommerce form .form-row input.input-text,
.woocommerce-account
.woocommerce form .form-row textarea {
  min-height: 45px;
  padding: 10px 13px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  outline: none;
}

.woocommerce-account
.woocommerce form .form-row input.input-text:focus,
.woocommerce-account
.woocommerce form .form-row textarea:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(10, 165, 171, 0.12);
}

.woocommerce-account
.woocommerce button.button,
.woocommerce-account
.woocommerce a.button {
  min-height: 43px;
  padding: 10px 20px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.woocommerce-account
.woocommerce button.button:hover,
.woocommerce-account
.woocommerce a.button:hover {
  color: var(--white);
  background: var(--teal-800);
}

/* Tabele zamówień */

.woocommerce-account
.woocommerce table.shop_table {
  border-color: var(--border);
  border-radius: 0;
}

.woocommerce-account
.woocommerce table.shop_table th {
  color: var(--teal-900);
  font-family: var(--serif);
}

/* Responsywność */

@media (max-width: 850px) {
  .woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }

  .woocommerce-account
  .woocommerce-MyAccount-navigation,
  .woocommerce-account
  .woocommerce-MyAccount-content {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .woocommerce-account
  .woocommerce-MyAccount-content,
  .woocommerce-account
  .woocommerce-form-login,
  .woocommerce-account
  .woocommerce-form-register {
    padding: 18px;
  }
}

/* =========================================================
   WOOCOMMERCE — MOJE KONTO
   ========================================================= */

/*
 * NIEZALOGOWANY UŻYTKOWNIK
 * Formularze logowania i rejestracji.
 */

body.woocommerce-account:not(.logged-in) .woocommerce {
  display: block !important;
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
}

/* Dwie równe kolumny */

body.woocommerce-account:not(.logged-in)
#customer_login {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: start;
  width: 100%;
  max-width: 1000px;
  margin: 30px auto 0;
}

/*
 * Usunięcie domyślnych floatów i szerokości WooCommerce.
 */

body.woocommerce-account:not(.logged-in)
#customer_login .u-column1,
body.woocommerce-account:not(.logged-in)
#customer_login .u-column2,
body.woocommerce-account:not(.logged-in)
#customer_login .col-1,
body.woocommerce-account:not(.logged-in)
#customer_login .col-2 {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}

/* Nagłówki Logowanie / Zarejestruj się */

body.woocommerce-account:not(.logged-in)
#customer_login h2 {
  margin: 0 0 18px;
  color: var(--black);
  font-family: var(--serif);
  font-size: 28px;
  line-height: 1.2;
  text-align: left;
}

/* Karty formularzy */

body.woocommerce-account:not(.logged-in)
.woocommerce-form-login,
body.woocommerce-account:not(.logged-in)
.woocommerce-form-register {
  width: 100%;
  min-width: 0;
  margin: 0 !important;
  padding: 30px !important;
  background: var(--white);
  border: 1px solid var(--border) !important;
  border-radius: 0 !important;
  box-shadow: var(--shadow-small);
}

/* Pola formularzy */

body.woocommerce-account:not(.logged-in)
.woocommerce form .form-row {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
}

body.woocommerce-account:not(.logged-in)
.woocommerce form .form-row label {
  display: block;
  margin-bottom: 7px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
}

body.woocommerce-account:not(.logged-in)
.woocommerce form .form-row input.input-text {
  width: 100%;
  min-width: 0;
  min-height: 47px;
  padding: 10px 14px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  outline: none;
  font-size: 15px;
}

body.woocommerce-account:not(.logged-in)
.woocommerce form .form-row input.input-text:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(10, 165, 171, 0.12);
}

/* Pole hasła */

body.woocommerce-account:not(.logged-in)
.woocommerce .password-input {
  position: relative;
  display: block;
  width: 100%;
}

body.woocommerce-account:not(.logged-in)
.woocommerce .password-input input {
  width: 100%;
  padding-right: 48px;
}

body.woocommerce-account:not(.logged-in)
.woocommerce .show-password-input {
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

/* Tekst formularza rejestracji */

body.woocommerce-account:not(.logged-in)
.woocommerce-form-register p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

/* Zapamiętaj mnie */

body.woocommerce-account:not(.logged-in)
.woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 15px 15px 0;
  font-size: 13px;
}

body.woocommerce-account:not(.logged-in)
.woocommerce-form-login__rememberme input {
  width: 16px;
  height: 16px;
  margin: 0;
}

/* Przyciski */

body.woocommerce-account:not(.logged-in)
.woocommerce-form-login button.button,
body.woocommerce-account:not(.logged-in)
.woocommerce-form-register button.button {
  min-width: 160px;
  min-height: 46px;
  margin: 0;
  padding: 10px 22px;
  color: var(--white);
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

body.woocommerce-account:not(.logged-in)
.woocommerce-form-login button.button:hover,
body.woocommerce-account:not(.logged-in)
.woocommerce-form-register button.button:hover {
  color: var(--white);
  background: var(--teal-800);
}

/* Nie pamiętasz hasła */

body.woocommerce-account:not(.logged-in)
.woocommerce-LostPassword {
  margin: 18px 0 0;
}

body.woocommerce-account:not(.logged-in)
.woocommerce-LostPassword a {
  color: var(--teal-700);
  font-size: 13px;
}

body.woocommerce-account:not(.logged-in)
.woocommerce-LostPassword a:hover {
  color: var(--teal-900);
  text-decoration: underline;
}

/*
 * ZALOGOWANY UŻYTKOWNIK
 * Menu konta + zawartość panelu.
 */

body.logged-in.woocommerce-account .woocommerce {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

body.logged-in.woocommerce-account
.woocommerce-MyAccount-navigation {
  width: auto;
  float: none;
}

body.logged-in.woocommerce-account
.woocommerce-MyAccount-content {
  width: auto;
  min-width: 0;
  float: none;
}

/* Tablet i telefon */

@media (max-width: 800px) {
  body.woocommerce-account:not(.logged-in)
  #customer_login {
    grid-template-columns: 1fr;
    max-width: 560px;
  }

  body.logged-in.woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 550px) {
  body.woocommerce-account:not(.logged-in)
  .woocommerce-form-login,
  body.woocommerce-account:not(.logged-in)
  .woocommerce-form-register {
    padding: 20px !important;
  }

  body.woocommerce-account:not(.logged-in)
  #customer_login h2 {
    font-size: 25px;
  }
}

/* =========================================================
   WOOCOMMERCE — MOJE KONTO
   LOGOWANIE + REJESTRACJA OBOK SIEBIE
   ========================================================= */

body.woocommerce-account:not(.logged-in) .woocommerce {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}

/* główny wrapper formularzy */
body.woocommerce-account:not(.logged-in) #customer_login {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: start;
  max-width: 1100px;
  margin: 30px auto 0;
}

/* reset domyślnych kolumn WooCommerce */
body.woocommerce-account:not(.logged-in) #customer_login .u-column1,
body.woocommerce-account:not(.logged-in) #customer_login .u-column2,
body.woocommerce-account:not(.logged-in) #customer_login .col-1,
body.woocommerce-account:not(.logged-in) #customer_login .col-2 {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: block !important;
}

/* nagłówki */
body.woocommerce-account:not(.logged-in) #customer_login h2 {
  margin: 0 0 18px;
  text-align: left;
}

/* formularze jako karty */
body.woocommerce-account:not(.logged-in) .woocommerce-form-login,
body.woocommerce-account:not(.logged-in) .woocommerce-form-register {
  width: 100% !important;
  margin: 0 !important;
  padding: 30px !important;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  box-sizing: border-box;
}

/* pola */
body.woocommerce-account:not(.logged-in) .woocommerce form .form-row {
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
}

body.woocommerce-account:not(.logged-in) .woocommerce form .form-row input.input-text {
  width: 100%;
  min-height: 46px;
  box-sizing: border-box;
}

/* checkbox i button w logowaniu */
body.woocommerce-account:not(.logged-in) .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

body.woocommerce-account:not(.logged-in) .woocommerce-form-login button.button,
body.woocommerce-account:not(.logged-in) .woocommerce-form-register button.button {
  min-width: 170px;
}

/* mobilnie pod sobą */
@media (max-width: 900px) {
  body.woocommerce-account:not(.logged-in) #customer_login {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

body.woocommerce-account:not(.logged-in) #customer_login::before,
body.woocommerce-account:not(.logged-in) #customer_login::after,
body.woocommerce-account:not(.logged-in) #customer_login .u-column1::before,
body.woocommerce-account:not(.logged-in) #customer_login .u-column1::after,
body.woocommerce-account:not(.logged-in) #customer_login .u-column2::before,
body.woocommerce-account:not(.logged-in) #customer_login .u-column2::after {
  content: none !important;
  display: none !important;
}

/* =========================================================
   WOOCOMMERCE — MOJE KONTO PO ZALOGOWANIU
   MENU PO LEWEJ, TREŚĆ PO PRAWEJ
   ========================================================= */

body.logged-in.woocommerce-account .woocommerce {
  display: grid !important;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  margin: 30px auto 0;
}

/* LEWA KOLUMNA — MENU */

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
  width: 100% !important;
  max-width: 260px;
  float: none !important;
  margin: 0 !important;
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  box-sizing: border-box;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation li {
  margin: 0;
  padding: 0;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a {
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 10px 14px;
  color: var(--teal-900);
  background: var(--white);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation a:hover,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation .is-active a {
  color: var(--white);
  background: var(--teal-800);
  border-color: var(--teal-900);
}

/* PRAWA KOLUMNA — ZAWARTOŚĆ */

body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  width: 100% !important;
  max-width: none !important;
  min-width: 0;
  float: none !important;
  margin: 0 !important;
  padding: 28px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  box-sizing: border-box;
}

/* Nagłówki w treści */

body.logged-in.woocommerce-account .woocommerce-MyAccount-content h2,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content h3 {
  margin-top: 0;
  color: var(--black);
  font-family: var(--serif);
}

/* Przyciski */

body.logged-in.woocommerce-account .woocommerce-MyAccount-content .button,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content a.button,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content button.button {
  min-height: 43px;
  padding: 10px 18px;
  color: var(--white);
  background: linear-gradient(
    var(--teal-600),
    var(--teal-800)
  );
  border: 1px solid var(--teal-900);
  border-radius: 2px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-content .button:hover,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content a.button:hover,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content button.button:hover {
  color: var(--white);
  background: var(--teal-800);
}

/* Komunikaty, puste zamówienia itp. */

body.logged-in.woocommerce-account .woocommerce-message,
body.logged-in.woocommerce-account .woocommerce-info,
body.logged-in.woocommerce-account .woocommerce-error {
  margin-bottom: 20px;
}

body.logged-in.woocommerce-account .woocommerce-info {
  padding: 18px 20px 18px 48px;
  background: #f7fbfb;
  border: 1px solid var(--border);
}

/* Tabele */

body.logged-in.woocommerce-account .woocommerce table.shop_table {
  border-color: var(--border);
  border-radius: 0;
}

body.logged-in.woocommerce-account .woocommerce table.shop_table th {
  color: var(--teal-900);
  font-family: var(--serif);
}

/* Pusty stan zamówień */

body.logged-in.woocommerce-account .woocommerce-MyAccount-content .woocommerce-info .button {
  margin-top: 12px;
}

/* RESPONSYWNOŚĆ */

@media (max-width: 900px) {
  body.logged-in.woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation {
    max-width: none;
  }
}

body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content {
  clear: none !important;
}

body.logged-in.woocommerce-account .woocommerce::before,
body.logged-in.woocommerce-account .woocommerce::after,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation::before,
body.logged-in.woocommerce-account .woocommerce-MyAccount-navigation::after,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content::before,
body.logged-in.woocommerce-account .woocommerce-MyAccount-content::after {
  content: none !important;
  display: none !important;
}

/* =========================================================
   WOOCOMMERCE — POJEDYNCZY PRODUKT
   MNIEJSZA GALERIA PRODUKTU
   ========================================================= */

/* Główny układ: mniejsze zdjęcie + większa kolumna informacji */

.single-product div.product {
  display: grid;
  grid-template-columns:
    minmax(320px, 440px)
    minmax(0, 1fr);
  gap: clamp(35px, 5vw, 70px);
  align-items: start;
}

/* Usunięcie domyślnych floatów i szerokości WooCommerce */

.single-product div.product div.images,
.single-product div.product div.summary {
  width: 100% !important;
  float: none !important;
  clear: none !important;
  margin: 0 !important;
}

/* Cała galeria */

.single-product .woocommerce-product-gallery {
  width: 100%;
  max-width: 440px;
  justify-self: center;
}

/* Obszar głównego zdjęcia */

.single-product
.woocommerce-product-gallery__wrapper
> .woocommerce-product-gallery__image {
  min-height: 430px;
  display: grid !important;
  place-items: center;
  padding: 24px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border);
}

/* Główne zdjęcie produktu */

.single-product
.woocommerce-product-gallery__wrapper
> .woocommerce-product-gallery__image
img {
  width: auto !important;
  max-width: 100% !important;
  height: auto !important;
  max-height: 380px;
  margin: auto !important;
  object-fit: contain;
  object-position: center;
}

/* Miniatury galerii */

.single-product
.woocommerce-product-gallery
.flex-control-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin: 12px 0 0 !important;
  padding: 0;
}

.single-product
.woocommerce-product-gallery
.flex-control-thumbs li {
  width: auto !important;
  float: none !important;
  margin: 0 !important;
}

.single-product
.woocommerce-product-gallery
.flex-control-thumbs img {
  width: 100% !important;
  height: 85px !important;
  padding: 6px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--border);
}

/* Responsywność */

@media (max-width: 900px) {
  .single-product div.product {
    grid-template-columns: 1fr;
  }

  .single-product .woocommerce-product-gallery {
    max-width: 500px;
  }
}

@media (max-width: 550px) {
  .single-product
  .woocommerce-product-gallery__wrapper
  > .woocommerce-product-gallery__image {
    min-height: 330px;
    padding: 16px;
  }

  .single-product
  .woocommerce-product-gallery__wrapper
  > .woocommerce-product-gallery__image
  img {
    max-height: 300px;
  }

  .single-product
  .woocommerce-product-gallery
  .flex-control-thumbs img {
    height: 68px !important;
  }
}

/* Krótki opis umieszczony pod przyciskiem */

.single-product
.woocommerce-product-details__short-description {
  margin-top: 24px;
  padding: 22px 0 0;
  color: var(--muted);
  border-top: 1px solid var(--border);
  font-size: 15px;
  line-height: 1.75;
}

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

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

.single-product
.woocommerce-product-details__short-description ul {
  display: grid;
  gap: 7px;
  margin: 15px 0 0;
  padding-left: 20px;
}

.single-product div.product .single_add_to_cart_button {
  text-transform: none !important;
}

/* =========================================================
   POJEDYNCZY PRODUKT — ILOŚĆ + DODAJ DO KOSZYKA
   ========================================================= */

.single-product {
  --shufflore-purchase-control-height: 50px;
}

/* Produkt prosty */

.single-product div.product
form.cart:not(.variations_form):not(.grouped_form) {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}

/* Produkt wariantowy */

.single-product div.product
.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}

/* Kontener ilości */

.single-product div.product form.cart .quantity {
  width: 82px;
  height: var(--shufflore-purchase-control-height);
  display: flex;
  align-items: stretch;
  flex: 0 0 82px;
  margin: 0 !important;
}

/* Pole liczby sztuk */

.single-product div.product form.cart .quantity .qty {
  width: 100%;
  height: 100% !important;
  min-height: var(--shufflore-purchase-control-height);
  margin: 0;
  padding: 0 10px;
  color: var(--text);
  background: var(--white);
  border: 1px solid var(--border-strong);
  border-radius: 0;
  box-sizing: border-box;
  outline: none;
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  text-align: center;
}

.single-product div.product form.cart .quantity .qty:focus {
  border-color: var(--teal-700);
  box-shadow: 0 0 0 3px rgba(10, 165, 171, 0.12);
}

/* Przycisk koszyka */

.single-product div.product
.single_add_to_cart_button {
  width: auto;
  min-width: 210px;
  height: var(--shufflore-purchase-control-height);
  min-height: var(--shufflore-purchase-control-height);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  padding: 0 24px;
  box-sizing: border-box;
  line-height: 1.2;
  text-transform: none !important;
}

/* Przyciski plus/minus, jeśli dodaje je motyw lub wtyczka */

.single-product div.product form.cart .quantity button,
.single-product div.product form.cart .quantity .plus,
.single-product div.product form.cart .quantity .minus {
  height: 100%;
  min-height: 0;
  box-sizing: border-box;
	
}

/* Telefon */

@media (max-width: 520px) {
  .single-product div.product
  form.cart:not(.variations_form):not(.grouped_form),
  .single-product div.product
  .woocommerce-variation-add-to-cart {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 10px;
  }

  .single-product div.product
  .single_add_to_cart_button {
    width: 100%;
    min-width: 0;
    padding-inline: 14px;
  }
}

/* =========================================================
   WOOCOMMERCE — ZAWSZE WIDOCZNE + I −
   ========================================================= */

.single-product div.product form.cart .quantity {
  width: 132px;
  height: 50px;
  display: grid;
  grid-template-columns: 40px 52px 40px;
  align-items: stretch;
  flex: 0 0 132px;
  margin: 0 !important;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--border-strong);
  box-sizing: border-box;
}

/* Pole liczby */

.single-product div.product form.cart .quantity .qty {
  width: 100% !important;
  min-width: 0;
  height: 48px !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 0 4px;
  color: var(--text);
  background: var(--white);
  border: 0 !important;
  border-right: 1px solid var(--border);
  border-left: 1px solid var(--border);
  border-radius: 0;
  box-shadow: none;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 700;
  line-height: 48px;
  text-align: center;
}

/* Własne przyciski */

.single-product div.product form.cart
.quantity .quantity-button {
  width: 40px;
  height: 48px;
  min-height: 48px;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
  color: var(--teal-900);
  background: var(--teal-050);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition:
    color 0.18s ease,
    background 0.18s ease;
}

.single-product div.product form.cart
.quantity .quantity-button:hover {
  color: var(--white);
  background: var(--teal-800);
}

.single-product div.product form.cart
.quantity .quantity-button:focus-visible {
  position: relative;
  z-index: 2;
  outline: 3px solid rgba(10, 165, 171, 0.25);
  outline-offset: -3px;
}

/* Ukrywamy natywne strzałki, bo mamy własne */

.single-product div.product form.cart
.quantity input[type="number"] {
  appearance: textfield;
  -moz-appearance: textfield;
}

.single-product div.product form.cart
.quantity input[type="number"]::-webkit-inner-spin-button,
.single-product div.product form.cart
.quantity input[type="number"]::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

/* Pole i przycisk koszyka w jednej linii */

.single-product div.product
form.cart:not(.variations_form):not(.grouped_form),
.single-product div.product
.woocommerce-variation-add-to-cart {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 12px;
}

.single-product div.product
.single_add_to_cart_button {
  min-height: 50px;
  height: 50px;
}

/* =========================================================
   WIĘKSZA CZCIONKA W HEADERZE
   ========================================================= */

/* Główne menu */

.site-header .menu {
  font-size: 18px;
}

/* Górny zielony pasek */

.topbar__inner {
  font-size: 14px;
}

/* Wyszukiwarka */

.site-header .search-form input {
  font-size: 14px;
}

/* Licznik koszyka i logowanie */

.topbar__link,
.topbar__shipping {
  font-size: 14px;
}

a.added_to_cart.wc-forward,
a.added_to_cart.wc_forward {
  display: none !important;
}

/* Stan przycisku po dodaniu produktu */

.add_to_cart_button.shufflore-added-to-cart,
.ajax_add_to_cart.shufflore-added-to-cart {
  color: var(--white) !important;
  background: var(--teal-900) !important;
}

/* Usuwa ikonę potwierdzenia z przycisków WooCommerce */

body.home .add_to_cart_button.added::before,
body.home .add_to_cart_button.added::after,
body.post-type-archive-product
.add_to_cart_button.added::before,
body.post-type-archive-product
.add_to_cart_button.added::after,
body.tax-product_cat
.add_to_cart_button.added::before,
body.tax-product_cat
.add_to_cart_button.added::after {
  display: none !important;
  content: none !important;
  margin: 0 !important;
}

/* =========================================================
   JEDNAKOWE PRZYCISKI PRODUKTÓW
   STRONA GŁÓWNA + SKLEP + KATEGORIE
   ========================================================= */

/* Wspólna animacja */

.product-card__buttons .favorite-button,
.product-card__buttons .cart-button,
.woocommerce ul.products li.product .favorite-button,
.woocommerce ul.products li.product .cart-button,
.woocommerce ul.products li.product .add_to_cart_button {
  transition:
    color 0.18s ease,
    background 0.18s ease,
    border-color 0.18s ease !important;
}

/* =========================================================
   ULUBIONE — STAN PODSTAWOWY
   ========================================================= */

.product-card__buttons .favorite-button,
.woocommerce ul.products li.product .favorite-button {
  color: var(--teal-900) !important;
  background: var(--white) !important;
  border-color: var(--border-strong) !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* ULUBIONE — HOVER I AKTYWNY */

.product-card__buttons .favorite-button:hover,
.product-card__buttons .favorite-button.active,
.woocommerce ul.products li.product .favorite-button:hover,
.woocommerce ul.products li.product .favorite-button.active {
  color: var(--white) !important;
  background: var(--teal-800) !important;
  border-color: var(--teal-800) !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* =========================================================
   DODAJ DO KOSZYKA — STAN PODSTAWOWY
   ========================================================= */

.product-card__buttons .cart-button,
.product-card__buttons .add_to_cart_button,
.woocommerce ul.products li.product .cart-button,
.woocommerce ul.products li.product .add_to_cart_button {
  color: var(--white) !important;
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    ) !important;
  border-color: var(--teal-900) !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* DODAJ DO KOSZYKA — HOVER */

.product-card__buttons .cart-button:hover,
.product-card__buttons .add_to_cart_button:hover,
.woocommerce ul.products li.product .cart-button:hover,
.woocommerce ul.products li.product .add_to_cart_button:hover {
  color: var(--white) !important;
  background: var(--teal-900) !important;
  border-color: var(--teal-900) !important;
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Stan podczas dodawania i po dodaniu */

.woocommerce ul.products li.product
.add_to_cart_button.loading,

.woocommerce ul.products li.product
.add_to_cart_button.added,

.product-card__buttons
.add_to_cart_button.loading,

.product-card__buttons
.add_to_cart_button.added {
  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* =========================================================
   STRONA GŁÓWNA — 8 KATEGORII W UKŁADZIE 4 × 2
   ========================================================= */

.home-category-grid {
  display: grid;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* Mniejsza karta dopasowana do czterech kolumn */

.home-category-grid .category-card {
  min-width: 0;
  min-height: 245px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text);
  background:
    radial-gradient(
      circle at 82% 17%,
      rgba(57, 212, 214, 0.18),
      transparent 31%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #e9f7f7
    );
  border: 1px solid var(--border);
  box-shadow: var(--shadow-small);
  text-decoration: none;
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.home-category-grid .category-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* Mniejszy symbol kategorii */

.home-category-grid .category-card__symbol {
  top: 19px;
  right: 20px;
  width: 76px;
  height: 76px;
  color: var(--teal-400);
  background:
    radial-gradient(
      circle,
      #0b7f86,
      #04363c
    );
  border: 5px double var(--silver-300);
  box-shadow:
    0 10px 18px rgba(4, 71, 76, 0.15);
  font-size: 27px;
}

/* Nazwa kategorii */

.home-category-grid .category-card h3 {
  max-width: calc(100% - 40px);
  margin: 0 0 7px;
  color: var(--black);
  font-family: var(--serif);
  font-size: 21px;
  line-height: 1.2;
}

/* Opis */

.home-category-grid .category-card p {
  min-height: 60px;
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

/* Przycisk w karcie */

.home-category-grid .category-card .button {
  width: 100%;
  min-width: 0;
  min-height: 39px;
  margin-top: auto;
  padding: 8px 12px;
  font-size: 10px;
  text-align: center;
}

/* Hover przycisku zgodny ze stylem ShuffLore */

.home-category-grid
.category-card:hover
.button--light {
  color: var(--white);
  background: var(--teal-800);
  border-color: var(--teal-900);
}

/* Tablet — 2 kategorie w rzędzie */

@media (max-width: 1100px) {
  .home-category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .home-category-grid .category-card {
    min-height: 235px;
  }
}

/* Telefon — 1 kategoria w rzędzie */

@media (max-width: 650px) {
  .home-category-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .home-category-grid .category-card {
    min-height: 225px;
    padding: 20px;
  }

  .home-category-grid .category-card__symbol {
    width: 68px;
    height: 68px;
    font-size: 24px;
  }

  .home-category-grid .category-card p {
    min-height: 0;
  }
}

/* =========================================================
   KATEGORIE — DYNAMICZNE ZAWIJANIE TEKSTU
   ========================================================= */

.home-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 20px;
  align-items: stretch;
}

/* Cała karta kategorii */

.home-category-grid .category-card {
  width: 100%;
  min-width: 0;
  min-height: 0;
  height: auto;

  display: flex;
  flex-direction: column;

  padding: 22px;
  overflow: visible;

  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;
}

/* Nazwa kategorii */

.home-category-grid .category-card h3 {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: auto;

  margin: 0 0 8px;
  padding: 0;

  overflow: visible;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;

  /* Usuwa ewentualne ograniczenie liczby linii */
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;

  font-size: 21px;
  line-height: 1.25;
}

/* Opis kategorii */

.home-category-grid .category-card p {
  width: 100%;
  max-width: 100%;
  min-height: 0;
  height: auto;

  margin: 0 0 16px;

  overflow: visible;
  white-space: normal;
  word-break: normal;
  overflow-wrap: anywhere;
  hyphens: auto;

  /* Usuwa ewentualne obcinanie tekstu */
  display: block;
  -webkit-line-clamp: unset;
  -webkit-box-orient: initial;

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

/* Przycisk zawsze pozostaje na dole karty */

.home-category-grid .category-card .button {
  width: 100%;
  min-width: 0;
  height: auto;
  min-height: 40px;

  margin-top: auto;
  padding: 9px 12px;

  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.25;
  text-align: center;
}

/* Tablet */

@media (max-width: 1100px) {
  .home-category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Telefon */

@media (max-width: 650px) {
  .home-category-grid {
    grid-template-columns: 1fr;
  }

  .home-category-grid .category-card {
    padding: 20px;
  }

  .home-category-grid .category-card h3 {
    font-size: 20px;
  }
}

/* =========================================================
   KARTA KATEGORII NA STRONIE GŁÓWNEJ
   ========================================================= */

.home-category-card {
  width: 100%;
  min-width: 0;
  min-height: 320px;
  height: 100%;
  padding: 22px;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--text);
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(57, 212, 214, 0.13),
      transparent 42%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #e9f7f7
    );

  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-small);

  overflow: hidden;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.home-category-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* Nazwa kategorii */

.home-category-card__title {
  width: 100%;
  min-height: 52px;
  margin: 0 0 15px;
  padding: 0;

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

  color: var(--black);
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Kontener obrazu */

.home-category-card__image-wrapper {
  width: 100%;
  height: 155px;
  margin-bottom: 18px;

  display: flex;
  align-items: center;
  justify-content: center;
}

/* Obraz kategorii */

.home-category-card__image {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 150px;

  object-fit: contain;

  transition: transform 0.2s ease;
}

.home-category-card:hover
.home-category-card__image {
  transform: scale(1.04);
}

/* Przycisk */

.home-category-card__button {
  width: 100%;
  min-width: 0;
  min-height: 42px;
  margin-top: auto;
  padding: 10px 14px;

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

  text-align: center;
  white-space: normal;
  line-height: 1.2;
}

.home-category-card__button:hover {
  color: var(--white) !important;
  background: var(--teal-900) !important;
  border-color: var(--teal-900) !important;
  transform: none !important;
}

/* =========================================================
   STOPKA SKLEPU SHUFFLORE
   ========================================================= */

.site-footer {
  margin-top: auto;
  color: #d7e7e8;
  background: var(--teal-900, #053b40);
}

/* Górne kafelki informacyjne */

.footer-services {
  color: var(--white, #ffffff);
  background:
    linear-gradient(
      135deg,
      var(--teal-700, #08737a),
      var(--teal-900, #053b40)
    );
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-services__grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
}

.footer-service {
  min-width: 0;
  padding: 22px 25px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  color: inherit;
  text-decoration: none;
  text-align: left;

  border-right: 1px solid rgba(255, 255, 255, 0.13);

  transition:
    background 0.18s ease,
    color 0.18s ease;
}

.footer-service:last-child {
  border-right: 0;
}

.footer-service:hover {
  color: var(--white, #ffffff);
  background: rgba(255, 255, 255, 0.08);
}

.footer-service__icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;

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

  color: var(--teal-300, #65e1df);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  font-size: 19px;
}

.footer-service__content {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.footer-service__content strong {
  color: var(--white, #ffffff);
  font-size: 14px;
  line-height: 1.3;
}

.footer-service__content small {
  color: rgba(255, 255, 255, 0.7);
  font-size: 12px;
  line-height: 1.4;
}

/* Główna część */

.footer-main {
  padding: 58px 0 48px;
  background:
    radial-gradient(
      circle at 10% 15%,
      rgba(47, 194, 195, 0.1),
      transparent 28%
    ),
    linear-gradient(
      145deg,
      #062d31,
      #031b1e
    );
}

.footer-grid {
  display: grid;
  grid-template-columns:
    minmax(260px, 1.45fr)
    repeat(3, minmax(150px, 0.75fr));
  gap: 42px;
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-logo-link {
  display: inline-flex;
  margin-bottom: 12px;
}

.footer-logo {
  display: block;
  width: auto;
  max-width: 190px;
  height: auto;
  object-fit: contain;
}

.footer-description {
  max-width: 390px;
  margin: 0 0 22px;

  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.7;
}

/* Dane firmy */

.footer-company {
  margin: 0;

  display: flex;
  flex-direction: column;
  gap: 5px;

  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
  font-size: 12px;
  line-height: 1.55;
}

.footer-company strong {
  margin-bottom: 4px;
  color: var(--white, #ffffff);
  font-size: 13px;
}

.footer-company a {
  width: fit-content;
  color: var(--teal-300, #65e1df);
  text-decoration: none;
}

.footer-company a:hover {
  color: var(--white, #ffffff);
  text-decoration: underline;
}

/* Kolumny menu */

.footer-column {
  min-width: 0;
}

.footer-title {
  position: relative;

  margin: 0 0 22px;
  padding-bottom: 12px;

  color: var(--white, #ffffff);
  font-family: var(--serif, serif);
  font-size: 17px;
  line-height: 1.3;
}

.footer-title::after {
  content: "";

  position: absolute;
  bottom: 0;
  left: 0;

  width: 35px;
  height: 2px;

  background: var(--teal-400, #39d4d6);
  border-radius: 999px;
}

.footer-links,
.footer-menu {
  margin: 0;
  padding: 0;

  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 11px;

  list-style: none;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-links a,
.footer-menu a {
  display: inline-block;

  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none;

  transition:
    color 0.18s ease,
    transform 0.18s ease;
}

.footer-links a:hover,
.footer-menu a:hover {
  color: var(--teal-300, #65e1df);
  transform: translateX(3px);
}

/* Dolny pasek */

.footer-bottom {
  padding: 18px 0;
  background: #021316;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.footer-bottom__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.footer-copyright {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;

  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.65);
  font-size: 11px;
  text-decoration: none;
}

.footer-legal-links a:hover {
  color: var(--teal-300, #65e1df);
  text-decoration: underline;
}

/* Social media */

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 7px;
}

.footer-socials a {
  min-height: 32px;
  padding: 7px 10px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;

  font-size: 10px;
  font-weight: 700;
  text-decoration: none;

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

.footer-socials a:hover {
  color: var(--white, #ffffff);
  background: var(--teal-700, #08737a);
  border-color: var(--teal-500, #20aeb1);
}

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

@media (max-width: 1050px) {
  .footer-grid {
    grid-template-columns:
      minmax(260px, 1.3fr)
      repeat(2, minmax(160px, 1fr));
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  .footer-services__grid {
    grid-template-columns: 1fr;
  }

  .footer-service {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  }

  .footer-service:last-child {
    border-bottom: 0;
  }

  .footer-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
    gap: 35px 25px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal-links,
  .footer-socials {
    justify-content: flex-start;
  }
}

@media (max-width: 520px) {
  .footer-main {
    padding: 42px 0 35px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-service {
    padding: 18px 20px;
  }

  .footer-title {
    margin-bottom: 17px;
  }
}

/* =========================================================
   STOPKA — WYMUSZENIE WIDOCZNOŚCI MENU
   ========================================================= */

.site-footer .footer-column {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  min-width: 0;
}

.site-footer .footer-title {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  margin: 0 0 20px;
  color: #ffffff !important;
  font-size: 18px;
  font-weight: 700;
}

.site-footer .footer-menu {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;

  flex-direction: column;
  align-items: flex-start;
  gap: 11px;

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

  list-style: none !important;
}

.site-footer .footer-menu li {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;

  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

.site-footer .footer-menu li::before,
.site-footer .footer-menu li::after {
  content: none !important;
  display: none !important;
}

.site-footer .footer-menu a {
  display: inline-block !important;
  visibility: visible !important;
  opacity: 1 !important;

  color: rgba(255, 255, 255, 0.78) !important;
  background: transparent !important;

  font-size: 14px;
  line-height: 1.5;
  text-decoration: none !important;
}

.site-footer .footer-menu a:hover {
  color: #65e1df !important;
  transform: translateX(3px);
}

/* =========================================================
   STRONA GŁÓWNA — NOWOŚCI
   ========================================================= */

.home-new-products {
  position: relative;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 15% 15%,
      rgba(57, 212, 214, 0.11),
      transparent 30%
    ),
    linear-gradient(
      180deg,
      #ffffff,
      #f1fafa
    );
}

.home-new-products .section-heading {
  max-width: 720px;
  margin-right: auto;
  margin-bottom: 34px;
  margin-left: auto;
  text-align: center;
}

/* Usuwa klasyczne floaty WooCommerce */

.home-new-products
.woocommerce
ul.products {
  display: grid !important;
  grid-template-columns:
    repeat(4, minmax(0, 1fr));
  gap: 20px;

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

/* Pojedyncza karta produktu */

.home-new-products
.woocommerce
ul.products
li.product {
  position: relative;

  float: none !important;
  width: 100% !important;
  min-width: 0;
  height: 100%;
  margin: 0 !important;
  padding: 18px !important;

  display: flex;
  flex-direction: column;

  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-small);

  overflow: hidden;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.home-new-products
.woocommerce
ul.products
li.product:hover {
  transform: translateY(-5px);
  border-color: var(--border-strong);
  box-shadow: var(--shadow);
}

/* Etykieta NOWOŚĆ */

.home-new-products
.woocommerce
ul.products
li.product::before {
  content: "NOWOŚĆ";

  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 5;

  padding: 6px 10px;

  color: #ffffff;
  background:
    linear-gradient(
      135deg,
      var(--teal-600),
      var(--teal-900)
    );

  border-radius: 999px;

  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.08em;
}

/* Obraz produktu */

.home-new-products
.woocommerce
ul.products
li.product
a
img {
  display: block;

  width: 100%;
  height: 210px;
  margin: 0 0 16px !important;

  object-fit: contain;

  transition: transform 0.2s ease;
}

.home-new-products
.woocommerce
ul.products
li.product:hover
a
img {
  transform: scale(1.03);
}

/* Nazwa produktu */

.home-new-products
.woocommerce
ul.products
li.product
.woocommerce-loop-product__title {
  margin: 0 0 10px !important;
  padding: 0 !important;

  color: var(--black);
  font-size: 16px !important;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;

  white-space: normal;
  overflow-wrap: anywhere;
}

/* Cena */

.home-new-products
.woocommerce
ul.products
li.product
.price {
  margin: 0 0 15px !important;

  color: var(--teal-800) !important;
  font-size: 16px !important;
  font-weight: 800;
  text-align: center;
}

/* Przycisk zawsze na dole karty */

.home-new-products
.woocommerce
ul.products
li.product
.button {
  width: 100%;
  min-height: 42px;
  margin-top: auto !important;
  padding: 10px 14px !important;

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

  color: #ffffff !important;
  background:
    linear-gradient(
      var(--teal-600),
      var(--teal-800)
    ) !important;

  border: 1px solid var(--teal-900) !important;
  border-radius: 8px;

  font-size: 12px;
  text-align: center;
  white-space: normal;

  transform: none !important;
  box-shadow: none !important;
}

.home-new-products
.woocommerce
ul.products
li.product
.button:hover {
  color: #ffffff !important;
  background: var(--teal-900) !important;

  transform: none !important;
  filter: none !important;
  box-shadow: none !important;
}

/* Przycisk pod sekcją */

.home-new-products__footer {
  margin-top: 30px;
  text-align: center;
}

/* Tablet */

@media (max-width: 1050px) {
  .home-new-products
  .woocommerce
  ul.products {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

/* Telefon */

@media (max-width: 600px) {
  .home-new-products
  .woocommerce
  ul.products {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-new-products
  .woocommerce
  ul.products
  li.product
  a
  img {
    height: 230px;
  }
}
/* =========================================================
   KLIKALNE KAFELKI KATEGORII — BEZ PRZYCISKU
   ========================================================= */

.home-category-card {
  width: 100%;
  min-width: 0;
  min-height: 320px;
  height: 100%;
  padding: 28px 22px;

  display: flex;
  flex-direction: column;
  align-items: center;

  color: var(--text);
  text-align: center;
  text-decoration: none !important;

  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(57, 212, 214, 0.13),
      transparent 45%
    ),
    linear-gradient(
      145deg,
      #ffffff,
      #e9f7f7
    );

  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-small);

  overflow: hidden;
  cursor: pointer;

  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease,
    background 0.18s ease;
}

/* Efekt po najechaniu na cały kafelek */

.home-category-card:hover {
  color: var(--text);
  text-decoration: none !important;

  transform: translateY(-6px);
  border-color: var(--teal-600);
  box-shadow: var(--shadow);
}

/* Widoczne zaznaczenie podczas obsługi klawiaturą */

.home-category-card:focus-visible {
  outline: 3px solid var(--teal-500);
  outline-offset: 4px;
}

/* Tytuł */

.home-category-card__title {
  width: 100%;
  min-height: 54px;
  margin: 0 0 18px;
  padding: 0;

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

  color: var(--black);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.25;
  text-align: center;

  white-space: normal;
  overflow-wrap: anywhere;
  word-break: normal;
}

/* Kontener obrazu wypełnia pozostałą część kafelka */

.home-category-card__image-wrapper {
  width: 100%;
  min-height: 185px;
  flex: 1;

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

  margin: 0;
}

/* Obraz */

.home-category-card__image {
  display: block;
  width: auto;
  max-width: 92%;
  height: auto;
  max-height: 185px;

  object-fit: contain;

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

/* Delikatne powiększenie obrazu */

.home-category-card:hover
.home-category-card__image {
  transform: scale(1.05);
}

/* Usunięcie miejsca po dawnym przycisku */

.home-category-card__button {
  display: none !important;
}

/* Telefon */

@media (max-width: 650px) {
  .home-category-card {
    min-height: 290px;
    padding: 24px 18px;
  }

  .home-category-card__title {
    min-height: 48px;
    font-size: 19px;
  }

  .home-category-card__image-wrapper {
    min-height: 165px;
  }

  .home-category-card__image {
    max-height: 165px;
  }
}

/* =========================================================
   GŁÓWNE MENU — 4 ELEMENTY W RZĘDZIE
   ========================================================= */

.main-navigation .main-menu {
	display: grid !important;

	grid-template-columns: repeat(4, 1fr);

	grid-template-rows: repeat(2, auto);

	gap: 4px 8px;

	margin: 0;
	padding: 0;

	list-style: none;
}

/* Każdy element menu */

.main-navigation .main-menu > li {
	margin: 0;
	padding: 0;

	min-width: 0;
}

/* Linki */

.main-navigation .main-menu > li > a {
	display: flex;

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

	width: 100%;
	min-height: 38px;

	padding: 7px 10px;

	box-sizing: border-box;

	color: var(--text);
	text-align: center;
	text-decoration: none;

	font-size: 12px;
	font-weight: 700;
	line-height: 1.2;

	white-space: normal;
	overflow-wrap: anywhere;

	border-radius: 7px;

	transition:
		color 0.18s ease,
		background 0.18s ease;
}

/* Hover */

.main-navigation .main-menu > li > a:hover {
	color: var(--white);

	background: var(--teal-800);
}

/* Aktualnie wybrana kategoria */

.main-navigation .main-menu > li.current-menu-item > a,
.main-navigation .main-menu > li.current-product_cat-ancestor > a {
	color: var(--white);

	background: var(--teal-800);
}

/* =========================================================
   PODMENU
   ========================================================= */

.main-navigation .main-menu > li {
	position: relative;
}

.main-navigation .main-menu .sub-menu {
	position: absolute;

	top: 100%;
	left: 0;

	z-index: 1000;

	display: none;

	min-width: 200px;

	margin: 0;
	padding: 6px;

	list-style: none;

	background: var(--white);

	border: 1px solid var(--border);
	border-radius: 8px;

	box-shadow: var(--shadow);
}

/* Pokaż podmenu */

.main-navigation .main-menu > li:hover > .sub-menu,
.main-navigation .main-menu > li:focus-within > .sub-menu {
	display: block;
}

.main-navigation .main-menu .sub-menu li {
	margin: 0;
	padding: 0;
}

.main-navigation .main-menu .sub-menu a {
	display: block;

	padding: 9px 12px;

	color: var(--text);
	text-decoration: none;

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

	border-radius: 6px;
}

.main-navigation .main-menu .sub-menu a:hover {
	color: var(--white);

	background: var(--teal-800);
}

/* =========================================================
   SHUFFLORE — HEADER
   ========================================================= */

/* ---------------------------------------------------------
   GŁÓWNY HEADER
   --------------------------------------------------------- */

.site-header {
	position: relative;
	z-index: 1000;

	width: 100%;

	background:
		linear-gradient(
			180deg,
			#ffffff 0%,
			#f4fbfb 100%
		);

	border-bottom: 1px solid var(--border, #cfe1e3);

	box-shadow:
		0 4px 18px rgba(0, 70, 80, 0.06);
}


/* ---------------------------------------------------------
   GŁÓWNY KONTENER
   --------------------------------------------------------- */

.site-header__inner {
	width: 100%;
	max-width: 1400px;

	margin: 0 auto;
	padding: 12px 28px;

	display: grid;

	/*
	 * Logo | Menu | Konto + koszyk
	 */
	grid-template-columns:
		190px
		minmax(500px, 1fr)
		220px;

	align-items: center;

	gap: 24px;

	box-sizing: border-box;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.site-header__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;

	min-width: 0;
}

.site-header__logo-link {
	display: flex;
	align-items: center;

	text-decoration: none !important;
}

.site-header__logo-image {
	display: block;

	width: auto;
	max-width: 175px;
	height: auto;
	max-height: 105px;

	object-fit: contain;
}


/* ---------------------------------------------------------
   MENU
   --------------------------------------------------------- */

.main-navigation {
	width: 100%;
	min-width: 0;
}


/*
 * 4 ELEMENTY W RZĘDZIE
 * 4 ELEMENTY W DRUGIM RZĘDZIE
 */

.main-navigation .main-menu {
	width: 100%;

	display: grid !important;

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

	grid-template-rows:
		repeat(2, auto);

	gap: 5px 8px;

	margin: 0;
	padding: 0;

	list-style: none;
}


/* Element menu */

.main-navigation .main-menu > li {
	position: relative;

	width: 100%;
	min-width: 0;

	margin: 0;
	padding: 0;

	list-style: none;
}


/* Link menu */

.main-navigation .main-menu > li > a {
	width: 100%;
	min-height: 39px;

	box-sizing: border-box;

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

	padding: 7px 8px;

	color: var(--text, #07171d);

	background: transparent;

	border: 1px solid transparent;
	border-radius: 7px;

	font-size: 12px;
	font-weight: 700;
	line-height: 1.15;

	text-align: center;
	text-decoration: none !important;

	white-space: normal;
	overflow-wrap: anywhere;

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


/* Hover */

.main-navigation .main-menu > li > a:hover {
	color: #ffffff;

	background: var(--teal-800, #08747a);

	border-color: var(--teal-800, #08747a);
}


/* Aktywna strona / kategoria */

.main-navigation .main-menu > li.current-menu-item > a,
.main-navigation .main-menu > li.current-menu-ancestor > a,
.main-navigation .main-menu > li.current-product_cat-ancestor > a {
	color: #ffffff;

	background: var(--teal-800, #08747a);

	border-color: var(--teal-800, #08747a);
}


/* ---------------------------------------------------------
   PODMENU
   --------------------------------------------------------- */

.main-navigation .main-menu > li {
	position: relative;
}

.main-navigation .main-menu .sub-menu {
	position: absolute;

	top: calc(100% + 5px);
	left: 0;

	z-index: 2000;

	display: none;

	min-width: 190px;

	margin: 0;
	padding: 6px;

	list-style: none;

	background: #ffffff;

	border: 1px solid var(--border, #cfe1e3);
	border-radius: 8px;

	box-shadow:
		0 8px 25px rgba(0, 50, 60, 0.14);
}

.main-navigation .main-menu > li:hover > .sub-menu,
.main-navigation .main-menu > li:focus-within > .sub-menu {
	display: block;
}

.main-navigation .main-menu .sub-menu li {
	margin: 0;
	padding: 0;
}

.main-navigation .main-menu .sub-menu a {
	display: block;

	padding: 9px 12px;

	color: var(--text, #07171d);

	border-radius: 5px;

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

	text-decoration: none;
}

.main-navigation .main-menu .sub-menu a:hover {
	color: #ffffff;

	background: var(--teal-800, #08747a);
}


/* ---------------------------------------------------------
   KONTO + KOSZYK
   --------------------------------------------------------- */

.site-header__actions {
	display: flex;

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

	gap: 8px;

	min-width: 0;
}


/* Pojedyncza akcja */

.header-action {
	position: relative;

	min-width: 90px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 4px;

	padding: 6px 8px;

	color: var(--text, #07171d);

	background: transparent;

	border: 1px solid transparent;
	border-radius: 8px;

	text-decoration: none !important;

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


/* Hover */

.header-action:hover {
	color: var(--teal-800, #08747a);

	background: rgba(0, 130, 140, 0.07);

	border-color: var(--border, #cfe1e3);
}


/* Ikony */

.header-action__icon {
	position: relative;

	width: 28px;
	height: 28px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.header-action__icon svg {
	width: 24px;
	height: 24px;

	fill: none;

	stroke: currentColor;

	stroke-width: 1.7;

	stroke-linecap: round;
	stroke-linejoin: round;
}


/* Tekst */

.header-action__text {
	font-size: 11px;
	font-weight: 700;
	line-height: 1.15;

	text-align: center;
}


/* ---------------------------------------------------------
   LICZNIK KOSZYKA
   --------------------------------------------------------- */

.header-cart__count {
	position: absolute;

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

	min-width: 18px;
	height: 18px;

	padding: 0 4px;

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

	box-sizing: border-box;

	color: #ffffff;

	background: var(--teal-600, #079aa1);

	border-radius: 999px;

	font-size: 9px;
	font-weight: 800;
	line-height: 1;
}


/* ---------------------------------------------------------
   TABLET
   --------------------------------------------------------- */

@media (max-width: 1150px) {

	.site-header__inner {
		grid-template-columns:
			150px
			minmax(400px, 1fr)
			180px;

		gap: 14px;

		padding-left: 18px;
		padding-right: 18px;
	}

	.site-header__logo-image {
		max-width: 140px;
		max-height: 85px;
	}

	.main-navigation .main-menu {
		gap: 4px 5px;
	}

	.main-navigation .main-menu > li > a {
		font-size: 11px;
		padding-left: 5px;
		padding-right: 5px;
	}

	.header-action {
		min-width: 75px;
	}

	.header-action__text {
		font-size: 10px;
	}

}


/* ---------------------------------------------------------
   MAŁY TABLET
   --------------------------------------------------------- */

@media (max-width: 900px) {

	.site-header__inner {
		grid-template-columns:
			130px
			minmax(300px, 1fr)
			150px;

		gap: 10px;
	}

	.site-header__logo-image {
		max-width: 120px;
	}

	.header-action {
		min-width: 60px;

		padding-left: 4px;
		padding-right: 4px;
	}

	.header-action__text {
		font-size: 9px;
	}

}


/* ---------------------------------------------------------
   TELEFON
   --------------------------------------------------------- */

@media (max-width: 700px) {

	.site-header__inner {
		display: flex;
		flex-wrap: wrap;

		align-items: center;

		padding: 10px 14px;
	}

	/* Logo */

	.site-header__logo {
		flex: 1 1 auto;
	}

	.site-header__logo-image {
		max-width: 125px;
		max-height: 70px;
	}


	/* Konto + koszyk */

	.site-header__actions {
		flex: 0 0 auto;
	}


	/* Menu zajmuje całą szerokość */

	.main-navigation {
		order: 3;

		flex: 0 0 100%;
		width: 100%;
	}


	/* Na telefonie 2 kolumny */

	.main-navigation .main-menu {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		grid-template-rows: none;

		gap: 4px;
	}


	.main-navigation .main-menu > li > a {
		min-height: 36px;

		font-size: 10px;
		padding: 7px 4px;
	}


	/* Na telefonie tylko ikony */

	.header-action {
		min-width: 40px;

		padding: 4px;
	}

	.header-action__text {
		display: none;
	}

	.header-action__icon {
		width: 30px;
		height: 30px;
	}

}


/* ---------------------------------------------------------
   BARDZO MAŁE EKRANY
   --------------------------------------------------------- */

@media (max-width: 420px) {

	.site-header__logo-image {
		max-width: 105px;
	}

	.main-navigation .main-menu > li > a {
		font-size: 9px;
	}

}

.main-navigation .main-menu > li > a {
	width: 100%;
	min-height: 42px;

	box-sizing: border-box;

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

	padding: 8px 10px;

	color: var(--text, #07171d);
	background: transparent;

	border: 1px solid transparent;
	border-radius: 7px;

	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;

	text-align: center;
	text-decoration: none !important;

	white-space: normal;
	overflow-wrap: anywhere;

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

.header-action__text {
	font-size: 13px;
	font-weight: 700;
	line-height: 1.2;
}

.main-navigation .main-menu > li > a {
	width: 100%;
	min-height: 42px;

	box-sizing: border-box;

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

	padding: 8px 10px;

	color: #ffffff;
	background: transparent;

	border: 1px solid transparent;
	border-radius: 7px;

	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;

	text-align: center;
	text-decoration: none !important;

	white-space: normal;
	overflow-wrap: anywhere;

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

.site-header {
	position: relative;
	z-index: 1000;

	width: 100%;

	background: var(--teal-800, #08747a);

	border-bottom: 1px solid var(--teal-800, #08747a);

	box-shadow:
		0 4px 18px rgba(0, 50, 50, 0.18);
}

.main-navigation .main-menu > li > a {
	width: 100%;
	min-height: 42px;

	box-sizing: border-box;

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

	padding: 8px 10px;

	color: #ffffff;
	background: transparent;

	border: 1px solid transparent;
	border-radius: 7px;

	font-size: 15px;
	font-weight: 700;
	line-height: 1.2;

	text-align: center;
	text-decoration: none !important;

	white-space: normal;
	overflow-wrap: anywhere;

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

.main-navigation .main-menu > li > a:hover {
	color: #ffffff;

	background: var(--teal-600, #079aa1);

	border-color: var(--teal-600, #079aa1);
}

.main-navigation .main-menu > li.current-menu-item > a,
.main-navigation .main-menu > li.current-menu-ancestor > a,
.main-navigation .main-menu > li.current-product_cat-ancestor > a {
	color: #ffffff;

	background: var(--teal-600, #079aa1);

	border-color: var(--teal-600, #079aa1);
}

.header-action {
	color: #ffffff;
}

.header-action:hover {
	color: #ffffff;

	background: rgba(255, 255, 255, 0.12);

	border-color: rgba(255, 255, 255, 0.20);
}

.header-action__text {
	color: #ffffff;
}

.header-cart__count {
	color: #ffffff;

	background: var(--teal-600, #079aa1);
}

/* =========================================================
   SHUFFLORE — SKLEPOWY HEADER
   ========================================================= */

/* ---------------------------------------------------------
   HEADER
   --------------------------------------------------------- */

.site-header {
	position: relative;
	z-index: 1000;

	width: 100%;

	background:
		linear-gradient(
			135deg,
			#064f55 0%,
			#08747a 55%,
			#075d63 100%
		);

	border-bottom: 3px solid #079aa1;

	box-shadow:
		0 5px 20px rgba(0, 40, 45, 0.25);
}


/* ---------------------------------------------------------
   GŁÓWNY KONTENER
   --------------------------------------------------------- */

.site-header__inner {
	width: 100%;
	max-width: 1450px;

	margin: 0 auto;

	padding: 14px 28px;

	display: grid;

	grid-template-columns:
		190px
		minmax(520px, 1fr)
		230px;

	align-items: center;

	gap: 25px;

	box-sizing: border-box;
}


/* ---------------------------------------------------------
   LOGO
   --------------------------------------------------------- */

.site-header__logo {
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

.site-header__logo-link {
	display: flex;
	align-items: center;

	text-decoration: none !important;
}

.site-header__logo-image {
	display: block;

	width: auto;
	max-width: 175px;
	max-height: 95px;

	object-fit: contain;

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

.site-header__logo-link:hover .site-header__logo-image {
	transform: scale(1.03);
	filter: brightness(1.08);
}


/* ---------------------------------------------------------
   MENU GŁÓWNE
   --------------------------------------------------------- */

.main-navigation {
	width: 100%;
	min-width: 0;
}


/*
 * 4 KATEGORIE
 * 4 KATEGORIE
 */

.main-navigation .main-menu {
	width: 100%;

	display: grid !important;

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

	grid-template-rows:
		repeat(2, auto);

	gap: 5px 8px;

	margin: 0;
	padding: 0;

	list-style: none;
}


/* Element menu */

.main-navigation .main-menu > li {
	position: relative;

	width: 100%;
	min-width: 0;

	margin: 0;
	padding: 0;
}


/* Link kategorii */

.main-navigation .main-menu > li > a {
	width: 100%;
	min-height: 40px;

	box-sizing: border-box;

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

	padding: 8px 10px;

	color: #ffffff;

	background: rgba(255, 255, 255, 0.04);

	border: 1px solid rgba(255, 255, 255, 0.10);
	border-radius: 8px;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;

	text-align: center;
	text-decoration: none !important;

	white-space: normal;
	overflow-wrap: anywhere;

	transition:
		background 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}


/* Hover */

.main-navigation .main-menu > li > a:hover {
	color: #ffffff;

	background: rgba(255, 255, 255, 0.16);

	border-color: rgba(255, 255, 255, 0.30);

	transform: translateY(-1px);

	box-shadow:
		0 4px 10px rgba(0, 30, 35, 0.15);
}


/* Aktywna kategoria */

.main-navigation .main-menu > li.current-menu-item > a,
.main-navigation .main-menu > li.current-menu-ancestor > a,
.main-navigation .main-menu > li.current-product_cat-ancestor > a {
	color: #ffffff;

	background: #079aa1;

	border-color: #42cbd0;

	box-shadow:
		0 3px 10px rgba(0, 0, 0, 0.18);
}


/* ---------------------------------------------------------
   PODMENU
   --------------------------------------------------------- */

.main-navigation .main-menu .sub-menu {
	position: absolute;

	top: calc(100% + 6px);
	left: 0;

	z-index: 2000;

	display: none;

	min-width: 210px;

	margin: 0;
	padding: 6px;

	list-style: none;

	background: #075d63;

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

	box-shadow:
		0 10px 25px rgba(0, 30, 35, 0.30);
}

.main-navigation .main-menu > li:hover > .sub-menu,
.main-navigation .main-menu > li:focus-within > .sub-menu {
	display: block;
}

.main-navigation .main-menu .sub-menu li {
	margin: 0;
	padding: 0;
}

.main-navigation .main-menu .sub-menu a {
	display: block;

	padding: 10px 13px;

	color: #ffffff;

	border-radius: 6px;

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

	text-decoration: none;
}

.main-navigation .main-menu .sub-menu a:hover {
	color: #ffffff;

	background: #079aa1;
}


/* ---------------------------------------------------------
   PRAWA STRONA — KONTO + KOSZYK
   --------------------------------------------------------- */

.site-header__actions {
	display: flex;

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

	gap: 8px;

	min-width: 0;
}


/* ---------------------------------------------------------
   PRZYCISK KONTA / KOSZYKA
   --------------------------------------------------------- */

.header-action {
	position: relative;

	flex: 1;

	min-width: 90px;

	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;

	gap: 5px;

	padding: 9px 8px;

	color: #ffffff;

	background: rgba(255, 255, 255, 0.06);

	border: 1px solid rgba(255, 255, 255, 0.14);
	border-radius: 10px;

	text-decoration: none !important;

	box-sizing: border-box;

	transition:
		background 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}


/* Hover */

.header-action:hover {
	color: #ffffff;

	background: rgba(255, 255, 255, 0.15);

	border-color: rgba(255, 255, 255, 0.30);

	transform: translateY(-2px);

	box-shadow:
		0 5px 12px rgba(0, 30, 35, 0.18);
}


/* ---------------------------------------------------------
   IKONY
   --------------------------------------------------------- */

.header-action__icon {
	position: relative;

	width: 30px;
	height: 30px;

	display: flex;
	align-items: center;
	justify-content: center;
}

.header-action__icon svg {
	width: 26px;
	height: 26px;

	fill: none;

	stroke: currentColor;

	stroke-width: 1.7;

	stroke-linecap: round;
	stroke-linejoin: round;
}


/* ---------------------------------------------------------
   NAPISY
   --------------------------------------------------------- */

.header-action__text {
	color: #ffffff;

	font-size: 12px;
	font-weight: 700;
	line-height: 1.15;

	text-align: center;
}


/* ---------------------------------------------------------
   LICZNIK KOSZYKA
   --------------------------------------------------------- */

.header-cart__count {
	position: absolute;

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

	min-width: 20px;
	height: 20px;

	padding: 0 5px;

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

	box-sizing: border-box;

	color: #075d63;

	background: #ffffff;

	border: 2px solid #079aa1;

	border-radius: 50%;

	font-size: 9px;
	font-weight: 800;
	line-height: 1;
}


/* ---------------------------------------------------------
   DODATKOWY EFEKT DLA KOSZYKA
   --------------------------------------------------------- */

.header-cart:hover .header-cart__count {
	color: #ffffff;

	background: #079aa1;

	border-color: #ffffff;
}


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

@media (max-width: 1150px) {

	.site-header__inner {
		grid-template-columns:
			150px
			minmax(400px, 1fr)
			190px;

		gap: 15px;

		padding-left: 18px;
		padding-right: 18px;
	}

	.site-header__logo-image {
		max-width: 145px;
		max-height: 80px;
	}

	.main-navigation .main-menu {
		gap: 4px 5px;
	}

	.main-navigation .main-menu > li > a {
		font-size: 13px;
		padding-left: 5px;
		padding-right: 5px;
	}

	.header-action {
		min-width: 75px;
	}

	.header-action__text {
		font-size: 11px;
	}

}


/* =========================================================
   MAŁY TABLET
   ========================================================= */

@media (max-width: 900px) {

	.site-header__inner {
		grid-template-columns:
			120px
			minmax(300px, 1fr)
			155px;

		gap: 10px;

		padding-left: 14px;
		padding-right: 14px;
	}

	.site-header__logo-image {
		max-width: 115px;
	}

	.main-navigation .main-menu > li > a {
		font-size: 12px;
	}

	.header-action {
		min-width: 60px;

		padding-left: 5px;
		padding-right: 5px;
	}

	.header-action__text {
		font-size: 10px;
	}

}


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

@media (max-width: 700px) {

	.site-header__inner {
		display: flex;
		flex-wrap: wrap;

		align-items: center;

		padding: 10px 14px;
	}

	/* Logo */

	.site-header__logo {
		flex: 1 1 auto;
	}

	.site-header__logo-image {
		max-width: 125px;
		max-height: 65px;
	}


	/* Konto + koszyk */

	.site-header__actions {
		flex: 0 0 auto;

		gap: 5px;
	}


	/* Menu pod logo */

	.main-navigation {
		order: 3;

		flex: 0 0 100%;

		width: 100%;

		margin-top: 8px;
	}


	/* 2 kolumny na telefonie */

	.main-navigation .main-menu {
		grid-template-columns:
			repeat(2, minmax(0, 1fr));

		grid-template-rows: none;

		gap: 4px;
	}


	.main-navigation .main-menu > li > a {
		min-height: 36px;

		font-size: 11px;

		padding: 7px 5px;
	}


	/* Ikony bez tekstu */

	.header-action {
		flex: 0 0 auto;

		min-width: 42px;
		width: 42px;

		height: 42px;

		padding: 5px;
	}

	.header-action__text {
		display: none;
	}

	.header-action__icon {
		width: 30px;
		height: 30px;
	}

}


/* =========================================================
   BARDZO MAŁE TELEFONY
   ========================================================= */

@media (max-width: 420px) {

	.site-header__logo-image {
		max-width: 105px;
	}

	.main-navigation .main-menu > li > a {
		font-size: 10px;
	}

}

/* =========================================================
   SHUFFLORE HEADER — MENU W JEDNEJ LINII
   ========================================================= */

.site-header {
	position: relative;
	z-index: 9999;

	width: 100%;

	background: linear-gradient(
		135deg,
		#064f55 0%,
		#08747a 55%,
		#075d63 100%
	);

	border-bottom: 2px solid #079aa1;

	box-shadow:
		0 4px 18px rgba(0, 40, 45, 0.22);
}


/* =========================================================
   UKŁAD HEADERA
   ========================================================= */

.site-header__inner {
	width: 100%;

	/*
	 * Celowo bez max-width.
	 * Header wykorzystuje praktycznie całą szerokość ekranu.
	 */
	max-width: none;

	margin: 0;

	padding: 8px 18px 8px 10px;

	box-sizing: border-box;

	display: grid;

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

	align-items: center;

	gap: 18px;
}


/* =========================================================
   LOGO — MAKSYMALNIE PO LEWEJ
   ========================================================= */

.site-header__logo {
	display: flex;

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

	margin: 0;
	padding: 0;
}

.site-header__logo-link {
	display: flex;

	align-items: center;

	margin: 0;
	padding: 0;

	text-decoration: none;
}

.site-header__logo-image {
	display: block;

	width: auto;
	height: auto;

	max-width: 155px;
	max-height: 80px;

	margin: 0;

	object-fit: contain;
}


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

.main-navigation {
	width: 100%;
	min-width: 0;
}


/*
 * Kategorie w JEDNEJ LINII.
 */

.main-navigation .main-menu {
	width: 100%;

	display: flex !important;

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

	flex-wrap: nowrap !important;

	gap: 4px;

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

	list-style: none;
}


/* =========================================================
   KATEGORIA GŁÓWNA
   ========================================================= */

.main-navigation .main-menu > li {
	position: relative;

	flex: 0 1 auto;

	min-width: 0;

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

	list-style: none;
}


.main-navigation .main-menu > li > a {
	display: flex;

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

	min-height: 42px;

	padding: 8px 10px;

	box-sizing: border-box;

	color: #ffffff;

	background: transparent;

	border: 1px solid transparent;
	border-radius: 7px;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.15;

	text-align: center;
	text-decoration: none !important;

	/*
	 * Nazwa kategorii nie przechodzi
	 * do drugiej linii.
	 */
	white-space: nowrap;

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


/* =========================================================
   HOVER KATEGORII
   ========================================================= */

.main-navigation .main-menu > li > a:hover,
.main-navigation .main-menu > li:hover > a,
.main-navigation .main-menu > li:focus-within > a {
	color: #ffffff;

	background: rgba(255, 255, 255, 0.14);

	border-color: rgba(255, 255, 255, 0.18);
}


/* =========================================================
   AKTYWNA KATEGORIA
   ========================================================= */

.main-navigation .main-menu > li.current-menu-item > a,
.main-navigation .main-menu > li.current-menu-ancestor > a,
.main-navigation .main-menu > li.current-product_cat-ancestor > a {
	color: #ffffff;

	background: #079aa1;

	border-color: rgba(255, 255, 255, 0.25);
}


/* =========================================================
   STRZAŁKA PRZY KATEGORII Z PODKATEGORIAMI
   ========================================================= */

.main-navigation
.main-menu
> li.menu-item-has-children
> a::after {
	content: "";

	width: 6px;
	height: 6px;

	margin-left: 7px;
	margin-top: -3px;

	border-right: 1.5px solid currentColor;
	border-bottom: 1.5px solid currentColor;

	transform: rotate(45deg);

	opacity: 0.8;
}


/* =========================================================
   PODKATEGORIE
   ========================================================= */

.main-navigation .sub-menu {
	position: absolute;

	top: 100% ;
	left: 0;

	z-index: 99999;

	min-width: 230px;

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

	list-style: none;

	background: #ffffff;

	border:
		1px solid rgba(6, 79, 85, 0.15);

	border-radius: 9px;

	box-shadow:
		0 12px 30px rgba(0, 35, 40, 0.22);


	/* domyślnie ukryte */

	opacity: 0;
	visibility: hidden;

	transform: translateY(6px);

	pointer-events: none;

	transition:
		opacity 0.16s ease,
		transform 0.16s ease,
		visibility 0.16s ease;
}


/* =========================================================
   POKAŻ PODMENU PO NAJECHANIU
   ========================================================= */

.main-navigation
.main-menu
> li:hover
> .sub-menu,

.main-navigation
.main-menu
> li:focus-within
> .sub-menu {
	opacity: 1;

	visibility: visible;

	transform: translateY(0);

	pointer-events: auto;
}


/* =========================================================
   ELEMENT PODMENU
   ========================================================= */

.main-navigation .sub-menu li {
	width: 100%;

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

	list-style: none;
}


.main-navigation .sub-menu li + li {
	margin-top: 2px !important;
}


.main-navigation .sub-menu a {
	display: flex;

	align-items: center;

	width: 100%;

	padding: 10px 12px;

	box-sizing: border-box;

	color: #153b3e;

	background: transparent;

	border-radius: 6px;

	font-size: 13px;
	font-weight: 600;
	line-height: 1.25;

	text-align: left;
	text-decoration: none !important;

	white-space: nowrap;

	transition:
		background 0.15s ease,
		color 0.15s ease,
		padding-left 0.15s ease;
}


/* Hover podkategorii */

.main-navigation .sub-menu a:hover {
	color: #ffffff;

	background: #08747a;

	padding-left: 16px;
}


/* =========================================================
   KONTO + KOSZYK
   ========================================================= */

.site-header__actions {
	display: flex;

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

	flex-wrap: nowrap;

	gap: 6px;

	white-space: nowrap;
}


.header-action {
	position: relative;

	display: flex;

	flex-direction: column;

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

	min-width: 76px;

	padding: 7px 8px;

	color: #ffffff;

	background: rgba(255, 255, 255, 0.06);

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

	border-radius: 8px;

	text-decoration: none !important;

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


.header-action:hover {
	color: #ffffff;

	background: rgba(255, 255, 255, 0.15);

	border-color:
		rgba(255, 255, 255, 0.25);
}


/* =========================================================
   IKONY
   ========================================================= */

.header-action__icon {
	position: relative;

	display: flex;

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

	width: 27px;
	height: 27px;
}


.header-action__icon svg {
	width: 24px;
	height: 24px;

	fill: none;

	stroke: currentColor;

	stroke-width: 1.7;

	stroke-linecap: round;
	stroke-linejoin: round;
}


.header-action__text {
	color: #ffffff;

	font-size: 11px;
	font-weight: 700;
}


/* =========================================================
   LICZNIK KOSZYKA
   ========================================================= */

.header-cart__count {
	position: absolute;

	top: -6px;
	right: -7px;

	display: flex;

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

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

	padding: 0 4px;

	color: #075d63;

	background: #ffffff;

	border: 2px solid #079aa1;
	border-radius: 999px;

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


/* =========================================================
   MNIEJSZE MONITORY
   ========================================================= */

@media (max-width: 1250px) {

	.site-header__inner {
		gap: 10px;

		padding-left: 7px;
		padding-right: 10px;
	}

	.site-header__logo-image {
		max-width: 125px;
	}

	.main-navigation .main-menu {
		gap: 1px;
	}

	.main-navigation .main-menu > li > a {
		padding-left: 6px;
		padding-right: 6px;

		font-size: 12px;
	}

	.header-action {
		min-width: 55px;
	}

	.header-action__text {
		font-size: 9px;
	}

}


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

@media (max-width: 850px) {

	.site-header__inner {
		display: flex;
		flex-wrap: wrap;
	}

	.site-header__logo {
		flex: 1;
	}

	.site-header__actions {
		flex: 0 0 auto;
	}

	.main-navigation {
		order: 3;

		flex: 0 0 100%;

		overflow-x: auto;

		padding-bottom: 3px;
	}

	/*
	 * Na małym ekranie menu pozostaje w jednej linii
	 * i można je przewijać poziomo.
	 */

	.main-navigation .main-menu {
		width: max-content;

		justify-content: flex-start;
	}

	.main-navigation .main-menu > li > a {
		padding: 8px 10px;

		font-size: 12px;
	}

	.header-action__text {
		display: none;
	}

	.header-action {
		min-width: 40px;
	}

}

/* =========================================================
   SHUFFLORE — ZAKŁADKI OFERTY
   ========================================================= */

.home-offer {
	padding: 75px 0 85px;

	background:
		radial-gradient(
			circle at 15% 20%,
			rgba(7, 154, 161, 0.08),
			transparent 30%
		),
		#f7fbfb;
}


/* Nagłówek */

.home-offer__heading {
	max-width: 700px;

	margin: 0 auto 35px;

	text-align: center;
}

.home-offer__eyebrow {
	display: block;

	margin-bottom: 7px;

	color: #08747a;

	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.16em;
}

.home-offer__heading h2 {
	margin: 0 0 10px;

	color: #064f55;

	font-family: var(--serif);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;

	text-align: center;
}

.home-offer__heading p {
	margin: 0;

	color: #607174;

	font-size: 15px;
}


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

.home-offer__tabs {
	display: flex;

	align-items: stretch;
	justify-content: center;

	flex-wrap: wrap;

	gap: 7px;

	margin-bottom: 16px;
}


.home-offer__tab {
	position: relative;

	min-width: 120px;

	padding: 13px 19px;

	color: #31595c;

	background: #ffffff;

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

	font: inherit;
	font-size: 13px;
	font-weight: 750;

	cursor: pointer;

	transition:
		color 0.18s ease,
		background 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease;
}


.home-offer__tab:hover {
	color: #08747a;

	border-color: #079aa1;

	transform: translateY(-1px);
}


.home-offer__tab.is-active {
	color: #ffffff;

	background:
		linear-gradient(
			135deg,
			#064f55,
			#08747a
		);

	border-color: #08747a;
}




/* =========================================================
   PANEL
   ========================================================= */

.home-offer__content {
	position: relative;
}


.home-offer__panel {
	display: none;

	grid-template-columns:
		minmax(0, 1.25fr)
		minmax(280px, 0.75fr);

	gap: 50px;

	align-items: center;

	min-height: 430px;

	padding: 48px;

	background: #ffffff;

	border: 1px solid #d7e7e8;
	border-radius: 18px;

	box-shadow:
		0 14px 40px rgba(6, 79, 85, 0.08);
}


.home-offer__panel.is-active {
	display: grid;

	animation:
		shufflore-tab-show 0.25s ease;
}


@keyframes shufflore-tab-show {

	from {
		opacity: 0;
		transform: translateY(5px);
	}

	to {
		opacity: 1;
		transform: translateY(0);
	}

}


/* =========================================================
   TEKST
   ========================================================= */

.home-offer__info h3 {
	margin: 0 0 12px;

	color: #064f55;

	font-size: 30px;
	line-height: 1.15;
}


.home-offer__intro {
	max-width: 650px;

	margin: 0 0 27px;

	color: #5c7072;

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


/* =========================================================
   RODZAJE PRODUKTÓW
   ========================================================= */

.home-offer__products {
	display: grid;

	gap: 12px;

	margin-bottom: 30px;
}


.home-offer__product {
	display: grid;

	grid-template-columns:
		28px 1fr;

	gap: 11px;

	padding: 13px 15px;

	background: #f5fafa;

	border: 1px solid #e0eeee;
	border-radius: 9px;
}


.home-offer__check {
	display: flex;

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

	width: 25px;
	height: 25px;

	color: #ffffff;

	background: #08747a;

	border-radius: 50%;

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


.home-offer__product h4 {
	margin: 1px 0 4px;

	color: #173f42;

	font-size: 14px;
}


.home-offer__product p {
	margin: 0;

	color: #687b7d;

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


/* =========================================================
   PRZYCISK
   ========================================================= */

.home-offer__button {
	display: inline-flex;

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

	gap: 10px;

	padding: 12px 20px;

	color: #ffffff !important;

	background:
		linear-gradient(
			135deg,
			#064f55,
			#08747a
		);

	border-radius: 8px;

	font-size: 13px;
	font-weight: 750;

	text-decoration: none !important;

	transition:
		transform 0.18s ease,
		box-shadow 0.18s ease;
}


.home-offer__button:hover {
	color: #ffffff !important;

	transform: translateY(-2px);

	box-shadow:
		0 7px 17px rgba(6, 79, 85, 0.20);
}


/* =========================================================
   GRAFIKA
   ========================================================= */

.home-offer__visual {
	display: flex;

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

	min-height: 300px;

	padding: 25px;

	background:
		radial-gradient(
			circle,
			rgba(7, 154, 161, 0.13),
			transparent 65%
		);

	border-radius: 14px;
}


.home-offer__visual img {
	display: block;

	width: 100%;
	max-width: 360px;
	max-height: 320px;

	object-fit: contain;

	filter:
		drop-shadow(
			0 15px 18px rgba(6, 79, 85, 0.15)
		);
}


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

@media (max-width: 800px) {

	.home-offer {
		padding: 50px 0;
	}

	.home-offer__tabs {
		display: grid;

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

	.home-offer__tab {
		min-width: 0;

		padding: 11px 8px;
	}

	.home-offer__panel {
		grid-template-columns: 1fr;

		gap: 25px;

		padding: 25px;

		min-height: 0;
	}

	.home-offer__visual {
		min-height: 220px;

		order: -1;
	}

	.home-offer__visual img {
		max-height: 220px;
	}

	.home-offer__info h3 {
		font-size: 25px;
	}

}

/* =========================================================
   HEADER — STABILNE PODMENU
   ========================================================= */

.main-navigation .main-menu > li {
	position: relative;
}

/* Podmenu styka się bezpośrednio z kategorią */
.main-navigation .main-menu > li > .sub-menu {
	top: 100% !important;
	left: 0;

	padding-top: 8px !important;
}

/*
 * Niewidzialny obszar pomiędzy kategorią
 * a podmenu — zapobiega przypadkowemu zamknięciu.
 */
.main-navigation .main-menu > li.menu-item-has-children::after {
	content: "";

	position: absolute;

	top: 100%;
	left: 0;

	width: 100%;
	height: 12px;

	z-index: 99998;
}

/* Podmenu */
.main-navigation .sub-menu {
	z-index: 99999;

	opacity: 0;
	visibility: hidden;
	pointer-events: none;

	transform: translateY(4px);

	transition:
		opacity 0.18s ease,
		transform 0.18s ease,
		visibility 0.18s ease;
}

/* Kategoria lub jej podmenu jest pod kursorem */
.main-navigation .main-menu > li:hover > .sub-menu,
.main-navigation .main-menu > li:focus-within > .sub-menu {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;

	transform: translateY(0);
}
.main-navigation .main-menu > li > a {
	min-height: 46px;
	padding-top: 10px;
	padding-bottom: 10px;
}

/* =========================================================
   WSPÓLNY STYL NAGŁÓWKÓW SEKCJI
   ========================================================= */

.home-new-products .section-heading h2,
.home-offer__heading h2 {
	margin: 0 0 10px;

	color: var(--text, #07171d);

	font-family: var(--serif);
	font-size: 32px;
	font-weight: 700;
	line-height: 1.2;

	text-align: center;
}

/* =========================================================
   STRONA GŁÓWNA — NOWOŚCI 4 W JEDNYM RZĘDZIE
   ========================================================= */

.home-new-products
.woocommerce
ul.products {
	display: grid !important;

	grid-template-columns:
		repeat(4, minmax(0, 1fr)) !important;

	gap: 20px !important;

	width: 100% !important;

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

	list-style: none !important;
}


/* Usunięcie floatów WooCommerce */

.home-new-products
.woocommerce
ul.products::before,

.home-new-products
.woocommerce
ul.products::after {
	display: none !important;
	content: none !important;
}


/* Pojedyncza karta */

.home-new-products
.woocommerce
ul.products
li.product {
	width: 100% !important;
	max-width: none !important;
	min-width: 0 !important;

	float: none !important;
	clear: none !important;

	margin: 0 !important;

	padding: 18px !important;

	box-sizing: border-box;

	display: flex !important;
	flex-direction: column;

	align-items: stretch;

	background: #ffffff;

	border: 1px solid var(--border);
	border-radius: 14px;

	box-shadow: var(--shadow-small);
}


/* =========================================================
   LINK PRODUKTU
   ========================================================= */

.home-new-products
.woocommerce
ul.products
li.product
a.woocommerce-LoopProduct-link {
	width: 100%;

	display: flex;
	flex-direction: column;

	align-items: center;

	text-align: center;

	text-decoration: none;
}


/* =========================================================
   OBRAZ PRODUKTU — CENTRALNIE
   ========================================================= */

.home-new-products
.woocommerce
ul.products
li.product
a img {
	display: block !important;

	width: auto !important;
	max-width: 190px !important;

	height: 190px !important;
	max-height: 190px !important;

	margin:
		10px auto
		18px !important;

	padding: 0 !important;

	object-fit: contain !important;
	object-position: center center !important;

	align-self: center !important;

	background: transparent !important;
}


/* Gdy obraz ma inny wrapper */

.home-new-products
.woocommerce
ul.products
li.product
.woocommerce-loop-product__link img,

.home-new-products
.woocommerce
ul.products
li.product
.wp-post-image {
	margin-left: auto !important;
	margin-right: auto !important;

	object-fit: contain !important;
	object-position: center !important;
}


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

.home-new-products
.woocommerce
ul.products
li.product
.woocommerce-loop-product__title {
	width: 100%;

	min-height: 48px;

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

	color: var(--text);

	font-family: var(--serif);
	font-size: 16px !important;
	line-height: 1.35;

	text-align: center;
}


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

.home-new-products
.woocommerce
ul.products
li.product
.price {
	width: 100%;

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

	color: var(--teal-800) !important;

	font-size: 17px !important;
	font-weight: 700;

	text-align: center;
}


/* =========================================================
   PRZYCISKI
   ========================================================= */

.home-new-products
.woocommerce
ul.products
li.product
.product-card__buttons {
	width: 100%;

	margin-top: auto;

	display: grid;

	grid-template-columns:
		44px
		minmax(0, 1fr);

	gap: 8px;

	padding: 0 !important;
}


/* Jeśli nie masz wrappera product-card__buttons */

.home-new-products
.woocommerce
ul.products
li.product
.add_to_cart_button {
	margin-top: auto !important;
}


/* =========================================================
   DESKTOP — ZAWSZE MAKSYMALNIE 4
   ========================================================= */

@media (min-width: 1101px) {

	.home-new-products
	.woocommerce
	ul.products {
		grid-template-columns:
			repeat(4, minmax(0, 1fr)) !important;
	}

}


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

@media (max-width: 1100px) {

	.home-new-products
	.woocommerce
	ul.products {
		grid-template-columns:
			repeat(2, minmax(0, 1fr)) !important;
	}

}


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

@media (max-width: 600px) {

	.home-new-products
	.woocommerce
	ul.products {
		grid-template-columns:
			1fr !important;
	}

	.home-new-products
	.woocommerce
	ul.products
	li.product
	a img {
		max-width: 220px !important;

		height: 220px !important;
		max-height: 220px !important;
	}

}

/* =========================================================
   STRONA GŁÓWNA — HERO NA TELEFONIE
   ========================================================= */

@media (max-width: 700px) {

  .home-hero__copy {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
    box-sizing: border-box;
    text-align: center;
  }

  .home-hero__title {
    width: 100%;
    max-width: 100%;

    margin: 0 auto 12px;

    font-size: clamp(32px, 10vw, 46px);
    line-height: 1.05;

    white-space: normal !important;
    overflow-wrap: anywhere;
    word-break: normal;

    text-align: center;
  }

  .home-hero__title span {
    display: inline;
  }

  .home-hero__description {
    max-width: 100%;
    margin-inline: auto;
    padding-inline: 8px;

    font-size: 12px;
    line-height: 1.5;

    white-space: normal;
  }

}
@media (max-width: 700px) {
@media (max-width: 700px) {

  .home-hero .eyebrow {
    width: 100%;
    max-width: 100%;

    margin-inline: auto;
    padding-inline: 12px;

    box-sizing: border-box;

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

    white-space: normal !important;

    /* Nie rozbijaj pojedynczych słów */
    overflow-wrap: normal !important;
    word-break: normal !important;
    hyphens: none !important;

    text-align: center;
  }

}

}

@media (max-width: 700px) {

  .home-hero__title,
  .home-hero__title span,
  .home-hero .eyebrow {
    white-space: normal !important;

    word-break: keep-all !important;
    overflow-wrap: normal !important;

    hyphens: none !important;
  }

}

/* =========================================================
   MOBILE — ZAKŁADKI KATEGORII
   ========================================================= */

@media (max-width: 800px) {

  .home-offer__tabs {
    position: relative;
    z-index: 20;

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

    gap: 7px;

    width: 100%;
  }

  .home-offer__tab {
    position: relative;
    z-index: 21;

    width: 100%;
    min-width: 0;

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

    padding: 12px 8px;

    cursor: pointer;

    touch-action: manipulation;

    pointer-events: auto !important;

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

  .home-offer__content {
    position: relative;
    z-index: 1;
  }

  .home-offer__panel {
    width: 100%;
  }

}

.home-offer__tab::before,
.home-offer__tab::after {
  pointer-events: none;
}

.home-offer__tab {
  position: relative !important;
  z-index: 50 !important;
  pointer-events: auto !important;

  cursor: pointer !important;
  touch-action: manipulation;
}

.home-offer__tabs {
  position: relative !important;
  z-index: 50 !important;
}

.home-offer__tab *,
.home-offer__tab::before,
.home-offer__tab::after {
  pointer-events: none !important;
}

@media (max-width: 800px) {
  .home-offer__panel.is-active {
    display: grid !important;
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE — NAPRAWA KLIKALNOŚCI ZAKŁADEK
   ========================================================= */

@media (max-width: 800px) {

  .home-offer {
    position: relative;
    z-index: 1;
    overflow: visible !important;
  }

  .home-offer__tabs {
    position: relative !important;
    z-index: 100 !important;

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

    gap: 8px;

    width: 100%;
    margin-bottom: 20px;

    overflow: visible !important;

    pointer-events: auto !important;
  }

  .home-offer__tab {
    position: relative !important;
    z-index: 101 !important;

    width: 100% !important;
    min-width: 0 !important;

    display: flex !important;
    align-items: center;
    justify-content: center;

    min-height: 46px;

    padding: 11px 8px;

    pointer-events: auto !important;
    touch-action: manipulation !important;

    cursor: pointer !important;

    -webkit-user-select: none;
    user-select: none;

    -webkit-tap-highlight-color:
      rgba(7, 154, 161, 0.15);
  }

  /*
   * Pseudo-element aktywnej zakładki
   * nie może przechwytywać dotyku.
   */

  .home-offer__tab::before,
  .home-offer__tab::after,
  .home-offer__tab * {
    pointer-events: none !important;
  }

  /*
   * Panel treści ma być niżej niż zakładki.
   */

  .home-offer__content {
    position: relative !important;
    z-index: 1 !important;

    width: 100%;

    overflow: visible !important;
  }

  .home-offer__panel {
    position: relative !important;
    z-index: 1 !important;

    display: none !important;

    width: 100%;
  }

  .home-offer__panel.is-active {
    display: grid !important;
    grid-template-columns: 1fr !important;

    width: 100%;
  }

  /*
   * Grafika nie może nachodzić na zakładki.
   */

  .home-offer__visual {
    position: relative !important;
    z-index: 1 !important;

    pointer-events: none;
  }

  .home-offer__visual img {
    pointer-events: none;
  }
}

/* =========================================================
   MOBILNY HEADER — MENU KATEGORII
   ========================================================= */

.mobile-category-toggle {
	display: none;
}


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

@media (max-width: 850px) {

	.site-header__inner {
		display: grid;

		grid-template-columns:
			minmax(100px, 1fr)
			auto
			auto;

		align-items: center;

		gap: 8px;

		padding: 8px 12px;
	}


	/* LOGO */

	.site-header__logo {
		min-width: 0;
	}

	.site-header__logo-image {
		max-width: 115px;
		max-height: 62px;
	}


	/* KONTO + KOSZYK */

	.site-header__actions {
		display: flex;

		align-items: center;

		gap: 5px;
	}

	.header-action {
		width: 40px;
		min-width: 40px;
		height: 40px;

		padding: 4px;
	}

	.header-action__text {
		display: none;
	}


	/* PRZYCISK KATEGORII */

	.mobile-category-toggle {
		display: flex;

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

		gap: 8px;

		min-height: 40px;

		padding: 8px 12px;

		color: #ffffff;

		background:
			rgba(255, 255, 255, 0.10);

		border:
			1px solid rgba(255, 255, 255, 0.18);

		border-radius: 8px;

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

		cursor: pointer;
	}


	.mobile-category-toggle__icon {
		width: 17px;

		display: grid;

		gap: 3px;
	}

	.mobile-category-toggle__icon span {
		display: block;

		width: 100%;
		height: 2px;

		background: #ffffff;

		border-radius: 999px;
	}


	/* MENU */

	.main-navigation {
		grid-column: 1 / -1;

		width: 100%;

		margin: 0;

		overflow: visible !important;
	}


	/*
	 * Menu domyślnie schowane.
	 */

	.main-navigation .main-menu {
		display: none !important;

		width: 100%;

		margin: 6px 0 0 !important;

		padding: 8px !important;

		background: #ffffff;

		border-radius: 10px;

		box-shadow:
			0 10px 25px
			rgba(0, 35, 40, 0.20);
	}


	/*
	 * Po otwarciu:
	 * 2 kolumny kategorii.
	 */

	.site-header.mobile-menu-open
	.main-navigation .main-menu {
		display: grid !important;

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

		gap: 6px;
	}


	/* GŁÓWNE KATEGORIE */

	.main-navigation
	.main-menu
	> li {
		width: 100%;

		min-width: 0;

		position: relative;
	}


	.main-navigation
	.main-menu
	> li
	> a {
		width: 100%;

		min-height: 44px;

		display: flex;

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

		padding: 8px 6px;

		color: #174b4f;

		background: #f4fafa;

		border: 1px solid #dcebec;

		border-radius: 7px;

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

		line-height: 1.25;

		text-align: center;

		white-space: normal !important;

		word-break: normal !important;

		overflow-wrap: normal !important;
	}


	.main-navigation
	.main-menu
	> li
	> a:hover,

	.main-navigation
	.main-menu
	> li.current-menu-item
	> a {
		color: #ffffff;

		background: #08747a;

		border-color: #08747a;
	}


	/* =====================================================
	   PODKATEGORIE NA MOBILE
	   ===================================================== */

	.main-navigation .sub-menu {
		position: static !important;

		display: none !important;

		width: 100%;

		min-width: 0;

		margin: 5px 0 0 !important;

		padding: 5px !important;

		opacity: 1 !important;

		visibility: visible !important;

		transform: none !important;

		pointer-events: auto !important;

		background: #edf7f7;

		border: 0;

		box-shadow: none;
	}


	/*
	 * Podmenu pokazujemy po kliknięciu
	 * klasy .submenu-open.
	 */

	.main-navigation
	.main-menu
	> li.submenu-open
	> .sub-menu {
		display: block !important;
	}


	.main-navigation
	.sub-menu
	a {
		display: block;

		padding: 9px 10px;

		color: #24565a;

		background: #ffffff;

		border-radius: 5px;

		font-size: 11px;

		white-space: normal;
	}


	.main-navigation
	.sub-menu
	li + li {
		margin-top: 4px !important;
	}


	/*
	 * Wyłącz hover desktopowy
	 * odpowiedzialny za automatyczne rozwijanie.
	 */

	.main-navigation
	.main-menu
	> li:hover
	> .sub-menu,

	.main-navigation
	.main-menu
	> li:focus-within
	> .sub-menu {
		display: none !important;
	}


	.main-navigation
	.main-menu
	> li.submenu-open
	> .sub-menu {
		display: block !important;
	}

}

@media (max-width: 850px) {

  .main-navigation {
    grid-column: 1 / -1;
    width: 100%;
  }

  .main-navigation .main-menu {
    display: none !important;
  }

  .site-header.mobile-menu-open
  .main-navigation
  .main-menu {
    display: grid !important;

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

    gap: 6px;

    width: 100%;

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

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
      0 10px 25px
      rgba(0, 35, 40, 0.20);
  }
}

/* =========================================================
   MOBILE — KATEGORIE POD PRZYCISKIEM, BEZ PODKATEGORII
   ========================================================= */

@media (max-width: 850px) {

  .site-header__inner {
    display: grid !important;

    grid-template-columns:
      minmax(100px, 1fr)
      auto
      auto;

    align-items: center;

    gap: 8px;

    padding: 8px 12px;
  }

  /* LOGO */

  .site-header__logo {
    grid-column: 1;
  }

  /* PRZYCISK KATEGORIE */

  .mobile-category-toggle {
    grid-column: 2;

    position: relative;
    z-index: 20;
  }

  /* KONTO + KOSZYK */

  .site-header__actions {
    grid-column: 3;
  }

  /* MENU MA BYĆ POD CAŁYM GÓRNYM RZĘDEM */

  .main-navigation {
    grid-column: 1 / -1 !important;
    grid-row: 2;

    width: 100%;

    margin: 0 !important;

    overflow: visible !important;
  }

  /* DOMYŚLNIE SCHOWANE */

  .main-navigation .main-menu {
    display: none !important;
  }

  /* PO KLIKNIĘCIU KATEGORIE */

  .site-header.mobile-menu-open
  .main-navigation
  .main-menu {
    display: grid !important;

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

    gap: 6px;

    width: 100%;

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

    background: #ffffff;

    border-radius: 10px;

    box-shadow:
      0 10px 25px rgba(0, 35, 40, 0.20);
  }

  /* GŁÓWNE KATEGORIE */

  .main-navigation
  .main-menu
  > li {
    width: 100%;

    min-width: 0;

    position: relative;
  }

  .main-navigation
  .main-menu
  > li
  > a {
    width: 100%;

    min-height: 44px;

    display: flex;

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

    padding: 9px 7px;

    color: #174b4f;

    background: #f4fafa;

    border: 1px solid #dcebec;

    border-radius: 7px;

    font-size: 12px;
    font-weight: 700;
    line-height: 1.25;

    text-align: center;

    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  .main-navigation
  .main-menu
  > li
  > a:hover,

  .main-navigation
  .main-menu
  > li.current-menu-item
  > a {
    color: #ffffff;

    background: #08747a;

    border-color: #08747a;
  }

  /* =====================================================
     PODKATEGORIE — CAŁKOWICIE UKRYTE NA TELEFONIE
     ===================================================== */

  .main-navigation .sub-menu {
    display: none !important;

    opacity: 0 !important;
    visibility: hidden !important;

    pointer-events: none !important;
  }

  .main-navigation
  .menu-item-has-children
  > a::after {
    display: none !important;

    content: none !important;
  }

  .main-navigation
  .main-menu
  > li:hover
  > .sub-menu,

  .main-navigation
  .main-menu
  > li:focus-within
  > .sub-menu,

  .main-navigation
  .main-menu
  > li.submenu-open
  > .sub-menu {
    display: none !important;
  }
}
/* =========================================================
   POZNAJ NASZĄ OFERTĘ — KLIKALNE RODZAJE PRODUKTÓW
   ========================================================= */

.home-offer__products {
	display: grid;
	gap: 10px;

	width: 100%;

	margin: 0 0 28px;
}


/* Kafelek */

.home-offer__product {
	appearance: none;
	-webkit-appearance: none;

	width: 100%;
	min-width: 0;

	display: grid;

	grid-template-columns:
		28px
		minmax(0, 1fr);

	align-items: start;

	gap: 12px;

	margin: 0;
	padding: 14px 16px;

	color: inherit;

	background: #f5fafa;

	border: 1px solid #dcebec;
	border-radius: 9px;

	font-family: inherit;
	font-size: inherit;

	text-align: left;

	cursor: pointer;

	box-sizing: border-box;

	overflow: hidden;

	transition:
		background 0.18s ease,
		border-color 0.18s ease,
		transform 0.18s ease,
		box-shadow 0.18s ease;
}


/* Hover */

.home-offer__product:hover {
	background: #eef8f8;

	border-color: #87c7cb;

	transform: translateX(3px);
}


/* Aktywny */

.home-offer__product.is-active {
	background: #e5f5f5;

	border-color: #08747a;

	box-shadow:
		inset 4px 0 0 #08747a;
}


/* Check */

.home-offer__check {
	width: 25px;
	height: 25px;

	display: flex;

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

	flex: 0 0 25px;

	color: #ffffff;

	background: #08747a;

	border-radius: 50%;

	font-size: 12px;
	font-weight: 800;
	line-height: 1;
}


/* Tekst */

.home-offer__product-text {
	min-width: 0;

	display: flex;
	flex-direction: column;

	gap: 4px;
}


.home-offer__product-text strong {
	display: block;

	margin: 0;

	color: #173f42;

	font-size: 14px;
	font-weight: 700;
	line-height: 1.3;

	white-space: normal;
	word-break: normal;
	overflow-wrap: normal;
}


.home-offer__product-text > span {
	display: block;

	margin: 0;

	color: #607578;

	font-size: 13px;
	font-weight: 400;
	line-height: 1.5;

	white-space: normal;
	word-break: normal;
	overflow-wrap: normal;
}


/* =========================================================
   OBRAZ PO PRAWEJ
   ========================================================= */

.home-offer__visual {
	display: flex;

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

	width: 100%;
	min-width: 0;
	min-height: 320px;

	padding: 25px;

	box-sizing: border-box;

	background:
		radial-gradient(
			circle,
			rgba(7, 154, 161, 0.13),
			transparent 65%
		);

	border-radius: 14px;
}


.home-offer__dynamic-image {
	display: block;

	width: auto !important;
	max-width: 100% !important;

	height: auto !important;
	max-height: 320px !important;

	margin: auto;

	object-fit: contain;
	object-position: center;

	opacity: 1;

	transition:
		opacity 0.15s ease,
		transform 0.15s ease;
}


.home-offer__dynamic-image.is-changing {
	opacity: 0;

	transform: scale(0.97);
}
/* =========================================================
   SKLEP — PANEL KATEGORII
   ========================================================= */

.shop-category-filter {
	width: 100%;
	max-width: 260px;

	padding: 18px;

	box-sizing: border-box;

	background: #ffffff;

	border: 1px solid #d7e7e8;

	box-shadow:
		0 8px 22px rgba(6, 79, 85, 0.06);
}


/* Tytuł */

.shop-category-filter__title {
	margin: 0 0 16px;

	color: #102f33;

	font-family: var(--serif);
	font-size: 26px;
	font-weight: 700;
	line-height: 1.15;
}


/* Lista */

.shop-category-filter__list {
	display: grid;
	gap: 8px;

	width: 100%;
}


/* =========================================================
   GŁÓWNE KATEGORIE
   ========================================================= */

.shop-category-filter__item {
	width: 100%;
	min-height: 44px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 10px;

	padding: 10px 14px;

	box-sizing: border-box;

	color: #102f33;

	background: #ffffff;

	border: 1px solid #cfe1e3;

	text-decoration: none !important;

	font-size: 16px;
	font-weight: 500;
	line-height: 1.2;

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


/* Hover */

.shop-category-filter__item:hover {
	color: #08747a;

	background: #f3fafa;

	border-color: #91c9cd;
}


/* Aktywna kategoria */

.shop-category-filter__item.is-active {
	color: #ffffff;

	background: #08747a;

	border-color: #08747a;

	font-weight: 700;
}


/* =========================================================
   LICZNIK
   ========================================================= */

.shop-category-filter__count {
	min-width: 27px;
	height: 27px;

	display: inline-flex;
	align-items: center;
	justify-content: center;

	flex: 0 0 auto;

	padding: 0 7px;

	box-sizing: border-box;

	color: #31595c;

	background: #f3fafa;

	border-radius: 999px;

	font-size: 11px;
	font-weight: 700;
	line-height: 1;
}


/* Licznik aktywnej kategorii */

.shop-category-filter__item.is-active
.shop-category-filter__count {
	color: #08747a;

	background: #ffffff;
}


/* =========================================================
   GRUPA KATEGORII
   ========================================================= */

.shop-category-filter__group {
	width: 100%;

	display: block;

	margin: 0;
	padding: 0;
}


/* =========================================================
   PODKATEGORIE
   ========================================================= */

.shop-category-filter__subcategories {
	display: grid;

	gap: 5px;

	width: calc(100% - 14px);

	margin:
		5px 0
		2px 14px;

	padding-left: 10px;

	box-sizing: border-box;

	border-left:
		2px solid rgba(8, 116, 122, 0.20);
}


/* Podkategoria */

.shop-category-filter__subcategory {
	width: 100%;
	min-height: 39px;

	display: flex;
	align-items: center;
	justify-content: space-between;

	gap: 8px;

	padding: 8px 10px;

	box-sizing: border-box;

	color: #31595c;

	background: #f7fbfb;

	border: 1px solid #dcebec;

	text-decoration: none !important;

	font-size: 14px;
	font-weight: 500;
	line-height: 1.2;

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


/* Hover */

.shop-category-filter__subcategory:hover {
	color: #08747a;

	background: #edf8f8;

	border-color: #9fd4d7;
}


/* Aktywna podkategoria */

.shop-category-filter__subcategory.is-active {
	color: #ffffff;

	background: #08747a;

	border-color: #08747a;

	font-weight: 700;
}


/* Licznik podkategorii */

.shop-category-filter__subcategory
.shop-category-filter__count {
	min-width: 25px;
	height: 25px;

	font-size: 10px;

	background: #ffffff;
}


/* Aktywna podkategoria — licznik */

.shop-category-filter__subcategory.is-active
.shop-category-filter__count {
	color: #08747a;
	background: #ffffff;
}

/* =========================================================
   PODOBNE PRODUKTY — STRONA PRODUKTU
   ========================================================= */

.single-product .related.products {
  width: 100%;
  margin-top: 45px;
}

.single-product .related.products > h2 {
  margin: 0 0 24px;
  font-size: 28px;
  line-height: 1.2;
  color: #102f33;
}


/* Lista produktów */

.single-product .related.products ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 20px !important;

  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}


/* Karta */

.single-product .related.products ul.products li.product {
  float: none !important;
  clear: none !important;

  width: 100% !important;
  max-width: none !important;

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

  display: flex !important;
  flex-direction: column !important;

  background: #fff;
  border: 1px solid #d7e7e8;
  box-sizing: border-box;
}


/* Link produktu */

.single-product .related.products li.product .woocommerce-LoopProduct-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 18px;
  text-decoration: none;
}


/* Zdjęcie */

.single-product .related.products li.product img {
  display: block;

  width: 100% !important;
  height: 220px !important;

  margin: 0 0 18px !important;

  object-fit: contain;
  object-position: center;
}


/* Nazwa */

.single-product .related.products li.product .woocommerce-loop-product__title {
  margin: 0 0 10px !important;

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

  color: #102f33;

  /* maksymalnie 2 linie */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}


/* Cena */

.single-product .related.products li.product .price {
  display: block;

  margin-top: auto !important;
  margin-bottom: 16px !important;

  color: #08747a !important;
  font-size: 20px !important;
  font-weight: 700;
}


/* Dodaj do koszyka */

.single-product .related.products li.product .button {
  display: flex !important;
  align-items: center;
  justify-content: center;

  width: 100% !important;
  min-height: 52px;

  margin: 0 !important;
  padding: 10px 12px !important;

  border-radius: 0 !important;

  text-align: center;
}

/* Tablet */

@media (max-width: 1000px) {

  .single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

}


/* Telefon */

@media (max-width: 600px) {

  .single-product .related.products ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .single-product .related.products li.product img {
    height: 160px !important;
  }

  .single-product .related.products li.product .woocommerce-LoopProduct-link {
    padding: 12px;
  }

  .single-product .related.products li.product .woocommerce-loop-product__title {
    font-size: 14px !important;
  }

  .single-product .related.products li.product .price {
    font-size: 17px !important;
  }

}

/* =========================================================
   PODOBNE PRODUKTY — PEŁNA SZEROKOŚĆ
   ========================================================= */

.single-product div.product .related.products {
  width: 100% !important;
  max-width: none !important;

  clear: both !important;

  /* jeśli główny produkt jest zrobiony jako grid */
  grid-column: 1 / -1 !important;

  /* jeśli główny produkt jest flexem */
  flex-basis: 100% !important;

  margin-top: 50px !important;
}


/* 4 równe, szerokie kolumny */

.single-product .related.products ul.products {
  display: grid !important;

  grid-template-columns:
    repeat(4, minmax(0, 1fr)) !important;

  gap: 24px !important;

  width: 100% !important;
  max-width: none !important;

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


/* Wyłączenie starych szerokości WooCommerce */

.single-product .related.products ul.products li.product {
  float: none !important;

  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;

  margin: 0 !important;
}

/* =========================================================
   CENA I STAN MAGAZYNOWY — STRONA PRODUKTU
   ========================================================= */

/* Cena */
.single-product .summary .price,
.single-product .summary .price span,
.single-product .summary .price .woocommerce-Price-amount,
.single-product .summary .price .woocommerce-Price-currencySymbol {
  font-family: inherit !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  line-height: 1.3 !important;
  color: #08747a !important;
}


/* Stan magazynowy */
.single-product .summary .stock {
  font-family: inherit !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
  color: #607578 !important;
  margin: 14px 0 18px !important;
}

.home-hero__brand {
    width: 520px !important;
    max-width: none !important;
    overflow: visible !important;
	justify-self: center !important;
}

.home-hero__brand img {
    display: block !important;
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
}

@media (max-width: 850px) {
    .home-hero__brand {
        width: 320px !important;
        max-width: 90vw !important;
    }
}