/* =========================================================
   VETARIS – style.css
   Motyw WordPress + WooCommerce (GeneratePress child)
   ========================================================= */

/*
   SPIS TREŚCI
   ─────────────────────────────────────────────────────────
   1.  Importy fontów
   2.  Reset globalny (typografia, tło)
   3.  Animacje (@keyframes)
   4.  Hero – sekcja główna strony startowej
   5.  Belka przewijana (marquee)
   6.  Sekcja wideo
   7.  Sklep / produkty na stronie głównej
   8.  Dla kogo (vet-for-whom)
   9.  Nauka (vet-science)
   10. Zespół (vet-team)
   11. Baner marki / firma (vet-brand-banner)
   12. Stopka (vet-footer)
   13. Layout motywu (GeneratePress)
   14. Nagłówek i nawigacja (desktop)
   15. Belka informacyjna (topbar)
   16. Nagłówek i menu mobilne (drawer)
   17. Koszyk boczny – Xootix Side Cart
   18. Checkout – WooCommerce Blocks
   18b. Koszyk – pusty stan
   19. Potwierdzenie zamówienia / szczegóły
   20. Moje konto – zamówienia i podgląd
   ─────────────────────────────────────────────────────────
*/

@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:ital,wght@0,100..800;1,100..800&family=Outfit:wght@100..900&display=swap');


/* =========================================================
   2. RESET GLOBALNY
   Typografia Outfit, tło strony
   ========================================================= */

* {
	font-family: Outfit, sans-serif;
}

html,
body {
	background: rgb(244, 241, 235);
}


/* =========================================================
   3. ANIMACJE
   Wspólne keyframes i klasy pomocnicze
   ========================================================= */

@keyframes vetMarquee {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@keyframes vetFloat {
	0%, 100% { transform: translateY(0) rotate(-3deg); }
	50% { transform: translateY(-14px) rotate(-3deg); }
}

@keyframes vetFloatHero {
	0%, 100% { transform: translateY(0); }
	50% { transform: translateY(-30px); }
}

@keyframes vetGlow {
	0%, 100% { opacity: .55; }
	50% { opacity: .85; }
}

@keyframes vetGlowSat {
	0% { opacity: .5; filter: saturate(.9); }
	100% { opacity: .92; filter: saturate(1.7); }
}

@keyframes vetRise {
	from { opacity: 0; transform: translateY(18px); }
	to { opacity: 1; transform: translateY(0); }
}

.vet-card-shadow {
	transition: transform .45s cubic-bezier(.2, .8, .2, 1),
	            box-shadow .45s cubic-bezier(.2, .8, .2, 1);
}


/* =========================================================
   4. HERO – SEKCJA GŁÓWNA
   Nagłówek strony startowej z produktem i badge'ami
   ========================================================= */

.hero-vetaris {
  background: #f4f1eb;
  overflow: hidden;
}

.hero-vetaris__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 72px 32px 52px;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(520px, .98fr);
  align-items: center;
  gap: 44px;
}

.hero-vetaris__content {
  max-width: 620px;
}

.hero-vetaris__eyebrow {
     display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "JetBrains Mono", monospace;
    font-size: 11.5px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgb(242, 103, 30);
    margin-bottom: 26px;
}

.hero-vetaris__eyebrow::before {
  content: "";
  display: block;
  width: 26px;
  height: 1px;
  background: currentColor;
  flex: 0 0 26px;
  opacity: .9;
}

.hero-vetaris__title {
font-size: clamp(44px, 5.4vw, 76px);
    font-weight: 700;
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin-bottom: 26px;
    text-wrap: balance;
    font-family: Outfit, sans-serif;
    color: rgb(22, 19, 15);
}

.hero-vetaris__desc {
font-size: 18px;
    line-height: 1.6;
    max-width: 460px;
color: rgba(22, 19, 15, 0.72);
    margin-bottom: 36px;
}

.hero-vetaris__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-vetaris__btn {
 text-decoration: none;
    background: rgb(22, 19, 15);
    color: rgb(242, 239, 232);
    font-size: 15px;
    font-weight: 600;
    padding: 15px 30px;
    border-radius: 100px;
}

.hero-vetaris__btn--primary {
  background: #111111;
  color: #f7f3ed;
  box-shadow: 0 8px 20px rgba(17, 17, 17, .08);
}


.hero-vetaris__btn--secondary {
  background: transparent;
  color: #111111;
  border: 1px solid rgba(17, 17, 17, .16);
}


.hero-vetaris__usp {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 34px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-vetaris__usp li {
  position: relative;
  padding-left: 15px;
  color: rgba(22, 19, 15, 0.62);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
}

.hero-vetaris__usp li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #8f8a84;
  font-size: 13px;
  font-weight: 700;
}

.hero-vetaris__media {
position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.hero-vetaris__glow {
 position: absolute;
    width: 430px;
    height: 430px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 35%, rgba(242, 103, 30, 0.42), rgba(242, 103, 30, 0.12) 60%, transparent 72%);
    animation: 5s ease-in-out 0s infinite alternate none running vetGlowSat;
}

.hero-vetaris__product {
    position: relative;
    z-index: 2;
    width: 340px;
    max-width: 78%;
    filter: drop-shadow(rgba(22, 19, 15, 0.3) 0px 30px 40px);
    animation: 5s ease-in-out 0s infinite normal none running vetFloatHero;
}

.hero-vetaris__badge {
  position: absolute;
  z-index: 3;
  min-width: 138px;
  padding: 14px 16px 15px;
  background: rgba(248, 245, 239, .88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(17, 17, 17, .08);
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(17, 17, 17, .06);
}

.hero-vetaris__badge--dose {
    top: 46px;
    right: 8px;
}


.hero-vetaris__badge--capacity {
    bottom: 54px;
    left: 0px;
}


.hero-vetaris__badge-label {
  display: block;
  margin-bottom: 5px;
  color: #df7a43;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  line-height: 1;
}

.hero-vetaris__badge-value {
  display: block;
  color: #111111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

@media (max-width: 1199px) {
  .hero-vetaris__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    padding-top: 56px;
  }

  .hero-vetaris__title {
    font-size: clamp(48px, 5.8vw, 72px);
  }

  .hero-vetaris__desc {
    font-size: 18px;
  }

  .hero-vetaris__media {
    min-height: 520px;
  }

  .hero-vetaris__glow {
    width: 360px;
    height: 360px;
  }

  .hero-vetaris__product {
    width: min(390px, 84%);
  }

  .hero-vetaris__badge--capacity {
    left: 20px;
    bottom: 32px;
  }
}

@media (max-width: 991px) {
  .hero-vetaris__inner {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 44px 24px 34px;
  }

  .hero-vetaris__content {
    max-width: 100%;
  }

  .hero-vetaris__title {
    max-width: 10ch;
    font-size: clamp(42px, 10vw, 62px);
  }

  .hero-vetaris__desc {
    max-width: 100%;
    font-size: 17px;
  }

  .hero-vetaris__media {
    min-height: 470px;
    margin-top: 8px;
  }

  .hero-vetaris__badge--dose {
    top: 10px;
    right: 10px;
  }

  .hero-vetaris__badge--capacity {
    left: 10px;
    bottom: 24px;
  }
}

@media (max-width: 640px) {
  .hero-vetaris__inner {
    padding: 36px 18px 24px;
  }

  .hero-vetaris__eyebrow {
    margin-bottom: 20px;
    font-size: 11px;
    letter-spacing: .18em;
  }

  .hero-vetaris__title {
    margin-bottom: 20px;
    font-size: clamp(38px, 11vw, 52px);
    line-height: .95;
  }

  .hero-vetaris__desc {
    margin-bottom: 24px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-vetaris__actions {
    flex-direction: column;
    align-items: stretch;
    margin-bottom: 24px;
  }

  .hero-vetaris__btn {
    width: 100%;
    min-height: 48px;
  }

  .hero-vetaris__usp {
    flex-direction: column;
    gap: 10px;
  }

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

  .hero-vetaris__glow {
    width: 270px;
    height: 270px;
    transform: translate(0, 8px);
  }

  .hero-vetaris__product {
    width: min(290px, 78%);
  }

  .hero-vetaris__badge {
    min-width: 118px;
    padding: 10px 12px 11px;
    border-radius: 14px;
  }

  .hero-vetaris__badge-label {
    font-size: 10px;
  }

  .hero-vetaris__badge-value {
    font-size: 14px;
  }

  .hero-vetaris__badge--dose {
    top: 8px;
    right: 0;
  }

  .hero-vetaris__badge--capacity {
    left: 0;
    bottom: 12px;
  }
}


/* =========================================================
   5. BELKA PRZEWIJANA (MARQUEE)
   Pomarańczowa taśma z przewijanym tekstem
   ========================================================= */
.vet-marquee {
	position: relative;
	left: 50%;
	width: 100vw;
	margin-left: -50vw;
	background: #f2671e;
	z-index: 1;
}

.vet-marquee__container {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 28px;
}

.vet-marquee__viewport {
	width: 100%;
	overflow: hidden;
}

.vet-marquee__track {
	display: flex;
	align-items: center;
	width: max-content;
	will-change: transform;
	animation: vet-marquee-scroll 28s linear infinite;
}

.vet-marquee__group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	white-space: nowrap;
}

.vet-marquee__item {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
	white-space: nowrap;
	font-family: "JetBrains Mono", monospace;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	letter-spacing: 0.08em;
	text-transform: none;
	color: #fff;
	padding: 18px 0;
}

.vet-marquee__sep {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	margin: 0 18px;
	font-family: "JetBrains Mono", monospace;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	color: rgba(22, 19, 15, 0.55);
}

@keyframes vet-marquee-scroll {
	from {
		transform: translateX(0);
	}
	to {
		transform: translateX(-50%);
	}
}

@media (max-width: 1279px) {
	.vet-marquee__container {
		padding: 0 24px;
	}
}

@media (max-width: 767px) {
	.vet-marquee__container {
		padding: 0 16px;
	}

	.vet-marquee__track {
		animation-duration: 22s;
	}

	.vet-marquee__item {
		font-size: 12px;
		letter-spacing: 0.06em;
		padding: 14px 0;
	}

	.vet-marquee__sep {
		margin: 0 14px;
		font-size: 12px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vet-marquee__track {
		animation: none;
		width: 100%;
	}

	.vet-marquee__group[aria-hidden="true"] {
		display: none;
	}
}


/* =========================================================
   6. SEKCJA WIDEO
   Hero z tłem wideo i CTA
   ========================================================= */
.vet-video-hero {
  padding: 48px 28px 0;
}

.vet-video-hero__media {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  min-height: clamp(420px, 50vw, 560px);
  border-radius: 28px;
  overflow: hidden;
  background: #16130f;
  display: flex;
  align-items: center;
}

.vet-video-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.vet-video-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(22, 19, 15, 0.72) 0%, rgba(22, 19, 15, 0.42) 45%, rgba(22, 19, 15, 0.18) 100%);
}

.vet-video-hero__content {
  position: relative;
  z-index: 3;
  max-width: 640px;
  padding: clamp(36px, 5vw, 68px);
  color: #f2efe8;
}

.vet-video-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  font-family: "JetBrains Mono", monospace;
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e0a352;
}

.vet-video-hero__eyebrow span {
  width: 26px;
  height: 1px;
  background: currentColor;
  display: inline-block;
}

.vet-video-hero__title {
  margin: 0 0 22px;
  font-size: clamp(36px, 4.6vw, 62px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-wrap: balance;
  color: #f2efe8;
}

.vet-video-hero__text {
  margin: 0 0 34px;
  max-width: 440px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(242, 239, 232, 0.82);
}

.vet-video-hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.vet-video-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
  font-size: 15px;
  line-height: 1;
  border-radius: 100px;
  padding: 15px 32px;
  transition: all 0.25s ease;
}

.vet-video-hero__btn--primary {
  background-color: #f2671e;
  color: #ffffff;
  font-weight: 700;
  border: 2px solid #f2671e;
}

.vet-video-hero__btn--primary:hover {
  background-color: #dc5c19;
  border-color: #dc5c19;
}

.vet-video-hero__btn--secondary {
  background: transparent;
  color: #f2efe8;
  font-weight: 600;
  border: 2px solid rgba(242, 239, 232, 0.4);
}

.vet-video-hero__btn--secondary:hover {
  background: rgba(242, 239, 232, 0.08);
  border-color: rgba(242, 239, 232, 0.64);
}

@media (max-width: 767px) {
  .vet-video-hero {
    padding: 32px 16px 0;
  }

  .vet-video-hero__media {
    min-height: 520px;
    border-radius: 22px;
    align-items: flex-end;
  }

  .vet-video-hero__overlay {
    background:
      linear-gradient(180deg, rgba(22, 19, 15, 0.18) 0%, rgba(22, 19, 15, 0.82) 72%, rgba(22, 19, 15, 0.94) 100%);
  }

  .vet-video-hero__content {
    max-width: 100%;
    padding: 26px 22px 24px;
  }

  .vet-video-hero__title {
    font-size: clamp(32px, 10vw, 46px);
  }

  .vet-video-hero__text {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .vet-video-hero__actions {
    gap: 12px;
  }

  .vet-video-hero__btn {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
  }
}

/* =========================================================
   7. SKLEP / PRODUKTY – STRONA GŁÓWNA
   Grid WooCommerce, karty produktów, filtry
   ========================================================= */

.vet-products-home {
	max-width: 1280px;
	margin: 0 auto;
	padding: 84px 28px 40px;
}

/* --- Nagłówek sekcji --- */

.vet-products-home__top {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 34px;
}

.vet-products-home__eyebrow {
	font-family: "JetBrains Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: rgb(184, 92, 43);
	margin-bottom: 14px;
}

.vet-products-home__title {
	margin: 0;
	font-size: clamp(34px, 4vw, 52px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1;
	color: rgb(22, 19, 15);
}

.vet-products-home__desc {
	margin: 0;
	max-width: 340px;
	font-size: 15px;
	line-height: 1.6;
	color: rgba(22, 19, 15, 0.66);
}

/* --- Toolbar / filtry --- */

.vet-products-home__toolbar {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 18px;
	flex-wrap: wrap;
	margin-bottom: 38px;
}

.vet-products-home__filters {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
}

.vet-products-home__filter,
.vet-products-home .vet-chip,
.vet-products-home .vet-filter-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border: 1px solid rgba(22, 19, 15, 0.18);
	background: transparent;
	color: rgb(22, 19, 15);
	font-family: inherit;
	font-size: 13.5px;
	font-weight: 500;
	padding: 9px 18px;
	border-radius: 100px;
	text-decoration: none;
	white-space: nowrap;
	transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.vet-products-home__filter:hover,
.vet-products-home .vet-chip:hover,
.vet-products-home .vet-filter-btn:hover {
	background: rgba(22, 19, 15, 0.05);
	color: rgb(22, 19, 15);
	text-decoration: none;
}

.vet-products-home__filter.is-active,
.vet-products-home .vet-chip.is-active,
.vet-products-home .vet-filter-btn.is-active {
	background: rgb(22, 19, 15);
	color: rgb(242, 239, 232);
	border-color: rgb(22, 19, 15);
}

.vet-products-home__layout-switch {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	background: rgba(22, 19, 15, 0.06);
	border: 1px solid rgba(22, 19, 15, 0.1);
	border-radius: 100px;
	padding: 4px;
	flex-shrink: 0;
}

.vet-products-home__layout-label {
	font-family: "JetBrains Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(22, 19, 15, 0.5);
	padding: 0 8px 0 10px;
}

.vet-products-home__layout-btn {
	cursor: pointer;
	border: 0;
	background: transparent;
	color: rgba(22, 19, 15, 0.55);
	font-family: inherit;
	font-size: 12.5px;
	font-weight: 600;
	padding: 7px 16px;
	border-radius: 100px;
	white-space: nowrap;
	transition: all 0.25s ease;
}

.vet-products-home__layout-btn.is-active {
	background: rgb(22, 19, 15);
	color: rgb(242, 239, 232);
}

/* --- Grid WooCommerce --- */

.vet-products-home ul.products,
.vet-products-home ul.products.columns-3 {
	display: grid !important;
	grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)) !important;
	gap: 22px !important;
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
}

.vet-products-home ul.products.vet-products-grid {
	grid-template-columns: repeat(var(--vet-grid-cols, 3), minmax(0, 1fr)) !important;
	grid-template-rows: repeat(var(--vet-grid-rows, 1), auto);
}

.vet-products-home ul.products.vet-products-grid > li.product {
	grid-row: var(--vet-grid-row, auto);
	grid-column: var(--vet-grid-col, auto);
}

.vet-products-home ul.products::before,
.vet-products-home ul.products::after,
.vet-products-home ul.products.columns-3::before,
.vet-products-home ul.products.columns-3::after {
	display: none !important;
	content: none !important;
}

.vet-products-home ul.products > li.product,
.vet-products-home ul.products.columns-3 > li.product {
	float: none !important;
	width: auto !important;
	margin: 0 !important;
	clear: none !important;
	list-style: none !important;
}

/* --- Karta produktu --- */

.vet-products-home .product,
.vet-product-card {
	background: rgb(251, 250, 246);
	border: 1px solid rgba(22, 19, 15, 0.1);
	border-radius: 20px;
	overflow: hidden;
	display: flex;
	flex-direction: column;
}

.vet-products-home .product.vet-card-shadow,
.vet-product-card.vet-card-shadow {
	transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.vet-product-card__inner {
	display: flex;
	flex-direction: column;
	flex: 1 1 auto;
	height: 100%;
}

.vet-products-home .product:hover,
.vet-product-card:hover {
	transform: translateY(-8px);
	box-shadow: 0 28px 60px -28px rgba(22, 19, 15, 0.35);
}

/* --- Media box (zdjęcie) --- */

.vet-product-card__media {
	position: relative;
	height: 262px;
	display: flex;
	align-items: center;
	justify-content: center;
	overflow: hidden;
	background: rgba(199, 181, 148, 0.08);
}

.vet-product-card__media-bg {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 210px;
	height: 210px;
	border-radius: 50%;
	transform: translate(-50%, -50%);
	z-index: 1;
	pointer-events: none;
}

.vet-product-card__badge {
	position: absolute;
	top: 16px;
	left: 16px;
	z-index: 3;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: "JetBrains Mono", monospace;
	font-size: 10px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgb(255, 255, 255);
	background: rgb(140, 122, 87);
	padding: 5px 11px;
	border-radius: 100px;
	font-weight: 500;
	line-height: 1;
}

.vet-product-card__volume {
	position: absolute;
	top: 16px;
	right: 16px;
	z-index: 3;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	color: rgba(22, 19, 15, 0.5);
	line-height: 1;
}

.vet-product-card__image-link {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	text-decoration: none;
}

.vet-product-card__media img,
.vet-product-card__image,
.vet-products-home ul.products li.product img {
	position: relative;
	z-index: 2;
	display: block;
	width: auto !important;
	height: 208px !important;
	max-width: none !important;
	max-height: none !important;
	margin: 0 auto !important;
	object-fit: contain !important;
	object-position: center bottom !important;
	box-shadow: none !important;
	filter: saturate(1.08) drop-shadow(0 16px 22px rgba(22, 19, 15, 0.22));
}

/* --- Treść karty --- */

.vet-product-card__content {
	padding: 22px 22px 24px;
	display: flex;
	flex-direction: column;
	flex: 1 1 0;
}

.vet-product-card__head {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 10px;
	margin-bottom: 3px;
}

.vet-product-card__title {
	margin: 0;
	font-size: 23px;
	font-weight: 700;
	letter-spacing: 0.02em;
	line-height: 1;
	text-transform: uppercase;
	color: rgb(22, 19, 15);
}

.vet-product-card__title a {
	color: inherit;
	text-decoration: none;
}

.vet-product-card__title a:hover {
	color: inherit;
	text-decoration: none;
}

.vet-product-card__code {
	font-size: 11px;
	font-family: "JetBrains Mono", monospace;
	color: rgb(184, 92, 43);
	font-weight: 500;
	white-space: nowrap;
	line-height: 1;
}

.vet-product-card__subtitle {
	font-size: 14px;
	font-weight: 500;
	color: rgba(22, 19, 15, 0.7);
	margin-bottom: 14px;
	line-height: 1.45;
}

.vet-product-card__ingredients {
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	color: rgb(22, 19, 15);
	background: rgba(22, 19, 15, 0.05);
	border-radius: 8px;
	padding: 8px 11px;
	margin-bottom: 14px;
	letter-spacing: 0.02em;
	line-height: 1.45;
}

.vet-product-card__excerpt {
	font-size: 13.5px;
	line-height: 1.58;
	color: rgba(22, 19, 15, 0.66);
	margin-bottom: 20px;
	flex: 1 1 0;
}

/* --- Stopka karty (cena, CTA) --- */

.vet-product-card__footer {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.vet-product-card__price-box {
	min-width: 0;
}

.vet-product-card__price {
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: rgb(22, 19, 15);
}

.vet-product-card__price .amount {
	color: inherit;
	font-weight: inherit;
}

.vet-product-card__meta {
	margin-top: 6px;
	font-size: 11px;
	font-family: "JetBrains Mono", monospace;
	color: rgba(22, 19, 15, 0.5);
	line-height: 1;
}

.vet-product-card__actions {
	display: flex;
	gap: 8px;
	align-items: center;
}

.vet-product-card__btn,
.vet-product-card__actions a,
.vet-product-card__actions button,
.vet-products-home .button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	cursor: pointer;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	white-space: nowrap;
	border-radius: 100px;
	transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.vet-product-card__btn:active,
.vet-product-card__actions a:active,
.vet-product-card__actions button:active,
.vet-products-home .button:active {
	transform: scale(0.97);
}

.vet-product-card__btn--secondary,
.vet-product-card__actions .button:not(.add_to_cart_button):not(.ajax_add_to_cart) {
	border: 1px solid rgba(22, 19, 15, 0.22);
	background: none;
	color: rgb(22, 19, 15);
	padding: 12px 18px;
}

.vet-product-card__btn--secondary:hover,
.vet-product-card__actions .button:not(.add_to_cart_button):not(.ajax_add_to_cart):hover {
	background: rgba(22, 19, 15, 0.05);
	color: rgb(22, 19, 15);
	text-decoration: none;
}

.vet-product-card__btn--primary,
.vet-product-card__actions .add_to_cart_button,
.vet-product-card__actions .ajax_add_to_cart,
.vet-products-home .button.add_to_cart_button,
.vet-products-home .button.ajax_add_to_cart {
	border: 0;
	background: rgb(22, 19, 15);
	color: rgb(242, 239, 232) !important;
	padding: 13px 22px;
}

.vet-product-card__btn--primary:hover,
.vet-product-card__actions .add_to_cart_button:hover,
.vet-product-card__actions .ajax_add_to_cart:hover,
.vet-products-home .button.add_to_cart_button:hover,
.vet-products-home .button.ajax_add_to_cart:hover {
	background: rgb(34, 29, 24);
	color: rgb(242, 239, 232) !important;
	text-decoration: none;
}

/* --- Warianty kolorystyczne kart --- */

.vet-product-card--ruch .vet-product-card__media {
	background: rgba(199, 181, 148, 0.08);
}

.vet-product-card--ruch .vet-product-card__badge {
	background: rgb(140, 122, 87);
}

.vet-product-card--skora .vet-product-card__media {
	background: rgba(192, 104, 60, 0.08);
}

.vet-product-card--skora .vet-product-card__badge {
	background: rgb(192, 104, 60);
}

.vet-product-card--spokoj .vet-product-card__media {
	background: rgba(79, 98, 117, 0.08);
}

.vet-product-card--spokoj .vet-product-card__badge {
	background: rgb(79, 98, 117);
}

.vet-product-card--trawienie .vet-product-card__media {
	background: rgba(94, 110, 69, 0.08);
}

.vet-product-card--trawienie .vet-product-card__badge {
	background: rgb(94, 110, 69);
}

.vet-product-card--komfort .vet-product-card__media {
	background: rgba(242, 103, 30, 0.08);
}

.vet-product-card--komfort .vet-product-card__badge {
	background: rgb(242, 103, 30);
}

/* --- Karta pakietu (ciemne tło) --- */

.vet-products-home .product.vet-product-card--pakiet,
.vet-product-card--pakiet {
	background: rgb(22, 19, 15) !important;
	border-color: rgb(22, 19, 15) !important;
	color: rgb(242, 239, 232);
}

.vet-products-home .product.vet-product-card--pakiet .vet-product-card__inner,
.vet-product-card--pakiet .vet-product-card__inner,
.vet-products-home .product.vet-product-card--pakiet .vet-product-card__content,
.vet-product-card--pakiet .vet-product-card__content {
	background: rgb(22, 19, 15);
}

.vet-products-home .product.vet-product-card--pakiet:hover,
.vet-product-card--pakiet:hover {
	box-shadow: 0 28px 60px -28px rgba(0, 0, 0, 0.55);
}

.vet-product-card--pakiet .vet-product-card__media {
	background: rgb(22, 19, 15);
}

.vet-product-card--pakiet .vet-product-card__badge {
	color: rgb(22, 19, 15);
	font-weight: 600;
}

.vet-product-card--pakiet .vet-product-card__volume {
	color: rgba(242, 239, 232, 0.5);
}

.vet-product-card--pakiet .vet-product-card__media img,
.vet-product-card--pakiet .vet-product-card__image {
	filter: saturate(1.08) drop-shadow(rgba(0, 0, 0, 0.5) 0 14px 20px);
}

.vet-product-card--pakiet .vet-product-card__title,
.vet-product-card--pakiet .vet-product-card__title a {
	color: rgb(242, 239, 232);
}

.vet-product-card--pakiet .vet-product-card__code {
	color: var(--vet-pkg-accent, #e0a352);
}

.vet-product-card--pakiet .vet-product-card__subtitle {
	color: rgba(242, 239, 232, 0.7);
}

.vet-product-card--pakiet .vet-product-card__ingredients {
	color: rgb(242, 239, 232);
	background: rgba(242, 239, 232, 0.08);
}

.vet-product-card--pakiet .vet-product-card__excerpt {
	color: rgba(242, 239, 232, 0.66);
}

.vet-product-card__price--pakiet {
	display: flex;
	align-items: baseline;
	flex-wrap: wrap;
	gap: 8px;
}

.vet-product-card__price-current {
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: rgb(242, 239, 232);
}

.vet-product-card__price-current .amount {
	color: inherit;
	font-weight: inherit;
}

.vet-product-card__price-regular {
	font-size: 13px;
	font-weight: 400;
	line-height: 1;
	color: rgba(242, 239, 232, 0.45);
	text-decoration: line-through;
}

.vet-product-card__price-regular .amount {
	color: inherit;
	font-weight: inherit;
	text-decoration: line-through;
}

.vet-product-card--pakiet .vet-product-card__savings {
	margin-top: 6px;
	font-size: 11px;
	font-family: "JetBrains Mono", monospace;
	color: rgba(242, 239, 232, 0.5);
	line-height: 1.2;
}

.vet-product-card--pakiet .vet-product-card__price {
	color: rgb(242, 239, 232);
}

.vet-product-card--pakiet .vet-product-card__meta {
	color: rgba(242, 239, 232, 0.5);
}

.vet-product-card--pakiet .vet-product-card__btn--secondary,
.vet-product-card--pakiet .vet-product-card__actions .button:not(.add_to_cart_button):not(.ajax_add_to_cart) {
	border-color: rgba(242, 239, 232, 0.22);
	color: rgb(242, 239, 232);
}

.vet-product-card--pakiet .vet-product-card__btn--secondary:hover,
.vet-product-card--pakiet .vet-product-card__actions .button:not(.add_to_cart_button):not(.ajax_add_to_cart):hover {
	background: rgba(242, 239, 232, 0.08);
	color: rgb(242, 239, 232);
}

.vet-product-card--pakiet .vet-product-card__btn--primary,
.vet-product-card--pakiet .vet-product-card__actions .add_to_cart_button,
.vet-product-card--pakiet .vet-product-card__actions .ajax_add_to_cart {
	background: var(--vet-pkg-accent, #e0a352);
	color: rgb(22, 19, 15) !important;
}

.vet-product-card--pakiet .vet-product-card__btn--primary:hover,
.vet-product-card--pakiet .vet-product-card__actions .add_to_cart_button:hover,
.vet-product-card--pakiet .vet-product-card__actions .ajax_add_to_cart:hover {
	background: var(--vet-pkg-accent, #e0a352);
	color: rgb(22, 19, 15) !important;
	filter: brightness(1.06);
}

/* --- Responsywność produktów --- */

@media (max-width: 991px) {
	.vet-products-home {
		padding: 72px 22px 36px;
	}

	.vet-products-home__top {
		align-items: flex-start;
	}

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

	.vet-products-home ul.products.vet-products-grid > li.product {
		grid-row: auto !important;
		grid-column: auto !important;
		order: var(--vet-grid-order, 0);
	}
}

@media (max-width: 767px) {
	.vet-products-home {
		padding: 64px 18px 28px;
	}

	.vet-products-home__top,
	.vet-products-home__toolbar {
		flex-direction: column;
		align-items: stretch;
	}

	.vet-products-home__desc {
		max-width: none;
	}

	.vet-products-home ul.products,
	.vet-products-home ul.products.columns-3 {
		grid-template-columns: 1fr !important;
		gap: 18px !important;
	}

	.vet-products-home ul.products.vet-products-grid > li.product {
		grid-row: auto !important;
		grid-column: auto !important;
		order: var(--vet-grid-order, 0);
	}

	.vet-product-card__media {
		height: 248px;
	}

	.vet-product-card__media-bg {
		width: 190px;
		height: 190px;
	}

	.vet-product-card__media img,
	.vet-product-card__image,
	.vet-products-home ul.products li.product img {
		height: 196px !important;
	}

	.vet-product-card__content {
		padding: 20px 18px 20px;
	}

	.vet-product-card__footer {
		flex-direction: column;
		align-items: stretch;
	}

	.vet-product-card__actions {
		width: 100%;
		flex-direction: column;
	}

	.vet-product-card__actions > * {
		width: 100%;
	}

	.vet-products-home__filters {
		gap: 8px;
	}
}

/* =========================================================
   8. DLA KOGO (vet-for-whom)
   Sekcja z wideo i siatką dawek
   ========================================================= */
.vet-for-whom {
	max-width: 1280px;
	margin: 0 auto;
	padding: 80px 28px;
}

.vet-for-whom__card {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: stretch;
	background: #000;
	color: #f2efe8;
	border-radius: 28px;
	overflow: hidden;
}

.vet-for-whom__content {
	padding: 60px 56px;
	background: #000;
}

.vet-for-whom__eyebrow {
	margin-bottom: 20px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #e0a352;
}

.vet-for-whom__title {
	margin: 0 0 22px;
	font-size: clamp(30px, 3.4vw, 46px);
	font-weight: 700;
	line-height: 1.04;
	letter-spacing: -0.02em;
	color: #f2efe8;
}

.vet-for-whom__text {
	margin: 0 0 34px;
	max-width: 440px;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(242, 239, 232, 0.74);
}

.vet-for-whom__grid {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

.vet-for-whom__box {
	flex: 1 1 0%;
	min-width: 180px;
	background: rgba(242, 239, 232, 0.06);
	border: 1px solid rgba(242, 239, 232, 0.12);
	border-radius: 16px;
	padding: 20px;
}

.vet-for-whom__box-title {
	font-size: 15px;
	font-weight: 700;
	margin-bottom: 6px;
}

.vet-for-whom__box-dose {
	font-family: "JetBrains Mono", monospace;
	font-size: 13px;
	color: #e0a352;
}

.vet-for-whom__box-text {
	font-size: 12.5px;
	color: rgba(242, 239, 232, 0.6);
	margin-top: 8px;
	line-height: 1.5;
}

.vet-for-whom__media {
	position: relative;
	align-self: stretch;
	min-height: 420px;
	overflow: hidden;
	background: #000;
}

.vet-for-whom__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transform: scale(1.6);
	display: block;
}

@media (max-width: 991px) {
	.vet-for-whom {
		padding: 64px 24px;
	}

	.vet-for-whom__card {
		grid-template-columns: 1fr;
	}

	.vet-for-whom__content {
		padding: 44px 32px;
	}

	.vet-for-whom__media {
		min-height: 360px;
	}
}

@media (max-width: 640px) {
	.vet-for-whom {
		padding: 48px 16px;
	}

	.vet-for-whom__content {
		padding: 32px 22px;
	}

	.vet-for-whom__title {
		font-size: clamp(28px, 9vw, 38px);
	}

	.vet-for-whom__grid {
		flex-direction: column;
	}

	.vet-for-whom__media {
		min-height: 300px;
	}
}


/* =========================================================
   9. NAUKA (vet-science)
   Siatka argumentów naukowych
   ========================================================= */
.vet-science {
	max-width: 1280px;
	margin: 0 auto;
	padding: 40px 28px 90px;
}

.vet-science__head {
	text-align: center;
	margin-bottom: 54px;
}

.vet-science__eyebrow {
	margin-bottom: 16px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f2671e;
}

.vet-science__title {
	max-width: 720px;
	margin: 0 auto;
	font-size: clamp(32px, 3.8vw, 50px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.05;
	text-wrap: balance;
	color: #16130f;
}

.vet-science__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 1px;
	background: rgba(22, 19, 15, 0.12);
	border: 1px solid rgba(22, 19, 15, 0.12);
	border-radius: 20px;
	overflow: hidden;
}

.vet-science__item {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	min-height: 100%;
	padding: 34px 28px;
	background: #fbfaf6;
}

.vet-science__number {
	margin-bottom: 18px;
	font-family: "JetBrains Mono", monospace;
	font-size: 13px;
	line-height: 1;
	color: #f2671e;
}

.vet-science__item-title {
	margin: 0 0 10px;
	font-size: 19px;
	font-weight: 700;
	line-height: 1.25;
	color: #16130f;
}

.vet-science__item-text {
	margin: 0;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(22, 19, 15, 0.66);
}

@media (max-width: 991px) {
	.vet-science {
		padding: 32px 24px 72px;
	}

	.vet-science__head {
		margin-bottom: 40px;
	}
}

@media (max-width: 640px) {
	.vet-science {
		padding: 28px 16px 56px;
	}

	.vet-science__title {
		font-size: clamp(28px, 9vw, 40px);
	}

	.vet-science__item {
		padding: 28px 22px;
	}
}

/* =========================================================
   10. ZESPÓŁ (vet-team)
   Karty członków zespołu
   ========================================================= */

.vet-team {
	max-width: 1280px;
	margin: 0 auto;
	padding: 20px 28px 90px;
}

.vet-team__head {
	text-align: center;
	margin-bottom: 48px;
}

.vet-team__eyebrow {
	margin-bottom: 16px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f2671e;
}

.vet-team__title {
	max-width: 720px;
	margin: 0 auto 18px;
	font-size: clamp(32px, 3.8vw, 50px);
	font-weight: 700;
	line-height: 1.05;
	letter-spacing: -0.02em;
	text-wrap: balance;
	color: #16130f;
}

.vet-team__text {
	max-width: 600px;
	margin: 0 auto;
	font-size: 17px;
	line-height: 1.6;
	color: rgba(22, 19, 15, 0.66);
}

.vet-team__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
	gap: 22px;
	margin-bottom: 30px;
}

.vet-team__card {
	display: grid;
	grid-template-columns: 0.82fr 1fr;
	background: #fbfaf6;
	border: 1px solid rgba(22, 19, 15, 0.1);
	border-radius: 22px;
	overflow: hidden;
	min-height: 300px;
}

.vet-team__card-media {
	background-color: #000;
	min-height: 220px;
}

.vet-team__card-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vet-team__card-content {
	padding: 32px 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.vet-team__card-role {
	margin-bottom: 8px;
	font-family: "JetBrains Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #b85c2b;
}

.vet-team__card-name {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	color: #16130f;
}

.vet-team__card-text {
	margin: 0;
	font-size: 14.5px;
	line-height: 1.6;
	color: rgba(22, 19, 15, 0.66);
}

@media (max-width: 991px) {
	.vet-team {
		padding: 20px 24px 72px;
	}

	.vet-team__card {
		grid-template-columns: 1fr;
	}

	.vet-team__card-media {
		min-height: 240px;
	}
}

@media (max-width: 640px) {
	.vet-team {
		padding: 20px 16px 56px;
	}

	.vet-team__title {
		font-size: clamp(28px, 9vw, 40px);
	}

	.vet-team__card-content {
		padding: 26px 22px;
	}
}


/* =========================================================
   11. BANER MARKI / FIRMA (vet-brand-banner)
   Sekcja wideo z logo i opisem marki
   ========================================================= */

.vet-brand-banner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 28px 90px;
}

.vet-brand-banner__media {
	position: relative;
	min-height: clamp(460px, 46vw, 560px);
	border-radius: 28px;
	overflow: hidden;
	background: #16130f;
	color: #f2efe8;
}

.vet-brand-banner__video {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.vet-brand-banner__overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to left,
		rgba(22, 19, 15, 0.94) 0%,
		rgba(22, 19, 15, 0.74) 34%,
		rgba(22, 19, 15, 0.28) 64%,
		rgba(22, 19, 15, 0) 100%
	);
}

.vet-brand-banner__inner {
	position: relative;
	z-index: 2;
	display: grid;
	grid-template-columns: minmax(280px, 1fr) minmax(360px, 470px);
	align-items: center;
	min-height: clamp(460px, 46vw, 560px);
	padding: clamp(36px, 5vw, 64px);
}

.vet-brand-banner__left {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 100%;
}

.vet-brand-banner__logo {
	max-width: min(100%, 370px);
	max-height: 500px;
	width: auto;
	height: auto;
	filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.55));
	pointer-events: none;
}

.vet-brand-banner__right {
	margin-left: auto;
	max-width: 560px;
}

.vet-brand-banner__eyebrow {
	margin-bottom: 20px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #e0a352;
}

.vet-brand-banner__title {
	margin: 0 0 20px;
	font-size: clamp(26px, 2.8vw, 38px);
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.02em;
	text-wrap: balance;
	color: #f2efe8;
}

.vet-brand-banner__text {
	margin: 0 0 18px;
	max-width: 480px;
	font-size: 16px;
	line-height: 1.65;
	color: rgba(242, 239, 232, 0.82);
}

.vet-brand-banner__text--last {
	margin-bottom: 28px;
}

.vet-brand-banner__badges-label {
	margin-bottom: 12px;
	font-family: "JetBrains Mono", monospace;
	font-size: 10.5px;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: rgba(242, 239, 232, 0.6);
}

.vet-brand-banner__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vet-brand-banner__badge {
	padding: 6px 13px;
	border-radius: 100px;
	border: 1px solid rgba(242, 239, 232, 0.18);
	background: rgba(242, 239, 232, 0.1);
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	color: #f2efe8;
}

@media (max-width: 991px) {
	.vet-brand-banner {
		padding: 0 24px 72px;
	}

	.vet-brand-banner__inner {
		grid-template-columns: 1fr;
		gap: 28px;
		justify-items: start;
	}

	.vet-brand-banner__left {
		justify-content: flex-start;
	}

	.vet-brand-banner__logo {
		max-width: min(100%, 280px);
	}
}

@media (max-width: 640px) {
	.vet-brand-banner {
		padding: 0 16px 56px;
	}

	.vet-brand-banner__media {
		border-radius: 22px;
		min-height: auto;
	}

	.vet-brand-banner__inner {
		min-height: auto;
		padding: 28px 22px;
	}

	.vet-brand-banner__overlay {
		background: linear-gradient(
			to top,
			rgba(22, 19, 15, 0.96) 0%,
			rgba(22, 19, 15, 0.82) 38%,
			rgba(22, 19, 15, 0.45) 68%,
			rgba(22, 19, 15, 0.2) 100%
		);
	}

	.vet-brand-banner__logo {
		max-width: min(100%, 220px);
	}

	.vet-brand-banner__title {
		font-size: clamp(24px, 8vw, 34px);
	}
}


/* =========================================================
   12. STOPKA (vet-footer)
   Newsletter, linki, social media, copyright
   ========================================================= */

.vet-footer {
	background: #16130f;
	color: #f2efe8;
}

.vet-footer__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 70px 28px 30px;
}

.vet-footer__top {
	display: grid;
	grid-template-columns: 1.4fr 1fr 1fr 1fr;
	gap: 40px;
	padding-bottom: 54px;
	border-bottom: 1px solid rgba(242, 239, 232, 0.14);
}

.vet-footer__logo {
	margin-bottom: 14px;
	padding-left: 0.28em;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.28em;
	color: #ffffff;
}

.vet-footer__brand-text {
	max-width: 280px;
	margin: 0 0 22px;
	font-size: 14px;
	line-height: 1.6;
	color: rgba(242, 239, 232, 0.62);
}

.vet-footer__newsletter-wrap {
	max-width: 420px;
}

.vet-footer__newsletter-notice {
	margin: 0 0 12px;
	font-size: 13px;
	line-height: 1.45;
}

.vet-footer__newsletter-notice--success {
	color: #9fd4a8;
}

.vet-footer__newsletter-notice--info {
	color: rgba(242, 239, 232, 0.78);
}

.vet-footer__newsletter-notice--error {
	color: #f2a08a;
}

.vet-footer__newsletter {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.vet-footer__newsletter-row {
	display: flex;
	gap: 8px;
	align-items: center;
}

.vet-footer__newsletter-row input[type="email"] {
	flex: 1 1 0;
	min-width: 0;
	padding: 11px 14px;
	border: 1px solid rgba(242, 239, 232, 0.18);
	border-radius: 100px;
	background: rgba(242, 239, 232, 0.08);
	color: #f2efe8;
	font-family: inherit;
	font-size: 14px;
	outline: none;
}

.vet-footer__newsletter-consent {
	display: flex;
	align-items: flex-start;
	gap: 10px;
	font-size: 11.5px;
	line-height: 1.45;
	color: rgba(242, 239, 232, 0.58);
	cursor: pointer;
}

.vet-footer__newsletter-consent input {
	margin-top: 2px;
	flex-shrink: 0;
	accent-color: #f2671e;
}

.vet-footer__newsletter-consent a {
	color: rgba(242, 239, 232, 0.82);
	text-decoration: underline;
}

.vet-footer__newsletter-consent a:hover {
	color: #ffffff;
}

.vet-footer__newsletter-hp {
	position: absolute;
	left: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.vet-footer__newsletter-row input[type="email"]::placeholder {
	color: rgba(242, 239, 232, 0.46);
}

.vet-footer__newsletter-row input[type="email"]:focus {
	border-color: rgba(242, 239, 232, 0.34);
	background: rgba(242, 239, 232, 0.12);
}

.vet-footer__newsletter .vet-btn-fill {
	border: none;
	padding: 11px 20px;
	border-radius: 100px;
	white-space: nowrap;
	font-family: inherit;
	font-size: 14px;
	font-weight: 700;
	color: #ffffff;
	background: #f2671e;
	cursor: pointer;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.vet-footer__newsletter .vet-btn-fill:hover {
	background: #ff7a2f;
	transform: translateY(-1px);
}

.vet-footer__heading {
	margin-bottom: 18px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: #f2671e;
}

.vet-footer__links,
.vet-footer__contact {
	display: flex;
	flex-direction: column;
	gap: 12px;
	font-size: 14px;
}

.vet-footer__links a,
.vet-footer__contact a,
.vet-footer__contact span {
	color: rgba(242, 239, 232, 0.82);
	text-decoration: none;
}

.vet-footer__links a:hover,
.vet-footer__contact a:hover {
	color: #ffffff;
}

.vet-footer .vet-link::after {
	display: none;
}

.vet-footer .vet-link:hover {
	opacity: 1;
	color: #ffffff;
}

.vet-footer__socials {
	display: flex;
	gap: 10px;
	margin-top: 6px;
}

.vet-footer__social {
	width: 38px;
	height: 38px;
	border-radius: 100px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #f2efe8;
	background: rgba(242, 239, 232, 0.08);
	border: 1px solid rgba(242, 239, 232, 0.16);
	transition: background-color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.vet-footer__social:hover {
	background: rgba(242, 239, 232, 0.14);
	border-color: rgba(242, 239, 232, 0.24);
	transform: translateY(-1px);
}

.vet-footer__notice {
	max-width: 760px;
	margin: 24px 0 28px;
	font-size: 11.5px;
	line-height: 1.6;
	color: rgba(242, 239, 232, 0.42);
}

.vet-footer__bottom {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 12px;
	font-size: 12px;
	color: rgba(242, 239, 232, 0.45);
}

.vet-footer__credit {
	font-family: "JetBrains Mono", monospace;
	letter-spacing: 0.06em;
}

@media (max-width: 1100px) {
	.vet-footer__top {
		grid-template-columns: 1.2fr 1fr 1fr;
	}

	.vet-footer__brand {
		grid-column: 1 / -1;
		max-width: 560px;
	}
}

@media (max-width: 820px) {
	.vet-footer__inner {
		padding: 56px 24px 28px;
	}

	.vet-footer__top {
		grid-template-columns: 1fr 1fr;
		gap: 32px 24px;
		padding-bottom: 42px;
	}

	.vet-footer__brand {
		grid-column: 1 / -1;
		max-width: none;
	}

	.vet-footer__brand-text {
		max-width: 420px;
	}
}

@media (max-width: 640px) {
	.vet-footer__inner {
		padding: 48px 16px 24px;
	}

	.vet-footer__top {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.vet-footer__newsletter-row {
		flex-direction: column;
		align-items: stretch;
	}

	.vet-footer__newsletter-row .vet-btn-fill {
		width: 100%;
	}

	.vet-footer__newsletter .vet-btn-fill {
		width: 100%;
	}

	.vet-footer__brand-text,
	.vet-footer__notice {
		max-width: none;
	}

	.vet-footer__bottom {
		flex-direction: column;
		align-items: flex-start;
	}
}


/* =========================================================
   13. LAYOUT MOTYWU (GeneratePress)
   Pełna szerokość stopki, układ contentu
   ========================================================= */

.site-content {
	display: flex;
	flex-direction: column;
}

.site-footer {
	width: 100%;
	max-width: 100%;
	background: #16130f;
}

.site-footer .inside-footer-widgets,
.site-footer .inside-site-info,
.site-footer .footer-widgets-container,
.site-footer .site-info {
	max-width: 100%;
}

.vet-footer {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	background: #16130f;
}

/* =========================================================
   14. NAGŁÓWEK I NAWIGACJA (desktop)
   Sticky header, menu główne, przycisk koszyka
   ========================================================= */

.vet-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(242, 239, 232, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(22, 19, 15, 0.10);
}

.vet-header-inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 28px;
	min-height: 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.vet-nav-main,
.vet-actions {
	flex: 1 1 0;
	display: flex;
	align-items: center;
	min-width: 0;
}

.vet-nav-main {
	justify-content: flex-start;
}

.vet-actions {
	justify-content: flex-end;
	gap: 22px;
}

.vet-nav-menu {
	list-style: none;
	display: flex;
	align-items: center;
	gap: 30px;
	margin: 0;
	padding: 0;
}

.vet-nav-menu > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.vet-nav-menu > li > a,
.vet-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #16130f;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: opacity 0.25s ease, color 0.25s ease;
}

.vet-nav-menu > li > a::after,
.vet-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.3s ease;
}

.vet-nav-menu > li > a:hover::after,
.vet-nav-menu > li > a:focus-visible::after,
.vet-nav-menu > li.current-menu-item > a::after,
.vet-nav-menu > li.current_page_item > a::after,
.vet-link:hover::after,
.vet-link:focus-visible::after {
	width: 100%;
}

.vet-nav-menu > li > a:hover,
.vet-link:hover {
	opacity: 0.72;
}

.vet-logo-link {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #16130f;
	line-height: 1;
}

.vet-logo {
	display: block;
	font-size: 27px;
	font-weight: 700;
	letter-spacing: 0.30em;
	padding-left: 0.30em;
	color: #16130f;
	white-space: nowrap;
}

.vet-cart-btn {
	cursor: pointer;
	border: 1px solid rgba(22, 19, 15, 0.22);
	background: transparent;
	color: #16130f;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 9px 16px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vet-cart-btn:hover {
	background: rgba(22, 19, 15, 0.05);
	border-color: rgba(22, 19, 15, 0.32);
}

.vet-cart-btn:active {
	transform: scale(0.98);
}

.vet-cart-count {
	background: #16130f;
	color: #f2efe8;
	min-width: 21px;
	height: 21px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11.5px;
	font-weight: 700;
	padding: 0 6px;
	line-height: 1;
}

@media (max-width: 1024px) {
	.vet-header-inner {
		padding: 0 20px;
		gap: 18px;
	}

	.vet-nav-menu {
		gap: 20px;
	}

	.vet-actions {
		gap: 16px;
	}

	.vet-logo {
		font-size: 24px;
		letter-spacing: 0.24em;
		padding-left: 0.24em;
	}
}

@media (max-width: 767px) {
	.vet-header-inner {
		min-height: 64px;
		padding: 0 16px;
		gap: 12px;
	}

	.vet-nav-main {
		display: none;
	}

	.vet-actions {
		flex: 0 0 auto;
		gap: 12px;
	}

	.vet-nav-about {
		display: none;
	}

	.vet-logo {
		font-size: 20px;
		letter-spacing: 0.22em;
		padding-left: 0.22em;
	}

	.vet-cart-btn {
		padding: 8px 14px;
		font-size: 13px;
	}

	.vet-cart-count {
		min-width: 19px;
		height: 19px;
		font-size: 10.5px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vet-nav-menu > li > a,
	.vet-nav-menu > li > a::after,
	.vet-link,
	.vet-link::after,
	.vet-cart-btn {
		transition: none;
	}
}

/* =========================================================
   15. BELKA INFORMACYJNA (topbar)
   Czarna belka nad nagłówkiem
   ========================================================= */

.vet-topbar {
	background: #000000;
	color: #f2efe8;
	border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.vet-topbar__inner {
	max-width: 1280px;
	margin: 0 auto;
	padding: 10px 28px;
	text-align: center;
	font-size: 12.5px;
	font-weight: 600;
	line-height: 1;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}


/* =========================================================
   16. NAGŁÓWEK I MENU MOBILNE
   Drawer, hamburger, overlay – rozszerza sekcję 14
   ========================================================= */

body.vet-menu-open {
	overflow: hidden;
}

.vet-header {
	position: sticky;
	top: 0;
	z-index: 40;
	background: rgba(242, 239, 232, 0.82);
	backdrop-filter: blur(14px);
	-webkit-backdrop-filter: blur(14px);
	border-bottom: 1px solid rgba(22, 19, 15, 0.10);
}

.vet-header-inner {
	position: relative;
	max-width: 1280px;
	margin: 0 auto;
	padding: 0 28px;
	min-height: 70px;
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 24px;
}

.vet-mobile-left {
	display: none;
}

.vet-nav-main,
.vet-actions {
	display: flex;
	align-items: center;
	min-width: 0;
}

.vet-nav-main {
	justify-content: flex-start;
}

.vet-actions {
	justify-content: flex-end;
	gap: 22px;
}

.vet-nav-menu,
.vet-mobile-menu {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vet-nav-menu {
	display: flex;
	align-items: center;
	gap: 30px;
}

.vet-nav-menu > li,
.vet-mobile-menu > li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vet-nav-menu > li > a,
.vet-link,
.vet-mobile-menu > li > a,
.vet-mobile-link {
	position: relative;
	display: inline-flex;
	align-items: center;
	text-decoration: none;
	color: #16130f;
	font-size: 14px;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	transition: opacity 0.25s ease, color 0.25s ease;
}

.vet-nav-menu > li > a::after,
.vet-link::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -6px;
	width: 0;
	height: 1px;
	background: currentColor;
	transition: width 0.3s ease;
}

.vet-nav-menu > li > a:hover::after,
.vet-nav-menu > li > a:focus-visible::after,
.vet-nav-menu > li.current-menu-item > a::after,
.vet-nav-menu > li.current_page_item > a::after,
.vet-link:hover::after,
.vet-link:focus-visible::after {
	width: 100%;
}

.vet-nav-menu > li > a:hover,
.vet-link:hover {
	opacity: 0.72;
}

.vet-logo-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	text-decoration: none;
	color: #16130f;
	line-height: 1;
}

.vet-logo {
	display: block;
	font-size: 27px;
	font-weight: 700;
	letter-spacing: 0.30em;
	padding-left: 0.30em;
	color: #16130f;
	white-space: nowrap;
}

.vet-cart-btn {
	cursor: pointer;
	border: 1px solid rgba(22, 19, 15, 0.22);
	background: transparent;
	color: #16130f;
	font-family: inherit;
	font-size: 14px;
	font-weight: 600;
	line-height: 1;
	padding: 9px 16px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	gap: 9px;
	white-space: nowrap;
	text-decoration: none;
	transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vet-cart-btn:hover {
	background: rgba(22, 19, 15, 0.05);
	border-color: rgba(22, 19, 15, 0.32);
}

.vet-cart-btn:active {
	transform: scale(0.98);
}

.vet-cart-count {
	background: #16130f;
	color: #f2efe8;
	min-width: 21px;
	height: 21px;
	border-radius: 999px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 11.5px;
	font-weight: 700;
	padding: 0 6px;
	line-height: 1;
}

.vet-menu-toggle,
.vet-mobile-close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	color: #16130f;
	cursor: pointer;
}

.vet-menu-toggle {
	flex-direction: column;
	gap: 5px;
	border-radius: 999px;
}

.vet-menu-toggle span {
	display: block;
	width: 18px;
	height: 1.5px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 0.25s ease, opacity 0.25s ease;
}

.vet-mobile-overlay {
	position: fixed;
	inset: 0;
	background: rgba(22, 19, 15, 0.28);
	backdrop-filter: blur(3px);
	-webkit-backdrop-filter: blur(3px);
	opacity: 0;
	visibility: hidden;
	pointer-events: none;
	transition: opacity 0.28s ease, visibility 0.28s ease;
	z-index: 9999998;
}

.vet-mobile-drawer {
	position: fixed;
	top: 0;
	left: 0;
	width: min(88vw, 360px);
	height: 100dvh;
	background: #f2efe8;
	color: #16130f;
	transform: translateX(-100%);
	visibility: hidden;
	pointer-events: none;
	transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), visibility 0.28s ease;
	z-index: 9999999;
	box-shadow: 0 18px 50px rgba(22, 19, 15, 0.18);
	display: flex;
	flex-direction: column;
}

.vet-mobile-drawer__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 18px 16px;
	border-bottom: 1px solid rgba(22, 19, 15, 0.10);
	min-height: 64px;
}

.vet-mobile-drawer__title {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: rgba(22, 19, 15, 0.58);
}

.vet-mobile-close {
	position: relative;
	border-radius: 999px;
}

.vet-mobile-close span {
	position: absolute;
	width: 18px;
	height: 1.5px;
	background: currentColor;
	border-radius: 999px;
}

.vet-mobile-close span:first-child {
	transform: rotate(45deg);
}

.vet-mobile-close span:last-child {
	transform: rotate(-45deg);
}

.vet-mobile-drawer__body {
	padding: 14px 16px 24px;
	overflow-y: auto;
}

.vet-mobile-menu {
	display: flex;
	flex-direction: column;
}

.vet-mobile-menu > li + li {
	border-top: 1px solid rgba(22, 19, 15, 0.08);
}

.vet-mobile-menu > li > a,
.vet-mobile-link {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 56px;
	font-size: 17px;
	font-weight: 600;
	line-height: 1.2;
	color: #16130f;
	text-decoration: none;
}

.vet-mobile-links {
	margin-top: 18px;
	padding-top: 18px;
	border-top: 1px solid rgba(22, 19, 15, 0.10);
	display: flex;
	flex-direction: column;
}

body.vet-menu-open .vet-mobile-overlay {
	opacity: 1;
	visibility: visible;
	pointer-events: auto;
}

body.vet-menu-open .vet-mobile-drawer {
	transform: translateX(0);
	visibility: visible;
	pointer-events: auto;
}

@media (max-width: 1024px) {
	.vet-header-inner {
		padding: 0 20px;
		gap: 18px;
	}

	.vet-nav-menu {
		gap: 20px;
	}

	.vet-actions {
		gap: 16px;
	}

	.vet-logo {
		font-size: 24px;
		letter-spacing: 0.24em;
		padding-left: 0.24em;
	}
}

@media (max-width: 767px) {
	.vet-topbar__inner {
		padding: 9px 14px;
		font-size: 11px;
		line-height: 1.4;
		letter-spacing: 0.10em;
	}

	.vet-header-inner {
		grid-template-columns: 44px 1fr auto;
		padding: 0 16px;
		min-height: 64px;
		gap: 10px;
	}

	.vet-mobile-left {
		display: flex;
		align-items: center;
		justify-content: flex-start;
	}

	.vet-nav-main {
		display: none;
	}

	.vet-logo-link {
		justify-self: center;
	}

	.vet-logo {
		font-size: 20px;
		letter-spacing: 0.22em;
		padding-left: 0.22em;
	}

	.vet-actions {
		gap: 0;
	}

	.vet-nav-about {
		display: none;
	}

	.vet-cart-btn {
		padding: 0;
		width: 44px;
		height: 44px;
		justify-content: center;
		gap: 0;
		border-radius: 999px;
	}

	.vet-cart-label {
		display: none;
	}

	.vet-cart-count {
		min-width: 22px;
		height: 22px;
		font-size: 11px;
		padding: 0 6px;
	}
}

@media (prefers-reduced-motion: reduce) {
	.vet-mobile-overlay,
	.vet-mobile-drawer,
	.vet-menu-toggle span,
	.vet-nav-menu > li > a,
	.vet-nav-menu > li > a::after,
	.vet-link,
	.vet-link::after,
	.vet-cart-btn {
		transition: none;
	}
}


/* =========================================================
   17. KOSZYK BOCZNY – Xootix Side Cart
   Panel koszyka wysuwany z prawej strony
   ========================================================= */

.xoo-wsc-container {
	background: #f5f2ea !important;
	width: min(430px, 100vw) !important;
	box-shadow: -10px 0 28px rgba(0, 0, 0, 0.08) !important;
	border-left: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.xoo-wsc-header,
.xoo-wsc-footer,
.xoo-wsc-body {
	background: #f5f2ea !important;
}

.xoo-wsc-opac {
	background: rgba(0, 0, 0, 0.18) !important;
}

/* --- Nagłówek panelu koszyka --- */
.xoo-wsch-top--vetaris {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 24px 24px 22px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08);
	background: #f5f2ea;
}

.xoo-wsch-title {
	margin: 0;
	font-size: 17px;
	font-weight: 700;
	line-height: 1.2;
	color: #161616;
}

.xoo-wsch-count {
	color: #7f776e;
	font-weight: 500;
}

.xoo-wsch-close--custom {
	width: 34px;
	height: 34px;
	border: 0;
	border-radius: 999px;
	background: #ede7df;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	padding: 0;
	color: #1b1b1b;
	font-size: 24px;
	line-height: 1;
}

.xoo-wsch-close--custom:hover {
	background: #e5ddd4;
}

/* --- Lista produktów w koszyku --- */
.xoo-wsc-body {
	padding: 0 24px !important;
}

.xoo-wsc-products {
	padding-top: 18px;
}

.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-product {
	display: grid !important;
	grid-template-columns: 72px minmax(0, 1fr) !important;
	gap: 14px !important;
	align-items: start !important;
	padding: 18px 0 !important;
	border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
	background: transparent !important;
	margin: 0 !important;
}

.xoo-wsc-product:last-child {
	border-bottom: 0 !important;
}

.xoo-wsc-products:not(.xoo-wsc-pattern-card) .xoo-wsc-img-col {
	width: auto !important;
}

.xoo-wsc-product img {
	width: 72px !important;
	height: 72px !important;
	object-fit: contain !important;
	border-radius: 14px !important;
	background: #efe7de !important;
	padding: 8px !important;
}

.xoo-wsc-sum-col,
.xoo-wsc-sm-info {
	width: 100% !important;
	min-width: 0 !important;
}

.xoo-wsc-sm-info.vetaris-cart-product {
	display: block !important;
}

.vetaris-cart-product__head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 12px;
	margin-bottom: 14px;
}

.vetaris-cart-product__titles {
	display: flex;
	flex-direction: column;
	gap: 4px;
	min-width: 0;
}

.xoo-wsc-product .xoo-wsc-pname,
.xoo-wsc-product .xoo-wsc-pname a {
	display: block;
	font-size: 14px !important;
	font-weight: 700 !important;
	color: #181818 !important;
	text-decoration: none !important;
	line-height: 1.25 !important;
	text-transform: uppercase;
	letter-spacing: 0.02em;
}

.vetaris-cart-product__subtitle {
	display: block;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.35;
	color: #8d847a;
}

.vetaris-cart-product__actions {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}

.xoo-wsc-product .xoo-wsc-smr-del.xoo-wsc-del-txt {
	flex: 0 0 auto;
	font-size: 13px;
	font-weight: 400;
	color: #8d847a !important;
	text-decoration: underline !important;
	cursor: pointer;
	background: none !important;
}

.xoo-wsc-product .xoo-wsc-smr-ptotal,
.xoo-wsc-product .xoo-wsc-smr-ptotal .amount,
.xoo-wsc-product .xoo-wsc-smr-ptotal .woocommerce-Price-amount {
	font-size: 16px !important;
	font-weight: 700 !important;
	color: #111 !important;
	line-height: 1 !important;
	white-space: nowrap;
}

.xoo-wsc-priceBox,
.xoo-wsc-pprice {
	display: none !important;
}

.xoo-wsc-info-cont {
	display: none !important;
}

.vetaris-cart-qty {
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	gap: 0;
	min-width: 88px;
	height: 34px;
	padding: 0 10px;
	border: 1px solid rgba(0, 0, 0, 0.14);
	border-radius: 999px;
	background: #f2ede6;
}

.vetaris-cart-qty__btn {
	width: 24px;
	height: 24px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	border: 0;
	background: transparent;
	color: #161616;
	font-size: 18px;
	line-height: 1;
	padding: 0;
	cursor: pointer;
}

.vetaris-cart-qty__value {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 18px;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	color: #161616;
}

/* --- Stopka panelu koszyka --- */
.xoo-wsc-footer {
	padding: 0 !important;
	border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
}

.vetaris-cart-footer {
	padding: 18px 24px 14px;
	background: transparent;
}

.vetaris-cart-footer__progress {
	height: 5px;
	background: rgba(0, 0, 0, 0.08);
	border-radius: 999px;
	overflow: hidden;
	margin-bottom: 12px;
}

.vetaris-cart-footer__progress-bar {
	height: 100%;
	background: #b85c38;
	border-radius: 999px;
}

.vetaris-cart-footer__shipping {
	font-size: 14px;
	line-height: 1.45;
	color: #6f685f;
	margin-bottom: 18px;
}

.vetaris-cart-footer__total {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	font-size: 15px;
	font-weight: 500;
	color: #5f544b;
}

.vetaris-cart-footer__total span:last-child,
.vetaris-cart-footer__total .amount {
	font-size: 20px;
	font-weight: 700;
	color: #111;
}

.vetaris-cart-buttons {
	padding: 0 24px 22px;
	background: transparent;
}

.vetaris-cart-buttons__checkout {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	min-height: 52px;
	padding: 0 20px;
	border-radius: 999px;
	background: #111;
	color: #fff;
	text-decoration: none;
	font-size: 17px;
	font-weight: 700;
	transition: background 0.2s ease;
}

.vetaris-cart-buttons__checkout:hover {
	background: #000;
	color: #fff;
}

.vetaris-cart-buttons__note {
	margin-top: 10px;
	text-align: center;
	font-size: 12px;
	line-height: 1.45;
	color: #9e948c;
}

/* --- Ukrycie domyślnych elementów pluginu --- */
.xoo-wsc-ft-btn-cont,
.xoo-wsc-footer .xoo-wsc-ft-btn,
.xoo-wsc-footer a.xoo-wsc-ft-btn:not(.vetaris-cart-buttons__checkout) {
	display: none !important;
}

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


/* =========================================================
   18. CHECKOUT – WooCommerce Blocks
   Pełny restyle strony zamówienia
   ========================================================= */

body.woocommerce-checkout {
	background: #f5f1eb;
	color: #181614;
}

body.woocommerce-checkout .site {
	background: #f5f1eb;
}

/* --- Kontener strony --- */
body.woocommerce-checkout .content-area#primary,
body.woocommerce-checkout #primary.content-area {
	max-width: 1280px;
	margin: 0 auto;
	padding: 36px 28px 72px;
	float: none;
	width: 100%;
}

body.woocommerce-checkout .site-main {
	width: 100%;
}

body.woocommerce-checkout article.page,
body.woocommerce-checkout .inside-article {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

/* --- Nagłówek checkout --- */
body.woocommerce-checkout .entry-header {
	max-width: 760px;
	margin: 0 0 28px;
}

body.woocommerce-checkout .entry-title {
	margin: 0;
	font-size: clamp(2.4rem, 4vw, 4.1rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: #171411;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .entry-header::after {
	content: "Uzupełnij dane zamówienia i sprawdź podsumowanie po prawej stronie.";
	display: block;
	margin-top: 16px;
	max-width: 34ch;
	font-size: 18px;
	line-height: 1.6;
	color: #6e655e;
}

body.woocommerce-order-received .entry-header::after {
	display: none !important;
	content: none !important;
}

/* --- Główny layout (2 kolumny) --- */
body.woocommerce-checkout .wc-block-checkout {
	max-width: 100%;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 430px;
	gap: 42px;
	align-items: start;
}

body.woocommerce-checkout .wc-block-checkout__main {
	max-width: 760px;
	width: 100%;
}

body.woocommerce-checkout .wc-block-checkout__sidebar {
	width: 100%;
}

/* --- Wspólne karty formularza --- */
body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-checkout__order-notes,
body.woocommerce-checkout .wc-block-checkout__terms,
body.woocommerce-checkout .wc-block-checkout__actions,
body.woocommerce-checkout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
	background: #f1ece6;
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 30px;
	box-shadow: 0 1px 0 rgba(23, 20, 17, 0.02);
}

body.woocommerce-checkout .wc-block-components-checkout-step,
body.woocommerce-checkout .wc-block-checkout__order-notes,
body.woocommerce-checkout .wc-block-checkout__terms,
body.woocommerce-checkout .wc-block-checkout__actions {
	padding: 28px;
	margin-bottom: 20px;
}

/* --- Tytuły kroków --- */
body.woocommerce-checkout .wc-block-components-checkout-step__heading {
	margin-bottom: 18px;
}

body.woocommerce-checkout .wc-block-components-checkout-step__title,
body.woocommerce-checkout .wc-block-components-title {
	margin: 0;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #171411;
}

/* --- Układ pól formularza (hybrydowy grid) --- */
body.woocommerce-checkout .wc-block-components-address-form {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 14px;
	width: 100%;
}

body.woocommerce-checkout .wc-block-components-address-form > .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-address-form > .wc-block-components-select-input,
body.woocommerce-checkout .wc-block-components-address-form > .wc-block-components-state-input,
body.woocommerce-checkout .wc-block-components-address-form > .wc-block-components-country-input,
body.woocommerce-checkout .wc-block-components-address-form > [class*="address-form__"] {
	width: 100%;
	max-width: 100%;
	min-width: 0;
	margin: 0;
	flex: none !important;
}

/* Pełna szerokość */
body.woocommerce-checkout .wc-block-components-address-form__country,
body.woocommerce-checkout .wc-block-components-address-form__address_1,
body.woocommerce-checkout .wc-block-components-address-form__address_2,
body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
body.woocommerce-checkout .wc-block-components-address-form__phone,
body.woocommerce-checkout .wc-block-components-address-form__email,
body.woocommerce-checkout .wc-block-components-address-form__company,
body.woocommerce-checkout .wc-block-components-address-form__state,
body.woocommerce-checkout .wc-block-components-address-form .wc-block-components-checkbox {
	grid-column: 1 / -1;
}

/* Połowa szerokości: imię / nazwisko, kod / miasto */
body.woocommerce-checkout .wc-block-components-address-form__first_name,
body.woocommerce-checkout .wc-block-components-address-form__last_name,
body.woocommerce-checkout .wc-block-components-address-form__postcode,
body.woocommerce-checkout .wc-block-components-address-form__city {
	grid-column: span 1;
}

body.woocommerce-checkout .wc-block-components-address-form .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-address-form .wc-blocks-components-select .wc-blocks-components-select__select {
	width: 100%;
}

body.woocommerce-checkout .wc-block-components-text-input,
body.woocommerce-checkout .wc-block-components-address-form__country,
body.woocommerce-checkout .wc-block-components-address-form__first_name,
body.woocommerce-checkout .wc-block-components-address-form__last_name,
body.woocommerce-checkout .wc-block-components-address-form__address_1,
body.woocommerce-checkout .wc-block-components-address-form__postcode,
body.woocommerce-checkout .wc-block-components-address-form__city,
body.woocommerce-checkout .wc-block-components-address-form__phone {
	margin: 0;
}

@media (max-width: 640px) {
	body.woocommerce-checkout .wc-block-components-address-form {
		grid-template-columns: 1fr;
	}

	body.woocommerce-checkout .wc-block-components-address-form__first_name,
	body.woocommerce-checkout .wc-block-components-address-form__last_name,
	body.woocommerce-checkout .wc-block-components-address-form__postcode,
	body.woocommerce-checkout .wc-block-components-address-form__city {
		grid-column: 1 / -1;
	}
}

/* --- Pola input / select / textarea --- */
body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-text-input input[type="text"],
body.woocommerce-checkout .wc-block-components-text-input input[type="email"],
body.woocommerce-checkout .wc-block-components-text-input input[type="tel"],
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select,
body.woocommerce-checkout .wc-block-components-textarea,
body.woocommerce-checkout textarea {
	min-height: 58px;
	height: 58px;
	padding: 18px 18px 10px !important;
	border-radius: 18px !important;
	border: 1px solid rgba(23, 20, 17, 0.10) !important;
	background: #f8f5f1 !important;
	box-shadow: none !important;
	color: #171411 !important;
	font-size: 16px !important;
	line-height: 1.3;
	transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

body.woocommerce-checkout textarea,
body.woocommerce-checkout .wc-block-components-textarea {
	min-height: 120px;
	height: auto;
	padding-top: 18px !important;
}

body.woocommerce-checkout .wc-block-components-text-input label,
body.woocommerce-checkout .wc-blocks-components-select__label {
	font-size: 13px !important;
	font-weight: 500;
	color: #8a7e75 !important;
	letter-spacing: 0.01em;
}

body.woocommerce-checkout .wc-block-components-text-input.is-active label,
body.woocommerce-checkout .wc-block-components-text-input input:focus + label,
body.woocommerce-checkout .wc-blocks-components-select:focus-within .wc-blocks-components-select__label {
	color: #171411 !important;
}

body.woocommerce-checkout .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-blocks-components-select .wc-blocks-components-select__select:focus,
body.woocommerce-checkout textarea:focus {
	border-color: #b36a39 !important;
	box-shadow: 0 0 0 4px rgba(179, 106, 57, 0.12) !important;
	background: #fcfaf7 !important;
	outline: none !important;
}

/* --- Strzałka select --- */
body.woocommerce-checkout .wc-blocks-components-select__expand {
	right: 16px;
	color: #171411;
}

/* --- Link „dodaj drugi adres” --- */
body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle {
	display: inline-flex;
	align-items: center;
	font-size: 14px;
	font-weight: 500;
	color: #6d625a;
	margin-top: 0;
	cursor: pointer;
}

/* --- Karta zapisanego adresu --- */
body.woocommerce-checkout .wc-block-components-address-card {
	background: #f8f5f1;
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 20px;
	padding: 16px 18px;
}

body.woocommerce-checkout .wc-block-components-address-card address {
	font-style: normal;
	color: #171411;
}

body.woocommerce-checkout .wc-block-components-address-card__edit {
	font-size: 14px;
	font-weight: 600;
	color: #171411;
}

/* --- Checkboxy --- */
body.woocommerce-checkout .wc-block-components-checkbox__input {
	accent-color: #111111;
}

body.woocommerce-checkout .wc-block-components-checkbox__label,
body.woocommerce-checkout .wc-block-checkout__terms {
	font-size: 15px;
	line-height: 1.6;
	color: #5f5750;
}

/* --- Notyfikacje i błędy --- */
body.woocommerce-checkout .wc-block-components-notice-banner {
	border-radius: 20px;
	padding: 16px 18px;
	border: 1px solid rgba(183, 42, 42, 0.16);
	background: #fff6f4;
	color: #7c2d22;
}

body.woocommerce-checkout .wc-block-checkout__no-payment-methods-notice {
	margin: 0;
}

/* --- Przycisk „Kupuję i płacę” --- */
body.woocommerce-checkout .wc-block-checkout__actions {
	padding-top: 22px;
	padding-bottom: 22px;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
body.woocommerce-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
	width: 100%;
	min-height: 60px;
	border-radius: 999px !important;
	border: 0 !important;
	background: #111111 !important;
	color: #ffffff !important;
	font-size: 18px !important;
	font-weight: 700 !important;
	letter-spacing: -0.01em;
	box-shadow: none !important;
	transition: transform .2s ease, background .2s ease;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover,
body.woocommerce-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button:hover {
	background: #000000 !important;
	transform: translateY(-1px);
}

/* --- Sidebar – podsumowanie --- */
body.woocommerce-checkout .wc-block-checkout__sidebar.is-sticky {
	top: 24px;
}

body.woocommerce-checkout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
	padding: 24px;
	border-radius: 32px;
}

body.woocommerce-checkout .wc-block-components-checkout-order-summary__title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 4px 20px;
	margin-bottom: 18px;
	border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

body.woocommerce-checkout .wc-block-components-checkout-order-summary__title-text {
	font-size: 20px;
	font-weight: 700;
	color: #171411;
}

body.woocommerce-checkout .wc-block-components-checkout-order-summary__title-price {
	font-size: 22px;
	font-weight: 700;
	color: #171411;
}

/* --- Lista produktów w podsumowaniu --- */
body.woocommerce-checkout .wc-block-components-order-summary {
	background: #f8f5f1;
	border: 1px solid rgba(23, 20, 17, 0.06);
	border-radius: 24px;
	padding: 14px 16px;
}

body.woocommerce-checkout .wc-block-components-order-summary__content {
	background: transparent;
	border: 0;
	padding: 0;
}

body.woocommerce-checkout .wc-block-components-order-summary-item {
	display: grid;
	grid-template-columns: 56px minmax(0, 1fr);
	grid-template-rows: auto auto;
	gap: 14px 14px;
	align-items: start;
	padding: 16px 0;
	border-bottom: 1px solid rgba(23, 20, 17, 0.07);
}

body.woocommerce-checkout .wc-block-components-order-summary-item:last-child {
	border-bottom: 0;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image {
	position: relative;
	width: 56px;
	grid-column: 1;
	grid-row: 1 / -1;
	align-self: start;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
	width: 56px;
	height: 56px;
	object-fit: cover;
	border-radius: 16px;
	background: #ffffff;
	border: 1px solid rgba(23, 20, 17, 0.05);
}

body.woocommerce-checkout .wc-block-components-order-summary-item__quantity {
	position: absolute;
	top: -7px;
	right: -7px;
	min-width: 24px;
	height: 24px;
	border-radius: 999px;
	background: #111111;
	color: #ffffff;
	font-size: 12px;
	font-weight: 700;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 6px;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
	display: flex;
	flex-direction: column;
	gap: 4px;
	width: 100%;
	min-width: 0;
	grid-column: 2;
	grid-row: 1;
}

body.woocommerce-checkout .wc-block-components-product-name {
	margin: 0;
	font-size: 16px;
	line-height: 1.3;
	font-weight: 700;
	color: #171411;
	word-break: normal;
	overflow-wrap: break-word;
}

body.woocommerce-checkout .wc-block-cart-item__prices,
body.woocommerce-checkout .wc-block-components-order-summary-item__individual-prices,
body.woocommerce-checkout .wc-block-components-order-summary-item__individual-price {
	font-size: 14px;
	line-height: 1.4;
	color: #7b7068;
}

body.woocommerce-checkout .wc-block-components-product-metadata {
	margin-top: 2px;
	width: 100%;
}

body.woocommerce-checkout .wc-block-components-product-metadata__description,
body.woocommerce-checkout .wc-block-components-product-metadata__description p {
	margin: 0;
	font-size: 13px;
	line-height: 1.55;
	color: #7b7068;
	max-width: none;
	width: 100%;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
	grid-column: 2;
	grid-row: 2;
	justify-self: end;
	align-self: end;
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid rgba(23, 20, 17, 0.07);
	width: 100%;
	text-align: right;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__total-price .wc-block-components-product-price__value {
	font-size: 15px;
	font-weight: 700;
	color: #171411;
}

/* --- Pole kuponu --- */
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-coupon-form-block,
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-coupon-form-block {
	margin-bottom: 6px;
	padding-bottom: 10px;
	border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

body.woocommerce-checkout .wc-block-components-totals-coupon,
body.woocommerce-cart .wc-block-components-totals-coupon {
	--vet-coupon-pad-y: 14px;
	--vet-coupon-pad-x: 16px;
	--vet-coupon-control-h: 48px;
	background: rgb(241, 236, 230);
	border: 1px solid rgba(23, 20, 17, 0.06);
	border-radius: 16px;
	padding: var(--vet-coupon-pad-y) var(--vet-coupon-pad-x);
	margin-top: 16px;
	margin-bottom: 0;
	overflow: hidden;
	box-sizing: border-box;
}

body.woocommerce-checkout .vet-coupon-panel--open.wc-block-components-totals-coupon,
body.woocommerce-cart .vet-coupon-panel--open.wc-block-components-totals-coupon {
	padding: var(--vet-coupon-pad-y) var(--vet-coupon-pad-x);
}

body.woocommerce-checkout .vet-coupon-panel .wc-block-components-panel__button,
body.woocommerce-cart .vet-coupon-panel .wc-block-components-panel__button {
	display: flex;
	align-items: center;
	width: 100%;
	height: var(--vet-coupon-control-h);
	min-height: var(--vet-coupon-control-h);
	padding: 0 !important;
	box-sizing: border-box;
	font-size: 15px;
	font-weight: 600;
	line-height: 1.2;
	color: #171411;
	background: transparent;
	border: 0;
	cursor: pointer;
	text-align: left;
	transition: background 0.2s ease;
}

body.woocommerce-checkout .vet-coupon-panel .wc-block-components-panel__button:hover,
body.woocommerce-cart .vet-coupon-panel .wc-block-components-panel__button:hover {
	background: rgba(23, 20, 17, 0.04);
	border-radius: 10px;
}

body.woocommerce-checkout .vet-coupon-panel .wc-block-components-panel__button-icon,
body.woocommerce-cart .vet-coupon-panel .wc-block-components-panel__button-icon {
	display: none !important;
}

body.woocommerce-checkout .vet-coupon-panel--open .wc-block-components-panel__button,
body.woocommerce-cart .vet-coupon-panel--open .wc-block-components-panel__button {
	display: none !important;
}

body.woocommerce-checkout .vet-coupon-panel .wc-block-components-panel__content,
body.woocommerce-cart .vet-coupon-panel .wc-block-components-panel__content {
	display: flex !important;
	align-items: center;
	height: auto;
	min-height: var(--vet-coupon-control-h);
	padding: 0 !important;
	box-sizing: border-box;
	margin: 0;
}

body.woocommerce-checkout .vet-coupon-panel:not(.vet-coupon-panel--open) .wc-block-components-panel__content,
body.woocommerce-cart .vet-coupon-panel:not(.vet-coupon-panel--open) .wc-block-components-panel__content {
	display: none !important;
}

body.woocommerce-checkout .vet-coupon-panel--open .wc-block-components-panel__content,
body.woocommerce-cart .vet-coupon-panel--open .wc-block-components-panel__content {
	display: flex !important;
	align-items: center;
	width: 100%;
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-totals-coupon__form,
body.woocommerce-cart .wc-block-components-totals-coupon__form {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	width: 100%;
	height: var(--vet-coupon-control-h);
	margin: 0;
}

body.woocommerce-checkout .wc-block-components-totals-coupon__input,
body.woocommerce-cart .wc-block-components-totals-coupon__input {
	flex: 1 1 auto;
	min-width: 0;
	height: var(--vet-coupon-control-h);
	margin: 0 !important;
	align-self: center;
}

body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input .wc-block-components-text-input,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input .wc-block-components-text-input {
	display: flex;
	align-items: center;
	height: var(--vet-coupon-control-h);
	margin: 0 !important;
	padding: 0 !important;
}

body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input .wc-block-components-text-input input,
body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input input[type="text"],
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input .wc-block-components-text-input input,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input input[type="text"] {
	width: 100%;
	height: var(--vet-coupon-control-h) !important;
	min-height: var(--vet-coupon-control-h) !important;
	max-height: var(--vet-coupon-control-h) !important;
	padding: 0 18px !important;
	border-radius: 999px !important;
	border: 1px solid rgba(23, 20, 17, 0.12) !important;
	background: rgba(22, 19, 15, 0.06) !important;
	font-size: 15px !important;
	font-weight: 500 !important;
	line-height: var(--vet-coupon-control-h) !important;
	color: #171411 !important;
	text-align: left !important;
	box-shadow: none !important;
	box-sizing: border-box;
	-webkit-appearance: none;
	appearance: none;
}

body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input input::placeholder,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input input::placeholder {
	color: rgba(23, 20, 17, 0.42);
	font-weight: 500;
	opacity: 1;
}

body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input .wc-block-components-text-input input:focus,
body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input input:focus,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input .wc-block-components-text-input input:focus,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input input:focus {
	border-color: rgba(23, 20, 17, 0.22) !important;
	background: rgba(22, 19, 15, 0.08) !important;
	box-shadow: none !important;
	outline: none !important;
}

body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input label,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__input label {
	display: none !important;
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
}

body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__button,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__button {
	flex: 0 0 var(--vet-coupon-control-h);
	width: var(--vet-coupon-control-h);
	height: var(--vet-coupon-control-h);
	min-height: var(--vet-coupon-control-h);
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 999px !important;
	background: #111111 !important;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
	position: relative;
	align-self: center;
	flex-shrink: 0;
	cursor: pointer;
	transition: background 0.2s ease, transform 0.2s ease;
}

body.woocommerce-checkout .wc-block-components-totals-coupon .wc-block-components-totals-coupon__button::before,
body.woocommerce-cart .wc-block-components-totals-coupon .wc-block-components-totals-coupon__button::before {
	content: "";
	position: absolute;
	inset: 0;
	margin: auto;
	width: 18px;
	height: 18px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
}

body.woocommerce-checkout .wc-block-components-totals-coupon__button:hover,
body.woocommerce-cart .wc-block-components-totals-coupon__button:hover {
	background: #000000 !important;
	transform: translateY(-1px);
}

body.woocommerce-checkout .wc-block-components-totals-coupon__button:active,
body.woocommerce-cart .wc-block-components-totals-coupon__button:active {
	transform: scale(0.96);
}

body.woocommerce-checkout .wc-block-components-totals-coupon__button--loading,
body.woocommerce-cart .wc-block-components-totals-coupon__button--loading {
	opacity: 0.7;
	pointer-events: none;
}

/* --- Sumy zamówienia --- */
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-totals-block,
body.woocommerce-cart .wp-block-woocommerce-cart-order-summary-totals-block {
	padding-top: 6px;
}

body.woocommerce-checkout .wc-block-components-totals-wrapper {
	background: transparent;
	border: 0;
	padding: 0;
	margin-top: 16px;
}

body.woocommerce-checkout .wc-block-components-totals-item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 8px 2px;
}

body.woocommerce-checkout .wc-block-components-totals-item__label {
	font-size: 15px;
	font-weight: 500;
	color: #6b615a;
}

body.woocommerce-checkout .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-components-formatted-money-amount {
	font-size: 16px;
	font-weight: 600;
	color: #171411;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item {
	margin-top: 12px;
	padding-top: 18px;
	border-top: 1px solid rgba(23, 20, 17, 0.08);
}

body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
body.woocommerce-checkout .wc-block-components-totals-footer-item-tax-value {
	font-size: 20px;
	font-weight: 700;
	color: #171411;
}

/* --- Porządki wrapperów --- */
body.woocommerce-checkout .wc-block-components-sidebar > .wc-block-components-notices,
body.woocommerce-checkout .wc-block-components-notices__snackbar {
	margin-bottom: 0;
}

body.woocommerce-checkout .wc-block-components-totals-item__description:empty,
body.woocommerce-checkout .wc-block-components-checkout-step__heading-content:empty {
	display: none;
}

/* --- Checkout – responsywność --- */
@media (max-width: 1100px) {
	body.woocommerce-checkout .wc-block-components-sidebar-layout.wc-block-checkout.is-large {
		grid-template-columns: 1fr;
		gap: 24px;
	}

	body.woocommerce-checkout .wc-block-checkout__main {
		max-width: 100%;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar.is-sticky {
		position: relative;
		top: 0;
	}
}

@media (max-width: 768px) {
	body.woocommerce-checkout .content-area#primary,
	body.woocommerce-checkout #primary.content-area {
		padding: 20px 14px 40px;
	}

	body.woocommerce-checkout .entry-header {
		margin-bottom: 22px;
	}

	body.woocommerce-checkout:not(.woocommerce-order-received) .entry-header::after {
		font-size: 16px;
	}

	body.woocommerce-checkout .wc-block-components-checkout-step,
	body.woocommerce-checkout .wc-block-checkout__order-notes,
	body.woocommerce-checkout .wc-block-checkout__terms,
	body.woocommerce-checkout .wc-block-checkout__actions,
	body.woocommerce-checkout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
		padding: 18px;
		border-radius: 22px;
	}

	body.woocommerce-checkout .wc-block-checkout__sidebar .wp-block-woocommerce-checkout-order-summary-block {
		border-radius: 24px;
	}

	body.woocommerce-checkout .wc-block-components-order-summary {
		padding: 12px 14px;
		border-radius: 18px;
	}

	body.woocommerce-checkout .wc-block-components-order-summary-item {
		grid-template-columns: 48px minmax(0, 1fr);
		gap: 12px;
	}

	body.woocommerce-checkout .wc-block-components-order-summary-item__image,
	body.woocommerce-checkout .wc-block-components-order-summary-item__image img {
		width: 48px;
		height: 48px;
	}

	body.woocommerce-checkout .wc-block-components-order-summary-item__total-price {
		margin-top: 8px;
		padding-top: 8px;
	}

	body.woocommerce-checkout .wc-block-components-checkout-place-order-button,
	body.woocommerce-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button {
		min-height: 56px;
		font-size: 17px !important;
	}
}

body.woocommerce-checkout .site-content,
body.woocommerce-checkout .content-area,
body.woocommerce-checkout .entry-header {
	max-width: 1360px;
	margin: 0 auto;
	padding: 0 24px;
}

body.woocommerce-checkout .content-area#primary,
body.woocommerce-checkout #primary.content-area {
	max-width: 1240px;
	margin: 0 auto;
	padding: 32px 0 72px;
	float: none;
	width: 100%;
}


/* =========================================================
   18b. KOSZYK – PUSTY STAN I REKOMENDACJE
   Strona koszyka (WooCommerce Blocks)
   ========================================================= */

body.woocommerce-cart {
	background: #f5f1eb;
	color: #171411;
}

body.woocommerce-cart .site {
	background: #f5f1eb;
}

body.woocommerce-cart .site-content,
body.woocommerce-cart .content-area {
	max-width: 1280px;
	margin: 0 auto;
	padding: 36px 28px 72px;
	float: none;
	width: 100%;
}

body.woocommerce-cart article.page,
body.woocommerce-cart .inside-article {
	background: transparent;
	border: 0;
	box-shadow: none;
	padding: 0;
}

body.woocommerce-cart .entry-header {
	margin: 0 0 28px;
}

body.woocommerce-cart .entry-title {
	margin: 0;
	font-size: clamp(2.2rem, 4vw, 3.6rem);
	line-height: 0.98;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: #171411;
}

body.woocommerce-cart .wc-block-cart {
	padding-top: 0;
}

/* --- Komunikat pustego koszyka --- */
body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
	max-width: 720px;
	width: 100%;
	margin: 0 auto 40px;
	padding: 36px 20px 12px;
	text-align: center;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title {
	margin: 0;
	font-size: clamp(1.25rem, 2.4vw, 1.65rem);
	font-weight: 600;
	line-height: 1.45;
	color: #171411;
}

body.woocommerce-cart .wc-block-cart__empty-cart__title.with-empty-cart-icon::before {
	height: 4.5rem;
	width: 4.5rem;
	margin: 0 auto 1.5rem;
	background-color: #171411;
	opacity: 0.88;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator {
	max-width: 120px;
	margin: 22px auto 28px;
	border: 0;
	color: rgba(23, 20, 17, 0.28);
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block .wp-block-separator.is-style-dots::before {
	color: rgba(23, 20, 17, 0.35);
	font-size: 18px;
	letter-spacing: 0.45em;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block p {
	margin: 18px 0 0;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block p a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	border: 1px solid rgba(23, 20, 17, 0.18);
	color: #171411 !important;
	text-decoration: none !important;
	font-size: 14px;
	font-weight: 600;
	transition: background 0.2s ease, border-color 0.2s ease;
}

body.woocommerce-cart .wp-block-woocommerce-empty-cart-block p a:hover {
	background: rgba(23, 20, 17, 0.05);
}

@media (max-width: 768px) {
	body.woocommerce-cart .site-content,
	body.woocommerce-cart .content-area {
		padding: 24px 16px 48px;
	}

	body.woocommerce-cart .wp-block-woocommerce-empty-cart-block {
		padding: 24px 16px 8px;
	}
}


.wc-blocks-components-select .wc-blocks-components-select__container {
	background: rgb(241, 236, 230);
}


/* =========================================================
   19. POTWIERDZENIE ZAMÓWIENIA / SZCZEGÓŁY
   Thank you page, podgląd zamówienia w koncie
   ========================================================= */

body.woocommerce-order-received,
body.woocommerce-view-order,
body.woocommerce-account {
	background: rgb(244, 241, 235);
	color: #171411;
}

body.woocommerce-order-received .site-content,
body.woocommerce-order-received .content-area {
	max-width: 860px;
	margin: 0 auto;
	padding: 36px 24px 72px;
}

body.woocommerce-view-order .site-content,
body.woocommerce-view-order .content-area,
body.woocommerce-account .site-content,
body.woocommerce-account .content-area {
	max-width: 1100px;
	margin: 0 auto;
	padding: 36px 24px 72px;
}

body.woocommerce-order-received .entry-content .woocommerce,
body.woocommerce-view-order .entry-content .woocommerce {
	max-width: 100%;
}

/* Ukryj powtórkę instrukcji płatności (np. „Płatność za pobraniem”) */
body.woocommerce-order-received .woocommerce-order-overview + p,
body.woocommerce-order-received .woocommerce-order > p:not(.woocommerce-notice) {
	display: none !important;
}

body.woocommerce-order-received .woocommerce-notice,
body.woocommerce-view-order .woocommerce-notice {
	background: #f1ece6;
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 20px;
	padding: 18px 22px;
	margin-bottom: 24px;
	font-size: 16px;
	line-height: 1.55;
	color: #171411;
}

body.woocommerce-order-received .woocommerce-order,
body.woocommerce-view-order .woocommerce-order {
	margin: 0;
	padding: 0;
	width: 100%;
}

body.woocommerce-order-received .entry-header,
body.woocommerce-view-order .entry-header,
body.woocommerce-account .entry-header {
	margin-bottom: 24px;
	padding: 0;
}

body.woocommerce-order-received .entry-title,
body.woocommerce-view-order .entry-title,
body.woocommerce-account .entry-title {
	margin: 0;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.02;
	letter-spacing: -0.04em;
	font-weight: 700;
	color: #171411;
}

/* --- Podsumowanie u góry (nr, data, suma) --- */
body.woocommerce-order-received ul.order_details,
body.woocommerce-view-order ul.order_details,
body.woocommerce-order-received .woocommerce-order-overview,
body.woocommerce-view-order .woocommerce-order-overview {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 12px;
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
	border: 0;
	width: 100%;
	float: none;
	clear: both;
}

body.woocommerce-order-received ul.order_details::before,
body.woocommerce-order-received ul.order_details::after,
body.woocommerce-view-order ul.order_details::before,
body.woocommerce-view-order ul.order_details::after {
	display: none;
	content: none;
}

body.woocommerce-order-received ul.order_details li,
body.woocommerce-order-received .woocommerce-order-overview li,
body.woocommerce-view-order ul.order_details li,
body.woocommerce-view-order .woocommerce-order-overview li {
	display: flex;
	flex-direction: column;
	gap: 6px;
	float: none !important;
	width: auto;
	margin: 0 !important;
	padding: 16px 18px;
	background: rgb(241, 236, 230);
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-right: 1px solid rgba(23, 20, 17, 0.08) !important;
	border-radius: 18px;
	font-size: 13px;
	line-height: 1.4;
	color: #6b615a;
	text-transform: none;
}

body.woocommerce-order-received .woocommerce-order-overview li strong,
body.woocommerce-view-order .woocommerce-order-overview li strong,
body.woocommerce-order-received ul.order_details li strong,
body.woocommerce-view-order ul.order_details li strong {
	display: block;
	font-size: 16px;
	font-weight: 700;
	color: #171411;
	text-transform: none;
	line-height: 1.4;
}

/* --- Sekcja szczegółów zamówienia --- */
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-view-order .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details,
body.woocommerce-view-order .woocommerce-customer-details {
	margin-top: 28px;
}

body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-view-order .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-customer-details .woocommerce-column__title,
body.woocommerce-view-order .woocommerce-customer-details .woocommerce-column__title {
	margin: 0 0 16px;
	font-size: 20px;
	line-height: 1.2;
	font-weight: 700;
	letter-spacing: -0.03em;
	color: #171411;
}

/* --- Tabela → karta produktów --- */
body.woocommerce-order-received .woocommerce-table--order-details,
body.woocommerce-view-order .woocommerce-table--order-details {
	display: block;
	width: 100%;
	margin: 0;
	border: 0;
	border-collapse: separate;
	border-spacing: 0;
	background: rgb(241, 236, 230);
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 24px;
	overflow: hidden;
	box-shadow: 0 1px 0 rgba(23, 20, 17, 0.02);
}

body.woocommerce-order-received .woocommerce-table--order-details thead,
body.woocommerce-view-order .woocommerce-table--order-details thead {
	display: block;
	padding: 18px 22px 0;
}

body.woocommerce-order-received .woocommerce-table--order-details thead tr,
body.woocommerce-view-order .woocommerce-table--order-details thead tr {
	display: flex;
	justify-content: space-between;
	gap: 16px;
}

body.woocommerce-order-received .woocommerce-table--order-details thead th,
body.woocommerce-view-order .woocommerce-table--order-details thead th {
	display: block;
	padding: 0 0 14px;
	border: 0;
	background: transparent;
	font-size: 11px;
	font-family: "JetBrains Mono", monospace;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(23, 20, 17, 0.5);
	font-weight: 600;
}

body.woocommerce-order-received .woocommerce-table--order-details thead th.product-total,
body.woocommerce-view-order .woocommerce-table--order-details thead th.product-total {
	text-align: right;
}

body.woocommerce-order-received .woocommerce-table--order-details tbody,
body.woocommerce-view-order .woocommerce-table--order-details tbody,
body.woocommerce-order-received .woocommerce-table--order-details tfoot,
body.woocommerce-view-order .woocommerce-table--order-details tfoot {
	display: block;
	padding: 0 22px;
}

body.woocommerce-order-received .woocommerce-table--order-details tbody,
body.woocommerce-view-order .woocommerce-table--order-details tbody {
	padding-top: 4px;
	padding-bottom: 8px;
}

body.woocommerce-order-received .woocommerce-table--order-details tbody tr,
body.woocommerce-view-order .woocommerce-table--order-details tbody tr {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

body.woocommerce-order-received .woocommerce-table--order-details tbody tr:last-child,
body.woocommerce-view-order .woocommerce-table--order-details tbody tr:last-child {
	border-bottom: 0;
}

body.woocommerce-order-received .woocommerce-table--order-details tbody td,
body.woocommerce-view-order .woocommerce-table--order-details tbody td {
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	vertical-align: top;
}

body.woocommerce-order-received .woocommerce-table--order-details .product-name,
body.woocommerce-view-order .woocommerce-table--order-details .product-name {
	flex: 1 1 auto;
	min-width: 0;
	font-size: 16px;
	line-height: 1.45;
	color: #171411;
}

body.woocommerce-order-received .woocommerce-table--order-details .product-name a,
body.woocommerce-view-order .woocommerce-table--order-details .product-name a {
	color: #171411;
	font-weight: 700;
	text-decoration: none;
}

body.woocommerce-order-received .woocommerce-table--order-details .product-name a:hover,
body.woocommerce-view-order .woocommerce-table--order-details .product-name a:hover {
	color: #b85c2b;
}

body.woocommerce-order-received .woocommerce-table--order-details .product-quantity,
body.woocommerce-view-order .woocommerce-table--order-details .product-quantity {
	font-family: "JetBrains Mono", monospace;
	font-size: 12px;
	font-weight: 500;
	color: #b85c2b;
}

body.woocommerce-order-received .woocommerce-table--order-details .product-total,
body.woocommerce-view-order .woocommerce-table--order-details .product-total {
	flex: 0 0 auto;
	text-align: right;
	font-size: 16px;
	font-weight: 700;
	color: #171411;
	white-space: nowrap;
}

body.woocommerce-order-received .woocommerce-table--order-details .product-purchase-note td,
body.woocommerce-view-order .woocommerce-table--order-details .product-purchase-note td {
	display: block;
	width: 100%;
	padding: 0 0 12px;
	font-size: 14px;
	line-height: 1.55;
	color: #6b615a;
}

body.woocommerce-order-received .woocommerce-table--order-details .product-purchase-note,
body.woocommerce-view-order .woocommerce-table--order-details .product-purchase-note {
	display: block;
	border-bottom: 1px solid rgba(23, 20, 17, 0.08);
}

/* --- Sumy, płatność, adnotacja --- */
body.woocommerce-order-received .woocommerce-table--order-details tfoot,
body.woocommerce-view-order .woocommerce-table--order-details tfoot {
	padding: 14px 22px 20px;
	border-top: 1px solid rgba(23, 20, 17, 0.08);
	background: rgba(255, 255, 255, 0.08);
}

body.woocommerce-order-received .woocommerce-table--order-details tfoot tr,
body.woocommerce-view-order .woocommerce-table--order-details tfoot tr {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 16px;
	padding: 8px 0;
	border: 0;
}

body.woocommerce-order-received .woocommerce-table--order-details tfoot th,
body.woocommerce-order-received .woocommerce-table--order-details tfoot td,
body.woocommerce-view-order .woocommerce-table--order-details tfoot th,
body.woocommerce-view-order .woocommerce-table--order-details tfoot td {
	display: block;
	padding: 0;
	border: 0;
	background: transparent;
	font-size: 15px;
	line-height: 1.4;
}

body.woocommerce-order-received .woocommerce-table--order-details tfoot th,
body.woocommerce-view-order .woocommerce-table--order-details tfoot th {
	flex: 1 1 auto;
	font-weight: 500;
	color: #6b615a;
	text-align: left;
}

body.woocommerce-order-received .woocommerce-table--order-details tfoot td,
body.woocommerce-view-order .woocommerce-table--order-details tfoot td {
	flex: 0 0 auto;
	font-weight: 600;
	color: #171411;
	text-align: right;
}

body.woocommerce-order-received .woocommerce-table--order-details tfoot tr.vet-order-total-row--order_total th,
body.woocommerce-order-received .woocommerce-table--order-details tfoot tr.vet-order-total-row--order_total td,
body.woocommerce-view-order .woocommerce-table--order-details tfoot tr.vet-order-total-row--order_total th,
body.woocommerce-view-order .woocommerce-table--order-details tfoot tr.vet-order-total-row--order_total td {
	font-size: 18px;
	font-weight: 700;
	color: #171411;
}

body.woocommerce-order-received .woocommerce-table--order-details tfoot tr.vet-order-total-row--order_total,
body.woocommerce-view-order .woocommerce-table--order-details tfoot tr.vet-order-total-row--order_total {
	padding-top: 14px;
	margin-top: 6px;
	border-top: 1px solid rgba(23, 20, 17, 0.08);
}

body.woocommerce-order-received .woocommerce-table--order-details .order-actions-button,
body.woocommerce-view-order .woocommerce-table--order-details .order-actions-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 44px;
	padding: 0 22px;
	border-radius: 999px;
	background: #111111;
	color: #f2efe8 !important;
	font-size: 14px;
	font-weight: 600;
	text-decoration: none;
}

body.woocommerce-order-received .woocommerce-table--order-details .order-actions-button:hover,
body.woocommerce-view-order .woocommerce-table--order-details .order-actions-button:hover {
	background: #000000;
	color: #ffffff !important;
}

/* --- Adres rozliczeniowy / wysyłki --- */
body.woocommerce-order-received .woocommerce-customer-details .addresses,
body.woocommerce-view-order .woocommerce-customer-details .addresses {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 20px;
}

body.woocommerce-order-received .woocommerce-customer-details address,
body.woocommerce-view-order .woocommerce-customer-details address {
	display: block;
	margin: 0;
	padding: 22px 24px;
	background: rgb(241, 236, 230);
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 20px;
	font-style: normal;
	font-size: 15px;
	line-height: 1.65;
	color: #171411;
}

body.woocommerce-order-received .woocommerce-customer-details--phone,
body.woocommerce-order-received .woocommerce-customer-details--email,
body.woocommerce-view-order .woocommerce-customer-details--phone,
body.woocommerce-view-order .woocommerce-customer-details--email {
	margin: 14px 0 0;
	padding-top: 14px;
	border-top: 1px solid rgba(23, 20, 17, 0.08);
	font-size: 15px;
	line-height: 1.5;
	color: #4b453f;
}

body.woocommerce-order-received .woocommerce-customer-details--email,
body.woocommerce-view-order .woocommerce-customer-details--email {
	margin-top: 10px;
	padding-top: 0;
	border-top: 0;
}

/* --- CTA: powrót na stronę główną / zamówienia --- */
body.woocommerce-order-received .vet-order-home-cta,
body.woocommerce-view-order .vet-order-home-cta {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 12px;
	margin-top: 36px;
	padding-top: 8px;
}

body.woocommerce-order-received .vet-order-home-cta__btn,
body.woocommerce-view-order .vet-order-home-cta__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 52px;
	padding: 0 32px;
	border-radius: 999px;
	background: #111111;
	color: #f2efe8 !important;
	font-size: 15px;
	font-weight: 600;
	line-height: 1;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

body.woocommerce-view-order .vet-order-home-cta__btn--secondary {
	background: transparent;
	color: #171411 !important;
	border: 1px solid rgba(23, 20, 17, 0.18);
}

body.woocommerce-order-received .vet-order-home-cta__btn:hover,
body.woocommerce-view-order .vet-order-home-cta__btn:hover {
	background: #000000;
	color: #ffffff !important;
	transform: translateY(-1px);
}

body.woocommerce-view-order .vet-order-home-cta__btn--secondary:hover {
	background: rgba(23, 20, 17, 0.05);
	color: #171411 !important;
}

body.woocommerce-order-received .vet-order-home-cta__btn:active,
body.woocommerce-view-order .vet-order-home-cta__btn:active {
	transform: scale(0.98);
}


/* =========================================================
   20. MOJE KONTO – ZAMÓWIENIA I PODGLĄD
   Nawigacja konta, lista zamówień, status zamówienia
   ========================================================= */

body.woocommerce-account .entry-content > .woocommerce {
	display: grid;
	grid-template-columns: 240px minmax(0, 1fr);
	gap: 28px;
	align-items: start;
}

body.woocommerce-account .woocommerce-MyAccount-navigation {
	background: rgb(241, 236, 230);
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 20px;
	padding: 10px;
}

body.woocommerce-account .woocommerce-MyAccount-navigation ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

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

body.woocommerce-account .woocommerce-MyAccount-navigation li a {
	display: block;
	padding: 12px 14px;
	border-radius: 12px;
	color: #171411;
	font-size: 14px;
	font-weight: 500;
	line-height: 1.35;
	text-decoration: none;
	transition: background 0.2s ease;
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a,
body.woocommerce-account .woocommerce-MyAccount-navigation li a:hover {
	background: rgba(23, 20, 17, 0.06);
}

body.woocommerce-account .woocommerce-MyAccount-navigation li.is-active a {
	font-weight: 700;
}

body.woocommerce-account .woocommerce-MyAccount-content {
	min-width: 0;
}

/* Status zamówienia (podgląd) */
body.woocommerce-view-order .woocommerce-MyAccount-content > p:first-of-type {
	margin: 0 0 24px;
	padding: 18px 22px;
	background: rgb(241, 236, 230);
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 18px;
	font-size: 15px;
	line-height: 1.65;
	color: #6b615a;
}

body.woocommerce-view-order .woocommerce-MyAccount-content > p:first-of-type mark {
	background: transparent;
	color: #171411;
	font-weight: 700;
}

/* Aktualizacje zamówienia */
body.woocommerce-view-order .woocommerce-MyAccount-content > h2 {
	margin: 0 0 14px;
	font-size: 18px;
	font-weight: 700;
	color: #171411;
}

body.woocommerce-view-order .woocommerce-OrderUpdates {
	list-style: none;
	margin: 0 0 28px;
	padding: 0;
}

body.woocommerce-view-order .woocommerce-OrderUpdates .comment_container {
	margin-bottom: 12px;
	padding: 18px 22px;
	background: rgb(241, 236, 230);
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 18px;
}

body.woocommerce-view-order .woocommerce-OrderUpdate-meta {
	margin: 0 0 8px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(23, 20, 17, 0.5);
}

body.woocommerce-view-order .woocommerce-OrderUpdate-description {
	font-size: 15px;
	line-height: 1.6;
	color: #171411;
}

body.woocommerce-view-order .woocommerce-OrderUpdate-description p {
	margin: 0;
}

/* Lista zamówień */
body.woocommerce-account .woocommerce-orders-table {
	width: 100%;
	margin: 0;
	border: 1px solid rgba(23, 20, 17, 0.08);
	border-radius: 24px;
	border-collapse: separate;
	border-spacing: 0;
	overflow: hidden;
	background: rgb(241, 236, 230);
	box-shadow: 0 1px 0 rgba(23, 20, 17, 0.02);
}

body.woocommerce-account .woocommerce-orders-table thead th {
	padding: 16px 18px;
	border: 0;
	border-bottom: 1px solid rgba(23, 20, 17, 0.08);
	background: transparent;
	font-family: "JetBrains Mono", monospace;
	font-size: 11px;
	font-weight: 600;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(23, 20, 17, 0.5);
}

body.woocommerce-account .woocommerce-orders-table tbody th,
body.woocommerce-account .woocommerce-orders-table tbody td {
	padding: 16px 18px;
	border: 0;
	border-top: 1px solid rgba(23, 20, 17, 0.08);
	background: transparent;
	font-size: 15px;
	color: #171411;
	vertical-align: middle;
}

body.woocommerce-account .woocommerce-orders-table tbody tr:first-child th,
body.woocommerce-account .woocommerce-orders-table tbody tr:first-child td {
	border-top: 0;
}

body.woocommerce-account .woocommerce-orders-table a {
	color: #171411;
	font-weight: 600;
	text-decoration: none;
}

body.woocommerce-account .woocommerce-orders-table a:hover {
	color: #b85c2b;
}

body.woocommerce-account .woocommerce-orders-table .button,
body.woocommerce-account .woocommerce-Button,
body.woocommerce-account .woocommerce-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 40px;
	padding: 0 18px;
	border: 1px solid rgba(23, 20, 17, 0.18) !important;
	border-radius: 999px !important;
	background: transparent !important;
	color: #171411 !important;
	font-size: 13px !important;
	font-weight: 600 !important;
	line-height: 1 !important;
	text-decoration: none !important;
	transition: background 0.2s ease, border-color 0.2s ease;
}

body.woocommerce-account .woocommerce-orders-table .button:hover,
body.woocommerce-account .woocommerce-Button:hover,
body.woocommerce-account .woocommerce-button:hover {
	background: rgba(23, 20, 17, 0.05) !important;
	color: #171411 !important;
}

body.woocommerce-account .woocommerce-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 20px;
}

body.woocommerce-account .woocommerce-info,
body.woocommerce-account .woocommerce-message,
body.woocommerce-account .woocommerce-error {
	border-radius: 18px;
	padding: 16px 18px;
	margin-bottom: 20px;
}

@media (max-width: 768px) {
	body.woocommerce-order-received .site-content,
	body.woocommerce-view-order .site-content,
	body.woocommerce-order-received .content-area,
	body.woocommerce-view-order .content-area,
	body.woocommerce-account .site-content,
	body.woocommerce-account .content-area {
		padding: 24px 16px 48px;
	}

	body.woocommerce-order-received .woocommerce-order-overview,
	body.woocommerce-view-order .woocommerce-order-overview {
		grid-template-columns: 1fr;
	}

	body.woocommerce-order-received .woocommerce-table--order-details thead,
	body.woocommerce-view-order .woocommerce-table--order-details thead,
	body.woocommerce-order-received .woocommerce-table--order-details tbody,
	body.woocommerce-view-order .woocommerce-table--order-details tbody,
	body.woocommerce-order-received .woocommerce-table--order-details tfoot,
	body.woocommerce-view-order .woocommerce-table--order-details tfoot {
		padding-left: 16px;
		padding-right: 16px;
	}

	body.woocommerce-order-received .woocommerce-customer-details .addresses,
	body.woocommerce-view-order .woocommerce-customer-details .addresses {
		grid-template-columns: 1fr;
	}

	body.woocommerce-order-received .vet-order-home-cta,
	body.woocommerce-view-order .vet-order-home-cta {
		margin-top: 28px;
		flex-direction: column;
	}

	body.woocommerce-order-received .vet-order-home-cta__btn,
	body.woocommerce-view-order .vet-order-home-cta__btn {
		width: 100%;
	}

	body.woocommerce-account .entry-content > .woocommerce {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	body.woocommerce-account .woocommerce-orders-table thead {
		display: none;
	}

	body.woocommerce-account .woocommerce-orders-table tbody tr {
		display: block;
		padding: 16px;
		border-top: 1px solid rgba(23, 20, 17, 0.08);
	}

	body.woocommerce-account .woocommerce-orders-table tbody tr:first-child {
		border-top: 0;
	}

	body.woocommerce-account .woocommerce-orders-table tbody th,
	body.woocommerce-account .woocommerce-orders-table tbody td {
		display: flex;
		justify-content: space-between;
		gap: 12px;
		padding: 8px 0;
		border: 0;
	}

	body.woocommerce-account .woocommerce-orders-table tbody td::before,
	body.woocommerce-account .woocommerce-orders-table tbody th::before {
		content: attr(data-title);
		font-family: "JetBrains Mono", monospace;
		font-size: 10px;
		letter-spacing: 0.1em;
		text-transform: uppercase;
		color: rgba(23, 20, 17, 0.5);
		flex: 0 0 auto;
	}
}



.entry-content .alignwide, body:not(.no-sidebar) .entry-content .alignfull {
	margin:0;
}
/* --- Back in stock notify --- */

.vet-product-card__actions .vet-stock-notify__trigger,
.vet-product-card__btn.vet-stock-notify__trigger {
	border: 0;
	background: rgb(22, 19, 15);
	color: rgb(242, 239, 232) !important;
	padding: 13px 22px;
}

.vet-product-card__actions .vet-stock-notify__trigger:hover,
.vet-product-card__btn.vet-stock-notify__trigger:hover {
	background: rgb(34, 29, 24);
	color: rgb(242, 239, 232) !important;
}

.vet-stock-notify--single {
	margin: 18px 0 8px;
}

.vet-stock-notify--single .vet-stock-notify__trigger {
	width: 100%;
	min-height: 52px;
	border: 0;
	border-radius: 100px;
	background: rgb(22, 19, 15);
	color: rgb(242, 239, 232);
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	transition: background 0.3s ease, transform 0.3s ease;
}

.vet-stock-notify--single .vet-stock-notify__trigger:hover {
	background: rgb(34, 29, 24);
}

.vet-stock-notify--single .vet-stock-notify__trigger:active {
	transform: scale(0.98);
}

html.vet-stock-notify-open {
	overflow: hidden;
}

/* --- Modal: styl zgodny z vet-science__item --- */

.vet-stock-notify-modal {
	display: none !important;
	position: fixed !important;
	top: 0 !important;
	right: 0 !important;
	bottom: 0 !important;
	left: 0 !important;
	z-index: 999999 !important;
	align-items: center;
	justify-content: center;
	padding: 32px 24px;
	margin: 0 !important;
	box-sizing: border-box;
	pointer-events: none;
}

.vet-stock-notify-modal.is-open,
.vet-stock-notify-modal[aria-hidden="false"] {
	display: flex !important;
	pointer-events: auto;
}

.vet-stock-notify-modal[hidden] {
	display: none !important;
	pointer-events: none !important;
}

.vet-stock-notify-modal__overlay {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: rgba(22, 19, 15, 0.38);
	backdrop-filter: blur(2px);
	cursor: pointer;
}

.vet-stock-notify-modal__dialog {
	position: relative;
	z-index: 1;
	width: min(100%, 720px);
	max-height: calc(100vh - 64px);
	overflow: auto;
	padding: 48px 52px 44px;
	margin: 0;
	background: #fbfaf6;
	border: 1px solid rgba(22, 19, 15, 0.12);
	border-radius: 20px;
	box-shadow: none;
	pointer-events: auto;
	font-family: Outfit, sans-serif;
	animation: vetStockNotifyIn 0.28s ease;
}

@keyframes vetStockNotifyIn {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.vet-stock-notify-modal__close {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	padding: 0;
	border: 1px solid rgba(22, 19, 15, 0.12);
	border-radius: 12px;
	background: transparent;
	color: rgba(22, 19, 15, 0.55);
	font-size: 26px;
	line-height: 1;
	cursor: pointer;
	transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.vet-stock-notify-modal__close:hover {
	color: #16130f;
	background: rgba(22, 19, 15, 0.04);
	border-color: rgba(22, 19, 15, 0.2);
}

.vet-stock-notify-modal__eyebrow {
	margin: 0 0 14px;
	font-family: "JetBrains Mono", monospace;
	font-size: 11.5px;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: #f2671e;
}

.vet-stock-notify-modal__product {
	margin: 0 0 18px;
	font-family: "JetBrains Mono", monospace;
	font-size: 13px;
	line-height: 1.3;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: rgba(22, 19, 15, 0.5);
}

.vet-stock-notify-modal__title {
	max-width: 28ch;
	margin: 0 0 14px;
	font-size: clamp(26px, 3vw, 34px);
	font-weight: 700;
	letter-spacing: -0.02em;
	line-height: 1.15;
	color: #16130f;
}

.vet-stock-notify-modal__text {
	max-width: 46ch;
	margin: 0 0 32px;
	font-size: 15px;
	line-height: 1.65;
	color: rgba(22, 19, 15, 0.66);
}

.vet-stock-notify-modal__form {
	margin: 0;
}

.vet-stock-notify-modal__fields {
	display: grid;
	grid-template-columns: 1fr auto;
	gap: 12px;
	align-items: stretch;
}

.vet-stock-notify-modal__input {
	width: 100%;
	min-height: 56px;
	padding: 16px 20px;
	border: 1px solid rgba(22, 19, 15, 0.12);
	border-radius: 14px;
	background: #fff;
	color: #16130f;
	font-family: Outfit, sans-serif;
	font-size: 16px;
	outline: none;
	transition: border-color 0.2s ease, box-shadow 0.2s ease;
	box-sizing: border-box;
}

.vet-stock-notify-modal__input::placeholder {
	color: rgba(22, 19, 15, 0.4);
}

.vet-stock-notify-modal__input:focus {
	border-color: rgba(242, 103, 30, 0.55);
	box-shadow: 0 0 0 3px rgba(242, 103, 30, 0.12);
}

.vet-stock-notify-modal__submit {
	min-height: 56px;
	padding: 0 28px;
	border: 0;
	border-radius: 100px;
	background: #16130f;
	color: #f2efe8;
	font-family: Outfit, sans-serif;
	font-size: 15px;
	font-weight: 600;
	white-space: nowrap;
	cursor: pointer;
	transition: background 0.25s ease, transform 0.2s ease;
}

.vet-stock-notify-modal__submit:hover {
	background: #221d18;
}

.vet-stock-notify-modal__submit:active {
	transform: scale(0.98);
}

.vet-stock-notify-modal__submit:disabled {
	opacity: 0.65;
	cursor: wait;
}

.vet-stock-notify-modal__error {
	margin: 14px 0 0;
	font-size: 14px;
	line-height: 1.45;
	color: #8a2f24;
}

.vet-stock-notify-modal__message {
	margin: 8px 0 0;
	max-width: 42ch;
	font-size: 16px;
	line-height: 1.6;
	color: #16130f;
}

@media (max-width: 720px) {
	.vet-stock-notify-modal {
		padding: 16px;
		align-items: flex-end;
	}

	.vet-stock-notify-modal__dialog {
		width: 100%;
		padding: 36px 24px 28px;
		border-radius: 20px 20px 16px 16px;
		max-height: min(90vh, 640px);
	}

	.vet-stock-notify-modal__fields {
		grid-template-columns: 1fr;
	}

	.vet-stock-notify-modal__submit {
		width: 100%;
	}

	.vet-stock-notify-modal__title {
		max-width: none;
	}
}
