/* AIOMY V89 — finalny ekran potwierdzenia zamówienia. */

/* ════════════════════════════════════════
   AIOMY – Main Stylesheet
   Design: clean minimalism + warm children accents
   Fonts: Poppins (Google)
════════════════════════════════════════ */

/* ── CSS Variables ───────────────────── */
:root {
  --bg:           #FFFAF8;
  --bg-pink:      #FFF3F7;
  --bg-mint:      #F0FFFD;
  --bg-gradient:  linear-gradient(135deg, #FFF0F6 0%, #F0FFFD 100%);

  /* Wspólne tło strony głównej i podstron AIOMY. */
  --aiomy-site-bg-color: #fffdf9;
  --aiomy-site-bg-image:
    radial-gradient(circle at 12% 16%, rgba(255, 212, 92, 0.28), transparent 28%),
    radial-gradient(circle at 76% 24%, rgba(255, 117, 168, 0.27), transparent 27%),
    radial-gradient(circle at 89% 42%, rgba(135, 101, 246, 0.15), transparent 25%),
    radial-gradient(circle at 104% 55%, rgba(81, 169, 245, 0.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #fff8fb 45%, #f7f7ff 100%);

  --pink:         #FF8FAB;
  --pink-dark:    #E8698A;
  --pink-light:   #FFD6E5;
  --mint:         #3ECFC4;
  --mint-dark:    #2BB5AA;
  --yellow:       #FFD166;
  --yellow-dark:  #F5B700;

  --aiomy-gradient: linear-gradient(
    118deg,
    #f04d91 0%,
    #fd72aa 48%,
    #8765f6 100%
  );

  --text:         #2D2D3A;
  --text-muted:   #7B7B8F;
  --white:        #FFFFFF;
  --border:       #F0E8EC;

  --radius-xs:    8px;
  --radius-sm:    14px;
  --radius:       20px;
  --radius-lg:    28px;
  --radius-xl:    40px;

  --shadow:       0 4px 24px rgba(255, 143, 171, 0.12);
  --shadow-hover: 0 12px 40px rgba(255, 143, 171, 0.22);
  --shadow-card:  0 2px 16px rgba(45, 45, 58, 0.06);

  --transition:   0.2s ease;
  --font:         'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-w:        1200px;
}

/* ════════════════════════════════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V44
   Finalny pakiet: dostawa, zwroty, płatności, dostępność, czytelna
   specyfikacja i opis oraz responsywne powiększenie zdjęcia.
════════════════════════════════════════════════════════════════════ */

/* ── Stan magazynowy wyłącznie w panelu zakupu ───────────────────── */
html body.aiomy-single-product-v36 .aiomy-single__availability {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 9px 0 16px !important;
  padding: 11px 13px !important;
  border: 1px solid rgba(45, 45, 58, 0.08) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__availability-dot {
  flex: 0 0 9px !important;
  width: 9px !important;
  height: 9px !important;
  border-radius: 50% !important;
  box-shadow: 0 0 0 4px currentColor !important;
  opacity: 0.78 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__availability > span:last-child {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
  gap: 2px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__availability strong {
  font-size: 0.78rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__availability small {
  color: var(--text-muted) !important;
  font-size: 0.67rem !important;
  line-height: 1.4 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__availability--available {
  color: #168a61 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__availability--unavailable {
  color: #d73d4f !important;
  background-color: var(--aiomy-site-bg-color) !important;
  background-image: var(--aiomy-site-bg-image) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
}

/* ── Powiększenie 28% w obrębie tej samej ramki ──────────────────── */
html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
  --aiomy-zoom-x: 50%;
  --aiomy-zoom-y: 50%;
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  border-radius: 28px !important;
  background: #fff !important;
  cursor: zoom-in !important;
  -webkit-tap-highlight-color: transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__main-image,
html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
  border-radius: 22px !important;
  transform: scale(1) !important;
  transform-origin: var(--aiomy-zoom-x) var(--aiomy-zoom-y) !important;
  transition: transform 320ms cubic-bezier(0.22, 0.75, 0.2, 1), opacity 180ms ease !important;
  will-change: transform !important;
}

html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap.is-zoomed {
  cursor: zoom-out !important;
}

html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap.is-zoomed .aiomy-single__main-image,
html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap.is-zoomed > img {
  transform: scale(1.28) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap:focus-visible {
  outline: 3px solid rgba(240, 77, 145, 0.24) !important;
  outline-offset: 3px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap .product-badge {
  z-index: 3 !important;
}

/* ── Zwarte wiersze informacyjne po prawej ───────────────────────── */
html body.aiomy-single-product-v36 .aiomy-single__policy-copy {
  justify-content: center !important;
  gap: 2px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-copy strong {
  line-height: 1.3 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-copy small:empty {
  display: none !important;
}

html body.aiomy-single-product-v36 button.aiomy-single__promotions-link > span {
  display: none !important;
}

/* ── Jednolite boczne panele AIOMY ───────────────────────────────── */
html body.aiomy-single-product-v36 .aiomy-single__policy-drawer,
html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header,
html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-body {
  background:
    radial-gradient(circle at 100% 0%, rgba(135, 101, 246, 0.14), transparent 36%),
    radial-gradient(circle at 0% 22%, rgba(240, 77, 145, 0.12), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #fff7fb 52%, #eef3ff 100%) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header {
  border-bottom-color: rgba(45, 45, 58, 0.08) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header h2 {
  display: inline-block !important;
  background: var(--aiomy-gradient) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: #e84b90 !important;
  -webkit-text-fill-color: transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-panel-icon {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy {
  display: block !important;
  color: var(--text-muted) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy h4,
html body.aiomy-single-product-v36 .aiomy-single__promotion-guide h4 {
  margin: 28px 0 10px !important;
  color: var(--text) !important;
  font-size: 1rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy h4:first-child {
  margin-top: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy p,
html body.aiomy-single-product-v36 .aiomy-single__promotion-intro p,
html body.aiomy-single-product-v36 .aiomy-single__promotion-guide p,
html body.aiomy-single-product-v36 .aiomy-single__drawer-copy li,
html body.aiomy-single-product-v36 .aiomy-single__promotion-guide li {
  color: var(--text-muted) !important;
  font-size: 0.86rem !important;
  line-height: 1.72 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy p,
html body.aiomy-single-product-v36 .aiomy-single__promotion-intro p,
html body.aiomy-single-product-v36 .aiomy-single__promotion-guide p {
  margin: 0 0 14px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy ul,
html body.aiomy-single-product-v36 .aiomy-single__promotion-guide ul {
  display: grid !important;
  gap: 10px !important;
  margin: 10px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy li,
html body.aiomy-single-product-v36 .aiomy-single__promotion-guide li {
  position: relative !important;
  padding: 13px 14px 13px 34px !important;
  border: 1px solid rgba(45, 45, 58, 0.075) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.72) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy li::before,
html body.aiomy-single-product-v36 .aiomy-single__promotion-guide li::before {
  position: absolute !important;
  top: 18px !important;
  left: 15px !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 50% !important;
  background: var(--aiomy-gradient) !important;
  content: "" !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-copy a {
  color: #dc3f86 !important;
  font-weight: 700 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-highlight {
  margin-top: 22px !important;
  padding: 18px 19px !important;
  border: 1px solid rgba(240, 77, 145, 0.14) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.75) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-highlight > strong {
  display: block !important;
  margin-bottom: 7px !important;
  color: var(--text) !important;
  font-size: 0.92rem !important;
  font-weight: 800 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-highlight > p:last-child {
  margin-bottom: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-more {
  margin-top: 30px !important;
  padding-top: 18px !important;
  border-top: 1px solid rgba(45, 45, 58, 0.08) !important;
}

/* ── Panel aktualnych promocji ───────────────────────────────────── */
html body.aiomy-single-product-v36 .aiomy-single__promotion-intro {
  max-width: 460px !important;
  margin: 0 auto 22px !important;
  text-align: left !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-intro p:first-child {
  color: var(--text) !important;
  font-size: 1rem !important;
  text-align: center !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-cards {
  width: min(100%, 440px) !important;
  margin: 0 auto !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-guide {
  width: min(100%, 460px) !important;
  margin: 28px auto 0 !important;
  padding-top: 24px !important;
  border-top: 1px solid rgba(45, 45, 58, 0.08) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-guide h4:first-child {
  margin-top: 0 !important;
}

/* ── Funkcje w osobnych, czytelnych wierszach ────────────────────── */
html body.aiomy-single-product-v36 .aiomy-single__function-list {
  display: grid !important;
  gap: 10px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__function-list li {
  position: relative !important;
  margin: 0 !important;
  padding: 0 0 0 17px !important;
  color: var(--text) !important;
  line-height: 1.62 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__function-list li::before {
  position: absolute !important;
  top: 0.62em !important;
  left: 0 !important;
  width: 6px !important;
  height: 6px !important;
  border-radius: 50% !important;
  background: var(--aiomy-gradient) !important;
  content: "" !important;
}

html body.aiomy-single-product-v36 .aiomy-single__specification-list > div {
  align-items: start !important;
}

/* ── Osobny kafelek nagłówka i osobny kafelek treści opisu ───────── */
html body.aiomy-single-product-v36 .aiomy-single__description {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-heading,
html body.aiomy-single-product-v36 .aiomy-single__description-content {
  border: 1px solid rgba(45, 45, 58, 0.055) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 40px rgba(45, 45, 58, 0.055) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-heading {
  margin: 0 0 12px !important;
  padding: clamp(20px, 3vw, 30px) clamp(22px, 4vw, 44px) !important;
  border-radius: 24px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-heading h2 {
  margin: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-content {
  padding: clamp(28px, 5vw, 52px) clamp(22px, 5vw, 52px) !important;
  border-radius: 28px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-content h2,
html body.aiomy-single-product-v36 .aiomy-single__description-content h3,
html body.aiomy-single-product-v36 .aiomy-single__description-content h4 {
  margin: clamp(36px, 5vw, 58px) 0 16px !important;
  color: var(--text) !important;
  line-height: 1.25 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-content > h2:first-child,
html body.aiomy-single-product-v36 .aiomy-single__description-content > h3:first-child,
html body.aiomy-single-product-v36 .aiomy-single__description-content > h4:first-child {
  margin-top: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-content p {
  margin: 0 0 1.2em !important;
  line-height: 1.78 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-content ul,
html body.aiomy-single-product-v36 .aiomy-single__description-content ol {
  margin: 0 0 24px !important;
  padding-left: 1.35em !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description-content li {
  margin-bottom: 9px !important;
  line-height: 1.68 !important;
}

/* ── Tablet ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  html body.aiomy-single-product-v36 .aiomy-single__policy-drawer {
    width: min(94vw, 540px) !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__description-heading,
  html body.aiomy-single-product-v36 .aiomy-single__description-content {
    border-radius: 22px !important;
  }
}

/* ── Telefon ──────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    padding: 0 !important;
    border-radius: 22px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__main-image,
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
    width: 100% !important;
    height: 100% !important;
    border-radius: 22px !important;
    object-fit: contain !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__availability {
    margin: 8px 0 13px !important;
    padding: 10px 12px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__policy-drawer {
    width: 100% !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-body {
    padding: 24px 18px 34px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__drawer-copy p,
  html body.aiomy-single-product-v36 .aiomy-single__promotion-intro p,
  html body.aiomy-single-product-v36 .aiomy-single__promotion-guide p,
  html body.aiomy-single-product-v36 .aiomy-single__drawer-copy li,
  html body.aiomy-single-product-v36 .aiomy-single__promotion-guide li {
    font-size: 0.8rem !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__promotion-card {
    grid-template-columns: 62px minmax(0, 1fr) !important;
    min-height: 146px !important;
    padding: 17px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__promotion-visual {
    width: 62px !important;
    height: 62px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__description-heading {
    margin-bottom: 9px !important;
    padding: 18px !important;
    border-radius: 19px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__description-content {
    padding: 24px 18px !important;
    border-radius: 20px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__description-content h2,
  html body.aiomy-single-product-v36 .aiomy-single__description-content h3,
  html body.aiomy-single-product-v36 .aiomy-single__description-content h4 {
    margin-top: 34px !important;
    margin-bottom: 13px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__description-content > h2:first-child,
  html body.aiomy-single-product-v36 .aiomy-single__description-content > h3:first-child,
  html body.aiomy-single-product-v36 .aiomy-single__description-content > h4:first-child {
    margin-top: 0 !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   AIOMY V45 — bazowa korekta opisu, zdjęcia, lupy i menu mobilnego
   Ostateczne wymuszenia kompatybilności znajdują się na końcu pliku.
════════════════════════════════════════════════════════════════════ */

/* Nagłówek i treść opisu mają dokładnie tę samą szerokość. */
html body.aiomy-single-product-v36 .aiomy-single__description,
html body.aiomy-single-product-v36 .aiomy-single__description-heading,
html body.aiomy-single-product-v36 .aiomy-single__description-content {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  box-sizing: border-box !important;
}

/* Na komputerze ramka odpowiada proporcji zdjęć produktowych 1:1.
   Obraz wypełnia ją bez rozciągania, a clip-path usuwa ostre narożniki. */
@media (min-width: 1025px) {
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    width: min(100%, 560px) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(45, 45, 58, 0.07) !important;
    border-radius: 34px !important;
    background: #fff !important;
    box-sizing: border-box !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__main-image,
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 27px !important;
    object-fit: cover !important;
    object-position: center !important;
    clip-path: inset(0 round 27px) !important;
  }
}

/* Lupa: na komputerze zdjęcie reaguje na najazd, na tablecie i telefonie
   ten sam mechanizm uruchamia widoczny przycisk. */
html body.aiomy-single-product-v36 .aiomy-single__zoom-button {
  position: absolute !important;
  z-index: 5 !important;
  right: 16px !important;
  bottom: 16px !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 50% !important;
  color: #242331 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 8px 24px rgba(45, 45, 58, 0.15) !important;
  cursor: pointer !important;
  -webkit-tap-highlight-color: transparent !important;
  transition: transform 180ms ease, box-shadow 180ms ease !important;
}

html body.aiomy-single-product-v36 .aiomy-single__zoom-button:hover,
html body.aiomy-single-product-v36 .aiomy-single__zoom-button:focus-visible {
  transform: translateY(-1px) !important;
  box-shadow: 0 11px 28px rgba(45, 45, 58, 0.2) !important;
  outline: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__zoom-button svg {
  display: block !important;
  width: 22px !important;
  height: 22px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

html body.aiomy-single-product-v36 .aiomy-single__zoom-button[aria-pressed="true"] {
  color: #fff !important;
  background: var(--aiomy-gradient) !important;
}

@media (max-width: 1024px) {
  html body.aiomy-single-product-v36 .aiomy-single__zoom-button {
    display: inline-flex !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    cursor: default !important;
    touch-action: pan-y !important;
  }
}

/* Czysty krzyżyk zamknięcia menu — bez znaku tekstowego i pseudo-ikon motywu. */
@media (max-width: 1024px) {
  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    border: 0 !important;
    border-radius: 50% !important;
    color: transparent !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 7px 20px rgba(45, 45, 58, 0.11) !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean::before,
  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean::after {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    display: block !important;
    width: 18px !important;
    height: 2px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #242331 !important;
    content: "" !important;
  }

  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean::before {
    transform: translate(-50%, -50%) rotate(45deg) !important;
  }

  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean::after {
    transform: translate(-50%, -50%) rotate(-45deg) !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body.aiomy-single-product-v36 .aiomy-single__main-image,
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
    transition-duration: 0.01ms !important;
  }
}

/* =========================================================
   AIOMY V44 — paginacja wyłącznie dla rzeczywistych stron
   ========================================================= */
body.aiomy-shop-v22.aiomy-shop-no-pagination .woocommerce-pagination,
body.aiomy-shop-v22 .aiomy-shop-pagination-mount[hidden] {
  display: none !important;
}

/* ═══════════════════════════════════════════════════════════════
   V42 — BEZPOŚREDNIE WEJŚCIE DO PRZEFILTROWANEGO SKLEPU
   Izolacja: wyłącznie główna strona sklepu AIOMY.
═══════════════════════════════════════════════════════════════ */

body.aiomy-shop-v22 .aiomy-shop-category-card {
  position: relative;
  isolation: isolate;
}

body.aiomy-shop-v22 .aiomy-shop-category-card > a {
  position: relative;
  outline: 0;
}

body.aiomy-shop-v22 .aiomy-shop-category-card::before {
  content: "";
  position: absolute;
  z-index: 3;
  inset: 0;
  padding: 2px;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%);
  border-radius: inherit;
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: opacity 180ms ease;
}

body.aiomy-shop-v22 .aiomy-shop-category-card > a::after {
  content: "✓";
  position: absolute;
  z-index: 4;
  top: 14px;
  right: 14px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: #ffffff;
  background: linear-gradient(135deg, #f04d91 0%, #fd72aa 42%, #8765f6 100%);
  border: 2px solid rgba(255, 255, 255, 0.94);
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(135, 101, 246, 0.28);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

body.aiomy-shop-v22 .aiomy-shop-category-card.is-active {
  border-color: transparent;
  box-shadow: 0 16px 42px rgba(135, 101, 246, 0.16);
}

body.aiomy-shop-v22 .aiomy-shop-category-card.is-active::before,
body.aiomy-shop-v22 .aiomy-shop-category-card.is-active > a::after {
  opacity: 1;
}

body.aiomy-shop-v22 .aiomy-shop-category-card.is-active > a::after {
  transform: scale(1);
}

body.aiomy-shop-v22 .aiomy-shop-category-card.is-active .aiomy-shop-category-card__name {
  color: #d9468b;
}

body.aiomy-shop-v22 .aiomy-shop-categories__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-top: clamp(20px, 2.4vw, 28px);
}

body.aiomy-shop-v22 .aiomy-shop-category-reset {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  margin: 0;
  padding: 11px 22px;
  color: #d9468b;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%) border-box;
  border: 2px solid transparent;
  border-radius: 999px;
  box-shadow: 0 9px 24px rgba(135, 101, 246, 0.1);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition:
    color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease,
    opacity 180ms ease;
}

body.aiomy-shop-v22 .aiomy-shop-category-reset svg {
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.aiomy-shop-v22 .aiomy-shop-category-reset:disabled {
  color: #8b879c;
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(45, 45, 58, 0.1);
  box-shadow: none;
  cursor: default;
  opacity: 0.58;
}

body.aiomy-shop-v22 .aiomy-shop-category-status {
  min-height: 1.45em;
  margin: 0;
  color: var(--text-muted);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
}

body.aiomy-shop-v22 .aiomy-shop-category-status.is-error {
  color: #b4233f;
}

body.aiomy-shop-v22 .wc-main ul.products {
  scroll-margin-top: 118px;
  transition: opacity 180ms ease;
}

@media (max-width: 767px) {
  body.aiomy-shop-v22 .wc-main ul.products {
    scroll-margin-top: 104px;
  }
}

body.aiomy-shop-v22 .wc-main ul.products.is-filtering {
  pointer-events: none;
  opacity: 0.42;
}

body.aiomy-shop-v22 .wc-main ul.products.is-filter-entering > li {
  opacity: 0;
  transform: translateY(7px);
}

body.aiomy-shop-v22 .wc-main ul.products > li.aiomy-shop-filter-empty {
  display: flex !important;
  grid-column: 1 / -1 !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: 100% !important;
  min-height: 180px;
  margin: 0 !important;
  padding: 34px 22px !important;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(45, 45, 58, 0.07);
  text-align: center;
}

body.aiomy-shop-v22 .wc-main ul.products > li.aiomy-shop-filter-empty strong {
  color: var(--text);
  font-size: 1.04rem;
}

body.aiomy-shop-v22 .wc-main ul.products > li.aiomy-shop-filter-empty span {
  max-width: 520px;
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-shop-v22 .aiomy-shop-category-reset:not(:disabled):hover {
    color: #ffffff;
    background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%) border-box;
    box-shadow: 0 12px 28px rgba(135, 101, 246, 0.22);
    transform: translateY(-2px);
  }
}

@media (max-width: 520px) {
  body.aiomy-shop-v22 .aiomy-shop-category-card > a::after {
    top: 9px;
    right: 9px;
    width: 27px;
    height: 27px;
    font-size: 13px;
  }

  body.aiomy-shop-v22 .aiomy-shop-categories__actions {
    margin-top: 18px;
  }

  body.aiomy-shop-v22 .aiomy-shop-category-reset {
    width: min(100%, 310px);
    min-height: 46px;
    padding-inline: 16px;
    font-size: 0.8rem;
  }

  body.aiomy-shop-v22 .aiomy-shop-category-status {
    padding-inline: 8px;
    font-size: 0.72rem;
  }
}

/* ================================================================
   AIOMY V62 — CHECKOUT: DOSTAWA BEZ ŚCISKANIA I UCINANIA TEKSTU
   ================================================================ */

/* „Przesyłka” jako pełnoszeroka sekcja: tytuł nad metodami dostawy. */
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.shipping {
  display: block !important;
  width: 100% !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > th,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.shipping > th,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.shipping > td {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > th,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.shipping > th {
  padding: 14px 12px 6px !important;
  border-bottom: 0 !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.shipping > td {
  padding: 4px 12px 14px !important;
  white-space: normal !important;
  overflow: visible !important;
}

/* Każdy bezpośredni element w sekcji dostawy wykorzystuje całą szerokość. */
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td > *,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.shipping > td > * {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table #shipping_method,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table .woocommerce-shipping-methods {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 8px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table #shipping_method > li,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table .woocommerce-shipping-methods > li {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 10px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 11px 12px !important;
  box-sizing: border-box !important;
  text-align: left !important;
  overflow: visible !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table #shipping_method label,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table .woocommerce-shipping-methods label {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

/* Przycisk Paczkomatu na pełną szerokość. */
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals .button,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.shipping .button,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals button,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tr.shipping button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 10px 0 0 !important;
  box-sizing: border-box !important;
  white-space: normal !important;
}

/* Dane wybranego punktu — pełna szerokość i bez obcinania adresu. */
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [class*="paczkom" i],
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [class*="parcel" i],
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [class*="pickup" i],
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [class*="point" i],
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [id*="paczkom" i],
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [id*="parcel" i],
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [id*="pickup" i],
html body.woocommerce-checkout tr.woocommerce-shipping-totals td [id*="point" i],
html body.woocommerce-checkout tr.shipping td [class*="paczkom" i],
html body.woocommerce-checkout tr.shipping td [class*="parcel" i],
html body.woocommerce-checkout tr.shipping td [class*="pickup" i],
html body.woocommerce-checkout tr.shipping td [class*="point" i] {
  display: block !important;
  float: none !important;
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: break-word !important;
  word-wrap: break-word !important;
  word-break: normal !important;
}

/* „Łącznie” po lewej, cena oraz VAT przy prawej krawędzi. */
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total > th {
  display: block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total > td {
  display: flex !important;
  flex: 0 1 auto !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  width: auto !important;
  min-width: 0 !important;
  margin: 0 0 0 auto !important;
  text-align: right !important;
}

html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total > td .amount,
html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total > td .includes_tax {
  text-align: right !important;
}

@media (max-width: 600px) {
  html body.woocommerce-checkout table.woocommerce-checkout-review-order-table tfoot tr.order-total {
    gap: 10px !important;
  }

  html body.woocommerce-checkout table.woocommerce-checkout-review-order-table #shipping_method > li,
  html body.woocommerce-checkout table.woocommerce-checkout-review-order-table .woocommerce-shipping-methods > li {
    padding: 10px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.aiomy-shop-v22 .aiomy-shop-category-card,
  body.aiomy-shop-v22 .aiomy-shop-category-card::before,
  body.aiomy-shop-v22 .aiomy-shop-category-card > a::after,
  body.aiomy-shop-v22 .aiomy-shop-category-reset,
  body.aiomy-shop-v22 .wc-main ul.products,
  body.aiomy-shop-v22 .wc-main ul.products > li {
    transition: none !important;
  }
}

/* ── Reset & Base ────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font); border: none; background: none; }

/* ── Layout ──────────────────────────── */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding        { padding: 80px 0; }
.section-padding--sm    { padding: 40px 0; }
.section-bg-pink        { background: var(--bg-pink); }
.section-bg-mint        { background: var(--bg-mint); }
.section-bg-gradient    { background: var(--bg-gradient); }

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.25;
}
.section-header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  line-height: 1.65;
}
.section-tag {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-cta {
  text-align: center;
  margin-top: 48px;
}

.highlight {
  color: var(--pink);
  position: relative;
}

/* ── Buttons ─────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font);
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: var(--pink-dark);
  border-color: var(--pink-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.btn-yellow {
  background: var(--yellow);
  color: var(--text);
  border-color: var(--yellow);
}
.btn-yellow:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255, 209, 102, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--pink);
  border-color: var(--pink);
}
.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}
.btn-ghost:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.btn-mint {
  background: var(--mint);
  color: var(--white);
  border-color: var(--mint);
}
.btn-mint:hover {
  background: var(--mint-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(62, 207, 196, 0.35);
}

/* ── HEADER ──────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 248, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 72px;
}

.site-logo {
  display: flex;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  background: transparent;
  padding: 0;
  border-radius: 0;
  flex: 0 0 auto;
  max-width: 160px;
}
/* Wyższa specyficzność niż .woocommerce img { max-width:100%; height:auto } */
.site-header .site-logo__img,
.site-logo .site-logo__img {
  display: block;
  width: auto !important;
  height: 44px !important;
  max-width: 160px !important;
  max-height: 44px !important;
  object-fit: contain;
}
.logo-text {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text);
  letter-spacing: -0.02em;
}
.logo-o {
  color: var(--pink);
  display: inline-block;
}
.logo-tag {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: -2px;
}

.main-nav { flex: 1; display: flex; justify-content: center; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-menu li a {
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
}
.nav-menu li a:hover,
.nav-menu li.current-menu-item > a {
  color: var(--pink);
  background: var(--bg-pink);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-btn {
  display: flex;
  align-items: center;
  position: relative;
  padding: 8px;
  border-radius: var(--radius-sm);
  color: var(--text);
  transition: color var(--transition);
}
.cart-btn:hover { color: var(--pink); }
.cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.cart-count:empty,
.cart-count[data-count="0"] { display: none; }

.header-cta { padding: 10px 22px; font-size: 0.9rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-close {
  display: none;
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}

/* ── HERO ─────────────────────────────── */
.hero-section {
  padding: 80px 0 30px;
  overflow: hidden;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  min-height: 420px;
}
.hero-badge {
  display: inline-block;
  background: var(--pink-light);
  color: var(--pink-dark);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text);
  letter-spacing: -0.02em;
}
.hero-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}
.trust-icon { font-size: 1.1rem; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}
.hero-media {
  width: 100%;
  max-width: 520px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: float 4s ease-in-out infinite;
}
.hero-media__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.hero-bubble {
  background: var(--bg-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}
.hero-bubble--lg {
  width: 360px;
  height: 360px;
  animation: float 4s ease-in-out infinite;
}

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

.plush-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.plush-face {
  width: 140px;
  height: 140px;
  background: linear-gradient(135deg, var(--pink-light), var(--pink));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  box-shadow: 0 8px 32px rgba(255, 143, 171, 0.3);
}
.plush-eyes {
  display: flex;
  gap: 20px;
}
.plush-eye {
  width: 24px;
  height: 30px;
  background: var(--text);
  border-radius: 50%;
  position: relative;
  overflow: hidden;
}
.plush-eye--glow {
  box-shadow: 0 0 16px rgba(62, 207, 196, 0.8), 0 0 4px rgba(255, 255, 255, 0.6);
  background: linear-gradient(135deg, #2BB5AA, #7FF4EE);
  animation: glow-pulse 2s ease-in-out infinite;
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 16px rgba(62, 207, 196, 0.8), 0 0 4px rgba(255,255,255,0.6); }
  50%       { box-shadow: 0 0 28px rgba(62, 207, 196, 1),   0 0 8px rgba(255,255,255,0.9); }
}
.plush-mouth {
  width: 40px;
  height: 20px;
  border: 3px solid var(--white);
  border-top: none;
  border-radius: 0 0 40px 40px;
}
.plush-label {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--text);
}

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius);
  padding: 10px 16px;
  box-shadow: var(--shadow-card);
  font-size: 0.82rem;
  font-weight: 500;
  white-space: nowrap;
}
.hero-float--1 {
  top: 60px;
  right: -20px;
  animation: float 3.5s 0.5s ease-in-out infinite;
}
.hero-float--2 {
  bottom: 80px;
  left: -30px;
  animation: float 4s 1s ease-in-out infinite;
}

/* ── PROMO RIBBON ────────────────────── */
.promo-ribbon {
  background: var(--text);
  color: var(--white);
  padding: 12px 0;
  overflow: hidden;
}
.promo-track {
  display: flex;
  gap: 60px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-size: 0.88rem;
  font-weight: 500;
}
.promo-track span { flex-shrink: 0; }
.promo-track strong { color: var(--yellow); }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ── QUICK SHOP ──────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: visible;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--pink-light);
}

.product-card__image-wrap {
  position: relative;
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: calc(var(--radius-lg) - 1px) calc(var(--radius-lg) - 1px) 0 0;
  background: var(--bg-pink);
}
.product-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__img {
  transform: scale(1.05);
}
.product-card__img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
}

.plush-mini-face {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.plush-mini-eyes {
  display: flex;
  gap: 16px;
}
.plush-mini-eye {
  width: 20px;
  height: 26px;
  background: var(--mint);
  border-radius: 50%;
  box-shadow: 0 0 12px rgba(62, 207, 196, 0.7);
  animation: glow-pulse 2s ease-in-out infinite;
}

.product-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}
.product-badge--sale {
  background: var(--yellow);
  color: var(--text);
}
.product-badge--new {
  background: var(--mint);
  color: var(--white);
}

.product-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}
.product-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.product-card__title a:hover { color: var(--pink); }

.product-card__price .price,
.product-card__price ins { color: var(--text); font-weight: 700; font-size: 1.1rem; text-decoration: none; }
.product-card__price del { color: var(--text-muted); font-size: 0.85rem; margin-right: 6px; }

.product-card__colors {
  display: flex;
  gap: 8px;
}
.color-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform var(--transition);
}
.color-dot:hover { transform: scale(1.25); }

.btn-add-cart {
  width: 100%;
  background: var(--text);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: auto;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-clip: border-box;
}

@media (hover: hover) and (pointer: fine) {
  .btn-add-cart:hover {
    background: var(--pink);
    border-color: var(--pink);
    transform: translateY(-2px);
  }
}

.btn-add-cart.loading,
.btn-add-cart.added {
  background: var(--aiomy-gradient);
  border-color: transparent;
  color: var(--white);
}
.out-of-stock-label {
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  padding: 10px;
}

/* ── PROMO BANNERS ───────────────────── */
.promo-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-banner {
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  overflow: hidden;
}
.promo-banner--pink {
  background: linear-gradient(135deg, var(--bg-pink), #FFD6E5);
  border: 1px solid var(--pink-light);
}
.promo-banner--mint {
  background: linear-gradient(135deg, var(--bg-mint), #A8EFEA);
  border: 1px solid rgba(62, 207, 196, 0.3);
}
.promo-banner__emoji { font-size: 2.5rem; flex-shrink: 0; }
.promo-banner__text {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.promo-banner__text strong {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
}
.promo-banner__text span {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.promo-banner__btn {
  background: var(--white);
  color: var(--text);
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}
.promo-banner__btn:hover {
  background: var(--pink);
  color: var(--white);
}

/* ── HOW IT WORKS ────────────────────── */
.steps-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.step-card {
  flex: 1;
  max-width: 300px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.step-number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--pink);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 800;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid var(--bg);
}
.step-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.step-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.step-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.step-arrow {
  font-size: 1.5rem;
  color: var(--pink);
  flex-shrink: 0;
  font-weight: 300;
}

/* ── AI BENEFITS ─────────────────────── */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.benefit-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--pink-light);
}
.benefit-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}
.benefit-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text);
}
.benefit-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SAFETY ──────────────────────────── */
.safety-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.safety-text h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 16px;
}
.safety-text p {
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.7;
}
.safety-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.safety-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
}
.safety-check {
  background: var(--mint);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.safety-badges {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cert-badge {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.cert-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-mint);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--mint-dark);
  flex-shrink: 0;
}
.cert-badge span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
}

/* ── REVIEWS ─────────────────────────── */
.reviews-track-wrap {
  overflow: hidden;
  padding: 10px 0;
}
.reviews-track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.reviews-track::-webkit-scrollbar { display: none; }

.review-card {
  flex-shrink: 0;
  width: 340px;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(62, 207, 196, 0.2);
  scroll-snap-align: start;
}
.review-stars {
  font-size: 1rem;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.93rem;
  line-height: 1.65;
  color: var(--text);
  margin-bottom: 16px;
  font-style: italic;
}
.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* ── FAQ ─────────────────────────────── */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq-list--wide { max-width: 760px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: border-color var(--transition), box-shadow var(--transition), background var(--transition);
}
.faq-item.is-open,
.faq-item:has(.faq-question[aria-expanded="true"]) {
  background: var(--bg-pink);
  border-color: var(--pink-light);
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: color var(--transition);
  font-family: var(--font);
  line-height: 1.4;
}
.faq-question:hover { color: var(--pink); }
.faq-question[aria-expanded="true"] {
  color: var(--pink);
  padding-bottom: 10px;
}
.faq-icon {
  font-size: 1.35rem;
  color: var(--pink);
  font-weight: 300;
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 143, 171, 0.12);
}
.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
  background: rgba(255, 143, 171, 0.22);
}
.faq-answer {
  padding: 0 24px 22px;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.faq-answer[hidden] { display: none !important; }
.faq-answer p {
  margin: 0;
  max-width: 62ch;
}

/* ── FINAL CTA ───────────────────────── */
.final-cta { text-align: center; }
.final-cta-inner { max-width: 660px; margin: 0 auto; }
.final-cta h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.3;
}
.final-cta p {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 36px;
  line-height: 1.7;
}
.final-cta-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.cta-note {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── FOOTER ──────────────────────────── */
.footer-cta-bar {
  background: var(--pink);
  padding: 24px 0;
}
.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-cta-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
}

.footer-main {
  background: var(--text);
  padding: 64px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}
.footer-brand .footer-logo .logo-text { color: var(--white); }
.footer-logo {
  display: inline-flex;
  text-decoration: none;
  max-width: 170px;
}
.site-footer .footer-logo__img,
.footer-logo .footer-logo__img {
  display: block;
  width: auto !important;
  height: 44px !important;
  max-width: 170px !important;
  max-height: 44px !important;
  object-fit: contain;
}

.benefits-grid--visual {
  align-items: stretch;
}
.benefit-card--visual {
  text-align: center;
}
.benefit-visual {
  margin: 0 auto 18px;
  max-width: 200px;
}
.benefit-visual__img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.safety-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.safety-visual__img {
  width: min(100%, 320px);
  height: auto;
  display: block;
  object-fit: contain;
}

.lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.lifestyle-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.lifestyle-card__img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.lifestyle-card figcaption {
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

/* ── Blog ─────────────────────────────── */
.container--narrow { max-width: 760px; }
.container--reading { max-width: 920px; }

.blog-hero {
  background: var(--bg-gradient);
  text-align: center;
}
.blog-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  margin: 10px 0 14px;
}
.blog-hero__lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--text-muted);
  line-height: 1.7;
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.blog-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-pink);
}
.blog-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.blog-card:hover .blog-card__img { transform: scale(1.04); }
.blog-card__placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-pink), var(--bg-mint));
}
.blog-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255,255,255,.94);
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 6px 10px;
  border-radius: 999px;
}
.blog-card__body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.blog-card__title {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
}
.blog-card__title a { color: var(--text); }
.blog-card__excerpt {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card__more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pink-dark);
}
.blog-pagination { margin-top: 40px; text-align: center; }

/* Single post */
.blog-single__header {
  background: var(--bg-gradient);
  padding: 48px 0 32px;
}
.blog-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.blog-breadcrumb a {
  color: var(--text-muted);
  font-weight: 500;
}
.blog-breadcrumb a:hover { color: var(--pink-dark); }
.blog-breadcrumb [aria-current="page"] {
  color: var(--text);
  font-weight: 600;
}
.blog-single__title {
  font-size: clamp(1.7rem, 3.8vw, 2.55rem);
  font-weight: 800;
  line-height: 1.2;
  margin: 12px 0 16px;
  letter-spacing: -0.02em;
}
.blog-single__lead {
  font-size: 1.08rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 640px;
}

.post-meta {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid rgba(45,45,58,.08);
}
.post-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--text-muted);
}
.post-meta__item a {
  color: var(--text-muted);
  font-weight: 600;
}
.post-meta__item a:hover { color: var(--pink-dark); }
.post-meta__icon {
  display: inline-flex;
  color: var(--pink);
  flex-shrink: 0;
}

.blog-single__cover-wrap {
  margin-top: -8px;
  margin-bottom: 8px;
  padding: 0 0 8px;
}
.blog-single__cover {
  margin: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--bg-pink);
}
.blog-single__cover-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.blog-single__content {
  padding: 40px 0 24px;
}
.blog-single .entry-content {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--text);
}
.blog-single .entry-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 40px 0 14px;
  letter-spacing: -0.01em;
}
.blog-single .entry-content p { margin-bottom: 18px; }
.blog-single .entry-content ul {
  margin: 0 0 22px;
  padding: 18px 20px 18px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: var(--bg-pink);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.blog-single .entry-content li {
  list-style: disc;
  color: var(--text);
}
.blog-single .entry-content .btn {
  margin-top: 8px;
}

.blog-figure {
  margin: 32px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--bg-pink);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.blog-figure img {
  display: block;
  width: 100%;
  height: auto;
}
.blog-figure figcaption {
  padding: 12px 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
  background: var(--white);
}

.blog-single__footer {
  padding: 0 0 72px;
}
.blog-single__footer-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.blog-single__updated {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text);
  font-weight: 600;
}
.blog-single__updated-label {
  color: var(--text-muted);
  font-weight: 500;
}
.blog-single__dot { color: var(--text-muted); }
.blog-single__back-btn { white-space: nowrap; }

.blog-related__title {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.blog-related__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.blog-related__card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition);
  color: inherit;
}
.blog-related__card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.blog-related__img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}
.blog-related__body { padding: 14px 16px 16px; }
.blog-related__date {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.blog-related__name {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.35;
  color: var(--text);
}

@media (max-width: 1024px) {
  .blog-grid,
  .blog-related__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid,
  .blog-related__grid { grid-template-columns: 1fr; }
  .blog-single__header { padding: 32px 0 24px; }
  .blog-single__footer-bar { flex-direction: column; align-items: flex-start; }
  .post-meta { gap: 10px 14px; }
}
.footer-brand p {
  margin-top: 14px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.65;
  max-width: 280px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--pink);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--pink); }

.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ── PAGE / GENERIC ──────────────────── */
.site-main { padding: 48px 0 72px; }
.page-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  margin-bottom: 32px;
}
.entry-content {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text);
  /* max-width: 760px; */
}
.entry-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 12px; }
.entry-content p  { margin-bottom: 20px; }
.entry-content ul { padding-left: 20px; margin-bottom: 20px; }
.entry-content li { margin-bottom: 8px; list-style: disc; }

/* ── BREADCRUMBS ─────────────────────── */
.woocommerce-breadcrumb {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding: 8px 0 0;
  line-height: 1.5;
}
.woocommerce-breadcrumb a {
  color: var(--text-muted);
  transition: color var(--transition);
}
.woocommerce-breadcrumb a:hover { color: var(--pink); }
.woocommerce-breadcrumb .sep { margin: 0 6px; }

/* ── NOTIFICATIONS ───────────────────── */
.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  border-radius: var(--radius-sm) !important;
  padding: 16px 24px !important;
  margin-bottom: 24px !important;
}
.woocommerce-message  { background: var(--bg-mint) !important; border-top: 3px solid var(--mint) !important; }
.woocommerce-error    { background: #FFF3F3 !important; border-top: 3px solid #E87474 !important; }
.woocommerce-info     { background: var(--bg-pink) !important; border-top: 3px solid var(--pink) !important; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1024px) {
  .products-grid      { grid-template-columns: repeat(2, 1fr); }
  .hero-inner         { gap: 40px; }
  .hero-bubble--lg    { width: 300px; height: 300px; }
  .lifestyle-grid     { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section-padding    { padding: 56px 0; }
  .hero-section       { padding: 48px 0 40px; }
  .hero-inner         { grid-template-columns: 1fr; text-align: center; gap: 40px; }
  .hero-desc, .hero-trust { margin-left: auto; margin-right: auto; }
  .hero-actions       { justify-content: center; }
  .hero-visual        { min-height: 240px; }
  .hero-bubble--lg    { width: 240px; height: 240px; }
  .site-header .site-logo__img,
  .site-logo .site-logo__img {
    height: 34px !important;
    max-height: 34px !important;
  }
  .lifestyle-grid     { grid-template-columns: 1fr 1fr; gap: 12px; }
  .hero-float         { display: none; }

  .products-grid      { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .steps-grid         { flex-direction: column; }
  .step-arrow         { transform: rotate(90deg); }
  .benefits-grid      { grid-template-columns: 1fr; }
  .safety-inner       { grid-template-columns: 1fr; gap: 40px; }
  .promo-banners-grid { grid-template-columns: 1fr; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    justify-content: flex-start;
    padding: 80px 32px 32px;
    box-shadow: -4px 0 24px rgba(0,0,0,0.12);
    transition: right 0.3s ease;
    z-index: 200;
  }
  .main-nav.is-open { right: 0; }
  .nav-menu { flex-direction: column; align-items: flex-start; gap: 4px; width: 100%; }
  .nav-menu li { width: 100%; }
  .nav-menu li a { display: block; width: 100%; padding: 12px 16px; }
  .nav-close { display: block; }
  .nav-toggle { display: flex; }

  .header-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid      { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card__body { padding: 14px; }
  .hero-title         { font-size: 2rem; }
  .promo-banner       { flex-wrap: wrap; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── Legal pages ───────────────────────── */
.page-hero { padding: 72px 0 48px; background: var(--bg-gradient); }
.page-hero h1 { font-size: clamp(2rem,4vw,3rem); font-weight: 800; margin: 12px 0 16px; line-height: 1.2; text-wrap: balance; }
.page-hero p  { font-size: 1.05rem; color: var(--text-muted); max-width: 640px; line-height: 1.7; }

.legal-layout { display: grid; grid-template-columns: 240px 1fr; gap: 48px; align-items: start; }
.legal-nav {
  position: sticky; top: 90px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 22px 18px; border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.legal-nav h4 { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--text-muted); margin-bottom: 14px; }
.legal-nav ul  { display: flex; flex-direction: column; gap: 4px; list-style: none; margin: 0; padding: 0; }
.legal-nav a   { font-size: .85rem; color: var(--text-muted); padding: 8px 10px; border-radius: var(--radius-xs); display: block; transition: all var(--transition); line-height: 1.35; }
.legal-nav a:hover { color: var(--pink); background: var(--bg-pink); }
.legal-content { max-width: 760px; }
.legal-section { margin-bottom: 36px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.legal-section:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.legal-section h2 { font-size: 1.2rem; font-weight: 700; margin-bottom: 16px; color: var(--text); line-height: 1.35; text-wrap: balance; }
.legal-section p  { font-size: .93rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 12px; }
.legal-section p:last-child { margin-bottom: 0; }
.legal-section ul { padding-left: 1.2em; margin: 0 0 16px; }
.legal-section li { font-size: .93rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; list-style: disc; }
.legal-section li:last-child { margin-bottom: 0; }
.legal-section strong { color: var(--text); font-weight: 600; }
.legal-section a { color: var(--pink); font-weight: 600; }

/* ── Forms (kontakt, odstąpienie) ────── */
.contact-grid { display: grid; grid-template-columns: 1fr minmax(280px, 400px); gap: 40px; align-items: start; }
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.contact-form-wrap h2 { font-size: 1.35rem; font-weight: 700; margin: 0 0 8px; }
.contact-info { display: flex; flex-direction: column; gap: 16px; }
.contact-info__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 24px 26px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
}
.contact-info__card h3 {
  font-size: 1rem; font-weight: 700; margin: 0 0 16px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.contact-detail { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 16px; }
.contact-detail:last-child { margin-bottom: 0; }
.cd-icon {
  font-size: 1.05rem; width: 36px; height: 36px; flex-shrink: 0;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--bg-pink); border-radius: 50%;
}
.contact-detail strong {
  display: block; font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .05em; color: var(--text-muted); margin-bottom: 4px;
}
.contact-detail a  { display: block; color: var(--text); font-weight: 600; font-size: .95rem; }
.contact-detail a:hover { color: var(--pink); }
.contact-detail span { display: block; font-size: .88rem; color: var(--text-muted); line-height: 1.5; }

.hours-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 14px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; gap: 12px; font-size: .9rem; }
.hours-row span { color: var(--text-muted); }
.hours-row strong { font-weight: 700; }
.hours-row--closed strong { color: var(--text-muted); font-weight: 400; }
.hours-note { font-size: .82rem; color: var(--text-muted); margin: 0; line-height: 1.5; }

.social-links-big { display: flex; flex-direction: column; gap: 10px; }
.slb-item {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 16px; border-radius: var(--radius-sm);
  font-size: .9rem; font-weight: 600; transition: all var(--transition);
}
.slb--fb { background: #E8F0FE; color: #1877F2; }
.slb--ig { background: #FDE9F4; color: #E1306C; }
.slb--tt { background: #F0F0F0; color: #010101; }
.slb-item:hover { transform: translateX(4px); }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row--2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group label { font-size: .88rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 14px 18px; border: 2px solid var(--border); border-radius: var(--radius-sm);
  font-family: var(--font); font-size: .95rem; color: var(--text); background: var(--white);
  transition: border-color var(--transition); outline: none; width: 100%;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--pink); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group--checkbox .checkbox-label { display: flex; gap: 12px; align-items: flex-start; cursor: pointer; font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.form-group--checkbox input[type=checkbox] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 1px; accent-color: var(--pink); }
.form-note { font-size: .8rem; color: var(--text-muted); margin-top: -8px; }

.withdrawal-grid {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 40px;
  align-items: start;
}
.withdrawal-info { display: flex; flex-direction: column; gap: 16px; }
.withdrawal-cta {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  background: var(--white); border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}
.withdrawal-cta h2 { font-size: 1.3rem; font-weight: 700; margin-bottom: 8px; }
.withdrawal-cta p { color: var(--text-muted); margin: 0; line-height: 1.6; }
.withdrawal-cta__actions { display: flex; gap: 12px; flex-wrap: wrap; }
.withdrawal-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
}
.withdrawal-form-wrap h2 { font-size: 1.35rem; font-weight: 700; margin: 0 0 20px; }
.withdrawal-note {
  background: var(--bg-pink);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  font-size: .88rem;
  color: var(--text-muted);
  line-height: 1.6;
  border: 1px solid var(--pink-light);
}
.withdrawal-note strong { color: var(--text); }
.btn-block { width: 100%; justify-content: center; }
.muted-copy { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 16px; }

.b2b-benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.b2b-benefit {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 24px;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
  transition: all var(--transition); height: 100%;
}
.b2b-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--pink-light); }
.b2b-icon { font-size: 2rem; margin-bottom: 12px; display: block; line-height: 1; }
.b2b-benefit h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.b2b-benefit p  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.partner-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 26px; text-align: center;
  box-shadow: var(--shadow-card); border: 1px solid var(--border); transition: all var(--transition);
  display: flex; flex-direction: column; height: 100%;
}
.partner-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.partner-card--featured { border: 2px solid var(--yellow); background: #FFFDF0; }
.partner-icon { font-size: 2.3rem; margin-bottom: 14px; display: block; line-height: 1; }
.partner-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.partner-card p  { font-size: .9rem; color: var(--text-muted); line-height: 1.6; margin: 0 0 20px; flex: 1; }
.partner-card .btn { margin-top: auto; align-self: center; }

/* ── Contact Form 7 ──────────────────── */
.aiomy-cf7 .wpcf7-form { display: flex; flex-direction: column; gap: 20px; }
.aiomy-cf7 .wpcf7-form p { margin: 0; }
.aiomy-cf7 .wpcf7-form .form-row--2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.aiomy-cf7 .wpcf7-form .form-group { display: flex; flex-direction: column; gap: 7px; }
.aiomy-cf7 .wpcf7-form label { font-size: .88rem; font-weight: 600; color: var(--text); }
.aiomy-cf7 .wpcf7-form input[type="text"],
.aiomy-cf7 .wpcf7-form input[type="email"],
.aiomy-cf7 .wpcf7-form input[type="tel"],
.aiomy-cf7 .wpcf7-form input[type="date"],
.aiomy-cf7 .wpcf7-form select,
.aiomy-cf7 .wpcf7-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.aiomy-cf7 .wpcf7-form input:focus,
.aiomy-cf7 .wpcf7-form select:focus,
.aiomy-cf7 .wpcf7-form textarea:focus { border-color: var(--pink); }
.aiomy-cf7 .wpcf7-form textarea { min-height: 140px; resize: vertical; }
.aiomy-cf7 .wpcf7-form .wpcf7-list-item { margin: 0; }
.aiomy-cf7 .wpcf7-form .wpcf7-list-item-label { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.aiomy-cf7 .wpcf7-form input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--pink); margin-right: 8px; }
.aiomy-cf7 .wpcf7-form input[type="submit"],
.aiomy-cf7 .wpcf7-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 18px 36px;
  background: var(--yellow);
  color: var(--text);
  border: 2px solid var(--yellow);
  border-radius: var(--radius-xl);
  font-size: 1.05rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: all var(--transition);
  width: auto;
}
.aiomy-cf7 .wpcf7-form input[type="submit"]:hover,
.aiomy-cf7 .wpcf7-form button[type="submit"]:hover {
  background: var(--yellow-dark);
  border-color: var(--yellow-dark);
  transform: translateY(-2px);
}
.aiomy-cf7 .wpcf7-not-valid-tip { font-size: .8rem; color: #E87474; margin-top: 4px; }
.aiomy-cf7 .wpcf7-response-output {
  margin: 0 !important;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  border: none !important;
}
.aiomy-cf7 .wpcf7 form.sent .wpcf7-response-output {
  background: var(--bg-mint);
  color: var(--mint-dark);
}
.aiomy-cf7 .wpcf7 form.invalid .wpcf7-response-output,
.aiomy-cf7 .wpcf7 form.failed .wpcf7-response-output {
  background: #FFF3F3;
  color: #C44;
}
.aiomy-cf7--missing {
  background: var(--bg-pink);
  border-radius: var(--radius-sm);
  padding: 20px;
  font-size: .9rem;
}

@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .withdrawal-grid { grid-template-columns: 1fr; }
  .b2b-benefits { grid-template-columns: repeat(2, 1fr); }
  .partner-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .legal-layout { grid-template-columns: 1fr; gap: 28px; }
  .legal-nav { position: static; }
  .form-row--2 { grid-template-columns: 1fr; }
  .aiomy-cf7 .wpcf7-form .form-row--2 { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 24px 20px; }
  .b2b-benefits { grid-template-columns: 1fr; }
  .withdrawal-cta { flex-direction: column; align-items: flex-start; }
  .faq-question { padding: 18px 18px; font-size: .95rem; }
  .faq-answer { padding: 0 18px 18px; }
  .page-hero { padding: 56px 0 36px; }
}

/* AIOMY — czytelny gradient wyróżnień na pasku */
body.home .promo-ribbon .promo-track .promo-item strong {
  display: inline-block !important;
  font-weight: 800 !important;

  background-color: transparent !important;
  background-image: linear-gradient(
    118deg,
    #ff5ca8 0%,
    #ff8fc5 52%,
    #c7a7ff 100%
  ) !important;

  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 100% 100% !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
}
/*
 * Mobilny pasek sterowany rzeczywistą prędkością.
 * Odległość i czas są obliczane automatycznie przez skrypt.
 */
@keyframes aiomyPromoBySpeed {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(var(--promo-shift), 0, 0);
  }
}

/* ════════════════════════════════════════════════════════════════════════
   AIOMY — POJEDYNCZA KARTA PRODUKTU V36
   Wyłącznie body.aiomy-single-product-v36. Strona główna, katalog,
   nagłówek i pozostałe podstrony nie otrzymują żadnej z poniższych reguł.
════════════════════════════════════════════════════════════════════════ */

/* Jedno, ciągłe tło — identyczna receptura jak w głównej części AIOMY. */
html body.aiomy-single-product-v36 {
  background-color: var(--aiomy-site-bg-color) !important;
  background-image: var(--aiomy-site-bg-image) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  overflow-x: clip;
}

body.aiomy-single-product-v36 main.wc-main,
body.aiomy-single-product-v36 main.wc-main > .container,
body.aiomy-single-product-v36 .woocommerce-notices-wrapper,
body.aiomy-single-product-v36 div.product {
  background: transparent !important;
}

body.aiomy-single-product-v36 main.wc-main {
  min-height: 70vh;
  padding: clamp(34px, 5vw, 68px) 0 clamp(76px, 8vw, 112px) !important;
}

/* Dokładnie bazowe 1200 px strony — bez osobnego, szerszego wrappera. */
body.aiomy-single-product-v36 main.wc-main > .container {
  width: 100%;
  max-width: var(--max-w) !important;
  margin-inline: auto;
  padding-inline: 24px;
}

body.aiomy-single-product-v36 .woocommerce-breadcrumb,
body.aiomy-single-product-v36 nav.woocommerce-breadcrumb {
  display: none !important;
}

/* Reset domyślnego dwukolumnowego układu WooCommerce. */
body.aiomy-single-product-v36 div.product {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.aiomy-single-product-v36 div.product::before,
body.aiomy-single-product-v36 div.product::after {
  content: none !important;
  display: none !important;
}

body.aiomy-single-product-v36 div.product > .woocommerce-product-gallery,
body.aiomy-single-product-v36 div.product > .summary.entry-summary,
body.aiomy-single-product-v36 div.product > .woocommerce-tabs,
body.aiomy-single-product-v36 div.product > .related.products,
body.aiomy-single-product-v36 div.product > .upsells.products {
  display: none !important;
}

body.aiomy-single-product-v36 .aiomy-single,
body.aiomy-single-product-v36 .aiomy-single *,
body.aiomy-single-product-v36 .aiomy-single *::before,
body.aiomy-single-product-v36 .aiomy-single *::after {
  box-sizing: border-box;
}

body.aiomy-single-product-v36 .aiomy-single {
  --single-surface: rgba(255, 255, 255, 0.94);
  --single-border: rgba(255, 255, 255, 0.92);
  --single-line: rgba(45, 45, 58, 0.105);
  --single-shadow: 0 18px 54px rgba(45, 45, 58, 0.09);
  width: 100%;
  color: var(--text);
}

body.aiomy-single-product-v36 .aiomy-single__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.62fr) minmax(322px, 0.78fr);
  grid-template-areas:
    "product purchase"
    "related purchase";
  gap: 24px;
  align-items: start;
}

body.aiomy-single-product-v36 .aiomy-single__product-panel,
body.aiomy-single-product-v36 .aiomy-single__purchase-card,
body.aiomy-single-product-v36 .aiomy-single__related,
body.aiomy-single-product-v36 .aiomy-single__section {
  border: 1px solid var(--single-border);
  background: var(--single-surface);
  box-shadow: var(--single-shadow);
}

body.aiomy-single-product-v36 .aiomy-single__product-panel {
  grid-area: product;
  min-width: 0;
  padding: clamp(22px, 3vw, 38px);
  border-radius: 30px;
}

body.aiomy-single-product-v36 .aiomy-single__product-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: clamp(22px, 3vw, 34px);
}

body.aiomy-single-product-v36 .aiomy-single__product-header h1 {
  max-width: 22ch;
  margin: 0;
  color: var(--text);
  font-family: var(--font);
  font-size: clamp(1.7rem, 3.1vw, 2.65rem);
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

/* Oceny: rzeczywista średnia i rzeczywista liczba recenzji. */
body.aiomy-single-product-v36 .aiomy-single__rating {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  min-height: 28px;
  color: var(--text-muted);
  font-size: 0.88rem;
}

body.aiomy-single-product-v36 .aiomy-single__rating > strong {
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 750;
}

body.aiomy-single-product-v36 .aiomy-single__rating > a {
  border-bottom: 1px solid rgba(45, 45, 58, 0.24);
  color: var(--text);
  font-weight: 600;
  transition: border-color var(--transition), color var(--transition);
}

body.aiomy-single-product-v36 .aiomy-single__rating > a:hover,
body.aiomy-single-product-v36 .aiomy-single__rating > a:focus-visible {
  border-color: #f04d91;
  color: #e94187;
}

body.aiomy-single-product-v36 .aiomy-single__stars {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: 6.1em;
  height: 1.25em;
  color: #ded8df;
  font-size: 0.93rem;
  line-height: 1.25;
  letter-spacing: 0.09em;
  white-space: nowrap;
}

body.aiomy-single-product-v36 .aiomy-single__stars > span:first-child {
  color: #ded8df;
}

body.aiomy-single-product-v36 .aiomy-single__stars > span:nth-child(2) {
  position: absolute;
  inset: 0 auto auto 0;
  overflow: hidden;
  width: var(--aiomy-single-rating, 0%);
  color: #ffb321;
  white-space: nowrap;
}

body.aiomy-single-product-v36 .aiomy-single__stars--empty {
  color: #ded8df;
}

/* Galeria: contain zamiast crop; brak pustych miniaturek. */
body.aiomy-single-product-v36 .aiomy-single__gallery {
  display: block;
  width: 100%;
  margin: 0;
}

body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(360px, 49vw, 585px);
  max-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(45, 45, 58, 0.07);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.68);
}

body.aiomy-single-product-v36 .aiomy-single__main-image-wrap::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: rgba(255, 255, 255, 0.38);
  opacity: 0;
  transition: opacity 160ms ease;
}

body.aiomy-single-product-v36 .aiomy-single__main-image-wrap.is-changing::after {
  opacity: 1;
}

body.aiomy-single-product-v36 .aiomy-single__main-image-wrap .product-badge {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  background: #ffd166;
  color: #242331;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

body.aiomy-single-product-v36 .aiomy-single__main-image,
body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
  width: 100% !important;
  height: 100% !important;
  max-height: 620px;
  margin: 0 !important;
  padding: clamp(8px, 1.4vw, 18px);
  object-fit: contain !important;
  object-position: center;
  border-radius: 22px;
  transform: none !important;
}

body.aiomy-single-product-v36 .aiomy-single__thumbnails {
  display: flex;
  gap: 10px;
  width: 100%;
  margin-top: 14px;
  padding: 2px 2px 6px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(240, 77, 145, 0.42) transparent;
}

body.aiomy-single-product-v36 .aiomy-single__thumbnail {
  position: relative;
  flex: 0 0 82px;
  width: 82px;
  height: 82px;
  padding: 3px;
  overflow: hidden;
  border: 2px solid rgba(45, 45, 58, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: none;
  transition: border-color var(--transition), transform var(--transition);
}

body.aiomy-single-product-v36 .aiomy-single__thumbnail::before {
  position: absolute;
  z-index: 0;
  inset: -2px;
  border-radius: inherit;
  background: var(--aiomy-gradient);
  content: "";
  opacity: 0;
}

body.aiomy-single-product-v36 .aiomy-single__thumbnail img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 11px;
  background: #fff;
  object-fit: contain;
}

body.aiomy-single-product-v36 .aiomy-single__thumbnail.is-active {
  border-color: transparent;
}

body.aiomy-single-product-v36 .aiomy-single__thumbnail.is-active::before {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-single-product-v36 .aiomy-single__thumbnail:not(.is-active):hover {
    border-color: rgba(240, 77, 145, 0.55);
    transform: translateY(-2px);
  }
}

/* Prawa kolumna: jeden panel, bez dodatkowych bocznych kart. */
body.aiomy-single-product-v36 .aiomy-single__purchase-panel {
  grid-area: purchase;
  min-width: 0;
}

body.aiomy-single-product-v36 .aiomy-single__purchase-card {
  position: sticky;
  top: 108px;
  width: 100%;
  padding: clamp(22px, 2.4vw, 30px);
  border-radius: 28px;
}

body.admin-bar.aiomy-single-product-v36 .aiomy-single__purchase-card {
  top: 140px;
}

body.aiomy-single-product-v36 .aiomy-single__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--text) !important;
  font-size: clamp(2rem, 3.1vw, 2.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body.aiomy-single-product-v36 .aiomy-single__price .amount,
body.aiomy-single-product-v36 .aiomy-single__price bdi,
body.aiomy-single-product-v36 .aiomy-single__price ins {
  color: var(--text) !important;
  font-weight: 800;
  text-decoration: none;
}

body.aiomy-single-product-v36 .aiomy-single__price del,
body.aiomy-single-product-v36 .aiomy-single__price del .amount,
body.aiomy-single-product-v36 .aiomy-single__price del bdi {
  color: var(--text-muted) !important;
  font-size: 0.92rem;
  font-weight: 600;
  opacity: 0.82;
}

body.aiomy-single-product-v36 .aiomy-single__primary-information {
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--single-line);
}

body.aiomy-single-product-v36 .aiomy-single__information-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 48px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 14px;
  color: var(--text);
  transition: background-color var(--transition), border-color var(--transition);
}

body.aiomy-single-product-v36 .aiomy-single__information-row.is-link:hover,
body.aiomy-single-product-v36 .aiomy-single__information-row.is-link:focus-visible {
  border-color: rgba(240, 77, 145, 0.18);
  background: rgba(255, 244, 249, 0.76);
  outline: 0;
}

body.aiomy-single-product-v36 .aiomy-single__information-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, rgba(240, 77, 145, 0.13), rgba(135, 101, 246, 0.11));
  color: #e94187;
}

body.aiomy-single-product-v36 .aiomy-single__information-icon svg,
body.aiomy-single-product-v36 .aiomy-single__policy-links svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.aiomy-single-product-v36 .aiomy-single__information-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

body.aiomy-single-product-v36 .aiomy-single__information-copy strong {
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.35;
}

body.aiomy-single-product-v36 .aiomy-single__information-copy small {
  overflow: hidden;
  color: var(--text-muted);
  font-size: 0.72rem;
  line-height: 1.4;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.aiomy-single-product-v36 .aiomy-single__information-arrow {
  color: #e94187;
  font-size: 1rem;
  font-weight: 700;
}

body.aiomy-single-product-v36 .aiomy-single__short-description {
  margin: 16px 2px 0;
  color: var(--text-muted);
  font-size: 0.82rem;
  line-height: 1.65;
}

body.aiomy-single-product-v36 .aiomy-single__short-description > :last-child {
  margin-bottom: 0;
}

/* Natywny formularz WooCommerce — zachowuje logikę wariantów i stanów. */
body.aiomy-single-product-v36 .aiomy-single__native-cart {
  margin-top: 18px;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart,
body.aiomy-single-product-v36 .aiomy-single__native-cart .woocommerce-variation-add-to-cart {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations {
  display: block;
  width: 100%;
  margin: 0 0 16px !important;
  border: 0 !important;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations tbody,
body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations tr,
body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations th,
body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations td {
  display: block;
  width: 100%;
  padding: 0 !important;
  border: 0 !important;
  text-align: left;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations tr + tr {
  margin-top: 12px;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations th.label {
  margin-bottom: 6px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 700;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations select {
  width: 100%;
  min-height: 46px;
  margin: 0 !important;
  padding: 9px 40px 9px 13px;
  border: 1px solid rgba(45, 45, 58, 0.15);
  border-radius: 13px;
  background-color: #fff;
  color: var(--text);
  font: 600 0.82rem/1.3 var(--font);
  box-shadow: none;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart table.variations select:focus-visible {
  border-color: #ec5995;
  outline: 3px solid rgba(240, 77, 145, 0.14);
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .reset_variations {
  display: inline-block;
  margin-top: 7px;
  color: #d93e7e;
  font-size: 0.72rem;
  font-weight: 650;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .woocommerce-variation {
  margin: 0 0 10px;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .woocommerce-variation-price {
  display: none;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .woocommerce-variation-availability {
  color: var(--text-muted);
  font-size: 0.76rem;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .stock {
  margin: 0;
  color: #247d72;
  font-weight: 650;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity {
  float: none !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px 52px 42px;
  align-items: center;
  width: 100% !important;
  min-width: 0;
  margin: 0 !important;
  border: 0 !important;
}

body.aiomy-single-product-v36 .aiomy-single__quantity-label {
  padding-right: 10px;
  color: var(--text);
  font-size: 0.78rem;
  font-weight: 750;
}

body.aiomy-single-product-v36 .aiomy-single__quantity-step,
body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity .qty {
  width: 100% !important;
  height: 42px !important;
  margin: 0 !important;
  border: 1px solid rgba(45, 45, 58, 0.14) !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--text) !important;
  font: 750 0.86rem/1 var(--font) !important;
  text-align: center;
  box-shadow: none !important;
}

body.aiomy-single-product-v36 .aiomy-single__quantity-step--minus {
  border-radius: 12px 0 0 12px !important;
}

body.aiomy-single-product-v36 .aiomy-single__quantity-step--plus {
  border-radius: 0 12px 12px 0 !important;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity .qty {
  margin-inline: -1px !important;
  -moz-appearance: textfield;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity .qty::-webkit-inner-spin-button,
body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity .qty::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

body.aiomy-single-product-v36 .aiomy-single__quantity-step:disabled {
  color: #c9c6ce !important;
  cursor: not-allowed;
}

body.aiomy-single-product-v36 .aiomy-single__quantity-step:not(:disabled):hover,
body.aiomy-single-product-v36 .aiomy-single__quantity-step:not(:disabled):focus-visible {
  position: relative;
  z-index: 1;
  border-color: #ec5995 !important;
  color: #e94187 !important;
  outline: 0;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button,
body.aiomy-single-product-v36 .aiomy-single__buy-now {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  min-height: 50px;
  margin: 0 !important;
  padding: 13px 18px !important;
  border: 0 !important;
  border-radius: 15px !important;
  color: #fff !important;
  font: 750 0.82rem/1.2 var(--font) !important;
  letter-spacing: 0.01em;
  text-align: center;
  text-transform: uppercase;
  box-shadow: none !important;
  filter: none !important;
  transition: transform var(--transition), opacity var(--transition) !important;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button,
body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button:hover,
body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button:focus,
body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button:active {
  background: #2d2d3a !important;
  background-image: none !important;
  color: #fff !important;
}

body.aiomy-single-product-v36 .aiomy-single__buy-now,
body.aiomy-single-product-v36 .aiomy-single__buy-now:hover,
body.aiomy-single-product-v36 .aiomy-single__buy-now:focus,
body.aiomy-single-product-v36 .aiomy-single__buy-now:active {
  margin-top: 10px !important;
  background: var(--aiomy-gradient) !important;
  background-image: var(--aiomy-gradient) !important;
  color: #fff !important;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button:not(:disabled):hover,
  body.aiomy-single-product-v36 .aiomy-single__buy-now:not(:disabled):hover {
    transform: translateY(-1px);
  }
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button:focus-visible,
body.aiomy-single-product-v36 .aiomy-single__buy-now:focus-visible {
  outline: 3px solid rgba(240, 77, 145, 0.24) !important;
  outline-offset: 3px;
}

body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button:disabled,
body.aiomy-single-product-v36 .aiomy-single__native-cart .single_add_to_cart_button.disabled,
body.aiomy-single-product-v36 .aiomy-single__buy-now:disabled {
  cursor: not-allowed;
  opacity: 0.54;
}

body.aiomy-single-product-v36 .aiomy-single__buy-now.is-busy::after {
  width: 15px;
  height: 15px;
  margin-left: 9px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-top-color: #fff;
  border-radius: 50%;
  content: "";
  animation: aiomy-single-spin 700ms linear infinite;
}

@keyframes aiomy-single-spin {
  to { transform: rotate(360deg); }
}

body.aiomy-single-product-v36 .aiomy-single__buy-error {
  margin: 9px 2px 0;
  color: #b82e63;
  font-size: 0.74rem;
  font-weight: 650;
  line-height: 1.5;
}

body.aiomy-single-product-v36 .aiomy-single__policy-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--single-line);
}

body.aiomy-single-product-v36 .aiomy-single__policy-links > a,
body.aiomy-single-product-v36 .aiomy-single__policy-links > .aiomy-single__policy-static {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px;
  border: 1px solid rgba(45, 45, 58, 0.08);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  font-size: 0.67rem;
  font-weight: 650;
  line-height: 1.3;
}

body.aiomy-single-product-v36 .aiomy-single__policy-links > a > span:first-child,
body.aiomy-single-product-v36 .aiomy-single__policy-links > .aiomy-single__policy-static > span:first-child {
  display: grid;
  place-items: center;
  color: #df4786;
}

body.aiomy-single-product-v36 .aiomy-single__policy-links > a > small {
  color: #df4786;
  font-size: 0.82rem;
}

body.aiomy-single-product-v36 .aiomy-single__policy-links > a:hover,
body.aiomy-single-product-v36 .aiomy-single__policy-links > a:focus-visible {
  border-color: rgba(240, 77, 145, 0.35);
  background: #fff7fa;
  outline: 0;
}

/* Podobne oferty znajdują się pod lewą częścią, nie pod panelem zakupu. */
body.aiomy-single-product-v36 .aiomy-single__related {
  grid-area: related;
  min-width: 0;
  padding: clamp(20px, 2.6vw, 30px);
  border-radius: 26px;
}

body.aiomy-single-product-v36 .aiomy-single__related h2,
body.aiomy-single-product-v36 .aiomy-single__section h2 {
  margin: 0 0 20px;
  color: var(--text);
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.035em;
  text-transform: none;
}

body.aiomy-single-product-v36 .aiomy-single__related h2 span,
body.aiomy-single-product-v36 .aiomy-single__description h2 span {
  color: #ee4f91;
  background: var(--aiomy-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.aiomy-single-product-v36 .aiomy-single__related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.aiomy-single-product-v36 .aiomy-single__related-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(45, 45, 58, 0.08);
  border-radius: 18px;
  background: #fff;
  box-shadow: none;
  transition: border-color var(--transition), transform var(--transition);
}

body.aiomy-single-product-v36 .aiomy-single__related-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
}

body.aiomy-single-product-v36 .aiomy-single__related-image {
  display: grid;
  place-items: center;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #fff;
}

body.aiomy-single-product-v36 .aiomy-single__related-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 260ms ease;
}

body.aiomy-single-product-v36 .aiomy-single__related-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 11px;
}

body.aiomy-single-product-v36 .aiomy-single__related-copy strong {
  display: -webkit-box;
  overflow: hidden;
  color: var(--text);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

body.aiomy-single-product-v36 .aiomy-single__related-copy small,
body.aiomy-single-product-v36 .aiomy-single__related-copy .amount {
  margin-top: auto;
  color: var(--text) !important;
  font-size: 0.76rem;
  font-weight: 800;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-single-product-v36 .aiomy-single__related-card:hover {
    border-color: rgba(240, 77, 145, 0.3);
    transform: translateY(-2px);
  }

  body.aiomy-single-product-v36 .aiomy-single__related-card:hover img {
    transform: scale(1.025);
  }
}

/* Specyfikacja, opis i opinie: oddzielne, czytelne sekcje bez białej ramy strony. */
body.aiomy-single-product-v36 .aiomy-single__section {
  width: 100%;
  margin-top: 24px;
  padding: clamp(24px, 4vw, 44px);
  border-radius: 28px;
}

body.aiomy-single-product-v36 .aiomy-single__specification-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 32px;
  margin: 0;
}

body.aiomy-single-product-v36 .aiomy-single__specification-list > div {
  display: grid;
  grid-template-columns: minmax(112px, 0.8fr) minmax(0, 1.2fr);
  gap: 18px;
  align-items: baseline;
  min-width: 0;
  padding: 14px 0;
  border-bottom: 1px solid var(--single-line);
}

body.aiomy-single-product-v36 .aiomy-single__specification-list dt {
  color: var(--text-muted);
  font-size: 0.8rem;
  font-weight: 600;
}

body.aiomy-single-product-v36 .aiomy-single__specification-list dd {
  min-width: 0;
  margin: 0;
  color: var(--text);
  font-size: 0.83rem;
  font-weight: 650;
  overflow-wrap: anywhere;
}

body.aiomy-single-product-v36 .aiomy-single__description-content {
  max-width: 900px;
  color: var(--text-muted);
  font-size: 0.96rem;
  line-height: 1.78;
}

body.aiomy-single-product-v36 .aiomy-single__description-content > * + * {
  margin-top: 1em;
}

body.aiomy-single-product-v36 .aiomy-single__description-content h2,
body.aiomy-single-product-v36 .aiomy-single__description-content h3,
body.aiomy-single-product-v36 .aiomy-single__description-content h4,
body.aiomy-single-product-v36 .aiomy-single__description-content strong {
  color: var(--text);
}

body.aiomy-single-product-v36 .aiomy-single__description-content ul,
body.aiomy-single-product-v36 .aiomy-single__description-content ol {
  padding-left: 1.35em;
  list-style-position: outside;
}

body.aiomy-single-product-v36 .aiomy-single__description-content ul {
  list-style: disc;
}

body.aiomy-single-product-v36 .aiomy-single__description-content ol {
  list-style: decimal;
}

body.aiomy-single-product-v36 .aiomy-single__description-content img {
  max-width: 100%;
  height: auto;
  border-radius: 18px;
}

body.aiomy-single-product-v36 .aiomy-single__reviews-section #reviews,
body.aiomy-single-product-v36 .aiomy-single__reviews-section #comments,
body.aiomy-single-product-v36 .aiomy-single__reviews-section #review_form_wrapper {
  width: 100%;
  margin: 0;
}

body.aiomy-single-product-v36 .aiomy-single__reviews-section #comments + #review_form_wrapper {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid var(--single-line);
}

body.aiomy-single-product-v36 .aiomy-single__reviews-section .commentlist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
}

body.aiomy-single-product-v36 .aiomy-single__reviews-section .commentlist > li {
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid var(--single-line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
}

body.aiomy-single-product-v36 .aiomy-single__reviews-section input:not([type="checkbox"]):not([type="radio"]),
body.aiomy-single-product-v36 .aiomy-single__reviews-section textarea {
  width: 100%;
  padding: 11px 13px;
  border: 1px solid rgba(45, 45, 58, 0.15);
  border-radius: 12px;
  font: inherit;
}

body.aiomy-single-product-v36 .aiomy-single__reviews-section .submit {
  min-height: 46px;
  padding: 11px 20px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  font-weight: 750 !important;
  box-shadow: none !important;
}

/* Czytelne komunikaty WooCommerce, nadal we wspólnym kontenerze 1200 px. */
body.aiomy-single-product-v36 .woocommerce-notices-wrapper:not(:empty) {
  margin-bottom: 18px;
}

body.aiomy-single-product-v36 .woocommerce-message,
body.aiomy-single-product-v36 .woocommerce-info,
body.aiomy-single-product-v36 .woocommerce-error {
  margin: 0 0 16px !important;
  padding: 14px 18px 14px 48px !important;
  border: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 15px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--text) !important;
  box-shadow: 0 10px 28px rgba(45, 45, 58, 0.07);
}

/* Tablet: panel zakupowy zachowuje czytelność, ale nie rozszerza kontenera. */
@media (max-width: 1024px) {
  body.aiomy-single-product-v36 .aiomy-single__layout {
    grid-template-columns: minmax(0, 1.42fr) minmax(310px, 0.78fr);
    gap: 18px;
  }

  body.aiomy-single-product-v36 .aiomy-single__product-panel,
  body.aiomy-single-product-v36 .aiomy-single__purchase-card,
  body.aiomy-single-product-v36 .aiomy-single__related {
    border-radius: 24px;
  }

  body.aiomy-single-product-v36 .aiomy-single__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aiomy-single-product-v36 .aiomy-single__related-card > a {
    flex-direction: row;
  }

  body.aiomy-single-product-v36 .aiomy-single__related-image {
    flex: 0 0 92px;
    width: 92px;
    aspect-ratio: 1 / 1;
  }
}

/* Telefon: dokładna kolejność z briefu i zero poziomego przewijania. */
@media (max-width: 768px) {
  html body.aiomy-single-product-v36 {
    background-attachment: scroll !important;
    overflow-x: hidden;
  }

  body.aiomy-single-product-v36 main.wc-main {
    padding: 22px 0 72px !important;
  }

  body.aiomy-single-product-v36 main.wc-main > .container {
    max-width: var(--max-w) !important;
    padding-inline: 14px;
  }

  body.aiomy-single-product-v36 .aiomy-single,
  body.aiomy-single-product-v36 .aiomy-single__layout,
  body.aiomy-single-product-v36 .aiomy-single__product-panel,
  body.aiomy-single-product-v36 .aiomy-single__purchase-panel,
  body.aiomy-single-product-v36 .aiomy-single__purchase-card,
  body.aiomy-single-product-v36 .aiomy-single__related,
  body.aiomy-single-product-v36 .aiomy-single__section {
    min-width: 0;
    max-width: 100%;
  }

  body.aiomy-single-product-v36 .aiomy-single__layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "product"
      "purchase"
      "related";
    gap: 14px;
  }

  body.aiomy-single-product-v36 .aiomy-single__product-panel {
    padding: 20px;
    border-radius: 24px;
  }

  body.aiomy-single-product-v36 .aiomy-single__product-header {
    gap: 8px;
    margin-bottom: 18px;
  }

  body.aiomy-single-product-v36 .aiomy-single__product-header h1 {
    max-width: none;
    font-size: clamp(1.5rem, 7vw, 2rem);
  }

  body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    min-height: 0;
    height: min(82vw, 500px);
    max-height: 500px;
    border-radius: 20px;
  }

  body.aiomy-single-product-v36 .aiomy-single__main-image,
  body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
    max-height: 500px;
    padding: 8px;
    border-radius: 18px;
  }

  body.aiomy-single-product-v36 .aiomy-single__thumbnail {
    flex-basis: 72px;
    width: 72px;
    height: 72px;
    border-radius: 14px;
  }

  body.aiomy-single-product-v36 .aiomy-single__purchase-card {
    position: static;
    top: auto;
    padding: 22px 20px;
    border-radius: 24px;
  }

  body.admin-bar.aiomy-single-product-v36 .aiomy-single__purchase-card {
    top: auto;
  }

  body.aiomy-single-product-v36 .aiomy-single__price {
    margin-bottom: 14px;
    font-size: clamp(2rem, 10vw, 2.55rem);
  }

  body.aiomy-single-product-v36 .aiomy-single__policy-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aiomy-single-product-v36 .aiomy-single__related {
    padding: 20px;
    border-radius: 24px;
  }

  body.aiomy-single-product-v36 .aiomy-single__related-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.aiomy-single-product-v36 .aiomy-single__related-card > a {
    flex-direction: column;
  }

  body.aiomy-single-product-v36 .aiomy-single__related-image {
    width: 100%;
    aspect-ratio: 1 / 1;
  }

  body.aiomy-single-product-v36 .aiomy-single__related-copy strong {
    font-size: 0.7rem;
  }

  body.aiomy-single-product-v36 .aiomy-single__section {
    margin-top: 14px;
    padding: 22px 20px;
    border-radius: 24px;
  }

  body.aiomy-single-product-v36 .aiomy-single__specification-list {
    grid-template-columns: minmax(0, 1fr);
  }

  body.aiomy-single-product-v36 .aiomy-single__specification-list > div {
    grid-template-columns: minmax(92px, 0.8fr) minmax(0, 1.2fr);
    gap: 14px;
  }
}

@media (max-width: 420px) {
  body.aiomy-single-product-v36 main.wc-main > .container {
    padding-inline: 10px;
  }

  body.aiomy-single-product-v36 .aiomy-single__product-panel,
  body.aiomy-single-product-v36 .aiomy-single__purchase-card,
  body.aiomy-single-product-v36 .aiomy-single__related,
  body.aiomy-single-product-v36 .aiomy-single__section {
    padding: 18px 16px;
    border-radius: 21px;
  }

  body.aiomy-single-product-v36 .aiomy-single__rating {
    gap: 6px;
    font-size: 0.76rem;
  }

  body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    height: min(86vw, 390px);
  }

  body.aiomy-single-product-v36 .aiomy-single__information-row {
    padding-inline: 4px;
  }

  body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity {
    grid-template-columns: minmax(0, 1fr) 40px 48px 40px;
  }

  body.aiomy-single-product-v36 .aiomy-single__policy-links > a,
  body.aiomy-single-product-v36 .aiomy-single__policy-links > .aiomy-single__policy-static {
    grid-template-columns: 20px minmax(0, 1fr) auto;
    padding: 7px 6px;
    font-size: 0.62rem;
  }

  body.aiomy-single-product-v36 .aiomy-single__related h2,
  body.aiomy-single-product-v36 .aiomy-single__section h2 {
    margin-bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.aiomy-single-product-v36 .aiomy-single *,
  body.aiomy-single-product-v36 .aiomy-single *::before,
  body.aiomy-single-product-v36 .aiomy-single *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media screen and (max-width: 1024px) {
  html body .promo-ribbon.promo-speed-ready .promo-track {
    animation: aiomyPromoBySpeed
      var(--promo-duration)
      linear
      infinite !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .promo-ribbon.promo-speed-ready .promo-track {
    animation-play-state: paused !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — SKLEP V23
   Autorska karta produktu i zintegrowany nagłówek
════════════════════════════════════════ */

/* Karta: jeden własny komponent, bez starych elementów WooCommerce. */
body.aiomy-shop-v22 .wc-main ul.products > li.product {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}

body.aiomy-shop-v22 .aiomy-catalog-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(255, 255, 255, 0.94);
  border-radius: 25px;
  box-shadow: 0 12px 34px rgba(45, 45, 58, 0.075);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.aiomy-shop-v22 .aiomy-catalog-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.68);
}

body.aiomy-shop-v22 .aiomy-catalog-card__image {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  transition: transform 420ms ease;
}

body.aiomy-shop-v22 .aiomy-catalog-card__content {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: 20px;
}

body.aiomy-shop-v22 .aiomy-catalog-card__title {
  min-height: 2.7em;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--text) !important;
  font-size: 0.98rem !important;
  font-weight: 700 !important;
  line-height: 1.35 !important;
  text-wrap: balance;
}

body.aiomy-shop-v22 .aiomy-catalog-card__title a {
  color: inherit !important;
}

body.aiomy-shop-v22 .aiomy-catalog-card__price,
body.aiomy-shop-v22 .aiomy-catalog-card__price .amount,
body.aiomy-shop-v22 .aiomy-catalog-card__price ins,
body.aiomy-shop-v22 .aiomy-catalog-card__price bdi {
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  font-size: 1.24rem !important;
  font-weight: 800 !important;
  line-height: 1.2;
  text-decoration: none !important;
}

body.aiomy-shop-v22 .aiomy-catalog-card__price del,
body.aiomy-shop-v22 .aiomy-catalog-card__price del .amount,
body.aiomy-shop-v22 .aiomy-catalog-card__price del bdi {
  color: var(--text-muted) !important;
  -webkit-text-fill-color: var(--text-muted) !important;
  font-size: 0.82rem !important;
  font-weight: 500 !important;
  margin-right: 5px;
}

body.aiomy-shop-v22 .aiomy-catalog-card__social-proof {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px 12px;
  color: var(--text-muted);
  font-size: 0.75rem;
  line-height: 1.35;
}

body.aiomy-shop-v22 .aiomy-catalog-card__rating {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

body.aiomy-shop-v22 .aiomy-catalog-card__rating-value {
  color: var(--text);
  font-weight: 700;
}

body.aiomy-shop-v22 .aiomy-catalog-card__stars {
  color: #f5b700;
  font-size: 0.92rem;
}

body.aiomy-shop-v22 .aiomy-catalog-card__rating a {
  color: var(--text-muted);
  text-decoration: underline;
  text-decoration-color: rgba(123, 123, 143, 0.35);
  text-underline-offset: 2px;
}

body.aiomy-shop-v22 .aiomy-catalog-card__rating--empty {
  color: #8765f6;
  font-weight: 700;
}

body.aiomy-shop-v22 .aiomy-catalog-card__purchases {
  color: var(--text);
  font-weight: 600;
}

body.aiomy-shop-v22 .aiomy-catalog-card__benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(45, 45, 58, 0.08);
}

body.aiomy-shop-v22 .aiomy-catalog-card__benefits span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-muted);
  font-size: 0.73rem;
  font-weight: 500;
}

body.aiomy-shop-v22 .aiomy-catalog-card__benefits svg,
body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions svg,
body.aiomy-shop-v22 .aiomy-catalog-card__secondary-actions svg {
  flex: 0 0 auto;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  gap: 9px;
  margin-top: auto;
  padding-top: 4px;
}

body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions .btn,
body.aiomy-shop-v22 .aiomy-catalog-card__cart,
body.aiomy-shop-v22 .aiomy-catalog-card__buy-now,
body.aiomy-shop-v22 .aiomy-catalog-card__details {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  width: auto !important;
  min-width: 0 !important;
  min-height: 46px;
  margin: 0 !important;
  padding: 10px 13px !important;
  border: 0 !important;
  border-radius: 14px !important;
  font-family: var(--font);
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center;
  white-space: nowrap;
}

body.aiomy-shop-v22 .aiomy-catalog-card__cart {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: var(--text) !important;
  box-shadow: none !important;
}

body.aiomy-shop-v22 .aiomy-catalog-card__buy-now {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%) !important;
  box-shadow: 0 10px 22px rgba(135, 101, 246, 0.2) !important;
}

body.aiomy-shop-v22 .aiomy-catalog-card__details {
  grid-column: 1 / -1;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: var(--text) !important;
}

body.aiomy-shop-v22 .aiomy-catalog-card__secondary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

body.aiomy-shop-v22 .aiomy-catalog-card__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 0;
  min-height: 40px;
  padding: 8px 9px;
  overflow: hidden;
  color: var(--text-muted);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(45, 45, 58, 0.12);
  border-radius: 12px;
  box-shadow: none;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: color 180ms ease, border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.aiomy-shop-v22 .aiomy-catalog-card__secondary span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.aiomy-shop-v22 .aiomy-catalog-card__secondary.is-selected,
body.aiomy-shop-v22 .aiomy-catalog-card__secondary[aria-pressed="true"] {
  color: #ffffff;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%);
  border-color: transparent;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-shop-v22 .aiomy-catalog-card:hover {
    transform: translateY(-5px);
    border-color: rgba(135, 101, 246, 0.17);
    box-shadow: 0 20px 46px rgba(135, 101, 246, 0.13);
  }

  body.aiomy-shop-v22 .aiomy-catalog-card:hover .aiomy-catalog-card__image {
    transform: scale(1.025);
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__cart:hover,
  body.aiomy-shop-v22 .aiomy-catalog-card__buy-now:hover {
    transform: translateY(-2px);
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__secondary:hover {
    color: #8765f6;
    background: #ffffff;
    border-color: rgba(135, 101, 246, 0.34);
    transform: translateY(-1px);
  }
}

/* Widok listy: zdjęcie → treść → działania, bez przycisku przez całą kartę. */
body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product {
  min-height: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
  display: grid;
  grid-template-columns: minmax(260px, 34%) minmax(0, 1fr);
  min-height: 360px;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
  min-height: 100%;
  aspect-ratio: auto;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
  justify-content: center;
  gap: 14px;
  padding: clamp(28px, 4vw, 48px);
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__title {
  min-height: 0;
  font-size: clamp(1.08rem, 1.8vw, 1.35rem) !important;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price,
body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price .amount,
body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price ins,
body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price bdi {
  font-size: clamp(1.55rem, 2.6vw, 2rem) !important;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions,
body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__secondary-actions {
  width: min(100%, 640px);
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions {
  grid-template-columns: repeat(2, minmax(170px, 1fr));
  margin-top: 6px;
}

@media (max-width: 1024px) {
  body.aiomy-shop-v22 .aiomy-catalog-card__content {
    padding: 16px;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions {
    grid-template-columns: 1fr;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__secondary-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
    grid-template-columns: minmax(150px, 38%) minmax(0, 1fr);
    min-height: 310px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
    gap: 10px;
    padding: 18px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__secondary-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  body.aiomy-shop-v22 .wc-main ul.products {
    grid-template-columns: 1fr !important;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__content {
    gap: 10px;
    padding: 17px;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__secondary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions .btn,
  body.aiomy-shop-v22 .aiomy-catalog-card__cart,
  body.aiomy-shop-v22 .aiomy-catalog-card__buy-now {
    padding-inline: 9px !important;
    font-size: 0.7rem !important;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__secondary {
    padding-inline: 7px;
    font-size: 0.62rem;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
    display: flex;
    min-height: 0;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    aspect-ratio: 4 / 3;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__secondary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (prefers-reduced-motion: reduce) {
  body.aiomy-shop-v22 .aiomy-catalog-card,
  body.aiomy-shop-v22 .aiomy-catalog-card__image,
  body.aiomy-shop-v22 .aiomy-catalog-card__cart,
  body.aiomy-shop-v22 .aiomy-catalog-card__buy-now,
  body.aiomy-shop-v22 .aiomy-catalog-card__secondary {
    transition: none !important;
  }
}
/* =========================================
   AIOMY — SEKCJA „WYBIERZ SWOJEGO PRZYJACIELA”
   KOMPLETNA WERSJA
   ========================================= */


/* 1. Tło sekcji — styl pierwszej sekcji strony */
body.home .quick-shop {
  background:
    radial-gradient(
      circle at 12% 16%,
      rgba(255, 212, 92, 0.28),
      transparent 28%
    ),
    radial-gradient(
      circle at 76% 24%,
      rgba(255, 117, 168, 0.27),
      transparent 27%
    ),
    radial-gradient(
      circle at 89% 42%,
      rgba(135, 101, 246, 0.15),
      transparent 25%
    ),
    radial-gradient(
      circle at 104% 55%,
      rgba(81, 169, 245, 0.22),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #fffdf9 0%,
      #fff8fb 45%,
      #f7f7ff 100%
    ) !important;

  background-repeat: no-repeat !important;
  background-size: cover !important;
}


/* 2. Nagłówek — rozmiar jak w pierwszej sekcji */
body.home .quick-shop .section-header h2 {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem) !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  letter-spacing: -0.02em !important;
}


/* 3. Słowo „przyjaciela” — gradient */
body.home .quick-shop .section-header h2 .highlight {
  display: inline-block !important;
  padding-right: 0.08em;

  background: var(--aiomy-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
}


/* 4. Przygotowanie nazw produktów do efektu */
body.home .quick-shop .product-card :is(
  .product-title,
  .product-card__title,
  .product-card-title,
  .product-name,
  .product-card__name,
  .woocommerce-loop-product__title,
  h2,
  h3,
  h4
),
body.home .quick-shop .product-card :is(
  .product-title,
  .product-card__title,
  .product-card-title,
  .product-name,
  .product-card__name,
  .woocommerce-loop-product__title,
  h2,
  h3,
  h4
) a {
  transition: color 0.2s ease !important;
}


/* 5. Gradient nazwy produktu po najechaniu */
body.home .quick-shop .product-card :is(
  .product-title,
  .product-card__title,
  .product-card-title,
  .product-name,
  .product-card__name,
  .woocommerce-loop-product__title,
  h2,
  h3,
  h4
):hover,
body.home .quick-shop .product-card :is(
  .product-title,
  .product-card__title,
  .product-card-title,
  .product-name,
  .product-card__name,
  .woocommerce-loop-product__title,
  h2,
  h3,
  h4
):hover a,
body.home .quick-shop .product-card :is(
  .product-title,
  .product-card__title,
  .product-card-title,
  .product-name,
  .product-card__name,
  .woocommerce-loop-product__title,
  h2,
  h3,
  h4
) a:hover {
  background: var(--aiomy-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
  text-decoration: none !important;
}


/* 6. Przycisk „Dodaj do koszyka” */
body.home .quick-shop .btn-add-cart {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 !important;
  text-align: center !important;
  white-space: normal !important;

  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;

  border-radius: var(--radius-xl) !important;
  overflow: hidden !important;
  background-clip: border-box !important;

  transition:
    transform 0.2s ease,
    color 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease !important;
}

/* 7. Gradient stanu aktywnego i potwierdzenia */
body.home .quick-shop .btn-add-cart.loading,
body.home .quick-shop .btn-add-cart.added,
body.home .quick-shop .btn-add-cart:focus-visible {
  background-color: #f04d91 !important;
  background-image: var(--aiomy-gradient) !important;
  background-origin: border-box !important;
  background-clip: border-box !important;
  border-color: transparent !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 8px 18px rgba(135, 101, 246, 0.18) !important;
}

body.home .quick-shop .btn-add-cart.loading {
  cursor: wait !important;
}

/* Hover jest aktywny tylko dla myszy — bez „lepkiego” :hover na telefonie. */
@media (hover: hover) and (pointer: fine) {
  body.home .quick-shop .btn-add-cart:hover {
    background-color: #f04d91 !important;
    background-image: var(--aiomy-gradient) !important;
    background-origin: border-box !important;
    background-clip: border-box !important;
    border-color: transparent !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 18px rgba(135, 101, 246, 0.18) !important;
  }
}


/* 8. Przycisk „Zobacz wszystkie produkty” */
body.home .quick-shop .section-cta .btn-outline {
  position: relative !important;
  isolation: isolate;

  border: 0 !important;
  background: transparent !important;
  color: #f04d91 !important;
  font-weight: 700 !important;

  transition:
    transform 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease !important;
}


/* Gradientowy obrys */
body.home .quick-shop .section-cta .btn-outline::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  pointer-events: none;

  background: var(--aiomy-gradient);

  -webkit-mask:
    linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#ffffff 0 0);

  -webkit-mask-composite: xor;

  mask:
    linear-gradient(#ffffff 0 0) content-box,
    linear-gradient(#ffffff 0 0);

  mask-composite: exclude;

  transition: opacity 0.2s ease;
}


/* Pełny gradient po najechaniu */
body.home .quick-shop .section-cta .btn-outline:hover {
  background: var(--aiomy-gradient) !important;
  color: #ffffff !important;
  transform: translateY(-2px) !important;
  filter: brightness(0.98);

  box-shadow:
    0 16px 34px rgba(221, 78, 155, 0.28) !important;
}

body.home .quick-shop .section-cta .btn-outline:hover::before {
  opacity: 0;
}


/* 9. Małe telefony */
@media screen and (max-width: 480px) {
  body.home .quick-shop .section-header h2 {
    font-size: 2rem !important;
  }
}
/* =========================================
   AIOMY — POPRAWKA PRZYCISKÓW NA TELEFONIE
   ========================================= */

@media screen and (max-width: 768px) {

  /* Usuwa poziome wychodzenie sekcji poza ekran */
  body.home .quick-shop {
    overflow-x: hidden !important;
  }

  /* Karty zawsze mieszczą się w swoich kolumnach */
  body.home .quick-shop .product-card {
    min-width: 0 !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Przycisk „Dodaj do koszyka” */
  body.home .quick-shop .btn-add-cart {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;

    min-height: 50px !important;
    height: auto !important;

    margin-left: auto !important;
    margin-right: auto !important;
    padding: 8px 5px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
    white-space: normal !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    font-size: 0.78rem !important;
    line-height: 1.1 !important;
    white-space: normal !important;
    word-break: normal !important;
    overflow-wrap: normal !important;
  }

  /* Kontener dolnego przycisku */
  body.home .quick-shop .section-cta {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
    box-sizing: border-box !important;
  }

  /* „Zobacz wszystkie produkty” mieści się na ekranie */
  body.home .quick-shop .section-cta .btn-outline {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    width: 100% !important;
    max-width: 290px !important;
    min-width: 0 !important;

    min-height: 50px !important;
    height: auto !important;

    margin-left: auto !important;
    margin-right: auto !important;
    padding: 13px 10px !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
    white-space: nowrap !important;

    font-size: clamp(0.78rem, 3.8vw, 0.92rem) !important;
    line-height: 1.2 !important;
    text-align: center !important;
  }

  /* Strzałka przy napisie nie wypycha przycisku */
  body.home .quick-shop .section-cta .btn-outline::after {
    position: static !important;
    flex: 0 0 auto !important;
    margin-left: 0.35em !important;
    transform: none !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — STYLE PRZENIESIONE Z „DODATKOWEGO CSS”
   Po wdrożeniu tego pliku pole „Dodatkowy CSS” może pozostać puste.
════════════════════════════════════════ */
/* AIOMY — gradientowe tło tylko sekcji Hero */
body.home main > section:first-of-type,
body.home .hero,
body.home .hero-section,
body.home .home-hero,
body.home .aiomy-hero {
  background:
    radial-gradient(circle at 12% 16%,
      rgba(255, 212, 92, 0.28),
      transparent 28%),
    radial-gradient(circle at 76% 24%,
      rgba(255, 117, 168, 0.27),
      transparent 27%),
    radial-gradient(circle at 89% 42%,
      rgba(135, 101, 246, 0.15),
      transparent 25%),
    radial-gradient(circle at 104% 55%,
      rgba(81, 169, 245, 0.22),
      transparent 30%),
    linear-gradient(
      135deg,
      #fffdf9 0%,
      #fff8fb 45%,
      #f7f7ff 100%
    ) !important;

  background-repeat: no-repeat !important;
  background-size: cover !important;
}
/* AIOMY — gradientowe tło menu na telefonie */
@media (max-width: 768px) {
  .site-header .main-nav {
    background:
      radial-gradient(circle at 12% 16%,
        rgba(255, 212, 92, 0.28),
        transparent 28%),
      radial-gradient(circle at 76% 24%,
        rgba(255, 117, 168, 0.27),
        transparent 27%),
      radial-gradient(circle at 89% 42%,
        rgba(135, 101, 246, 0.15),
        transparent 25%),
      radial-gradient(circle at 104% 55%,
        rgba(81, 169, 245, 0.22),
        transparent 30%),
      linear-gradient(
        135deg,
        #fffdf9 0%,
        #fff8fb 45%,
        #f7f7ff 100%
      ) !important;

    background-repeat: no-repeat !important;
    background-size: cover !important;

    border-left: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: -10px 0 35px rgba(32, 32, 59, 0.14) !important;
  }
}
/* AIOMY — jeden biały pasek obejmujący logo, menu i przyciski */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  padding: 0 !important;
  border: 0 !important;
  background: linear-gradient(
    100deg,
    #fff6dc 0%,
    #fff7fa 55%,
    #f1f2ff 100%
  ) !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.site-header .header-inner.container {
  position: relative;
  isolation: isolate;
  width: calc(100% - 48px) !important;
  max-width: 1200px !important;
  height: 92px !important;
  margin: 0 auto !important;
  padding: 0 24px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

/* Biała pigułka — dokładnie jak w referencji, od lewej do prawej. */
.site-header .header-inner.container::before {
  content: "";
  position: absolute;
  z-index: 0;
  top: 9px;
  right: 0;
  bottom: 9px;
  left: 0;
  pointer-events: none;

  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.96);
  border-radius: 26px;

  -webkit-backdrop-filter: blur(18px) saturate(150%);
  backdrop-filter: blur(18px) saturate(150%);

  box-shadow:
    0 16px 42px rgba(32, 32, 59, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.site-header .site-logo,
.site-header .header-actions {
  position: relative;
  z-index: 1;
}

.site-header .site-logo {
  margin-left: 0 !important;
}

@media (min-width: 769px) {
  .site-header .main-nav {
    position: relative;
    z-index: 1;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V57 — POTWIERDZENIE DODANIA PRODUKTU DO KOSZYKA
   Gradientowy kontur i CTA oraz płynne zniknięcie po dwóch sekundach.
═══════════════════════════════════════════════════════════════════ */
html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice,
html body .woocommerce-message.aiomy-add-to-cart-notice {
  box-sizing: border-box !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 0 0 16px !important;
  padding: 14px 18px 14px 24px !important;
  border: 2px solid transparent !important;
  border-radius: 18px !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--aiomy-gradient) border-box !important;
  color: var(--text) !important;
  box-shadow: 0 12px 30px rgba(45, 45, 58, 0.08) !important;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 240ms ease,
    transform 240ms ease !important;
}

html body .woocommerce-message.aiomy-add-to-cart-notice::before,
html body .woocommerce-message.aiomy-add-to-cart-notice::after {
  display: none !important;
  content: none !important;
}

html body .woocommerce-message.aiomy-add-to-cart-notice.is-visible {
  opacity: 1;
  transform: translateY(0);
}

html body .woocommerce-message.aiomy-add-to-cart-notice.is-leaving {
  opacity: 0 !important;
  transform: translateY(-8px) !important;
  pointer-events: none !important;
}

html body .woocommerce-message.aiomy-add-to-cart-notice a.button,
html body .woocommerce-message.aiomy-add-to-cart-notice a.wc-forward,
html body .woocommerce-message.aiomy-add-to-cart-notice a.button:hover,
html body .woocommerce-message.aiomy-add-to-cart-notice a.wc-forward:hover,
html body .woocommerce-message.aiomy-add-to-cart-notice a.button:focus-visible,
html body .woocommerce-message.aiomy-add-to-cart-notice a.wc-forward:focus-visible {
  order: 2;
  flex: 0 0 auto;
  float: none !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 10px 20px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: var(--aiomy-gradient) !important;
  background-image: var(--aiomy-gradient) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  box-shadow: 0 8px 18px rgba(240, 77, 145, 0.18) !important;
  transform: none !important;
}

@media (max-width: 640px) {
  html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice,
  html body .woocommerce-message.aiomy-add-to-cart-notice {
    align-items: stretch !important;
    flex-direction: column !important;
    gap: 12px !important;
    padding: 14px !important;
    font-size: 0.88rem !important;
    line-height: 1.45 !important;
  }

  html body .woocommerce-message.aiomy-add-to-cart-notice a.button,
  html body .woocommerce-message.aiomy-add-to-cart-notice a.wc-forward {
    width: 100% !important;
    text-align: center !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body .woocommerce-message.aiomy-add-to-cart-notice {
    transition-duration: 1ms !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V54 — KOSZYK Z PRODUKTAMI
   Czytelniejsze nagłówki, bez opisu marketingowego, aktualna ilość,
   gradientowe CTA i „Proponowane oferty” także pod pełnym koszykiem.
═══════════════════════════════════════════════════════════════════ */

html body.aiomy-cart-v51.aiomy-cart-has-items .wc-block-cart,
html body.aiomy-cart-v51.aiomy-cart-has-items .woocommerce-cart-form,
html body.aiomy-cart-v51.aiomy-cart-has-items .cart_totals {
  color: var(--text) !important;
  font-family: var(--font) !important;
}

/* Produkt / Łącznie / Podsumowanie koszyka. */
html body.aiomy-cart-v51.aiomy-cart-has-items .wc-block-cart-items__header span,
html body.aiomy-cart-v51.aiomy-cart-has-items .wc-block-cart-items__header,
html body.aiomy-cart-v51.aiomy-cart-has-items .wc-block-cart__totals-title,
html body.aiomy-cart-v51.aiomy-cart-has-items .wp-block-woocommerce-cart-order-summary-heading-block,
html body.aiomy-cart-v51.aiomy-cart-has-items .woocommerce-cart-form th.product-name,
html body.aiomy-cart-v51.aiomy-cart-has-items .woocommerce-cart-form th.product-subtotal,
html body.aiomy-cart-v51.aiomy-cart-has-items .cart_totals > h2 {
  color: var(--text) !important;
  font-family: var(--font) !important;
  font-size: clamp(1.02rem, 1.2vw, 1.22rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.015em !important;
}

html body.aiomy-cart-v51.aiomy-cart-has-items .wc-block-cart__totals-title,
html body.aiomy-cart-v51.aiomy-cart-has-items .wp-block-woocommerce-cart-order-summary-heading-block,
html body.aiomy-cart-v51.aiomy-cart-has-items .cart_totals > h2 {
  font-size: clamp(1.18rem, 1.45vw, 1.42rem) !important;
}

/* Krótki opis produktu należy do karty produktu, nie do koszyka. */
html body.aiomy-cart-v51 .wc-block-components-product-metadata__description,
html body.aiomy-cart-v51 .wc-block-components-product-metadata__description p,
html body.aiomy-cart-v51 .wc-block-cart-item__product .wc-block-components-product-metadata > p {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Ilość zawsze pokazuje aktualną wartość, także po odświeżeniu bloku. */
html body.aiomy-cart-v51 .wc-block-components-quantity-selector__input,
html body.aiomy-cart-v51 .woocommerce-cart-form input.qty {
  opacity: 1 !important;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  font-weight: 750 !important;
  text-align: center !important;
}

/* „Zastosuj” i „Przejdź do płatności” — jeden system CTA AIOMY. */
html body.aiomy-cart-v51 .wc-block-components-totals-coupon__button,
html body.aiomy-cart-v51 button.wc-block-components-totals-coupon__button,
html body.aiomy-cart-v51 .woocommerce-cart-form .coupon button,
html body.aiomy-cart-v51 .woocommerce-cart-form button[name="apply_coupon"],
html body.aiomy-cart-v51 .wc-block-cart__submit-button,
html body.aiomy-cart-v51 .wc-block-cart__submit-container .wc-block-components-button,
html body.aiomy-cart-v51 .cart_totals .checkout-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 54px !important;
  margin: 0 !important;
  padding: 14px 24px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--aiomy-gradient) !important;
  background-color: #f04d91 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: var(--font) !important;
  font-size: 0.95rem !important;
  font-weight: 750 !important;
  line-height: 1.1 !important;
  text-align: center !important;
  text-decoration: none !important;
  box-shadow: 0 12px 28px rgba(214, 69, 148, 0.2) !important;
  cursor: pointer !important;
  appearance: none !important;
  transition: transform 180ms ease, filter 180ms ease, box-shadow 180ms ease !important;
}

html body.aiomy-cart-v51 .wc-block-cart__submit-button,
html body.aiomy-cart-v51 .wc-block-cart__submit-container .wc-block-components-button,
html body.aiomy-cart-v51 .cart_totals .checkout-button {
  width: 100% !important;
}

html body.aiomy-cart-v51 .wc-block-components-totals-coupon__button[disabled],
html body.aiomy-cart-v51 button.wc-block-components-totals-coupon__button[disabled],
html body.aiomy-cart-v51 .woocommerce-cart-form button[name="apply_coupon"][disabled] {
  opacity: 0.55 !important;
  cursor: not-allowed !important;
  filter: saturate(0.72) !important;
}

@media (hover: hover) and (pointer: fine) {
  html body.aiomy-cart-v51 .wc-block-components-totals-coupon__button:not([disabled]):hover,
  html body.aiomy-cart-v51 .woocommerce-cart-form button[name="apply_coupon"]:not([disabled]):hover,
  html body.aiomy-cart-v51 .wc-block-cart__submit-button:hover,
  html body.aiomy-cart-v51 .cart_totals .checkout-button:hover {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    filter: saturate(1.08) brightness(1.02) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 17px 34px rgba(214, 69, 148, 0.27) !important;
  }
}

/* Pełny koszyk otrzymuje ten sam komponent co pusty koszyk. */
html body.aiomy-cart-v51 .aiomy-cart-filled__recommendations {
  display: block !important;
  width: 100% !important;
  max-width: 1200px !important;
  min-width: 0 !important;
  margin: clamp(28px, 4vw, 48px) auto 0 !important;
  padding: 0 !important;
  clear: both !important;
  box-sizing: border-box !important;
}

html body.aiomy-cart-v51 .aiomy-cart-filled__recommendations,
html body.aiomy-cart-v51 .aiomy-cart-filled__recommendations *,
html body.aiomy-cart-v51 .aiomy-cart-filled__recommendations *::before,
html body.aiomy-cart-v51 .aiomy-cart-filled__recommendations *::after {
  box-sizing: border-box !important;
}

@media (max-width: 768px) {
  html body.aiomy-cart-v51.aiomy-cart-has-items .wc-block-cart-items__header span,
  html body.aiomy-cart-v51.aiomy-cart-has-items .wc-block-cart__totals-title,
  html body.aiomy-cart-v51.aiomy-cart-has-items .wp-block-woocommerce-cart-order-summary-heading-block,
  html body.aiomy-cart-v51.aiomy-cart-has-items .woocommerce-cart-form th,
  html body.aiomy-cart-v51.aiomy-cart-has-items .cart_totals > h2 {
    font-size: 1.05rem !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-filled__recommendations {
    margin-top: 22px !important;
  }

  html body.aiomy-cart-v51 .wc-block-components-totals-coupon__button,
  html body.aiomy-cart-v51 .woocommerce-cart-form button[name="apply_coupon"],
  html body.aiomy-cart-v51 .wc-block-cart__submit-button,
  html body.aiomy-cart-v51 .cart_totals .checkout-button {
    min-height: 52px !important;
    padding: 13px 18px !important;
  }
}

/* Wygląd menu */
.site-header .nav-menu li a {
  padding: 10px 14px !important;
  border-radius: 999px !important;
  color: #45435b !important;
  font-size: 14px !important;
  font-weight: 600 !important;
}

.site-header .nav-menu li a:hover,
.site-header .nav-menu li.current-menu-item > a {
  color: #20203b !important;
  background: rgba(255, 255, 255, 0.95) !important;
}

/* Czarny przycisk Kup teraz */
.site-header .header-cta.btn.btn-primary {
  min-width: 112px !important;
  height: 44px !important;
  padding: 0 20px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #20203b !important;
  color: #ffffff !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  box-shadow: 0 9px 24px rgba(32, 32, 59, 0.2) !important;
}

.site-header .header-cta.btn.btn-primary:hover {
  background: #15152d !important;
  transform: translateY(-1px);
}

/* Dopasowanie na telefonie */
@media (max-width: 768px) {
  .site-header .header-inner.container {
    width: calc(100% - 16px) !important;
    height: 72px !important;
    padding: 0 14px !important;
  }

  .site-header .header-inner.container::before {
    top: 4px;
    right: 0;
    bottom: 4px;
    left: 0;
    border-radius: 22px;
  }
}
/* AIOMY — gradientowy nagłówek Hero */
body.home .hero-title .highlight {
  display: inline-block;
  padding-right: 0.08em;

  background: linear-gradient(
    92deg,
    #f04d91 0%,
    #fd81ac 50%,
    #8765f6 100%
  ) !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  text-shadow: none !important;
}


/* AIOMY — gradientowy przycisk Kup AIOMY */
body.home .hero-actions .btn-yellow {
  position: relative !important;
  min-width: 202px !important;
  height: 64px !important;
  padding: 0 20px 0 52px !important;

  gap: 14px !important;
  border: 0 !important;
  border-radius: 18px !important;

  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6.7 8.5h10.6l1 11H5.7l1-11Z'/%3E%3Cpath d='M9 9V6.8a3 3 0 0 1 6 0V9'/%3E%3C/svg%3E")
    20px center / 20px 20px no-repeat,
    linear-gradient(
      118deg,
      #f04d91 0%,
      #fd72aa 48%,
      #8765f6 100%
    ) !important;

  color: #ffffff !important;
  font-size: 0 !important;
  font-weight: 800 !important;

  box-shadow:
    0 16px 34px rgba(221, 78, 155, 0.28) !important;

  overflow: hidden;
}

body.home .hero-actions .btn-yellow img.emoji {
  display: none !important;
}

body.home .hero-actions .btn-yellow::before {
  content: "Kup AIOMY";
  font-family: inherit;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}

body.home .hero-actions .btn-yellow::after {
  content: "→";
  font-family: inherit;
  font-size: 20px;
  font-weight: 500;
  line-height: 1;
  transition: transform 0.2s ease;
}

body.home .hero-actions .btn-yellow:hover {
  transform: translateY(-2px) !important;
  filter: brightness(0.98);
  box-shadow:
    0 20px 40px rgba(221, 78, 155, 0.36) !important;
}

body.home .hero-actions .btn-yellow:hover::after {
  transform: translateX(3px);
}


/* AIOMY — biały przycisk Zobacz jak działa */
body.home .hero-actions .btn-ghost {
  min-width: 218px !important;
  height: 64px !important;
  padding: 0 24px !important;

  gap: 11px !important;
  border: 1px solid rgba(32, 32, 59, 0.10) !important;
  border-radius: 18px !important;

  background: rgba(255, 255, 255, 0.72) !important;
  color: #20203b !important;
  font-size: 0 !important;

  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);

  box-shadow:
    0 10px 28px rgba(32, 32, 59, 0.07) !important;
}

body.home .hero-actions .btn-ghost::before {
  content: "";
  width: 23px;
  height: 23px;
  flex: 0 0 23px;

  background:
    center / contain no-repeat
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='10' fill='none' stroke='%2320203b' stroke-width='1.7'/%3E%3Cpath d='M10 8.7l5.2 3.3-5.2 3.3V8.7Z' fill='%2320203b'/%3E%3C/svg%3E");
}

body.home .hero-actions .btn-ghost::after {
  content: "Zobacz jak działa";
  color: #20203b;
  font-family: inherit;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

body.home .hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.96) !important;
  border-color: rgba(240, 77, 145, 0.24) !important;
  color: #20203b !important;
  transform: translateY(-2px);
}


/* Przyciski na małym telefonie */
@media (max-width: 480px) {
  body.home .hero-actions {
    width: 100%;
    max-width: 300px;
    margin-right: auto;
    margin-left: auto;
  }

  body.home .hero-actions .btn-yellow,
  body.home .hero-actions .btn-ghost {
    width: 100% !important;
    min-width: 0 !important;
    height: 58px !important;
  }
}
/* AIOMY — finalny gradientowy klocek „Nowość 2026” */
body.home .hero-section .hero-badge {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;

  width: fit-content;
  max-width: 100%;
  min-height: 32px;
  padding: 7px 16px !important;
  margin: 0 0 20px !important;

  /* Ten sam gradient co „Kup AIOMY” */
  background: linear-gradient(
    118deg,
    #f04d91 0%,
    #fd72aa 48%,
    #8765f6 100%
  ) !important;

  /* Białe litery */
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;

  font-family: inherit;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0;
  white-space: nowrap;

  border: 1px solid rgba(255, 255, 255, 0.42) !important;
  border-radius: 999px !important;

  box-shadow:
    0 12px 28px rgba(221, 78, 155, 0.22) !important;

  text-shadow: none !important;
}

/* Dopasowanie na małych telefonach */
@media (max-width: 480px) {
  body.home .hero-section .hero-badge {
    min-height: 30px;
    padding: 7px 13px !important;
    font-size: 12px !important;
    white-space: normal;
    text-align: center;
  }
}
/* AIOMY — licznik koszyka bez białego ringu */
.site-header .cart-count {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  box-sizing: border-box !important;

  background: linear-gradient(
    135deg,
    #f04d91 0%,
    #fd72aa 34%,
    #8765f6 72%,
    #8765f6 100%
  ) !important;

  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;

  border: 0 !important;
  outline: 0 !important;
  border-radius: 50% !important;

  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;

  box-shadow:
    0 4px 10px rgba(135, 101, 246, 0.28) !important;
}
/* =========================================
   AIOMY — zdjęcie między tekstami
   Tylko telefony i tablety
   ========================================= */

@media screen and (max-width: 1024px) {

  /* Jedna kolumna na telefonach i tabletach */
  body.home .hero-section .hero-inner {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 0 !important;
    align-items: start !important;
    text-align: center !important;
    min-height: 0 !important;
  }

  /* Pozwala ustawić zdjęcie pomiędzy elementami tekstowymi */
  body.home .hero-section .hero-content {
    display: contents !important;
  }

  /* 1. Klocek „Nowość 2026” */
  body.home .hero-section .hero-badge {
    grid-column: 1 / -1;
    order: 1;
    justify-self: center;
    margin: 0 auto 18px !important;
  }

  /* 2. Zdjęcie */
  body.home .hero-section .hero-visual {
    grid-column: 1 / -1;
    order: 2;

    width: 100% !important;
    min-height: 0 !important;
    margin: 0 auto 26px !important;
  }

  body.home .hero-section .hero-media {
    width: 100% !important;
    max-width: 600px !important;
    margin: 0 auto !important;
  }

  /* 3. Nagłówek */
  body.home .hero-section .hero-title {
    grid-column: 1 / -1;
    order: 3;

    width: 100%;
    margin: 0 auto 20px !important;
  }

  /* 4. Opis */
  body.home .hero-section .hero-desc {
    grid-column: 1 / -1;
    order: 4;
    justify-self: center;

    width: 100%;
    max-width: 520px;
    margin: 0 auto 28px !important;
  }

  /* 5. Przyciski */
  body.home .hero-section .hero-actions {
    grid-column: 1 / -1;
    order: 5;
    justify-self: center;

    width: 100%;
    justify-content: center;
    margin: 0 auto 32px !important;
  }

  /* 6. Informacje: języki, CE, edukacja */
  body.home .hero-section .hero-trust {
    grid-column: 1 / -1;
    order: 6;
    justify-self: center;

    width: 100%;
    justify-content: center;
    margin: 0 auto !important;
  }
}


/* Dokładniejsze dopasowanie na telefonach */
@media screen and (max-width: 480px) {

  body.home .hero-section .hero-visual {
    margin-bottom: 22px !important;
  }

  body.home .hero-section .hero-media {
    max-width: 100% !important;
  }
}
/* AIOMY — podniesienie paska tylko na telefonach i tabletach */
@media screen and (max-width: 1024px) {
  body.home .hero-section + .promo-ribbon {
    margin-top: -32px !important;
  }
}

/* =========================================
   AIOMY — KARTY KATEGORII NA STRONIE GŁÓWNEJ
   Wyśrodkowanie nazw w białym pasku
   ========================================= */

body.home .quick-shop .category-card__link {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  text-align: center !important;
}

body.home .quick-shop .category-card__body {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 0 auto !important;
  width: 100% !important;
  min-height: 60px !important;
  padding: 14px 12px !important;
  box-sizing: border-box !important;
  text-align: center !important;
}

body.home .quick-shop .category-card__title {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  text-align: center !important;
}

/* ════════════════════════════════════════
   AIOMY — SKLEP V22
   Kategorie, toolbar, dwa widoki i pamięć produktów
════════════════════════════════════════ */

/* Jeden gradient dla całej strony sklepu — dokładnie ten sam co na home. */
html body.aiomy-shop-v22 {
  background-color: #fffdf9 !important;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(255, 212, 92, 0.28), transparent 28%),
    radial-gradient(circle at 76% 24%, rgba(255, 117, 168, 0.27), transparent 27%),
    radial-gradient(circle at 89% 42%, rgba(135, 101, 246, 0.15), transparent 25%),
    radial-gradient(circle at 104% 55%, rgba(81, 169, 245, 0.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #fff8fb 45%, #f7f7ff 100%) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed !important;
}

html body.aiomy-shop-v22 main.wc-main,
html body.aiomy-shop-v22 .woocommerce-products-header,
html body.aiomy-shop-v22 .woocommerce-notices-wrapper {
  background: transparent !important;
  border-color: transparent !important;
  outline: 0 !important;
}

body.aiomy-shop-v22 main.wc-main {
  padding: clamp(44px, 6vw, 76px) 0 clamp(76px, 9vw, 120px) !important;
  min-height: 70vh;
}

body.aiomy-shop-v22 main.wc-main > .container {
  max-width: 1248px;
}

/* Zbędne elementy usuwamy także w CSS jako zabezpieczenie cache szablonu. */
body.aiomy-shop-v22 .woocommerce-breadcrumb,
body.aiomy-shop-v22 .woocommerce-result-count,
body.aiomy-shop-v22 .footer-cta-bar {
  display: none !important;
}

body.aiomy-shop-v22 .woocommerce-products-header {
  text-align: center;
  margin: 0 auto clamp(34px, 4vw, 52px);
}

body.aiomy-shop-v22 .woocommerce-products-header .page-title {
  margin: 0;
  color: var(--text);
  font-size: clamp(2.2rem, 4.5vw, 3.9rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

body.aiomy-shop-v22 .aiomy-shop-section-heading {
  width: min(100%, 760px);
  margin: 0 auto clamp(30px, 4vw, 46px);
  text-align: center;
}

body.aiomy-shop-v22 .aiomy-shop-section-heading h2 {
  margin: 0 0 12px;
  color: var(--text);
  font-size: clamp(1.75rem, 3.4vw, 2.65rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.035em;
  text-wrap: balance;
}

body.aiomy-shop-v22 .aiomy-shop-section-heading h2 span {
  display: inline;
  color: #f04d91;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

body.aiomy-shop-v22 .aiomy-shop-section-heading p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: clamp(0.92rem, 1.35vw, 1.02rem);
  line-height: 1.65;
  text-wrap: balance;
}

/* Cztery główne kategorie — ten sam układ karty co na stronie głównej. */
body.aiomy-shop-v22 .aiomy-shop-categories {
  margin: 0 0 clamp(38px, 5vw, 62px);
}

body.aiomy-shop-v22 .aiomy-shop-categories__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
}

body.aiomy-shop-v22 .aiomy-shop-category-card {
  min-width: 0;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 26px;
  box-shadow: 0 10px 30px rgba(45, 45, 58, 0.075);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

body.aiomy-shop-v22 .aiomy-shop-category-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: var(--text);
  text-align: center;
}

body.aiomy-shop-v22 .aiomy-shop-category-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.62);
}

body.aiomy-shop-v22 .aiomy-shop-category-card__image {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  object-fit: cover;
  transition: transform 420ms ease;
}

body.aiomy-shop-v22 .aiomy-shop-category-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  color: #f04d91;
  background:
    radial-gradient(circle at 72% 24%, rgba(135, 101, 246, 0.22), transparent 34%),
    linear-gradient(135deg, #fff1f7, #f3fffd);
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

body.aiomy-shop-v22 .aiomy-shop-category-card__name {
  display: flex;
  flex: 1 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 66px;
  padding: 14px 12px;
  background: #ffffff;
  color: var(--text);
  font-size: clamp(0.8rem, 1.15vw, 0.95rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-shop-v22 .aiomy-shop-category-card:hover {
    transform: translateY(-6px);
    border-color: rgba(135, 101, 246, 0.2);
    box-shadow: 0 18px 44px rgba(135, 101, 246, 0.15);
  }

  body.aiomy-shop-v22 .aiomy-shop-category-card:hover .aiomy-shop-category-card__image {
    transform: scale(1.035);
  }
}

/* Sortowanie i przełącznik widoku bez ingerowania w zapytanie WooCommerce. */
body.aiomy-shop-v22 .aiomy-shop-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 0 0 30px;
  padding: 18px 20px;
  background: rgba(255, 255, 255, 0.73);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(45, 45, 58, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.aiomy-shop-v22 .aiomy-shop-toolbar__sort,
body.aiomy-shop-v22 .aiomy-shop-view {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

body.aiomy-shop-v22 .aiomy-shop-toolbar__sort {
  width: min(100%, 340px);
}

body.aiomy-shop-v22 .aiomy-shop-toolbar__label {
  color: var(--text-muted);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

body.aiomy-shop-v22 .woocommerce-ordering {
  float: none !important;
  width: 100%;
  margin: 0 !important;
}

body.aiomy-shop-v22 .woocommerce-ordering select {
  width: 100%;
  min-height: 46px;
  padding: 0 44px 0 15px;
  color: var(--text);
  background-color: #ffffff;
  border: 1px solid rgba(45, 45, 58, 0.12);
  border-radius: 14px;
  font-family: var(--font);
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

body.aiomy-shop-v22 .woocommerce-ordering select:focus {
  border-color: #8765f6;
  outline: none;
  box-shadow: 0 0 0 3px rgba(135, 101, 246, 0.14);
}

body.aiomy-shop-v22 .aiomy-shop-view {
  align-items: flex-end;
  flex: 0 0 auto;
}

body.aiomy-shop-v22 .aiomy-shop-view__buttons {
  display: flex;
  gap: 6px;
  padding: 4px;
  background: #ffffff;
  border: 1px solid rgba(45, 45, 58, 0.1);
  border-radius: 14px;
}

body.aiomy-shop-v22 .aiomy-shop-view__button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  color: var(--text-muted);
  border: 0;
  border-radius: 10px;
  background: transparent;
  box-shadow: none;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

body.aiomy-shop-v22 .aiomy-shop-view__button svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.aiomy-shop-v22 .aiomy-shop-view__button.is-active,
body.aiomy-shop-v22 .aiomy-shop-view__button[aria-pressed="true"] {
  color: #ffffff;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%);
  box-shadow: 0 7px 16px rgba(135, 101, 246, 0.2);
}

body.aiomy-shop-v22 .aiomy-shop-view__button:focus-visible {
  outline: 2px solid #8765f6;
  outline-offset: 2px;
}

/* Bazowa galeria produktów. */
body.aiomy-shop-v22 .wc-main ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 28px);
  margin: 0 !important;
  padding: 0 !important;
}

body.aiomy-shop-v22 .wc-main ul.products::before,
body.aiomy-shop-v22 .wc-main ul.products::after {
  display: none !important;
  content: none !important;
}

body.aiomy-shop-v22 .wc-main ul.products > li.product {
  float: none !important;
  width: auto !important;
  min-width: 0;
  margin: 0 !important;
}

body.aiomy-shop-v22 .wc-main ul.products > li.product,
body.aiomy-shop-v22 .wc-main ul.products > li.product > .product-card {
  border-radius: 24px;
}

/* Alternatywny widok listy — działa z klasycznym i własnym content-product.php. */
body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list {
  grid-template-columns: 1fr !important;
  gap: 18px;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  box-shadow: 0 10px 30px rgba(45, 45, 58, 0.07);
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .product-card {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
  min-height: 220px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 0;
  box-shadow: none;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .product-card__image-wrap {
  min-height: 100%;
  aspect-ratio: auto;
  border-radius: 24px 0 0 24px;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .product-card__body {
  justify-content: center;
  padding: clamp(24px, 4vw, 44px);
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > a.woocommerce-LoopProduct-link {
  display: grid;
  grid-template-columns: minmax(190px, 260px) 1fr;
  grid-template-rows: auto 1fr;
  column-gap: clamp(22px, 4vw, 44px);
  min-height: 220px;
  padding: 0 clamp(24px, 4vw, 42px) 0 0;
  align-items: center;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > a.woocommerce-LoopProduct-link img {
  grid-column: 1;
  grid-row: 1 / span 3;
  width: 100% !important;
  height: 220px !important;
  margin: 0 !important;
  object-fit: cover;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .woocommerce-loop-product__title,
body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .price {
  grid-column: 2;
}

body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .button {
  position: absolute;
  right: clamp(24px, 4vw, 42px);
  bottom: 28px;
  width: auto;
  min-width: 190px;
  margin: 0 !important;
}

/* Gradient AIOMY zamiast różowego hoveru przycisku. */
body.aiomy-shop-v22 .wc-main .btn-add-cart,
body.aiomy-shop-v22 .wc-main ul.products > li.product .button,
body.aiomy-shop-v22 .wc-main ul.products > li.product a.button {
  border-color: transparent !important;
  background: var(--text) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  box-shadow: none;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-shop-v22 .wc-main .product-card:hover .btn-add-cart,
  body.aiomy-shop-v22 .wc-main ul.products > li.product:hover .button,
  body.aiomy-shop-v22 .wc-main .btn-add-cart:hover,
  body.aiomy-shop-v22 .wc-main ul.products > li.product .button:hover {
    border-color: transparent !important;
    background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%) !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    box-shadow: 0 12px 28px rgba(135, 101, 246, 0.24) !important;
    transform: translateY(-2px);
  }
}

body.aiomy-shop-v22 .wc-main .btn-add-cart:focus-visible,
body.aiomy-shop-v22 .wc-main ul.products > li.product .button:focus-visible,
body.aiomy-shop-v22 .wc-main .btn-add-cart.loading,
body.aiomy-shop-v22 .wc-main .btn-add-cart.added {
  border-color: transparent !important;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%) !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
}

/* Ostatnio oglądane + rekomendacje. */
body.aiomy-shop-v22 .aiomy-shop-memory {
  margin-top: clamp(76px, 10vw, 128px);
  padding-top: 6px;
}

body.aiomy-shop-v22 .aiomy-shop-memory__carousel {
  position: relative;
}

body.aiomy-shop-v22 .aiomy-shop-memory__track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 72px) / 4);
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 10px 4px 30px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

body.aiomy-shop-v22 .aiomy-shop-memory__track::-webkit-scrollbar {
  display: none;
}

body.aiomy-shop-v22 .aiomy-memory-card {
  min-width: 0;
  scroll-snap-align: start;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
}

body.aiomy-shop-v22 .aiomy-memory-card .product-card__image-wrap {
  aspect-ratio: 1 / 1;
}

body.aiomy-shop-v22 .aiomy-memory-card .product-card__body {
  min-height: 198px;
}

body.aiomy-shop-v22 .aiomy-memory-card__eyebrow {
  color: #8765f6;
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

body.aiomy-shop-v22 .aiomy-shop-memory__arrow {
  display: grid;
  place-items: center;
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 46px;
  height: 46px;
  color: #ffffff;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%);
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(135, 101, 246, 0.25);
  transform: translateY(-50%);
  transition: opacity 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

body.aiomy-shop-v22 .aiomy-shop-memory__arrow svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.aiomy-shop-v22 .aiomy-shop-memory__arrow--prev {
  left: -18px;
}

body.aiomy-shop-v22 .aiomy-shop-memory__arrow--next {
  right: -18px;
}

body.aiomy-shop-v22 .aiomy-shop-memory__arrow:disabled {
  opacity: 0;
  pointer-events: none;
}

body.aiomy-shop-v22 .aiomy-shop-memory__arrow:focus-visible {
  outline: 3px solid rgba(135, 101, 246, 0.26);
  outline-offset: 3px;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-shop-v22 .aiomy-shop-memory__arrow:not(:disabled):hover {
    box-shadow: 0 15px 34px rgba(135, 101, 246, 0.34);
    transform: translateY(-50%) scale(1.06);
  }
}

/* Koszyk: brak różowego kafla/ringu; gradient otrzymuje sama ikona. */
.site-header .cart-btn {
  overflow: visible;
  color: var(--text) !important;
  background: transparent !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  -webkit-tap-highlight-color: transparent;
}

.site-header .cart-btn:hover,
.site-header .cart-btn:active,
.site-header .cart-btn:focus,
.site-header .cart-btn:focus-visible {
  color: var(--text) !important;
  background: transparent !important;
  border-color: transparent !important;
  outline: 0 !important;
  box-shadow: none !important;
}

.site-header .cart-btn__icon {
  display: block;
  overflow: visible;
  stroke: currentColor;
  transition: filter 180ms ease, transform 180ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .site-header .cart-btn:hover .cart-btn__icon {
    stroke: url(#aiomy-cart-gradient);
    filter: drop-shadow(0 5px 7px rgba(135, 101, 246, 0.2));
    transform: translateY(-1px);
  }
}

.site-header .cart-btn:focus-visible .cart-btn__icon {
  stroke: url(#aiomy-cart-gradient);
  filter: drop-shadow(0 5px 7px rgba(135, 101, 246, 0.2));
}

.site-header .cart-count[data-count="0"],
.site-header .cart-count:empty,
.site-header .cart-count[hidden] {
  display: none !important;
}

.site-header .cart-count:not([data-count="0"]):not(:empty):not([hidden]) {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 18px !important;
  min-width: 18px !important;
  height: 18px !important;
  padding: 0 !important;
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: linear-gradient(135deg, #f04d91 0%, #fd72aa 40%, #8765f6 100%) !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 50% !important;
  box-shadow: 0 4px 10px rgba(135, 101, 246, 0.28) !important;
  font-size: 10px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
}

@media (max-width: 1024px) {
  body.aiomy-shop-v22 .aiomy-shop-categories__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aiomy-shop-v22 .wc-main ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.aiomy-shop-v22 .aiomy-shop-memory__track {
    grid-auto-columns: calc((100% - 48px) / 3);
  }
}

@media (max-width: 768px) {
  html body.aiomy-shop-v22 {
    background-attachment: scroll !important;
  }

  body.aiomy-shop-v22 main.wc-main {
    padding-top: 34px !important;
  }

  body.aiomy-shop-v22 main.wc-main > .container {
    padding-inline: 16px;
  }

  body.aiomy-shop-v22 .woocommerce-products-header {
    margin-bottom: 30px;
  }

  body.aiomy-shop-v22 .aiomy-shop-toolbar {
    align-items: stretch;
    padding: 15px;
  }

  body.aiomy-shop-v22 .aiomy-shop-toolbar__sort {
    flex: 1 1 auto;
    width: auto;
  }

  body.aiomy-shop-v22 .aiomy-shop-view {
    align-items: flex-end;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .product-card {
    min-height: 168px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .product-card {
    grid-template-columns: 150px 1fr;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .product-card__body {
    padding: 18px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > a.woocommerce-LoopProduct-link {
    grid-template-columns: 150px 1fr;
    column-gap: 18px;
    min-height: 168px;
    padding-right: 18px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > a.woocommerce-LoopProduct-link img {
    height: 168px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .button {
    right: 18px;
    bottom: 16px;
    min-width: 150px;
  }

  body.aiomy-shop-v22 .aiomy-shop-memory__track {
    grid-auto-columns: min(78vw, 310px);
    gap: 16px;
    padding-inline: 0;
  }

  body.aiomy-shop-v22 .aiomy-shop-memory__arrow {
    display: none;
  }
}

@media (max-width: 520px) {
  body.aiomy-shop-v22 .aiomy-shop-section-heading {
    margin-bottom: 26px;
  }

  body.aiomy-shop-v22 .aiomy-shop-categories__grid {
    gap: 12px;
  }

  body.aiomy-shop-v22 .aiomy-shop-category-card {
    border-radius: 20px;
  }

  body.aiomy-shop-v22 .aiomy-shop-category-card__name {
    min-height: 60px;
    padding: 12px 8px;
    font-size: 0.73rem;
  }

  body.aiomy-shop-v22 .aiomy-shop-toolbar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
    border-radius: 18px;
  }

  body.aiomy-shop-v22 .woocommerce-ordering select {
    min-height: 44px;
    padding-left: 12px;
    font-size: 0.76rem;
  }

  body.aiomy-shop-v22 .aiomy-shop-view__button {
    width: 36px;
    height: 36px;
  }

  body.aiomy-shop-v22 .wc-main ul.products {
    gap: 13px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .product-card {
    min-height: 136px;
    border-radius: 19px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .product-card {
    grid-template-columns: 118px 1fr;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .product-card__image-wrap {
    border-radius: 19px 0 0 19px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .product-card__body {
    gap: 6px;
    padding: 12px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > a.woocommerce-LoopProduct-link {
    grid-template-columns: 118px 1fr;
    column-gap: 12px;
    min-height: 136px;
    padding-right: 12px;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > a.woocommerce-LoopProduct-link img {
    height: 136px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product > .button {
    position: static;
    width: calc(100% - 130px);
    min-width: 0;
    margin: -48px 12px 12px auto !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.aiomy-shop-v22 .aiomy-shop-category-card,
  body.aiomy-shop-v22 .aiomy-shop-category-card__image,
  body.aiomy-shop-v22 .aiomy-shop-memory__track,
  body.aiomy-shop-v22 .aiomy-shop-memory__arrow,
  .site-header .cart-btn__icon {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — FINALNA NAPRAWA NAGŁÓWKA NA TELEFONIE
   Desktop pozostaje bez zmian. Menu mobilne nie uczestniczy
   w układzie paska i nie może poszerzać strony poza ekran.
════════════════════════════════════════ */
@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  @supports (overflow: clip) {
    html,
    body {
      overflow-x: clip !important;
    }
  }

  .site-header {
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
  }

  .site-header .header-inner.container {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    min-width: 0 !important;
    height: 72px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 0 12px !important;
    gap: 8px !important;
    overflow: visible !important;
  }

  .site-header .header-inner.container::before {
    top: 4px !important;
    right: 0 !important;
    bottom: 4px !important;
    left: 0 !important;
    border-radius: 22px !important;
  }

  .site-header .site-logo {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex: 0 1 auto !important;
    align-items: center !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 128px !important;
    margin: 0 !important;
  }

  .site-header .site-logo__img,
  .site-header .site-logo .site-logo__img {
    display: block !important;
    width: auto !important;
    height: 34px !important;
    max-width: 128px !important;
    max-height: 34px !important;
    object-fit: contain !important;
  }

  .site-header .header-actions {
    position: relative !important;
    z-index: 2 !important;
    display: flex !important;
    flex: 0 0 auto !important;
    align-items: center !important;
    justify-content: flex-end !important;
    min-width: 0 !important;
    margin-left: auto !important;
    gap: 6px !important;
  }

  .site-header .header-cta,
  .site-header .header-cta.btn,
  .site-header .header-cta.btn.btn-primary {
    display: none !important;
  }

  .site-header .cart-btn {
    display: inline-flex !important;
    flex: 0 0 40px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 8px !important;
  }

  .site-header .nav-toggle {
    display: flex !important;
    flex: 0 0 40px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    min-width: 40px !important;
    height: 40px !important;
    margin: 0 !important;
    padding: 8px !important;
  }

  .site-header .nav-toggle span {
    flex: 0 0 2px !important;
    width: 22px !important;
  }

  /* Menu jest panelem przyklejonym do prawej krawędzi ekranu.
     Nie jest już elementem flex nagłówka, więc nie tworzy overflow. */
  .site-header .main-nav {
    position: fixed !important;
    z-index: 10000 !important;
    top: 0 !important;
    right: -105% !important;
    bottom: auto !important;
    left: auto !important;
    display: flex !important;
    flex: 0 0 auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    width: min(86vw, 320px) !important;
    max-width: calc(100vw - 20px) !important;
    min-width: 0 !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    padding: 78px 22px 28px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transform: none !important;
    transition: right 0.28s ease, visibility 0s linear 0.28s !important;
  }

  .site-header .main-nav.is-open {
    right: 0 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: none !important;
    transition: right 0.28s ease, visibility 0s linear 0s !important;
  }

  .site-header .main-nav .nav-menu {
    display: flex !important;
    flex: 0 0 auto !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    gap: 6px !important;
  }

  .site-header .main-nav .nav-menu > li {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
  }

  .site-header .main-nav .nav-menu > li > a {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 13px 15px !important;
    border-radius: 14px !important;
    white-space: normal !important;
    overflow-wrap: anywhere !important;
  }

  .site-header .main-nav .nav-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 42px !important;
    height: 42px !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 50% !important;
    color: #20203b !important;
    background: rgba(255, 255, 255, 0.82) !important;
  }
}

@media (max-width: 360px) {
  .site-header .header-inner.container {
    padding-right: 9px !important;
    padding-left: 9px !important;
    gap: 4px !important;
  }

  .site-header .site-logo,
  .site-header .site-logo__img,
  .site-header .site-logo .site-logo__img {
    max-width: 116px !important;
  }

  .site-header .cart-btn,
  .site-header .nav-toggle {
    flex-basis: 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    height: 38px !important;
  }
}

/* ======================================================================
   AIOMY V66 — FINALNY UKŁAD „TWOJE ZAMÓWIENIE”
   Klasy v66 oraz prawdziwy colspan są nadawane w aiomy.js także po AJAX.
   Ten blok celowo znajduje się na końcu pliku i unieważnia starsze próby
   zmiany elementów tabeli na grid/flex.
   ====================================================================== */

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 {
  width: 100% !important;
  max-width: none !important;
  table-layout: fixed !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot {
  display: table-row-group !important;
  width: auto !important;
  max-width: none !important;
}

/* „Kwota”: dwa natywne pola tabeli i separator aż do obu krawędzi. */
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 {
  display: table-row !important;
  width: auto !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > th,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > td {
  display: table-cell !important;
  box-sizing: border-box !important;
  padding: 13px 12px !important;
  border-bottom: 1px solid rgba(29, 28, 52, 0.11) !important;
  vertical-align: middle !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > th {
  width: 66% !important;
  text-align: left !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > td {
  width: 34% !important;
  text-align: right !important;
  white-space: nowrap !important;
}

/* „Przesyłka” zajmuje prawdziwe dwie kolumny tabeli. */
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-shipping-row-v66 {
  display: table-row !important;
  width: auto !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-shipping-row-v66 > .aiomy-shipping-source-v66 {
  display: none !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-shipping-row-v66 > td.aiomy-shipping-cell-v66 {
  display: table-cell !important;
  float: none !important;
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 15px 12px 16px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(29, 28, 52, 0.11) !important;
  box-sizing: border-box !important;
  vertical-align: top !important;
  text-align: left !important;
  white-space: normal !important;
}

html body.aiomy-checkout-layout-v66
  .aiomy-shipping-title-v66 {
  display: block !important;
  width: 100% !important;
  margin: 0 0 10px !important;
  color: #20203b !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

/* Obie metody dostawy i CTA mają dokładnie tę samą oś oraz szerokość. */
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66
  td.aiomy-shipping-cell-v66 ul#shipping_method,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66
  td.aiomy-shipping-cell-v66 ul.woocommerce-shipping-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: min(100%, 240px) !important;
  max-width: 240px !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  list-style: none !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66
  td.aiomy-shipping-cell-v66 ul#shipping_method > li,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66
  td.aiomy-shipping-cell-v66 ul.woocommerce-shipping-methods > li {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

/* Osobny, pełnoszeroki wiersz przycisku InPost. */
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 {
  display: table-row !important;
  width: auto !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > .aiomy-pickup-sibling-v66 {
  display: none !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > td.aiomy-pickup-cell-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > th.aiomy-pickup-cell-v66 {
  display: table-cell !important;
  float: none !important;
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(29, 28, 52, 0.11) !important;
  box-sizing: border-box !important;
  text-align: center !important;
  vertical-align: middle !important;
}

html body.aiomy-checkout-layout-v66
  #order_review .aiomy-pickup-wrap-v66 {
  float: none !important;
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  transform: none !important;
}

html body.aiomy-checkout-layout-v66
  #order_review .aiomy-pickup-trigger-v66 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  position: static !important;
  width: min(100%, 240px) !important;
  max-width: 240px !important;
  min-width: 0 !important;
  min-height: 62px !important;
  height: auto !important;
  margin: 0 auto !important;
  padding: 10px 16px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #ffc400 !important;
  background-image: none !important;
  color: #ffffff !important;
  box-shadow: 0 12px 22px rgba(32, 32, 59, 0.16) !important;
  box-sizing: border-box !important;
  font-size: 1.04rem !important;
  font-weight: 800 !important;
  line-height: 0.94 !important;
  text-align: center !important;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  transform: none !important;
}

/* Wybrany Paczkomat może wykorzystać całą dostępną szerokość wiersza. */
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 .aiomy-pickup-cell-v66 address,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 .aiomy-pickup-cell-v66 [class*="address" i],
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 .aiomy-pickup-cell-v66 [class*="selected" i] {
  float: none !important;
  width: min(100%, 240px) !important;
  max-width: 240px !important;
  min-width: 0 !important;
  margin: 10px auto 0 !important;
  box-sizing: border-box !important;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
  text-align: left !important;
}

/* Suma: etykieta przy lewej, kwota i VAT przy prawej ścianie. */
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 {
  display: table-row !important;
  width: auto !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > th,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td {
  display: table-cell !important;
  box-sizing: border-box !important;
  width: 50% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 15px 12px !important;
  border: 0 !important;
  vertical-align: middle !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > th {
  text-align: left !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td {
  text-align: right !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td > strong,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td .amount,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td .includes_tax {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: auto !important;
  text-align: right !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td .includes_tax .amount {
  display: inline !important;
  width: auto !important;
}

/* ======================================================================
   AIOMY V69 — HYBRYDOWY PANEL KONTA, STATUS GOŚCIA I PROGRAM PUNKTOWY
   Celowo na końcu pliku: zachowuje niezmienny nagłówek na każdej stronie.
   ====================================================================== */

:root {
  --aiomy-account-ink: #201f39;
  --aiomy-account-muted: #77758d;
  --aiomy-account-line: rgba(32, 31, 57, 0.11);
  --aiomy-account-pink: #f24f92;
  --aiomy-account-violet: #8a61f4;
  --aiomy-account-gradient: linear-gradient(105deg, #f34d91 0%, #fb6bab 48%, #8b61f4 100%);
  --aiomy-account-bg: linear-gradient(145deg, #fff8e4 0%, #fff7fb 48%, #edf1ff 100%);
}

/* Ikona konta jest równorzędna z koszykiem i nie tworzy dodatkowego kafla. */
html body #site-header .aiomy-account-btn {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  flex: 0 0 40px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  margin: 0 !important;
  padding: 8px !important;
  border: 0 !important;
  border-radius: 50% !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--aiomy-account-ink) !important;
  cursor: pointer !important;
  line-height: 1 !important;
  transition: color 180ms ease, transform 180ms ease, background-color 180ms ease !important;
}

html body #site-header .aiomy-account-btn svg {
  display: block !important;
  width: 23px !important;
  height: 23px !important;
  overflow: visible !important;
  stroke: currentColor !important;
}

@media (hover: hover) and (pointer: fine) {
  html body #site-header .aiomy-account-btn:hover {
    background: rgba(242, 79, 146, 0.08) !important;
    color: var(--aiomy-account-pink) !important;
    transform: translateY(-1px) !important;
  }
}

html body #site-header .aiomy-account-btn:focus-visible {
  outline: 3px solid rgba(242, 79, 146, 0.24) !important;
  outline-offset: 2px !important;
  color: var(--aiomy-account-pink) !important;
}

html body.aiomy-account-open {
  overflow: hidden !important;
}

/* Rezerwuje miejsce na scrollbar przed otwarciem panelu, dzięki czemu
   nagłówek i cała strona nie wykonują poziomego „skoku” na desktopie. */
html:has(.aiomy-account-shell) {
  scrollbar-gutter: stable;
}

.aiomy-account-shell[hidden] {
  display: none !important;
}

.aiomy-account-shell {
  position: fixed !important;
  z-index: 2147482500 !important;
  inset: 0 !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-end !important;
  width: 100% !important;
  max-width: none !important;
  height: 100vh !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  font-family: inherit !important;
  color: var(--aiomy-account-ink) !important;
  pointer-events: none !important;
}

.aiomy-account-shell.is-open {
  pointer-events: auto !important;
}

.aiomy-account-backdrop {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: rgba(28, 27, 49, 0.46) !important;
  -webkit-backdrop-filter: blur(4px) !important;
  backdrop-filter: blur(4px) !important;
  opacity: 0 !important;
  cursor: default !important;
  transition: opacity 300ms ease !important;
}

.aiomy-account-shell.is-open .aiomy-account-backdrop {
  opacity: 1 !important;
}

.aiomy-account-drawer {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  flex-direction: column !important;
  width: min(100%, 460px) !important;
  min-width: 0 !important;
  max-width: 460px !important;
  height: 100vh !important;
  height: 100dvh !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 30px 0 0 30px !important;
  background: var(--aiomy-account-bg) !important;
  box-shadow: -24px 0 70px rgba(36, 31, 70, 0.2) !important;
  outline: 0 !important;
  transform: translate3d(104%, 0, 0) !important;
  transition: transform 330ms cubic-bezier(0.22, 1, 0.36, 1) !important;
}

.aiomy-account-shell.is-open .aiomy-account-drawer {
  transform: translate3d(0, 0, 0) !important;
}

.aiomy-account-drawer__header {
  position: relative !important;
  z-index: 2 !important;
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  justify-content: space-between !important;
  min-height: 94px !important;
  margin: 0 !important;
  padding: 20px 22px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--aiomy-account-line) !important;
  background: rgba(255, 255, 255, 0.8) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  backdrop-filter: blur(18px) !important;
}

.aiomy-account-drawer__header > div > span {
  display: block !important;
  margin: 0 0 3px !important;
  color: var(--aiomy-account-pink) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: 0.16em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

.aiomy-account-drawer__header h2 {
  margin: 0 !important;
  color: var(--aiomy-account-ink) !important;
  font-size: clamp(24px, 4vw, 30px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.05 !important;
}

.aiomy-account-drawer__subtitle {
  display: block !important;
  margin: 5px 0 0 !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
  text-transform: none !important;
}

.aiomy-account-close {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative !important;
  display: inline-flex !important;
  flex: 0 0 44px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid var(--aiomy-account-line) !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(32, 31, 57, 0.08) !important;
  cursor: pointer !important;
}

.aiomy-account-close span,
.aiomy-account-close span::after {
  position: absolute !important;
  width: 18px !important;
  height: 2px !important;
  border-radius: 3px !important;
  background: var(--aiomy-account-ink) !important;
  content: "" !important;
  transform: rotate(45deg) !important;
}

.aiomy-account-close span::after {
  inset: 0 !important;
  transform: rotate(90deg) !important;
}

.aiomy-account-close:focus-visible {
  outline: 3px solid rgba(242, 79, 146, 0.25) !important;
  outline-offset: 2px !important;
}

.aiomy-account-drawer__body {
  flex: 1 1 auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 20px 20px 32px !important;
  overflow-x: hidden !important;
  overflow-y: auto !important;
  overscroll-behavior: contain !important;
  -webkit-overflow-scrolling: touch !important;
}

.aiomy-account-drawer *,
.aiomy-account-drawer *::before,
.aiomy-account-drawer *::after {
  box-sizing: border-box !important;
}

.aiomy-account-tabs {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 5px !important;
  margin: 0 0 18px !important;
  padding: 5px !important;
  border: 1px solid rgba(32, 31, 57, 0.08) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.75) !important;
  box-shadow: 0 10px 30px rgba(32, 31, 57, 0.05) !important;
}

/* Status zamówienia gościa jest pierwszą akcją pod nagłówkiem panelu. */
.aiomy-account-guest-status {
  margin: 0 0 16px !important;
  border: 1px solid rgba(73, 59, 113, 0.1) !important;
  border-radius: 20px !important;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 253, 0.94)) !important;
  box-shadow: 0 14px 34px rgba(49, 43, 81, 0.075) !important;
  overflow: hidden !important;
}

.aiomy-account-guest-status > summary {
  display: grid !important;
  grid-template-columns: 42px minmax(0, 1fr) 18px !important;
  align-items: center !important;
  gap: 11px !important;
  min-height: 78px !important;
  margin: 0 !important;
  padding: 14px 16px !important;
  list-style: none !important;
  color: var(--aiomy-account-ink) !important;
  cursor: pointer !important;
  transition: background 180ms ease, box-shadow 180ms ease !important;
}

.aiomy-account-guest-status > summary:hover {
  background: rgba(246, 81, 148, 0.035) !important;
}

.aiomy-account-guest-status > summary:focus-visible {
  outline: 3px solid rgba(240, 77, 145, 0.2) !important;
  outline-offset: -3px !important;
}

.aiomy-account-guest-status > summary::-webkit-details-marker {
  display: none !important;
}

.aiomy-account-guest-status > summary > span:first-child {
  display: grid !important;
  width: 42px !important;
  height: 42px !important;
  place-items: center !important;
  border: 1px solid rgba(240, 77, 145, 0.16) !important;
  border-radius: 15px !important;
  background: linear-gradient(145deg, rgba(255, 238, 247, 0.98), rgba(241, 237, 255, 0.98)) !important;
  box-shadow: 0 8px 18px rgba(139, 92, 246, 0.11), inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
  color: #e94891 !important;
}

.aiomy-account-guest-status > summary > span:first-child svg {
  width: 19px !important;
  height: 19px !important;
  stroke-width: 2 !important;
}

.aiomy-account-guest-status > summary strong,
.aiomy-account-guest-status > summary small {
  display: block !important;
}

.aiomy-account-guest-status > summary strong {
  font-size: 13px !important;
  line-height: 1.3 !important;
}

.aiomy-account-guest-status > summary small {
  margin-top: 3px !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
}

.aiomy-account-guest-status__chevron {
  width: 10px !important;
  height: 10px !important;
  border-right: 2px solid currentColor !important;
  border-bottom: 2px solid currentColor !important;
  transform: rotate(45deg) translate(-2px, -2px) !important;
  transition: transform 180ms ease !important;
}

.aiomy-account-guest-status[open] .aiomy-account-guest-status__chevron {
  transform: rotate(225deg) translate(-1px, -1px) !important;
}

.aiomy-account-guest-status__body {
  padding: 12px 16px 18px !important;
  border-top: 1px solid rgba(32, 31, 57, 0.08) !important;
}

.aiomy-account-guest-status__body > p {
  margin: 14px 0 10px !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.aiomy-account-guest-status form {
  display: grid !important;
  gap: 8px !important;
}

.aiomy-account-guest-status label {
  margin: 5px 0 0 !important;
  color: var(--aiomy-account-ink) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
}

.aiomy-account-field-hint {
  display: block !important;
  margin: -2px 0 2px !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

.aiomy-account-guest-status input {
  display: block !important;
  width: 100% !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 1px solid rgba(32, 31, 57, 0.15) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--aiomy-account-ink) !important;
  font: inherit !important;
}

.aiomy-account-tabs button {
  appearance: none !important;
  -webkit-appearance: none !important;
  min-width: 0 !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 8px 5px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #6f6d83 !important;
  font: inherit !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  cursor: pointer !important;
}

.aiomy-account-tabs button.is-active,
.aiomy-account-tabs button[aria-selected="true"] {
  background: var(--aiomy-account-gradient) !important;
  box-shadow: 0 9px 20px rgba(220, 73, 156, 0.22) !important;
  color: #fff !important;
}

.aiomy-account-tab-panel[hidden] {
  display: none !important;
}

.aiomy-account-tab-panel {
  margin: 0 !important;
  padding: 20px !important;
  border: 1px solid rgba(32, 31, 57, 0.08) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 18px 44px rgba(49, 43, 81, 0.08) !important;
}

.aiomy-account-tab-panel form,
.aiomy-account-link-orders form {
  display: grid !important;
  gap: 8px !important;
  margin: 0 !important;
}

.aiomy-account-tab-panel label,
.aiomy-account-link-orders label {
  margin: 5px 0 0 !important;
  color: var(--aiomy-account-ink) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}

.aiomy-account-tab-panel label small {
  color: var(--aiomy-account-muted) !important;
  font-weight: 500 !important;
}

.aiomy-account-tab-panel input[type="text"],
.aiomy-account-tab-panel input[type="email"],
.aiomy-account-tab-panel input[type="tel"],
.aiomy-account-tab-panel input[type="password"],
.aiomy-account-link-orders input[type="tel"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  height: 48px !important;
  margin: 0 !important;
  padding: 0 14px !important;
  border: 1px solid rgba(32, 31, 57, 0.15) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--aiomy-account-ink) !important;
  font: inherit !important;
  font-size: 15px !important;
  line-height: 1 !important;
  outline: 0 !important;
}

.aiomy-account-tab-panel input:focus,
.aiomy-account-link-orders input:focus {
  border-color: var(--aiomy-account-pink) !important;
  box-shadow: 0 0 0 4px rgba(242, 79, 146, 0.12) !important;
}

.aiomy-account-checkbox {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 9px !important;
  margin: 8px 0 2px !important;
  color: #69677e !important;
  cursor: pointer !important;
}

.aiomy-account-checkbox input {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: grid !important;
  place-items: center !important;
  width: 19px !important;
  height: 19px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1.5px solid rgba(32, 31, 57, 0.22) !important;
  border-radius: 6px !important;
  background: #fff !important;
}

.aiomy-account-checkbox input:checked {
  border-color: transparent !important;
  background: var(--aiomy-account-gradient) !important;
}

.aiomy-account-checkbox input:checked::after {
  width: 8px !important;
  height: 4px !important;
  border-bottom: 2px solid #fff !important;
  border-left: 2px solid #fff !important;
  content: "" !important;
  transform: translateY(-1px) rotate(-45deg) !important;
}

.aiomy-account-checkbox a,
.aiomy-account-forgot,
.aiomy-account-section-heading a {
  color: var(--aiomy-account-pink) !important;
  font-weight: 750 !important;
  text-decoration: none !important;
}

.aiomy-account-button {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 50px !important;
  margin: 9px 0 0 !important;
  padding: 12px 18px !important;
  border: 0 !important;
  border-radius: 15px !important;
  box-shadow: none !important;
  color: #fff !important;
  font: inherit !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform 170ms ease, box-shadow 170ms ease, opacity 170ms ease !important;
}

.aiomy-account-button--gradient {
  background: var(--aiomy-account-gradient) !important;
  box-shadow: 0 12px 26px rgba(219, 68, 151, 0.2) !important;
}

.aiomy-account-button--dark {
  background: #292838 !important;
}

@media (hover: hover) and (pointer: fine) {
  .aiomy-account-button:not(:disabled):hover {
    transform: translateY(-2px) !important;
  }
  .aiomy-account-button--gradient:not(:disabled):hover {
    box-shadow: 0 15px 30px rgba(219, 68, 151, 0.3) !important;
  }
}

.aiomy-account-button:disabled,
.aiomy-account-button.is-busy {
  opacity: 0.58 !important;
  cursor: wait !important;
}

.aiomy-account-forgot {
  display: inline-block !important;
  margin: 12px 0 0 !important;
  font-size: 13px !important;
}

.aiomy-account-divider {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 20px 0 14px !important;
  color: #9391a2 !important;
  font-size: 12px !important;
}

.aiomy-account-divider::before,
.aiomy-account-divider::after {
  flex: 1 1 auto !important;
  height: 1px !important;
  background: var(--aiomy-account-line) !important;
  content: "" !important;
}

.aiomy-account-social h3,
.aiomy-account-section-heading h3,
.aiomy-account-preferences > h3 {
  margin: 0 !important;
  color: var(--aiomy-account-ink) !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

.aiomy-account-social__buttons {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin: 12px 0 0 !important;
}

.aiomy-account-social__button {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr) 28px !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 46px !important;
  margin: 0 !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(32, 31, 57, 0.13) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--aiomy-account-ink) !important;
  font: inherit !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  cursor: pointer !important;
}

.aiomy-account-social__button::after {
  content: "" !important;
}

.aiomy-account-social__button > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 28px !important;
  height: 28px !important;
  border-radius: 9px !important;
  background: #f6f5fa !important;
  font-size: 15px !important;
  font-weight: 850 !important;
}

.aiomy-account-register-note,
.aiomy-account-token-note,
.aiomy-account-empty-note {
  margin: 12px 0 0 !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 12px !important;
  line-height: 1.55 !important;
}

.aiomy-account-social__native {
  margin-top: 12px !important;
}

.aiomy-account-benefits {
  margin: 0 0 12px !important;
  padding: 14px !important;
  border-radius: 16px !important;
  background: linear-gradient(135deg, rgba(246, 81, 148, 0.09), rgba(136, 98, 244, 0.09)) !important;
}

.aiomy-account-benefits strong {
  display: block !important;
  color: var(--aiomy-account-ink) !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}

.aiomy-account-benefits p {
  margin: 4px 0 0 !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.aiomy-account-form-message,
.aiomy-account-order-status {
  display: block !important;
  min-height: 0 !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 12px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
}

.aiomy-account-form-message:empty,
.aiomy-account-order-status:empty {
  display: none !important;
}

.aiomy-account-form-message.is-error,
.aiomy-account-order-status.is-error {
  color: #b72d55 !important;
}

.aiomy-account-form-message.is-success,
.aiomy-account-order-status.is-success {
  color: #18845e !important;
}

/* Widok zalogowanego klienta. */
.aiomy-account-dashboard {
  display: grid !important;
  gap: 14px !important;
}

.aiomy-account-dashboard > section,
.aiomy-account-link-orders,
.aiomy-account-quick-links {
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid rgba(32, 31, 57, 0.08) !important;
  border-radius: 21px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 36px rgba(49, 43, 81, 0.06) !important;
}

.aiomy-account-welcome {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.aiomy-account-welcome__avatar,
.aiomy-account-card-icon {
  display: inline-flex !important;
  flex: 0 0 44px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, rgba(246, 81, 148, 0.14), rgba(136, 98, 244, 0.14)) !important;
  color: var(--aiomy-account-pink) !important;
}

.aiomy-account-welcome p,
.aiomy-account-points p {
  margin: 0 !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

.aiomy-account-welcome h3 {
  margin: 1px 0 !important;
  color: var(--aiomy-account-ink) !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

.aiomy-account-welcome small {
  display: block !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 12px !important;
}

.aiomy-account-points {
  background: linear-gradient(135deg, #2c2940 0%, #403660 100%) !important;
  color: #fff !important;
}

.aiomy-account-points__top {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
}

.aiomy-account-points .aiomy-account-card-icon {
  background: rgba(255, 255, 255, 0.13) !important;
  color: #fff !important;
}

.aiomy-account-points__top p,
.aiomy-account-points > p {
  color: rgba(255, 255, 255, 0.72) !important;
}

.aiomy-account-points__top strong {
  display: block !important;
  color: #fff !important;
  font-size: 26px !important;
  font-weight: 850 !important;
  line-height: 1.05 !important;
}

.aiomy-account-points__progress {
  height: 8px !important;
  margin: 14px 0 8px !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.15) !important;
}

.aiomy-account-points__progress span {
  display: block !important;
  height: 100% !important;
  border-radius: inherit !important;
  background: var(--aiomy-account-gradient) !important;
}

.aiomy-account-quick-links {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  padding: 10px !important;
}

.aiomy-account-verification-note {
  display: flex !important;
  align-items: flex-start !important;
  gap: 11px !important;
  margin: 0 !important;
  padding: 13px 14px !important;
  border: 1px solid rgba(246, 81, 148, 0.17) !important;
  border-radius: 17px !important;
  background: linear-gradient(135deg, rgba(255, 246, 218, 0.92), rgba(247, 236, 255, 0.92)) !important;
  color: var(--aiomy-account-ink) !important;
}

.aiomy-account-verification-note > svg {
  flex: 0 0 20px !important;
  width: 20px !important;
  height: 20px !important;
  margin-top: 1px !important;
  color: var(--aiomy-account-pink) !important;
}

.aiomy-account-verification-note span,
.aiomy-account-verification-note strong,
.aiomy-account-verification-note small {
  display: block !important;
}

.aiomy-account-verification-note strong {
  margin: 0 0 3px !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.aiomy-account-verification-note small {
  color: var(--aiomy-account-muted) !important;
  font-size: 11px !important;
  line-height: 1.45 !important;
}

.aiomy-account-quick-links a {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  min-height: 84px !important;
  padding: 9px 5px !important;
  border-radius: 14px !important;
  background: #faf9fc !important;
  color: var(--aiomy-account-ink) !important;
  text-align: center !important;
  text-decoration: none !important;
}

.aiomy-account-quick-links a > span {
  color: var(--aiomy-account-pink) !important;
}

.aiomy-account-quick-links strong {
  font-size: 11px !important;
  font-weight: 750 !important;
  line-height: 1.25 !important;
}

.aiomy-account-section-heading {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin: 0 0 11px !important;
}

.aiomy-account-section-heading a {
  font-size: 12px !important;
  white-space: nowrap !important;
}

.aiomy-account-orders__list {
  display: grid !important;
  gap: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.aiomy-account-orders__list li {
  margin: 0 !important;
  padding: 0 !important;
  border-top: 1px solid var(--aiomy-account-line) !important;
}

.aiomy-account-orders__list a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  padding: 12px 0 !important;
  color: var(--aiomy-account-ink) !important;
  text-decoration: none !important;
}

.aiomy-account-orders__list strong,
.aiomy-account-orders__list small {
  display: block !important;
}

.aiomy-account-orders__list strong {
  font-size: 13px !important;
  font-weight: 750 !important;
}

.aiomy-account-orders__list small {
  margin-top: 2px !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 11px !important;
}

.aiomy-account-orders__status {
  flex: 0 0 auto !important;
  padding: 6px 9px !important;
  border-radius: 999px !important;
  background: rgba(242, 79, 146, 0.1) !important;
  color: #c43775 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
}

.aiomy-account-preference-row {
  display: grid !important;
  grid-template-columns: 40px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 12px !important;
}

.aiomy-account-preference-row .aiomy-account-card-icon {
  width: 40px !important;
  height: 40px !important;
  flex-basis: 40px !important;
}

.aiomy-account-preference-row strong,
.aiomy-account-preference-row small {
  display: block !important;
}

.aiomy-account-preference-row strong {
  font-size: 13px !important;
  font-weight: 750 !important;
}

.aiomy-account-preference-row small {
  margin-top: 2px !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 11px !important;
}

.aiomy-account-switch {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: relative !important;
  display: block !important;
  width: 48px !important;
  height: 28px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #d9d8e0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  transition: background 180ms ease !important;
}

.aiomy-account-switch span:first-child {
  position: absolute !important;
  top: 4px !important;
  left: 4px !important;
  width: 20px !important;
  height: 20px !important;
  border-radius: 50% !important;
  background: #fff !important;
  box-shadow: 0 3px 8px rgba(32, 31, 57, 0.2) !important;
  transition: transform 180ms ease !important;
}

.aiomy-account-switch.is-on,
.aiomy-account-switch[aria-checked="true"] {
  background: var(--aiomy-account-gradient) !important;
}

.aiomy-account-switch.is-on span:first-child,
.aiomy-account-switch[aria-checked="true"] span:first-child {
  transform: translateX(20px) !important;
}

.aiomy-account-link-orders summary {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  color: var(--aiomy-account-ink) !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

.aiomy-account-link-orders summary svg {
  color: var(--aiomy-account-pink) !important;
}

.aiomy-account-link-orders > p {
  margin: 11px 0 !important;
  color: var(--aiomy-account-muted) !important;
  font-size: 12px !important;
  line-height: 1.5 !important;
}

.aiomy-account-logout {
  display: inline-flex !important;
  justify-self: center !important;
  margin: 2px auto 0 !important;
  color: #77758d !important;
  font-size: 12px !important;
  font-weight: 750 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

.aiomy-account-coupons[hidden] {
  display: none !important;
}

.aiomy-account-coupons {
  margin: 14px 0 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.aiomy-account-coupons > strong {
  display: block !important;
  margin: 0 0 7px !important;
  color: #fff !important;
  font-size: 12px !important;
  font-weight: 800 !important;
}

.aiomy-account-coupons ul {
  display: grid !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.aiomy-account-coupons li {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 7px 9px !important;
  border-radius: 10px !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

.aiomy-account-coupons code {
  color: #fff !important;
  font-family: inherit !important;
  font-size: 12px !important;
  font-weight: 800 !important;
  letter-spacing: 0.06em !important;
}

.aiomy-account-coupons button {
  appearance: none !important;
  -webkit-appearance: none !important;
  margin: 0 !important;
  padding: 5px 8px !important;
  border: 0 !important;
  border-radius: 8px !important;
  background: #fff !important;
  color: #343047 !important;
  font: inherit !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

.aiomy-account-social__native .button-social-login,
.aiomy-account-social__native a.button,
.aiomy-account-social__native button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 46px !important;
  margin: 7px 0 0 !important;
  padding: 10px 14px !important;
  border: 1px solid rgba(32, 31, 57, 0.13) !important;
  border-radius: 14px !important;
  background: #fff !important;
  box-shadow: none !important;
  color: var(--aiomy-account-ink) !important;
  font-size: 13px !important;
  font-weight: 750 !important;
  text-decoration: none !important;
}

/* Dobrowolna zgoda w klasycznym checkoutcie — oddzielona od konta. */
html body .aiomy-checkout-newsletter {
  margin: 14px 0 !important;
  padding: 14px 15px !important;
  border: 1px solid rgba(32, 31, 57, 0.1) !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, rgba(255, 248, 226, 0.88), rgba(250, 239, 255, 0.88)) !important;
}

html body .aiomy-checkout-newsletter label {
  color: var(--aiomy-account-ink) !important;
  font-size: 13px !important;
  font-weight: 650 !important;
  line-height: 1.45 !important;
}

/* Ekran telefonu: ten sam rozmiar paska i logo na każdej podstronie. */
@media (max-width: 768px) {
  html body #site-header.site-header .header-actions {
    display: flex !important;
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    gap: 6px !important;
  }

  html body #site-header.site-header .cart-btn,
  html body #site-header.site-header .aiomy-account-btn,
  html body #site-header.site-header .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 8px !important;
    transform: none !important;
  }

  .aiomy-account-drawer {
    width: min(100%, 430px) !important;
    max-width: 430px !important;
    border-radius: 24px 0 0 24px !important;
  }

  .aiomy-account-drawer__header {
    min-height: 80px !important;
    padding: 15px 16px !important;
  }

  .aiomy-account-drawer__body {
    padding: 14px 14px calc(24px + env(safe-area-inset-bottom)) !important;
  }

  .aiomy-account-tab-panel {
    padding: 16px !important;
    border-radius: 20px !important;
  }
}

@media (max-width: 380px) {
  .aiomy-account-tabs button {
    padding-right: 3px !important;
    padding-left: 3px !important;
    font-size: 10.5px !important;
  }

  .aiomy-account-drawer {
    width: 100% !important;
    max-width: none !important;
    border-radius: 0 !important;
  }

  .aiomy-account-quick-links {
    grid-template-columns: 1fr !important;
  }

  .aiomy-account-quick-links a {
    min-height: 52px !important;
    flex-direction: row !important;
    justify-content: flex-start !important;
    padding: 9px 12px !important;
    text-align: left !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiomy-account-backdrop,
  .aiomy-account-drawer,
  .aiomy-account-button,
  .aiomy-account-switch,
  .aiomy-account-switch span:first-child {
    transition-duration: 0.01ms !important;
  }
}

/* ======================================================================
   AIOMY V68 — KOSMETYKA INPOST
   Wyśrodkowane logo Paczkomatu i przycisk bez szarej poświaty.
   ====================================================================== */

html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__methods label img,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__methods li > img {
  display: block !important;
  flex: 0 0 100% !important;
  align-self: center !important;
  width: 100% !important;
  max-width: 58px !important;
  height: auto !important;
  margin: 8px auto 0 !important;
  object-fit: contain !important;
}

html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button:hover,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button:focus,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button:focus-visible,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button:active,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button:hover,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button:focus,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button:focus-visible,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button:active,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner .button,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner [role="button"] {
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button::before,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button::after,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button::before,
html body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button::after {
  box-shadow: none !important;
  filter: none !important;
}

/* AIOMY V67 — końcowa osłona przed starszą kaskadą checkoutu. */
html body.aiomy-checkout-layout-v67 #order_review
  > table.woocommerce-checkout-review-order-table[data-aiomy-order-source-v67],
html body.aiomy-checkout-layout-v67 .woocommerce-checkout-review-order
  > table.woocommerce-checkout-review-order-table[data-aiomy-order-source-v67] {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  visibility: hidden !important;
}

html body.aiomy-checkout-layout-v67 #order_review
  > .aiomy-order-summary-v67,
html body.aiomy-checkout-layout-v67 .woocommerce-checkout-review-order
  > .aiomy-order-summary-v67 {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  visibility: visible !important;
}

/* ======================================================================
   AIOMY V67 — NOWA STRUKTURA „TWOJE ZAMÓWIENIE”
   Jeden układ blokowy zamiast konfliktujących wersji tabeli V59–V66.
   ====================================================================== */

body.aiomy-checkout-layout-v67
  table.woocommerce-checkout-review-order-table[data-aiomy-order-source-v67] {
  display: none !important;
}

body.aiomy-checkout-layout-v67 .aiomy-shipping-title-v66,
body.aiomy-checkout-layout-v67 .aiomy-shipping-title-v67 {
  display: none !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67 {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(29, 28, 52, 0.1) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  color: #1d1c34 !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67 *,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67 *::before,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67 *::after {
  box-sizing: border-box !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__products,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__footer,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__shipping {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__line {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) max-content !important;
  align-items: center !important;
  column-gap: 18px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 13px 12px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(29, 28, 52, 0.1) !important;
  background: transparent !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__head {
  padding-top: 14px !important;
  padding-bottom: 11px !important;
  font-weight: 800 !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__product {
  align-items: start !important;
  padding-top: 14px !important;
  padding-bottom: 14px !important;
  font-size: 13px !important;
  line-height: 1.45 !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__label,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__value,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__cell-copy {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  float: none !important;
  position: static !important;
  transform: none !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__label {
  text-align: left !important;
  overflow-wrap: anywhere !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__value {
  text-align: right !important;
  white-space: nowrap !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__head,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__subtotal,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__extra {
  font-size: 13px !important;
  font-weight: 800 !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__shipping {
  border-bottom: 1px solid rgba(29, 28, 52, 0.1) !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__shipping-title {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 15px 12px 8px !important;
  border: 0 !important;
  background: transparent !important;
  color: #1d1c34 !important;
  font: inherit !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods {
  display: block !important;
  width: min(calc(100% - 24px), 240px) !important;
  min-width: 0 !important;
  max-width: 240px !important;
  margin: 0 auto !important;
  padding: 0 0 15px !important;
  border: 0 !important;
  background: transparent !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul#shipping_method,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul.woocommerce-shipping-methods {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
  text-align: left !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul#shipping_method > li,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul.woocommerce-shipping-methods > li {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  column-gap: 9px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 11px 12px !important;
  overflow: hidden !important;
  border: 1px solid rgba(29, 28, 52, 0.12) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
  float: none !important;
  text-align: left !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul#shipping_method > li.is-selected,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul.woocommerce-shipping-methods > li.is-selected,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul#shipping_method > li:has(input[type="radio"]:checked),
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  ul.woocommerce-shipping-methods > li:has(input[type="radio"]:checked) {
  border-color: #ff7fab !important;
  box-shadow: 0 5px 14px rgba(240, 77, 145, 0.1) !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods
  input[type="radio"] {
  grid-column: 1 !important;
  align-self: start !important;
  width: 15px !important;
  height: 15px !important;
  min-width: 15px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  accent-color: #f04d91 !important;
  float: none !important;
  transform: none !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods label {
  grid-column: 2 !important;
  display: flex !important;
  flex-flow: row wrap !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 4px 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #1d1c34 !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods label .amount {
  margin-left: auto !important;
  white-space: nowrap !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods label img {
  display: block !important;
  flex: 0 0 100% !important;
  width: auto !important;
  max-width: 58px !important;
  height: auto !important;
  max-height: 42px !important;
  margin: 6px 0 0 !important;
  object-fit: contain !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 12px !important;
  border: 0 !important;
  border-top: 1px solid rgba(29, 28, 52, 0.1) !important;
  background: transparent !important;
  text-align: center !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup-inner,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup-address {
  display: block !important;
  width: min(100%, 240px) !important;
  min-width: 0 !important;
  max-width: 240px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup-address {
  margin-top: 10px !important;
  padding: 11px 12px !important;
  border: 1px solid rgba(29, 28, 52, 0.12) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: #1d1c34 !important;
  font-size: 12px !important;
  line-height: 1.45 !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup-inner > *,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup-address > * {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  white-space: normal !important;
  overflow-wrap: anywhere !important;
  word-break: normal !important;
}

body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button,
body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button,
body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner .button,
body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner [role="button"] {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 62px !important;
  margin: 0 !important;
  padding: 10px 16px !important;
  border: 0 !important;
  border-radius: 3px !important;
  background: #ffc400 !important;
  box-shadow: 0 10px 20px rgba(112, 84, 0, 0.17) !important;
  color: #fff !important;
  font: inherit !important;
  font-size: 18px !important;
  font-weight: 800 !important;
  line-height: 1.05 !important;
  text-align: center !important;
  text-decoration: none !important;
  white-space: normal !important;
  cursor: pointer !important;
  float: none !important;
  transform: none !important;
}

body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button:hover,
body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-button:focus-visible,
body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button:hover,
body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__pickup-inner button:focus-visible {
  background: #f5b700 !important;
  color: #fff !important;
  transform: none !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 15px 12px !important;
  border: 0 !important;
  background: #fff !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total
  > .aiomy-order-summary-v67__label {
  flex: 1 1 auto !important;
  align-self: center !important;
  color: #1d1c34 !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  text-align: left !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total
  > .aiomy-order-summary-v67__value {
  display: flex !important;
  flex: 0 0 auto !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  margin-left: auto !important;
  color: #1d1c34 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total strong,
body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total .amount {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  color: #1d1c34 !important;
  font-size: 21px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  text-align: right !important;
}

body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total .includes_tax {
  display: block !important;
  width: 100% !important;
  margin: 3px 0 0 !important;
  color: #77758c !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  line-height: 1.25 !important;
  text-align: right !important;
  white-space: normal !important;
}

body.aiomy-checkout-layout-v67
  .aiomy-order-summary-v67__total .includes_tax .amount {
  display: inline !important;
  font-size: inherit !important;
  font-weight: 700 !important;
  line-height: inherit !important;
}

@media (max-width: 767px) {
  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67 {
    border-radius: 16px !important;
  }

  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__line {
    column-gap: 12px !important;
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__shipping-title {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__methods,
  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup-inner,
  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup-address {
    width: 100% !important;
    max-width: none !important;
  }

  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__pickup {
    padding: 12px 14px !important;
  }

  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total {
    padding: 15px 14px !important;
  }
}

@media (max-width: 380px) {
  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__product {
    grid-template-columns: minmax(0, 1fr) auto !important;
    font-size: 12px !important;
  }

  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total strong,
  body.aiomy-checkout-layout-v67 .aiomy-order-summary-v67__total .amount {
    font-size: 19px !important;
  }
}

@media (max-width: 360px) {
  html body.aiomy-checkout-layout-v66
    table.aiomy-checkout-table-v66
    td.aiomy-shipping-cell-v66 ul#shipping_method,
  html body.aiomy-checkout-layout-v66
    table.aiomy-checkout-table-v66
    td.aiomy-shipping-cell-v66 ul.woocommerce-shipping-methods,
  html body.aiomy-checkout-layout-v66
    #order_review .aiomy-pickup-trigger-v66,
  html body.aiomy-checkout-layout-v66
    table.aiomy-checkout-table-v66 .aiomy-pickup-cell-v66 address,
  html body.aiomy-checkout-layout-v66
    table.aiomy-checkout-table-v66 .aiomy-pickup-cell-v66 [class*="address" i],
  html body.aiomy-checkout-layout-v66
    table.aiomy-checkout-table-v66 .aiomy-pickup-cell-v66 [class*="selected" i] {
    width: 100% !important;
    max-width: none !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V27
   Licznik sztuk, zwarty panel zakupowy i poprawna miniatura mobilna.
════════════════════════════════════════ */

body.aiomy-shop-v22 .aiomy-catalog-card__quantity {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  min-width: 0;
  min-height: 32px;
  margin: 0;
  padding: 0;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity > label {
  color: var(--text);
  font-size: 0.7rem;
  font-weight: 700;
  line-height: 1.2;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control {
  display: grid;
  grid-template-columns: 30px 42px 30px;
  align-items: center;
  height: 32px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(45, 45, 58, 0.13);
  border-radius: 11px;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control button,
body.aiomy-shop-v22 .aiomy-catalog-card__quantity-input {
  width: 100%;
  height: 30px;
  min-width: 0;
  margin: 0;
  padding: 0;
  color: var(--text);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 30px;
  text-align: center;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control button {
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control button:first-child {
  border-right: 1px solid rgba(45, 45, 58, 0.09);
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control button:last-child {
  border-left: 1px solid rgba(45, 45, 58, 0.09);
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control button:disabled {
  color: rgba(45, 45, 58, 0.28);
  cursor: default;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-input {
  appearance: textfield;
  -moz-appearance: textfield;
  outline: 0;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-input::-webkit-inner-spin-button,
body.aiomy-shop-v22 .aiomy-catalog-card__quantity-input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-input:focus-visible {
  background: rgba(135, 101, 246, 0.08);
  outline: 2px solid rgba(135, 101, 246, 0.4);
  outline-offset: -2px;
}

@media (hover: hover) and (pointer: fine) {
  body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control button:not(:disabled):hover {
    color: #8765f6;
    background: rgba(135, 101, 246, 0.09);
  }

  body.aiomy-shop-v22 .wc-main .btn-add-cart:hover,
  body.aiomy-shop-v22 .wc-main .aiomy-catalog-card__cart:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: var(--text) !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: 0 9px 20px rgba(45, 45, 58, 0.16) !important;
    transform: translateY(-2px);
  }
}

@media (min-width: 960px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
    grid-template-rows: min-content min-content min-content !important;
    row-gap: 4px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__benefits {
    align-self: start !important;
    margin-top: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions {
    gap: 6px !important;
    margin-top: 3px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__quantity {
    min-height: 32px !important;
  }
}

@media (max-width: 520px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    align-self: start !important;
    width: 104px !important;
    min-width: 104px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions {
    margin: 10px 13px 13px !important;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__quantity > label {
    font-size: 0.67rem;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control {
    grid-template-columns: 28px 38px 28px;
  }
}

@media (max-width: 360px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    width: 96px !important;
    min-width: 96px !important;
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V26
   Zwarty poziomy widok bez ulubionych i porównywania.
   Widoki tabletowy i mobilny pozostają obsługiwane przez blok V24.
════════════════════════════════════════ */

/* Rzeczywista ocena produktu pokazana jako pięć częściowo wypełnionych gwiazdek. */
body.aiomy-shop-v22 .aiomy-catalog-card__stars {
  --aiomy-rating: 0%;
  position: relative;
  display: inline-block;
  flex: 0 0 auto;
  overflow: hidden;
  color: #dedbe5;
  font-size: 0.86rem;
  line-height: 1;
  letter-spacing: 0.045em;
  white-space: nowrap;
}

body.aiomy-shop-v22 .aiomy-catalog-card__stars-base,
body.aiomy-shop-v22 .aiomy-catalog-card__stars-fill {
  display: block;
  white-space: nowrap;
}

body.aiomy-shop-v22 .aiomy-catalog-card__stars-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: var(--aiomy-rating);
  overflow: hidden;
  color: #f5b700;
}

@media (min-width: 960px) {
  /* Karta nie rozlewa się po całym ekranie. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list {
    width: min(100%, 1020px) !important;
    max-width: 1020px !important;
    margin-right: auto !important;
    margin-left: auto !important;
    gap: 16px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
    display: grid !important;
    grid-template-columns: 210px minmax(0, 1fr) !important;
    align-items: stretch !important;
    gap: 16px !important;
    width: 100% !important;
    min-height: 238px !important;
    height: auto !important;
    padding: 14px !important;
    overflow: hidden !important;
    background: rgba(255, 255, 255, 0.94) !important;
    border: 1px solid rgba(255, 255, 255, 0.96) !important;
    border-radius: 23px !important;
    box-shadow: 0 12px 34px rgba(45, 45, 58, 0.07) !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    width: 210px !important;
    min-width: 210px !important;
    min-height: 210px !important;
    height: 100% !important;
    aspect-ratio: auto !important;
    overflow: hidden !important;
    border-radius: 17px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
  }

  /* Środek opisowy + wąski panel zakupowy po prawej. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 276px !important;
    grid-template-rows: auto auto auto !important;
    align-content: start !important;
    align-items: start !important;
    column-gap: 22px !important;
    row-gap: 7px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 210px !important;
    height: auto !important;
    padding: 4px 2px 4px 0 !important;
    overflow: visible !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content::before {
    content: "";
    position: absolute;
    top: 4px;
    right: 287px;
    bottom: 4px;
    width: 1px;
    pointer-events: none;
    background: rgba(45, 45, 58, 0.11);
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__title {
    grid-column: 1 !important;
    grid-row: 1 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 1px 0 0 !important;
    font-size: clamp(1.04rem, 1.45vw, 1.22rem) !important;
    line-height: 1.3 !important;
    letter-spacing: -0.015em !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__social-proof {
    grid-column: 1 !important;
    grid-row: 2 / span 2 !important;
    display: flex !important;
    align-content: flex-start !important;
    align-items: center !important;
    align-self: start !important;
    gap: 5px 8px !important;
    margin: 4px 0 0 !important;
    padding: 0 !important;
    font-size: 0.72rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__rating {
    gap: 5px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__rating-value {
    font-size: 0.75rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__rating a {
    color: var(--text-muted) !important;
    font-size: 0.68rem !important;
    text-decoration: none !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__purchases {
    flex: 0 0 100% !important;
    width: 100% !important;
    color: var(--text) !important;
    font-size: 0.7rem !important;
    font-weight: 700 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price {
    grid-column: 2 !important;
    grid-row: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1.05 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price .amount,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price ins,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price bdi {
    color: var(--text) !important;
    -webkit-text-fill-color: var(--text) !important;
    font-size: clamp(1.55rem, 2.1vw, 1.88rem) !important;
    font-weight: 800 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price del,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price del .amount,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price del bdi {
    font-size: 0.72rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__benefits {
    grid-column: 2 !important;
    grid-row: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 5px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__benefits span {
    min-height: 21px !important;
    color: #74748b !important;
    font-size: 0.72rem !important;
    font-weight: 500 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__benefits svg {
    width: 15px !important;
    height: 15px !important;
  }

  /* Dwa główne działania w jednej, spokojnej kolumnie. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions {
    grid-column: 2 !important;
    grid-row: 3 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions .btn,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__cart,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__buy-now,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__details {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 40px !important;
    margin: 0 !important;
    padding: 9px 13px !important;
    border-radius: 13px !important;
    font-size: 0.71rem !important;
    line-height: 1.1 !important;
    white-space: normal !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__buy-now {
    min-height: 46px !important;
    font-size: 0.76rem !important;
    box-shadow: 0 9px 20px rgba(135, 101, 246, 0.18) !important;
  }
}

@media (min-width: 960px) and (max-width: 1080px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list {
    width: min(100%, 940px) !important;
    max-width: 940px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
    grid-template-columns: 198px minmax(0, 1fr) !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    width: 198px !important;
    min-width: 198px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
    grid-template-columns: minmax(0, 1fr) 266px !important;
    column-gap: 18px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content::before {
    right: 275px;
  }
}

/* ════════════════════════════════════════
   AIOMY — MOBILE SHOP V24
   Ostateczna izolacja nagłówka oraz obu widoków produktów.
   Te reguły są celowo ostatnie: stary układ WooCommerce nie może
   nadpisywać własnej karty .aiomy-catalog-card.
════════════════════════════════════════ */

@media (max-width: 768px) {
  /* Nagłówek ma identyczny rozmiar na stronie głównej i w sklepie. */
  html body .site-header,
  html body.aiomy-shop-v22 .site-header {
    width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    padding: 0 !important;
    background: linear-gradient(
      100deg,
      #fff6dc 0%,
      #fff7fa 55%,
      #f1f2ff 100%
    ) !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  html body .site-header .header-inner.container,
  html body.aiomy-shop-v22 .site-header .header-inner.container {
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    box-sizing: border-box !important;
  }

  html body .site-header .site-logo,
  html body.aiomy-shop-v22 .site-header .site-logo {
    flex: 0 0 auto !important;
    width: auto !important;
    max-width: 128px !important;
  }

  html body .site-header .site-logo__img,
  html body.aiomy-shop-v22 .site-header .site-logo__img {
    display: block !important;
    width: auto !important;
    height: 34px !important;
    max-width: 128px !important;
    max-height: 34px !important;
    object-fit: contain !important;
  }

  /* Wspólna baza: żadnych floatów, pozycji absolutnych ani ukrytej treści. */
  body.aiomy-shop-v22 .wc-main ul.products,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products > li.product,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid > li.product,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list > li.product {
    position: relative !important;
    float: none !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__title,
  body.aiomy-shop-v22 .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .aiomy-catalog-card__social-proof,
  body.aiomy-shop-v22 .aiomy-catalog-card__benefits,
  body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions,
  body.aiomy-shop-v22 .aiomy-catalog-card__secondary-actions {
    position: static !important;
    float: none !important;
    visibility: visible !important;
    opacity: 1 !important;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions,
  body.aiomy-shop-v22 .aiomy-catalog-card__secondary-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  /* Lista na tablecie: obraz obok kompletnej treści i działań. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
    display: grid !important;
    grid-template-columns: minmax(150px, 36%) minmax(0, 1fr) !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 100% !important;
    height: 100% !important;
    aspect-ratio: auto !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    gap: 10px !important;
    padding: 18px !important;
    overflow: visible !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__secondary-actions {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (max-width: 640px) {
  /* Kafelki mobilne: pojedyncza, stabilna kolumna. */
  body.aiomy-shop-v22 .wc-main ul.products,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 14px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    overflow: hidden !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__media,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__media {
    display: block !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__content,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__content {
    display: flex !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    padding: 17px !important;
    overflow: visible !important;
  }

  /* Etykiety przycisków mogą zawinąć się na dwie linie zamiast znikać. */
  body.aiomy-shop-v22 .aiomy-catalog-card__primary-actions .btn,
  body.aiomy-shop-v22 .aiomy-catalog-card__cart,
  body.aiomy-shop-v22 .aiomy-catalog-card__buy-now,
  body.aiomy-shop-v22 .aiomy-catalog-card__details {
    min-width: 0 !important;
    min-height: 50px !important;
    padding: 9px 7px !important;
    overflow: visible !important;
    font-size: 0.7rem !important;
    line-height: 1.15 !important;
    white-space: normal !important;
    text-wrap: balance;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__secondary {
    min-width: 0 !important;
    padding: 8px 6px !important;
    overflow: visible !important;
    font-size: 0.62rem !important;
    white-space: normal !important;
  }

  body.aiomy-shop-v22 .aiomy-catalog-card__secondary span {
    overflow: visible !important;
    text-overflow: clip !important;
    white-space: normal !important;
  }
}

@media (max-width: 520px) {
  /* Mobilny widok listy: zwarta karta, ale wszystkie informacje i guziki są widoczne. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
    display: grid !important;
    grid-template-columns: 104px minmax(0, 1fr) !important;
    grid-template-rows: auto auto auto auto auto !important;
    min-height: 0 !important;
    height: auto !important;
    border-radius: 20px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    grid-column: 1 !important;
    grid-row: 1 / span 3 !important;
    width: 104px !important;
    min-width: 104px !important;
    min-height: 104px !important;
    height: 100% !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 20px 0 0 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
    display: contents !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__title {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 13px 13px 0 !important;
    font-size: 0.8rem !important;
    line-height: 1.3 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price {
    grid-column: 2 !important;
    grid-row: 2 !important;
    margin: 0 !important;
    padding: 5px 13px 0 !important;
    line-height: 1.15 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price .amount,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price ins,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__price bdi {
    font-size: 1rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__social-proof {
    grid-column: 2 !important;
    grid-row: 3 !important;
    align-self: end !important;
    margin: 0 !important;
    padding: 5px 13px 10px !important;
    font-size: 0.66rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__benefits {
    grid-column: 1 / -1 !important;
    grid-row: 4 !important;
    margin: 0 13px !important;
    padding: 11px 0 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions {
    grid-column: 1 / -1 !important;
    grid-row: 5 !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: auto !important;
    margin: 12px 13px 0 !important;
    padding: 0 !important;
  }

}

@media (max-width: 360px) {
  html body .site-header .site-logo,
  html body.aiomy-shop-v22 .site-header .site-logo,
  html body .site-header .site-logo__img,
  html body.aiomy-shop-v22 .site-header .site-logo__img {
    max-width: 116px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card {
    grid-template-columns: 96px minmax(0, 1fr) !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    width: 96px !important;
    min-width: 96px !important;
    min-height: 96px !important;
  }
}

/* V27 — zachowanie czarnego przycisku i zwartej karty. */
@media (hover: hover) and (pointer: fine) {
  body.aiomy-shop-v22 .wc-main .btn-add-cart:hover,
  body.aiomy-shop-v22 .wc-main .aiomy-catalog-card__cart:hover {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    background: var(--text) !important;
    background-image: none !important;
    border-color: transparent !important;
    box-shadow: 0 9px 20px rgba(45, 45, 58, 0.16) !important;
  }
}

@media (min-width: 960px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__content {
    grid-template-rows: min-content min-content min-content !important;
    row-gap: 4px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__benefits {
    align-self: start !important;
    margin-top: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions {
    gap: 6px !important;
    margin-top: 3px !important;
  }
}

@media (max-width: 520px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    align-self: start !important;
    width: 104px !important;
    min-width: 104px !important;
    height: 104px !important;
    min-height: 104px !important;
    max-height: 104px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__image {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__primary-actions {
    margin: 10px 13px 13px !important;
  }
}

@media (max-width: 360px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list .aiomy-catalog-card__media {
    width: 96px !important;
    min-width: 96px !important;
    height: 96px !important;
    min-height: 96px !important;
    max-height: 96px !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V28
   Licznik zawsze widoczny; na telefonie zastępuje napis „Nowość w AIOMY”.
════════════════════════════════════════ */

body.aiomy-shop-v22 .aiomy-catalog-card__quantity {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.aiomy-shop-v22 .aiomy-catalog-card__quantity-control {
  flex: 0 0 auto;
}

@media (max-width: 520px) {
  /* Ten komunikat nie wnosi informacji zakupowej na małym ekranie. */
  body.aiomy-shop-v22 .wc-main ul.products .aiomy-catalog-card__rating--empty {
    display: none !important;
  }

  /* JS przenosi licznik dokładnie do zwolnionego miejsca pod ceną. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity {
    display: flex !important;
    align-items: center !important;
    align-self: end !important;
    width: auto !important;
    min-width: 0 !important;
    min-height: 42px !important;
    margin: 0 !important;
    padding: 3px 13px 8px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__quantity {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 8px !important;
    width: 100% !important;
    min-width: 0 !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__quantity > label {
    flex: 0 0 auto;
    margin: 0 !important;
    color: var(--text) !important;
    font-size: 0.67rem !important;
    font-weight: 700 !important;
    line-height: 1.1 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__quantity-control {
    grid-template-columns: 27px 36px 27px !important;
    width: 90px !important;
    height: 30px !important;
    min-width: 90px !important;
    border-radius: 10px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__quantity-control button,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__quantity-input {
    height: 28px !important;
    font-size: 0.72rem !important;
    line-height: 28px !important;
  }

  /* Po przeniesieniu licznika zostają tu tylko dwa przyciski zakupowe. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__primary-actions {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 360px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity {
    padding-right: 10px !important;
    padding-left: 10px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__quantity-control {
    grid-template-columns: 25px 33px 25px !important;
    width: 83px !important;
    min-width: 83px !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V29
   Zwarty panel desktop, prawdziwe opinie i stale czarny przycisk koszyka.
════════════════════════════════════════ */

/* „Nowość w AIOMY” nie jest informacją zakupową — ukryj także starszy HTML z cache. */
body.aiomy-shop-v22 .wc-main .aiomy-catalog-card__rating--empty {
  display: none !important;
}

/* Prawdziwa średnia, gwiazdki i liczba opinii pozostają zawsze widoczne. */
body.aiomy-shop-v22 .wc-main
  .aiomy-catalog-card__rating:not(.aiomy-catalog-card__rating--empty) {
  display: inline-flex !important;
  align-items: center !important;
  visibility: visible !important;
  opacity: 1 !important;
}

body.aiomy-shop-v22 .wc-main .aiomy-catalog-card__stars,
body.aiomy-shop-v22 .wc-main .aiomy-catalog-card__stars-base,
body.aiomy-shop-v22 .wc-main .aiomy-catalog-card__stars-fill {
  visibility: visible !important;
  opacity: 1;
}

/* Czarny przycisk we wszystkich stanach: zwykłym, hover, ładowaniu i po dodaniu. */
body.aiomy-shop-v22 .wc-main .btn-add-cart,
body.aiomy-shop-v22 .wc-main .btn-add-cart:hover,
body.aiomy-shop-v22 .wc-main .btn-add-cart:focus,
body.aiomy-shop-v22 .wc-main .btn-add-cart:focus-visible,
body.aiomy-shop-v22 .wc-main .btn-add-cart:active,
body.aiomy-shop-v22 .wc-main .btn-add-cart.loading,
body.aiomy-shop-v22 .wc-main .btn-add-cart.loading:hover,
body.aiomy-shop-v22 .wc-main .btn-add-cart.added,
body.aiomy-shop-v22 .wc-main .btn-add-cart.added:hover,
body.aiomy-shop-v22 .wc-main .btn-add-cart.added:focus {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: var(--text, #2d2d3a) !important;
  background-color: var(--text, #2d2d3a) !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: 0 9px 20px rgba(45, 45, 58, 0.16) !important;
}

@media (min-width: 960px) {
  /* Trzy zwarte rzędy: cena → dostawa/płatność → licznik i CTA. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content {
    grid-template-rows: max-content max-content max-content !important;
    align-content: center !important;
    align-items: start !important;
    row-gap: 6px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__price {
    align-self: end !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__benefits {
    align-self: start !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__primary-actions {
    align-self: start !important;
    gap: 6px !important;
    margin: 1px 0 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof {
    align-self: start !important;
    margin-top: 4px !important;
  }
}

@media (max-width: 520px) {
  /* Gdy pojawią się opinie: ocena i licznik współdzielą jeden uporządkowany obszar. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity {
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 4px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__rating,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__purchases {
    width: 100% !important;
    margin: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof--quantity
    .aiomy-catalog-card__quantity {
    order: 3;
  }
}

/* ════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V30
   Jeden zwarty i faktycznie wyśrodkowany panel zakupowy na komputerze.
════════════════════════════════════════ */

/* W pozostałych widokach nowy znacznik nie zmienia istniejącego układu. */
body.aiomy-shop-v22 .wc-main .aiomy-catalog-card__purchase-panel {
  display: contents;
}

@media (min-width: 960px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content {
    grid-template-columns: minmax(0, 1fr) 276px !important;
    grid-template-rows: max-content max-content !important;
    align-content: center !important;
    align-items: start !important;
    column-gap: 22px !important;
    row-gap: 6px !important;
  }

  /* Stara linia była liczona względem osobnych elementów. Panel ma własną linię. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content::before {
    display: none !important;
    content: none !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__title {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: end !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__social-proof {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-self: center !important;
    grid-column: 2 !important;
    grid-row: 1 / 3 !important;
    gap: 6px !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 4px 0 4px 10px !important;
    box-sizing: border-box !important;
    border-left: 1px solid rgba(45, 45, 58, 0.11) !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel .aiomy-catalog-card__benefits,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel .aiomy-catalog-card__primary-actions {
    position: static !important;
    grid-column: auto !important;
    grid-row: auto !important;
    align-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel .aiomy-catalog-card__price {
    line-height: 1.05 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel .aiomy-catalog-card__benefits {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    border: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel .aiomy-catalog-card__primary-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin-top: 1px !important;
  }
}

@media (max-width: 959px) {
  body.aiomy-shop-v22 .wc-main ul.products
    .aiomy-catalog-card__purchase-panel {
    display: contents !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V31
   Awaryjne wyśrodkowanie także dla starszego HTML zwróconego przez cache.
════════════════════════════════════════ */

@media (min-width: 960px) {
  /*
   * Jeśli wrappera jeszcze nie ma, dwa identyczne elastyczne rzędy nad i pod
   * blokiem zapewniają matematyczne wyśrodkowanie całej grupy zakupowej.
   */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:not(:has(> .aiomy-catalog-card__purchase-panel)) {
    grid-template-columns: minmax(0, 1fr) 276px !important;
    grid-template-rows:
      minmax(0, 1fr)
      max-content
      max-content
      max-content
      minmax(0, 1fr) !important;
    align-content: stretch !important;
    align-items: start !important;
    column-gap: 22px !important;
    row-gap: 6px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:not(:has(> .aiomy-catalog-card__purchase-panel))::before {
    display: block !important;
    content: "" !important;
    top: 4px !important;
    right: 287px !important;
    bottom: 4px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:not(:has(> .aiomy-catalog-card__purchase-panel))
    > .aiomy-catalog-card__title {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:not(:has(> .aiomy-catalog-card__purchase-panel))
    > .aiomy-catalog-card__social-proof {
    grid-column: 1 !important;
    grid-row: 3 / span 2 !important;
    align-self: start !important;
    margin: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:not(:has(> .aiomy-catalog-card__purchase-panel))
    > .aiomy-catalog-card__price {
    grid-column: 2 !important;
    grid-row: 2 !important;
    align-self: start !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 0 0 10px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:not(:has(> .aiomy-catalog-card__purchase-panel))
    > .aiomy-catalog-card__benefits {
    grid-column: 2 !important;
    grid-row: 3 !important;
    align-self: start !important;
    width: 100% !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 0 0 10px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:not(:has(> .aiomy-catalog-card__purchase-panel))
    > .aiomy-catalog-card__primary-actions {
    grid-column: 2 !important;
    grid-row: 4 !important;
    align-self: start !important;
    width: 100% !important;
    gap: 6px !important;
    margin: 0 !important;
    padding: 1px 0 0 10px !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — KARTA PRODUKTU V32
   Zwarty panel bez rozciągania odstępu między ceną a dostawą.
════════════════════════════════════════ */

@media (min-width: 960px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:has(> .aiomy-catalog-card__purchase-panel) {
    position: relative !important;
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 276px !important;
    grid-template-rows: max-content max-content minmax(0, 1fr) !important;
    align-content: start !important;
    align-items: start !important;
    column-gap: 22px !important;
    row-gap: 6px !important;
  }

  /* Tytuł i prawdziwe opinie pozostają u góry części opisowej. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:has(> .aiomy-catalog-card__purchase-panel)
    > .aiomy-catalog-card__title {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: start !important;
    margin: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:has(> .aiomy-catalog-card__purchase-panel)
    > .aiomy-catalog-card__social-proof {
    grid-column: 1 !important;
    grid-row: 2 !important;
    align-self: start !important;
    margin: 0 !important;
  }

  /* Jedna nieprzerwana linia oddzielająca panel zakupowy. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content:has(> .aiomy-catalog-card__purchase-panel)::before {
    display: block !important;
    content: "" !important;
    position: absolute !important;
    top: 4px !important;
    right: 287px !important;
    bottom: 4px !important;
    width: 1px !important;
    background: rgba(45, 45, 58, 0.11) !important;
    pointer-events: none !important;
  }

  /*
   * Panel jest pozycjonowany jako JEDNA grupa. Flex nie ma już wolnej
   * przestrzeni, którą siatka mogłaby wstawić między cenę i dostawę.
   */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__content
    > .aiomy-catalog-card__purchase-panel {
    position: absolute !important;
    grid-column: auto !important;
    grid-row: auto !important;
    top: 50% !important;
    right: 0 !important;
    bottom: auto !important;
    left: auto !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important;
    align-items: stretch !important;
    gap: 6px !important;
    width: 276px !important;
    min-width: 276px !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    border: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel
    > .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel
    > .aiomy-catalog-card__benefits,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel
    > .aiomy-catalog-card__primary-actions {
    position: static !important;
    display: grid !important;
    flex: 0 0 auto !important;
    align-self: stretch !important;
    width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel
    > .aiomy-catalog-card__price {
    display: block !important;
    line-height: 1.05 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel
    > .aiomy-catalog-card__benefits {
    grid-template-columns: 1fr !important;
    gap: 4px !important;
    border: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--list
    .aiomy-catalog-card__purchase-panel
    > .aiomy-catalog-card__primary-actions {
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    margin-top: 1px !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — SKLEP V33
   4 kafelki na komputerze, 2 kompaktowe kafelki w galerii mobilnej.
   Mobilna lista pozostaje osobnym, domyślnym widokiem ustawianym przez JS.
════════════════════════════════════════ */

/* Komputer: cztery równe produkty w jednym rzędzie. */
@media (min-width: 1024px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: clamp(14px, 1.55vw, 22px) !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid > li.product,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) > li.product {
    width: 100% !important;
    min-width: 0 !important;
  }

  /* Przy czterech kolumnach przyciski zachowują pełne, czytelne etykiety. */
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__primary-actions,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__primary-actions {
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }
}

/* Tablet: dwa czytelne kafelki zamiast trzech zbyt wąskich. */
@media (min-width: 641px) and (max-width: 1023px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
  }
}

/* Telefon: po ręcznym wyborze galerii dwa zwarte kafelki obok siebie. */
@media (max-width: 640px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    width: 100% !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid > li.product,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) > li.product {
    width: 100% !important;
    min-width: 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card {
    display: flex !important;
    flex-direction: column !important;
    min-width: 0 !important;
    height: 100% !important;
    border-radius: 18px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__media,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__media {
    width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 1 / 1 !important;
    border-radius: 18px 18px 0 0 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__content,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__content {
    display: flex !important;
    flex: 1 1 auto !important;
    flex-direction: column !important;
    gap: 7px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 10px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__title,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__title {
    min-height: 3.5em !important;
    margin: 0 !important;
    font-size: 0.7rem !important;
    line-height: 1.25 !important;
    text-wrap: pretty;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price .amount,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price ins,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price bdi,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price .amount,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price ins,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price bdi {
    font-size: 0.98rem !important;
    line-height: 1.15 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: baseline !important;
    gap: 2px 4px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price del,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price del .amount,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__price del bdi,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price del,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price del .amount,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__price del bdi {
    margin: 0 !important;
    font-size: 0.64rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__social-proof,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__social-proof {
    gap: 3px 6px !important;
    font-size: 0.6rem !important;
    line-height: 1.2 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__stars,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__stars {
    font-size: 0.68rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__benefits,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__benefits {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 3px !important;
    margin: 0 !important;
    padding-top: 7px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__benefits span,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__benefits span {
    gap: 4px !important;
    min-width: 0 !important;
    font-size: 0.59rem !important;
    line-height: 1.2 !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__benefits svg,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__benefits svg {
    width: 13px !important;
    height: 13px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__primary-actions,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__primary-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 6px !important;
    width: 100% !important;
    margin-top: auto !important;
    padding-top: 1px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__quantity,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__quantity {
    gap: 5px !important;
    min-height: 28px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__quantity > label,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__quantity > label {
    font-size: 0.6rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__quantity-control,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__quantity-control {
    grid-template-columns: 22px 28px 22px !important;
    height: 28px !important;
    border-radius: 9px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__quantity-control button,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__quantity-input,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__quantity-control button,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__quantity-input {
    height: 26px !important;
    font-size: 0.65rem !important;
    line-height: 26px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__primary-actions .btn,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__primary-actions .btn,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__cart,
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__buy-now,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__cart,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__buy-now {
    min-height: 38px !important;
    padding: 7px 5px !important;
    border-radius: 11px !important;
    font-size: 0.62rem !important;
    line-height: 1.15 !important;
    white-space: normal !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__primary-actions svg,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__primary-actions svg {
    width: 14px !important;
    height: 14px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .product-badge,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .product-badge {
    top: 8px !important;
    left: 8px !important;
    padding: 5px 7px !important;
    font-size: 0.55rem !important;
  }
}

@media (max-width: 360px) {
  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) {
    gap: 8px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__content,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__content {
    gap: 6px !important;
    padding: 8px !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__title,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__title {
    font-size: 0.66rem !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products.aiomy-products--grid .aiomy-catalog-card__primary-actions .btn,
  body.aiomy-shop-v22 .wc-main ul.products:not(.aiomy-products--list) .aiomy-catalog-card__primary-actions .btn {
    font-size: 0.58rem !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — SKLEP V34
   Bez poświaty pod CTA i bez efektu unoszenia/cienia karty po najechaniu.
════════════════════════════════════════ */

/* Gradient przycisku zostaje, ale bez kolorowej poświaty pod nim. */
body.aiomy-shop-v22 .wc-main ul.products .aiomy-catalog-card .aiomy-catalog-card__buy-now,
body.aiomy-shop-v22 .wc-main ul.products .aiomy-catalog-card .aiomy-catalog-card__buy-now:hover,
body.aiomy-shop-v22 .wc-main ul.products .aiomy-catalog-card .aiomy-catalog-card__buy-now:focus,
body.aiomy-shop-v22 .wc-main ul.products .aiomy-catalog-card .aiomy-catalog-card__buy-now:focus-visible,
body.aiomy-shop-v22 .wc-main ul.products .aiomy-catalog-card .aiomy-catalog-card__buy-now:active {
  box-shadow: none !important;
  filter: none !important;
}

@media (hover: hover) and (pointer: fine) {
  /* Karta pozostaje dokładnie na miejscu i zachowuje neutralny cień bazowy. */
  body.aiomy-shop-v22 .wc-main .aiomy-catalog-card:hover {
    transform: translateZ(0) !important;
    border-color: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 12px 34px rgba(45, 45, 58, 0.075) !important;
  }

  body.aiomy-shop-v22 .wc-main .aiomy-catalog-card:hover .aiomy-catalog-card__image {
    transform: none !important;
  }

  body.aiomy-shop-v22 .wc-main ul.products .aiomy-catalog-card .aiomy-catalog-card__buy-now:hover {
    transform: none !important;
  }
}

/* ════════════════════════════════════════
   AIOMY — SKLEP V35
   Telefon: bez pełnoszerokiego pasa pod przyklejonym nagłówkiem.
   Przy przewijaniu pozostaje wyłącznie biała, zaokrąglona pigułka.
════════════════════════════════════════ */
@media (max-width: 768px) {
  html body.aiomy-shop-v22 #site-header.site-header,
  html body.aiomy-shop-v22 #site-header.site-header:hover,
  html body.aiomy-shop-v22 #site-header.site-header:focus-within {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: 0 !important;
    border-bottom: 0 !important;
    box-shadow: none !important;
    filter: none !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
  }

  /* Zewnętrzny nagłówek nie może tworzyć dodatkowej warstwy ani kreski. */
  html body.aiomy-shop-v22 #site-header.site-header::before,
  html body.aiomy-shop-v22 #site-header.site-header::after {
    content: none !important;
    display: none !important;
    background: none !important;
    box-shadow: none !important;
  }

  /* Właściwy biały kafelek nagłówka zachowuje dotychczasowy rozmiar. */
  html body.aiomy-shop-v22 #site-header.site-header > .header-inner.container {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   AIOMY — PRODUKT / SKLEP V37
   Końcowa warstwa naprawcza. Jest celowo ostatnia i ściśle ograniczona
   do katalogu oraz pojedynczego produktu — nie zmienia strony głównej.
══════════════════════════════════════════════════════════════════════ */

/* Jedno tło także pod przyklejonym nagłówkiem. Pozostaje wyłącznie
   właściwa biała pigułka tworzona przez .header-inner::before. */
html body.aiomy-shop-v22 #site-header.site-header,
html body.aiomy-single-product-v36 #site-header.site-header,
html body.aiomy-shop-v22 #site-header.site-header:hover,
html body.aiomy-single-product-v36 #site-header.site-header:hover,
html body.aiomy-shop-v22 #site-header.site-header:focus-within,
html body.aiomy-single-product-v36 #site-header.site-header:focus-within {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.aiomy-shop-v22 #site-header.site-header::before,
html body.aiomy-shop-v22 #site-header.site-header::after,
html body.aiomy-single-product-v36 #site-header.site-header::before,
html body.aiomy-single-product-v36 #site-header.site-header::after {
  content: none !important;
  display: none !important;
  background: none !important;
  box-shadow: none !important;
}

html body.aiomy-shop-v22 #site-header.site-header > .header-inner.container,
html body.aiomy-single-product-v36 #site-header.site-header > .header-inner.container {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Różowy pasek CTA nie występuje ani w sklepie, ani na produkcie. */
html body.aiomy-shop-v22 .footer-cta-bar,
html body.aiomy-single-product-v36 .footer-cta-bar {
  display: none !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

/* Karta jest teraz rodzeństwem natywnego div.product. Reset gwarantuje,
   że nie odziedziczy żadnej szerokości, floata ani siatki starego szablonu. */
html body.aiomy-single-product-v36 main.wc-main {
  padding-top: clamp(34px, 4vw, 58px) !important;
  padding-bottom: clamp(42px, 5vw, 66px) !important;
}

html body.aiomy-single-product-v36 main.wc-main > .container,
html body.aiomy-single-product-v36 main.wc-main > .container > .woocommerce,
html body.aiomy-single-product-v36 main.wc-main .woocommerce-notices-wrapper,
html body.aiomy-single-product-v36 .aiomy-single {
  float: none !important;
  clear: both !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

html body.aiomy-single-product-v36 main.wc-main > .container {
  max-width: 1200px !important;
}

/* Stary szablon pozostaje w DOM tylko jako techniczna osłona WooCommerce.
   Resetujemy jego siatkę, ale nie ukrywamy samego wrappera — dzięki temu
   rozwiązanie jest odporne także na szablon, który umieści hook wewnątrz. */
html body.aiomy-single-product-v36 main.wc-main div.product.type-product,
html body.aiomy-single-product-v36 main.wc-main div.product.product {
  float: none !important;
  clear: both !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single {
  position: relative !important;
  display: block !important;
  padding: 0 !important;
  overflow: visible !important;
}

html body.aiomy-single-product-v36 .aiomy-single__layout {
  display: grid !important;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, 0.75fr) !important;
  grid-template-areas:
    "product purchase"
    "related related" !important;
  align-items: start !important;
  gap: 24px !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__product-panel {
  grid-area: product !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: clamp(26px, 3vw, 38px) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__purchase-panel {
  grid-area: purchase !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__product-header h1 {
  max-width: 28ch !important;
  font-size: clamp(2rem, 3vw, 2.75rem) !important;
  line-height: 1.12 !important;
}

/* Stabilna galeria bez gigantycznej pustej wysokości i bez deformacji. */
html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  max-height: none !important;
  aspect-ratio: 4 / 3 !important;
  padding: 10px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__main-image,
html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  object-fit: contain !important;
  object-position: center !important;
}

/* Panel zakupu: zwarty, czytelny i bez zdublowanych górnych wierszy. */
html body.aiomy-single-product-v36 .aiomy-single__purchase-card {
  position: sticky !important;
  top: 108px !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin: 0 !important;
  padding: clamp(24px, 2.4vw, 30px) !important;
}

html body.admin-bar.aiomy-single-product-v36 .aiomy-single__purchase-card {
  top: 140px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__primary-information,
html body.aiomy-single-product-v36 .aiomy-single__information-row {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__price {
  margin: 0 0 14px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__short-description {
  margin: 0 0 16px !important;
  padding-bottom: 16px !important;
  border-bottom: 1px solid var(--single-line) !important;
}

/* Natywne komunikaty stock WooCommerce dublują własny status AIOMY. */
html body.aiomy-single-product-v36 .aiomy-single__native-cart .stock,
html body.aiomy-single-product-v36 .aiomy-single__native-cart .woocommerce-variation-availability {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__native-cart {
  display: block !important;
  width: 100% !important;
  margin-top: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart.simple,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.variations_form,
html body.aiomy-single-product-v36 .aiomy-single__native-cart .woocommerce-variation-add-to-cart {
  float: none !important;
  clear: both !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 12px !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart > *,
html body.aiomy-single-product-v36 .aiomy-single__native-cart .woocommerce-variation-add-to-cart > * {
  float: none !important;
  min-width: 0 !important;
  max-width: 100% !important;
}

html body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity {
  grid-column: 1 / -1 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 42px 52px 42px !important;
  width: 100% !important;
}

/* Czarny CTA we wszystkich stanach, także po dodaniu do koszyka. */
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button.alt,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button:hover,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button:focus,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button:focus-visible,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button:active,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button.added,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button.loading {
  position: relative !important;
  inset: auto !important;
  float: none !important;
  clear: both !important;
  grid-column: 1 / -1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 13px 18px !important;
  border: 0 !important;
  border-radius: 15px !important;
  background: #2d2d3a !important;
  background-color: #2d2d3a !important;
  background-image: none !important;
  color: #fff !important;
  font: 750 0.82rem/1.2 var(--font) !important;
  text-align: center !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button::before,
html body.aiomy-single-product-v36 .aiomy-single__native-cart form.cart button.single_add_to_cart_button::after {
  content: none !important;
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__buy-now,
html body.aiomy-single-product-v36 .aiomy-single__buy-now:hover,
html body.aiomy-single-product-v36 .aiomy-single__buy-now:focus,
html body.aiomy-single-product-v36 .aiomy-single__buy-now:active {
  width: 100% !important;
  margin: 10px 0 0 !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Jedyny zestaw odnośników zakupowych — bez powtórzeń nad formularzem. */
html body.aiomy-single-product-v36 .aiomy-single__policy-links {
  margin-top: 18px !important;
  padding-top: 18px !important;
}

/* Podobne oferty: pełna szerokość i prawdziwa karuzela. */
html body.aiomy-single-product-v36 .aiomy-single__related {
  grid-area: related !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  padding: clamp(22px, 3vw, 34px) !important;
  overflow: hidden !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 20px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-header h2 {
  margin: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls {
  display: flex !important;
  flex: 0 0 auto !important;
  gap: 8px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls button {
  display: inline-grid !important;
  place-items: center !important;
  width: 42px !important;
  height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(45, 45, 58, 0.11) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--text) !important;
  font: 750 1.1rem/1 var(--font) !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls button:not(:disabled):hover,
html body.aiomy-single-product-v36 .aiomy-single__related-controls button:not(:disabled):focus-visible {
  border-color: transparent !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  outline: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls button:disabled {
  cursor: default !important;
  opacity: 0.34 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-carousel {
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-track {
  display: flex !important;
  gap: 14px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 2px 2px 8px !important;
  overflow-x: auto !important;
  overflow-y: hidden !important;
  scroll-behavior: smooth !important;
  scroll-snap-type: x mandatory !important;
  overscroll-behavior-inline: contain !important;
  scrollbar-width: none !important;
  -webkit-overflow-scrolling: touch !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-track::-webkit-scrollbar {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-card {
  flex: 0 0 calc((100% - 42px) / 4) !important;
  width: calc((100% - 42px) / 4) !important;
  min-width: 0 !important;
  scroll-snap-align: start !important;
  transform: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-card:hover {
  transform: none !important;
}

/* Opinie w stylistyce AIOMY. */
html body.aiomy-single-product-v36 .aiomy-single__reviews-section {
  overflow: hidden !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.94)) padding-box,
    var(--aiomy-gradient) border-box !important;
  border: 1px solid transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-intro {
  margin-bottom: clamp(22px, 3vw, 34px) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-intro h2 {
  margin-bottom: 8px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-intro h2 span {
  background: var(--aiomy-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: #ec4f90 !important;
  -webkit-text-fill-color: transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-intro p {
  max-width: 700px !important;
  margin: 0 !important;
  color: var(--text-muted) !important;
  font-size: 0.92rem !important;
  line-height: 1.65 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #reviews {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr) !important;
  align-items: start !important;
  gap: 28px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #comments,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #review_form_wrapper {
  min-width: 0 !important;
  margin: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #review_form_wrapper {
  padding: clamp(20px, 2.6vw, 30px) !important;
  border: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 14px 36px rgba(45, 45, 58, 0.07) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #comments + #review_form_wrapper {
  margin-top: 0 !important;
  padding-top: clamp(20px, 2.6vw, 30px) !important;
  border-top: 1px solid rgba(45, 45, 58, 0.09) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .woocommerce-Reviews-title,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #reply-title {
  display: block !important;
  margin: 0 0 18px !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  font-size: clamp(1.25rem, 2vw, 1.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-form-rating,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-form-comment,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-form-author,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-form-email {
  margin: 0 0 16px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section label {
  display: block !important;
  margin-bottom: 7px !important;
  color: var(--text) !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section input:not([type="checkbox"]):not([type="radio"]),
html body.aiomy-single-product-v36 .aiomy-single__reviews-section textarea {
  width: 100% !important;
  border: 1px solid rgba(45, 45, 58, 0.13) !important;
  border-radius: 14px !important;
  background: #fff !important;
  color: var(--text) !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section input:focus,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section textarea:focus {
  border-color: #ed5897 !important;
  outline: 3px solid rgba(240, 77, 145, 0.13) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section p.stars a,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section .star-rating {
  color: #ffb321 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .form-submit .submit,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section input#submit,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section button.submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 13px 22px !important;
  border: 0 !important;
  border-radius: 15px !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  font: 750 0.82rem/1.2 var(--font) !important;
  box-shadow: none !important;
  filter: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .commentlist > li {
  padding: 18px !important;
  border-color: rgba(45, 45, 58, 0.09) !important;
  background: rgba(255, 255, 255, 0.9) !important;
}

/* Specyfikacja i opis pozostają dynamiczne. Ich zawartość zostanie
   dopracowana po wprowadzeniu docelowych danych produktowych. */
html body.aiomy-single-product-v36 .aiomy-single__specification,
html body.aiomy-single-product-v36 .aiomy-single__description {
  width: 100% !important;
  max-width: none !important;
}

html body.aiomy-single-product-v36 .site-footer {
  margin-top: 0 !important;
}

@media (max-width: 1024px) and (min-width: 901px) {
  html body.aiomy-single-product-v36 .aiomy-single__layout {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.72fr) !important;
    gap: 18px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__related-card {
    flex-basis: calc((100% - 28px) / 3) !important;
    width: calc((100% - 28px) / 3) !important;
  }
}

@media (max-width: 900px) {
  html body.aiomy-single-product-v36 .aiomy-single__layout {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-areas:
      "product"
      "purchase"
      "related" !important;
    gap: 16px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__purchase-card,
  html body.admin-bar.aiomy-single-product-v36 .aiomy-single__purchase-card {
    position: static !important;
    top: auto !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__reviews-section #reviews {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 768px) {
  html body.aiomy-single-product-v36 main.wc-main {
    padding-top: 20px !important;
    padding-bottom: 38px !important;
  }

  html body.aiomy-single-product-v36 main.wc-main > .container {
    width: 100% !important;
    max-width: 1200px !important;
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__product-panel,
  html body.aiomy-single-product-v36 .aiomy-single__purchase-card,
  html body.aiomy-single-product-v36 .aiomy-single__related,
  html body.aiomy-single-product-v36 .aiomy-single__section {
    width: 100% !important;
    max-width: 100% !important;
    padding: 20px 18px !important;
    border-radius: 23px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__product-header h1 {
    max-width: none !important;
    font-size: clamp(1.55rem, 7vw, 2.05rem) !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    aspect-ratio: 1 / 1 !important;
    padding: 6px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__price {
    font-size: clamp(2rem, 10vw, 2.55rem) !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__policy-links {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__related-card {
    flex-basis: min(76vw, 260px) !important;
    width: min(76vw, 260px) !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__related-controls button {
    width: 38px !important;
    height: 38px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__reviews-section .form-submit .submit,
  html body.aiomy-single-product-v36 .aiomy-single__reviews-section input#submit,
  html body.aiomy-single-product-v36 .aiomy-single__reviews-section button.submit {
    width: 100% !important;
  }
}

@media (max-width: 420px) {
  html body.aiomy-single-product-v36 main.wc-main > .container {
    padding-right: 9px !important;
    padding-left: 9px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__product-panel,
  html body.aiomy-single-product-v36 .aiomy-single__purchase-card,
  html body.aiomy-single-product-v36 .aiomy-single__related,
  html body.aiomy-single-product-v36 .aiomy-single__section {
    padding: 18px 15px !important;
    border-radius: 21px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__native-cart .quantity {
    grid-template-columns: minmax(0, 1fr) 39px 48px 39px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__related-card {
    flex-basis: min(78vw, 245px) !important;
    width: min(78vw, 245px) !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   AIOMY — PRODUKT V38
   Zwarty panel informacji, boczna pigułka, nieskończona karuzela
   oraz opinie bez różowej ramki. Warstwa jest wyłącznie produktowa.
══════════════════════════════════════════════════════════════════════ */

@media (min-width: 901px) {
  html body.aiomy-single-product-v36 .aiomy-single__layout {
    grid-template-columns: minmax(0, 1fr) minmax(420px, 450px) !important;
  }
}

/* Jedna linia cech produktu i osobny, spokojny link do promocji. */
html body.aiomy-single-product-v36 .aiomy-single__short-description {
  display: block !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  color: var(--text-muted) !important;
  font-size: 0.61rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.025em !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotions-link {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: fit-content !important;
  margin: 7px 0 15px !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #e7468a !important;
  font: 750 0.72rem/1.4 var(--font) !important;
  text-decoration: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotions-link:not(.aiomy-single__promotions-link--static):hover,
html body.aiomy-single-product-v36 .aiomy-single__promotions-link:not(.aiomy-single__promotions-link--static):focus-visible {
  color: #7958e7 !important;
  outline: 0 !important;
  text-decoration: underline !important;
  text-underline-offset: 3px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__native-cart {
  padding-top: 15px !important;
  border-top: 1px solid var(--single-line) !important;
}

/* Jeden wspólny kafel zamiast sześciu drobnych przycisków. */
html body.aiomy-single-product-v36 .aiomy-single__policy-links {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-card {
  display: block !important;
  overflow: hidden !important;
  width: 100% !important;
  margin-top: 18px !important;
  padding: 3px 12px !important;
  border: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-row {
  display: grid !important;
  grid-template-columns: 38px minmax(0, 1fr) 24px !important;
  align-items: center !important;
  gap: 11px !important;
  width: 100% !important;
  min-height: 68px !important;
  margin: 0 !important;
  padding: 11px 2px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--text) !important;
  font: inherit !important;
  text-align: left !important;
  box-shadow: none !important;
  cursor: pointer !important;
  appearance: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-row:last-child {
  border-bottom: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-row:hover,
html body.aiomy-single-product-v36 .aiomy-single__policy-row:focus-visible,
html body.aiomy-single-product-v36 .aiomy-single__policy-row[aria-expanded="true"] {
  background: linear-gradient(100deg, rgba(240, 77, 145, 0.055), rgba(135, 101, 246, 0.055)) !important;
  outline: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-icon,
html body.aiomy-single-product-v36 .aiomy-single__policy-panel-icon {
  display: grid !important;
  place-items: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, rgba(240, 77, 145, 0.13), rgba(135, 101, 246, 0.12)) !important;
  color: #e7468a !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-icon svg,
html body.aiomy-single-product-v36 .aiomy-single__policy-panel-icon svg {
  width: 19px !important;
  height: 19px !important;
  fill: none !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
  stroke-linecap: round !important;
  stroke-linejoin: round !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-copy {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-copy strong {
  color: var(--text) !important;
  font-size: 0.78rem !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-copy small {
  margin-top: 2px !important;
  color: var(--text-muted) !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-chevron {
  color: #7d7889 !important;
  font-size: 1.55rem !important;
  font-weight: 400 !important;
  line-height: 1 !important;
  text-align: center !important;
}

/* Wysuwany panel nie opuszcza strony produktu i nie przerywa zakupu. */
html body.aiomy-single-product-v36.aiomy-policy-drawer-open {
  overflow: hidden !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-backdrop[hidden],
html body.aiomy-single-product-v36 .aiomy-single__policy-drawer[hidden],
html body.aiomy-single-product-v36 .aiomy-single__policy-panel[hidden] {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-backdrop {
  position: fixed !important;
  z-index: 99990 !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: rgba(28, 27, 39, 0.48) !important;
  opacity: 0 !important;
  transition: opacity 240ms ease !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-backdrop.is-open {
  opacity: 1 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer {
  position: fixed !important;
  z-index: 99991 !important;
  inset: 0 0 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  width: min(92vw, 510px) !important;
  height: 100dvh !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--text) !important;
  box-shadow: -24px 0 70px rgba(28, 27, 39, 0.18) !important;
  transform: translate3d(104%, 0, 0) !important;
  transition: transform 260ms cubic-bezier(0.22, 0.74, 0.18, 1) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer.is-open {
  transform: translate3d(0, 0, 0) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  min-height: 82px !important;
  padding: 18px 22px !important;
  border-bottom: 1px solid rgba(45, 45, 58, 0.1) !important;
  background: #fff !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header h2 {
  margin: 0 !important;
  color: var(--text) !important;
  font-size: clamp(1.25rem, 2.2vw, 1.7rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-close {
  display: grid !important;
  place-items: center !important;
  flex: 0 0 auto !important;
  width: 44px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 0 3px !important;
  border: 1px solid rgba(45, 45, 58, 0.11) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--text) !important;
  font: 400 1.8rem/1 var(--font) !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-close:hover,
html body.aiomy-single-product-v36 .aiomy-single__policy-close:focus-visible {
  border-color: transparent !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  outline: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-body {
  flex: 1 1 auto !important;
  overflow-y: auto !important;
  padding: clamp(24px, 5vw, 38px) !important;
  background:
    radial-gradient(circle at 100% 0%, rgba(135, 101, 246, 0.09), transparent 34%),
    radial-gradient(circle at 0% 18%, rgba(240, 77, 145, 0.08), transparent 32%),
    #fff !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-panel {
  display: block !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-panel > h3 {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-panel > p {
  margin: 22px 0 28px !important;
  color: var(--text-muted) !important;
  font-size: 0.95rem !important;
  line-height: 1.72 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-more {
  display: grid !important;
  gap: 10px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-more a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 14px !important;
  min-height: 52px !important;
  padding: 13px 16px !important;
  border: 1px solid rgba(45, 45, 58, 0.1) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  color: var(--text) !important;
  font-size: 0.78rem !important;
  font-weight: 700 !important;
  text-decoration: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-more a span {
  color: #e7468a !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-more a:hover,
html body.aiomy-single-product-v36 .aiomy-single__policy-more a:focus-visible {
  border-color: rgba(240, 77, 145, 0.28) !important;
  background: #fff !important;
  outline: 0 !important;
}

/* Podobne oferty przesuwają się bez końca — bez dorysowanych strzałek. */
html body.aiomy-single-product-v36 .aiomy-single__related-header {
  justify-content: flex-start !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-carousel {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-track {
  display: flex !important;
  align-items: stretch !important;
  gap: 14px !important;
  width: max-content !important;
  min-width: max-content !important;
  margin: 0 !important;
  padding: 2px 0 8px !important;
  overflow: visible !important;
  scroll-behavior: auto !important;
  scroll-snap-type: none !important;
  scrollbar-width: none !important;
  will-change: transform !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-group {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: stretch !important;
  gap: 14px !important;
  width: max-content !important;
  min-width: max-content !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-card {
  flex: 0 0 var(--aiomy-related-card-width, 240px) !important;
  width: var(--aiomy-related-card-width, 240px) !important;
  min-width: var(--aiomy-related-card-width, 240px) !important;
  scroll-snap-align: none !important;
}

/* Opinie: czyste białe karty, bez różowej obwódki całej sekcji. */
html body.aiomy-single-product-v36 .aiomy-single__reviews-section {
  overflow: visible !important;
  border: 0 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #reviews {
  width: 100% !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #comments,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #review_form_wrapper {
  min-width: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #comments ol.commentlist {
  display: grid !important;
  gap: 14px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #comments ol.commentlist > li {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment_container {
  display: grid !important;
  grid-template-columns: 46px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 14px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment_container > img.avatar {
  position: static !important;
  float: none !important;
  width: 46px !important;
  height: 46px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  object-fit: cover !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-text {
  min-width: 0 !important;
  margin: 0 !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(45, 45, 58, 0.085) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-text .meta {
  margin: 4px 0 10px !important;
  color: var(--text-muted) !important;
  font-size: 0.72rem !important;
  line-height: 1.45 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-text .description {
  color: var(--text) !important;
  font-size: 0.86rem !important;
  line-height: 1.65 !important;
}

/* Gradientowe gwiazdki w nagłówku, opublikowanych opiniach i formularzu. */
html body.aiomy-single-product-v36 .aiomy-single__stars > span:nth-child(2) {
  background: var(--aiomy-gradient) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .star-rating::before {
  color: #ded8df !important;
  -webkit-text-fill-color: #ded8df !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section .star-rating span::before,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section p.stars a::before {
  background: var(--aiomy-gradient) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #review_form_wrapper {
  padding: clamp(20px, 2.6vw, 30px) !important;
  border: 0 !important;
  border-radius: 22px !important;
  background: #fff !important;
  box-shadow: 0 14px 36px rgba(45, 45, 58, 0.065) !important;
}

html body.aiomy-single-product-v36 .woocommerce #review_form #respond .form-submit input#submit,
html body.aiomy-single-product-v36 .woocommerce #review_form #respond input[type="submit"],
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond .form-submit .submit,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond input#submit,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond button.submit,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond input#submit:hover,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond input#submit:focus,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond input#submit:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 190px !important;
  min-height: 50px !important;
  margin: 0 !important;
  padding: 13px 24px !important;
  border: 0 !important;
  border-radius: 15px !important;
  background-color: #f04d91 !important;
  background-image: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font: 750 0.82rem/1.2 var(--font) !important;
  text-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond input#submit::before,
html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond input#submit::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 900px) {
  html body.aiomy-single-product-v36 .aiomy-single__short-description {
    overflow: visible !important;
    font-size: 0.7rem !important;
    letter-spacing: 0 !important;
    text-overflow: clip !important;
    white-space: normal !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__reviews-section #reviews {
    grid-template-columns: minmax(0, 1fr) !important;
  }
}

@media (max-width: 600px) {
  html body.aiomy-single-product-v36 .aiomy-single__policy-drawer {
    width: 100% !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header {
    min-height: 72px !important;
    padding: 14px 16px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-body {
    padding: 24px 18px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment_container {
    grid-template-columns: 38px minmax(0, 1fr) !important;
    gap: 10px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment_container > img.avatar {
    width: 38px !important;
    height: 38px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__reviews-section .comment-text {
    padding: 15px !important;
  }

  html body.aiomy-single-product-v36 .woocommerce #review_form #respond .form-submit input#submit,
  html body.aiomy-single-product-v36 .aiomy-single__reviews-section #respond input#submit {
    width: 100% !important;
  }
}

/* ══════════════════════════════════════════════════════════════════════
   AIOMY — PRODUKT V39
   Stały nagłówek mobilny, opinie i promocje w bocznym panelu oraz
   karuzela podobnych ofert w miejscu dawnego formularza opinii.
══════════════════════════════════════════════════════════════════════ */

/* Rating otwiera boczny panel zamiast przewijać do usuniętego formularza. */
html body.aiomy-single-product-v36 .aiomy-single__rating > .aiomy-single__reviews-open {
  display: inline-flex !important;
  align-items: center !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 0 2px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(45, 45, 58, 0.24) !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--text) !important;
  font: 650 0.74rem/1.35 var(--font) !important;
  text-decoration: none !important;
  box-shadow: none !important;
  cursor: pointer !important;
  appearance: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__rating > .aiomy-single__reviews-open:hover,
html body.aiomy-single-product-v36 .aiomy-single__rating > .aiomy-single__reviews-open:focus-visible,
html body.aiomy-single-product-v36 .aiomy-single__rating > .aiomy-single__reviews-open[aria-expanded="true"] {
  border-bottom-color: #e7468a !important;
  color: #e7468a !important;
  outline: 0 !important;
}

/* „Sprawdź aktualne promocje” jest przyciskiem uruchamiającym szufladę. */
html body.aiomy-single-product-v36 button.aiomy-single__promotions-link {
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  cursor: pointer !important;
  appearance: none !important;
}

/* Po przeniesieniu karuzeli układ główny ma tylko produkt i panel zakupu. */
@media (min-width: 769px) {
  html body.aiomy-single-product-v36 .aiomy-single__layout {
    grid-template-areas: "product purchase" !important;
    align-items: start !important;
  }
}

html body.aiomy-single-product-v36 .aiomy-single > .aiomy-single__related {
  grid-area: auto !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 24px !important;
}

/* Dawny formularz opinii nie może wrócić z natywnego szablonu WooCommerce. */
html body.aiomy-single-product-v36 .aiomy-single__reviews-section,
html body.aiomy-single-product-v36 #review_form_wrapper,
html body.aiomy-single-product-v36 #review_form {
  display: none !important;
}

/* ── Opinie wyłącznie w bocznym panelu ─────────────────────────────── */
html body.aiomy-single-product-v36 .aiomy-single__reviews-summary {
  display: flex !important;
  flex-direction: column !important;
  gap: 5px !important;
  margin: 0 0 20px !important;
  padding: 18px 20px !important;
  border: 1px solid rgba(45, 45, 58, 0.08) !important;
  border-radius: 18px !important;
  background:
    linear-gradient(110deg, rgba(240, 77, 145, 0.08), rgba(135, 101, 246, 0.08)),
    #fff !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-summary strong {
  color: var(--text) !important;
  font-size: 1.25rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__reviews-summary span {
  color: var(--text-muted) !important;
  font-size: 0.76rem !important;
  line-height: 1.5 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-reviews {
  display: grid !important;
  gap: 12px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-review {
  display: block !important;
  margin: 0 !important;
  padding: 17px 18px !important;
  border: 1px solid rgba(45, 45, 58, 0.085) !important;
  border-radius: 17px !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-review > header {
  display: flex !important;
  align-items: baseline !important;
  justify-content: space-between !important;
  gap: 12px !important;
  margin-bottom: 7px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-review > header strong {
  color: var(--text) !important;
  font-size: 0.79rem !important;
  font-weight: 750 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-review > header time {
  color: var(--text-muted) !important;
  font-size: 0.66rem !important;
  white-space: nowrap !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-review .aiomy-single__stars {
  display: inline-block !important;
  margin: 0 0 8px !important;
  font-size: 0.84rem !important;
}

html body.aiomy-single-product-v36 .aiomy-single__drawer-review-content,
html body.aiomy-single-product-v36 .aiomy-single__drawer-review-content p {
  margin: 0 !important;
  color: var(--text-muted) !important;
  font-size: 0.8rem !important;
  line-height: 1.62 !important;
}

/* ── Promocje: te same dwa kafelki co na stronie głównej ───────────── */
html body.aiomy-single-product-v36 .aiomy-single__promotions-drawer > p:first-of-type {
  margin: 0 0 18px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-cards {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 14px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-card {
  position: relative !important;
  isolation: isolate !important;
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: 15px !important;
  min-height: 158px !important;
  padding: 20px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 23px !important;
  background: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%) !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 14px 34px rgba(135, 101, 246, 0.18) !important;
  transition: transform 220ms ease, box-shadow 220ms ease !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-card--mint {
  background: linear-gradient(118deg, #2bb5aa 0%, #3ecfc4 48%, #a8efea 100%) !important;
  box-shadow: 0 14px 34px rgba(43, 181, 170, 0.2) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-card::before,
html body.aiomy-single-product-v36 .aiomy-single__promotion-card::after {
  position: absolute !important;
  z-index: -1 !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.12) !important;
  content: "" !important;
  pointer-events: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-card::before {
  top: -70px !important;
  right: -45px !important;
  width: 190px !important;
  height: 190px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-card::after {
  bottom: -85px !important;
  left: 24% !important;
  width: 170px !important;
  height: 170px !important;
  opacity: 0.66 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-visual {
  display: grid !important;
  place-items: center !important;
  width: 74px !important;
  height: 74px !important;
  border: 1px solid rgba(255, 255, 255, 0.34) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.17) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-visual svg {
  display: block !important;
  width: 62px !important;
  height: 56px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-copy {
  display: flex !important;
  flex-direction: column !important;
  min-width: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-copy > span {
  margin-bottom: 6px !important;
  color: rgba(255, 255, 255, 0.87) !important;
  font-size: 0.64rem !important;
  font-weight: 750 !important;
  letter-spacing: 0.1em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-copy strong {
  color: #fff !important;
  font-size: 1.08rem !important;
  font-weight: 800 !important;
  line-height: 1.22 !important;
  letter-spacing: -0.025em !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-copy small {
  margin-top: 4px !important;
  color: rgba(255, 255, 255, 0.86) !important;
  font-size: 0.7rem !important;
  line-height: 1.45 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-action {
  grid-column: 1 / -1 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 43px !important;
  padding: 0 16px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #7451db !important;
  font-size: 0.75rem !important;
  font-weight: 750 !important;
  line-height: 1 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-card--mint .aiomy-single__promotion-action {
  color: #218f88 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-card:hover,
html body.aiomy-single-product-v36 .aiomy-single__promotion-card:focus-visible {
  transform: translateY(-2px) !important;
  outline: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__promotion-note {
  margin: 14px 4px 0 !important;
  color: var(--text-muted) !important;
  font-size: 0.68rem !important;
  line-height: 1.5 !important;
  text-align: center !important;
}

/* ════════════════════════════════════════════════════════════════════
   AIOMY — GLOBALNY NAGŁÓWEK MOBILNY V40
   Ten sam rozmiar na stronie głównej, w sklepie, na produkcie i na
   każdej podstronie. Reguły nie zależą od klas body.
════════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  html {
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }

  html body #site-header.site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 1000 !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    box-sizing: border-box !important;
    transform: none !important;
    scale: 1 !important;
    animation: none !important;
  }

  html body #site-header.site-header > .header-inner.container {
    position: relative !important;
    display: flex !important;
    flex: 0 0 72px !important;
    align-items: center !important;
    justify-content: space-between !important;
    width: calc(100% - 16px) !important;
    max-width: calc(100% - 16px) !important;
    min-width: 0 !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    margin: 0 auto !important;
    padding: 0 12px !important;
    gap: 8px !important;
    box-sizing: border-box !important;
    transform: none !important;
    scale: 1 !important;
    animation: none !important;
  }

  html body #site-header.site-header > .header-inner.container::before {
    top: 4px !important;
    right: 0 !important;
    bottom: 4px !important;
    left: 0 !important;
    border-radius: 22px !important;
  }

  html body #site-header.site-header .site-logo {
    display: flex !important;
    flex: 0 0 128px !important;
    align-items: center !important;
    justify-content: flex-start !important;
    width: 128px !important;
    min-width: 128px !important;
    max-width: 128px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    transform: none !important;
    scale: 1 !important;
    transition: none !important;
    animation: none !important;
  }

  html body #site-header.site-header .site-logo img,
  html body #site-header.site-header .site-logo__img,
  html body #site-header.site-header .site-logo .site-logo__img {
    display: block !important;
    flex: 0 0 119px !important;
    width: 119px !important;
    min-width: 119px !important;
    max-width: 119px !important;
    height: 34px !important;
    min-height: 34px !important;
    max-height: 34px !important;
    margin: 0 !important;
    padding: 0 !important;
    object-fit: contain !important;
    object-position: left center !important;
    box-sizing: border-box !important;
    transform: none !important;
    scale: 1 !important;
    transition: none !important;
    animation: none !important;
  }

  html body #site-header.site-header .header-actions {
    display: flex !important;
    flex: 0 0 132px !important;
    align-items: center !important;
    justify-content: flex-end !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 0 0 auto !important;
    padding: 0 !important;
    gap: 6px !important;
    box-sizing: border-box !important;
    transform: none !important;
    scale: 1 !important;
  }

  html body #site-header.site-header .header-cta,
  html body #site-header.site-header .header-cta.btn,
  html body #site-header.site-header .header-cta.btn.btn-primary {
    display: none !important;
  }

  html body #site-header.site-header .cart-btn,
  html body #site-header.site-header .aiomy-account-btn,
  html body #site-header.site-header .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 40px !important;
    align-items: center !important;
    justify-content: center !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 8px !important;
    box-sizing: border-box !important;
    transform: none !important;
    scale: 1 !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__layout {
    grid-template-areas:
      "product"
      "purchase" !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single > .aiomy-single__related {
    margin-top: 14px !important;
  }
}

/* V44 — końcowe wymuszenie po wszystkich starszych warstwach produktu. */
html body.aiomy-single-product-v36 .aiomy-single__policy-drawer,
html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header,
html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-body {
  background:
    radial-gradient(circle at 100% 0%, rgba(135, 101, 246, 0.14), transparent 36%),
    radial-gradient(circle at 0% 22%, rgba(240, 77, 145, 0.12), transparent 34%),
    linear-gradient(135deg, #fffaf0 0%, #fff7fb 52%, #eef3ff 100%) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-drawer-header h2 {
  display: inline-block !important;
  background: var(--aiomy-gradient) !important;
  background-clip: text !important;
  -webkit-background-clip: text !important;
  color: #e84b90 !important;
  -webkit-text-fill-color: transparent !important;
}

html body.aiomy-single-product-v36 .aiomy-single__policy-panel-icon {
  display: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__description {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

@media (max-width: 768px) {
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    padding: 0 !important;
    border-radius: 22px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__main-image,
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
    border-radius: 22px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__description {
    padding: 0 !important;
  }
}

/* ════════════════════════════════════════════════════════════════════
   AIOMY V45 — OSTATECZNE WYMUSZENIA KOMPATYBILNOŚCI
   Muszą pozostać ostatnią warstwą arkusza.
════════════════════════════════════════════════════════════════════ */

html body.aiomy-single-product-v36 .aiomy-single__description,
html body.aiomy-single-product-v36 .aiomy-single__description-heading,
html body.aiomy-single-product-v36 .aiomy-single__description-content {
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  box-sizing: border-box !important;
}

@media (min-width: 1025px) {
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap {
    width: min(100%, 560px) !important;
    min-width: 0 !important;
    min-height: 0 !important;
    height: auto !important;
    max-height: none !important;
    aspect-ratio: 1 / 1 !important;
    margin-right: auto !important;
    margin-left: auto !important;
    padding: 8px !important;
    overflow: hidden !important;
    border: 1px solid rgba(45, 45, 58, 0.07) !important;
    border-radius: 34px !important;
    background: #fff !important;
    box-sizing: border-box !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__main-image,
  html body.aiomy-single-product-v36 .aiomy-single__main-image-wrap > img {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border-radius: 27px !important;
    object-fit: cover !important;
    object-position: center !important;
    clip-path: inset(0 round 27px) !important;
  }
}

@media (max-width: 1024px) {
  html body.aiomy-single-product-v36 .aiomy-single__zoom-button {
    display: inline-flex !important;
  }

  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean {
    color: transparent !important;
    font-size: 0 !important;
    line-height: 0 !important;
  }

  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean::before,
  html body #site-header.site-header .main-nav .nav-close.aiomy-nav-close-clean::after {
    display: block !important;
    background: #242331 !important;
    content: "" !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V46 — PODOBNE OFERTY: PEŁNE ZDJĘCIA + ZWARTY DÓŁ STRONY
   Ostatnia warstwa celowo zeruje konflikt starego flex-basis na Safari.
═══════════════════════════════════════════════════════════════════ */

html body.aiomy-single-product-v36 .aiomy-single__related-card,
html body.aiomy-single-product-v36 .aiomy-single__related-card > a {
  min-height: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-card > a {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-image {
  position: relative !important;
  display: block !important;
  flex: 0 0 var(--aiomy-related-card-width, 240px) !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: 100% !important;
  height: var(--aiomy-related-card-width, 240px) !important;
  min-height: var(--aiomy-related-card-width, 240px) !important;
  max-height: var(--aiomy-related-card-width, 240px) !important;
  aspect-ratio: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 17px 17px 0 0 !important;
  background: #fff !important;
  box-sizing: border-box !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-image img,
html body.aiomy-single-product-v36 .aiomy-single__related-image img.attachment-woocommerce_thumbnail {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
  scale: 1 !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-copy {
  position: relative !important;
  z-index: 1 !important;
  flex: 1 1 auto !important;
  width: 100% !important;
  min-height: 0 !important;
  background: #fff !important;
}

/* Odstęp między karuzelą a ciemną stopką: 1/4 poprzedniej wartości. */
html body.aiomy-single-product-v36 main.wc-main {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: clamp(10px, 1.25vw, 16px) !important;
}

html body.aiomy-single-product-v36 main.wc-main > .container,
html body.aiomy-single-product-v36 main.wc-main > .container > .woocommerce,
html body.aiomy-single-product-v36 .aiomy-single,
html body.aiomy-single-product-v36 .aiomy-single > .aiomy-single__related {
  min-height: 0 !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

html body.aiomy-single-product-v36 .aiomy-single > .aiomy-single__related {
  padding-bottom: clamp(14px, 2vw, 22px) !important;
}

html body.aiomy-single-product-v36 .site-footer,
html body.aiomy-single-product-v36 footer.site-footer {
  margin-top: 0 !important;
}

@media (max-width: 1024px) {
  html body.aiomy-single-product-v36 main.wc-main {
    padding-bottom: 10px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single > .aiomy-single__related {
    margin-bottom: 0 !important;
    padding-bottom: 14px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V47 — RĘCZNE STEROWANIE NIESKOŃCZONĄ KARUZELĄ
   Automatyczny ruch pozostaje aktywny; przyciski jedynie pozwalają
   cofnąć lub przyspieszyć karuzelę o jedną ofertę.
═══════════════════════════════════════════════════════════════════ */

html body.aiomy-single-product-v36 .aiomy-single__related-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 8px !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls button {
  display: inline-flex !important;
  flex: 0 0 42px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(45, 45, 58, 0.11) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #2d2d3a !important;
  box-shadow: 0 7px 18px rgba(45, 45, 58, 0.08) !important;
  cursor: pointer !important;
  appearance: none !important;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls button svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  pointer-events: none !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls button:hover,
html body.aiomy-single-product-v36 .aiomy-single__related-controls button:focus-visible {
  border-color: transparent !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  outline: 0 !important;
  transform: translateY(-1px) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-controls button:active {
  transform: translateY(0) scale(0.96) !important;
}

html body.aiomy-single-product-v36 .aiomy-single__related-carousel:focus-visible {
  border-radius: 18px !important;
  outline: 2px solid rgba(240, 77, 145, 0.42) !important;
  outline-offset: 4px !important;
}

@media (max-width: 768px) {
  html body.aiomy-single-product-v36 .aiomy-single__related-header {
    gap: 10px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__related-controls {
    gap: 6px !important;
  }

  html body.aiomy-single-product-v36 .aiomy-single__related-controls button {
    flex-basis: 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V48 — BLOKADA PRZYPADKOWEGO ZOOMU NA TELEFONIE I TABLECIE
   manipulation usuwa zoom po podwójnym stuknięciu, ale zachowuje
   zwykłe przewijanie i klikanie. Rozmiar 16 px blokuje zoom formularzy
   uruchamiany automatycznie przez iOS Safari.
═══════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px), (hover: none) and (pointer: coarse) {
  html,
  body {
    touch-action: manipulation !important;
    -webkit-text-size-adjust: 100% !important;
    text-size-adjust: 100% !important;
  }

  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V50 — POPRAWIONE MENU MOBILNE BEZ BLOKOWANIA CAŁEGO BODY
   Panel jest przypięty do widoku przeglądarki, a pozycja dokumentu nie
   jest modyfikowana. Dzięki temu menu otwiera się również w środku lub
   na końcu strony, bez przeskoku i bez zamrożenia interfejsu.
═══════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
  html body.aiomy-mobile-nav-open {
    overscroll-behavior: none !important;
  }

  html body #site-header.site-header #main-nav.main-nav {
    position: fixed !important;
    z-index: 100000 !important;
    top: 0 !important;
    right: -110vw !important;
    bottom: auto !important;
    left: auto !important;
    width: min(86vw, 320px) !important;
    max-width: calc(100vw - 20px) !important;
    height: 100vh !important;
    height: 100dvh !important;
    margin: 0 !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    overscroll-behavior: contain !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transition: right 260ms ease, opacity 180ms ease, visibility 0s linear 260ms !important;
    transform: translate3d(0, 0, 0) !important;
    -webkit-transform: translate3d(0, 0, 0) !important;
  }

  html body #site-header.site-header #main-nav.main-nav.is-open {
    right: 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    transition: right 260ms ease, opacity 180ms ease, visibility 0s linear 0s !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V51 — PUSTY KOSZYK
   Jedno tło z całą witryną, własny komunikat i identyczna w działaniu
   nieskończona karuzela jak w sekcji „Podobne oferty”.
═══════════════════════════════════════════════════════════════════ */

html body.aiomy-cart-v51 {
  background-color: #fffdf9 !important;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(255, 212, 92, 0.28), transparent 28%),
    radial-gradient(circle at 76% 24%, rgba(255, 117, 168, 0.27), transparent 27%),
    radial-gradient(circle at 89% 42%, rgba(135, 101, 246, 0.15), transparent 25%),
    radial-gradient(circle at 104% 55%, rgba(81, 169, 245, 0.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #fff8fb 45%, #f7f7ff 100%) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  overflow-x: clip !important;
}

/* Za nagłówkiem pozostaje dokładnie to samo tło strony. Biała pigułka
   .header-inner::before pozostaje bez zmian i nadal obejmuje całe menu. */
html body.aiomy-cart-v51 #site-header.site-header,
html body.aiomy-cart-v51 #site-header.site-header:hover,
html body.aiomy-cart-v51 #site-header.site-header:focus-within {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.aiomy-cart-v51 #site-header.site-header::before,
html body.aiomy-cart-v51 #site-header.site-header::after {
  display: none !important;
  content: none !important;
}

html body.aiomy-cart-v51 #site-header.site-header > .header-inner.container {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body.aiomy-cart-v51 main,
html body.aiomy-cart-v51 main.site-main,
html body.aiomy-cart-v51 main.wc-main,
html body.aiomy-cart-v51 main > .container,
html body.aiomy-cart-v51 .site-content,
html body.aiomy-cart-v51 .content-area,
html body.aiomy-cart-v51 .entry-content,
html body.aiomy-cart-v51 .woocommerce,
html body.aiomy-cart-v51 .wp-site-blocks,
html body.aiomy-cart-v51 .wp-block-post-content,
html body.aiomy-cart-v51 .wp-block-woocommerce-cart,
html body.aiomy-cart-v51 .wp-block-woocommerce-empty-cart-block,
html body.aiomy-cart-v51 .woocommerce-notices-wrapper {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
}

html body.aiomy-cart-v51 main.site-main,
html body.aiomy-cart-v51 main.wc-main {
  min-height: 0 !important;
  margin: 0 !important;
  padding-top: clamp(34px, 5vw, 64px) !important;
  padding-bottom: clamp(16px, 2.2vw, 28px) !important;
}

html body.aiomy-cart-v51 main > .container,
html body.aiomy-cart-v51 main .entry-content,
html body.aiomy-cart-v51 main .woocommerce,
html body.aiomy-cart-v51 main .wp-block-post-content {
  width: 100% !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 24px !important;
  padding-left: 24px !important;
  box-sizing: border-box !important;
}

/* Tytuł strony „Koszyk” znika wyłącznie wtedy, gdy koszyk jest pusty. */
html body.aiomy-cart-v51.aiomy-cart-is-empty .entry-header,
html body.aiomy-cart-v51.aiomy-cart-is-empty .page-header,
html body.aiomy-cart-v51.aiomy-cart-is-empty .entry-title,
html body.aiomy-cart-v51.aiomy-cart-is-empty .page-title,
html body.aiomy-cart-v51.aiomy-cart-is-empty .wp-block-post-title {
  display: none !important;
}

/* Awaryjne wygaszenie starego pustego stanu na czas montowania komponentu. */
html body.aiomy-cart-v51 .wc-block-cart__empty-cart__title,
html body.aiomy-cart-v51 .wc-block-cart__empty-cart__title::before,
html body.aiomy-cart-v51 .wp-block-woocommerce-empty-cart-block > hr,
html body.aiomy-cart-v51 .wp-block-woocommerce-empty-cart-block > .wp-block-heading,
html body.aiomy-cart-v51 .wp-block-woocommerce-empty-cart-block > .wp-block-woocommerce-product-new {
  display: none !important;
}

html body.aiomy-cart-v51 .wp-block-woocommerce-empty-cart-block {
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty,
html body.aiomy-cart-v51 .aiomy-cart-empty *,
html body.aiomy-cart-v51 .aiomy-cart-empty *::before,
html body.aiomy-cart-v51 .aiomy-cart-empty *::after {
  box-sizing: border-box !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty {
  width: 100% !important;
  max-width: 1200px !important;
  margin: 0 auto !important;
  color: var(--text) !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__hero {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: clamp(280px, 33vw, 390px) !important;
  margin: 0 auto clamp(20px, 2.5vw, 30px) !important;
  padding: clamp(48px, 7vw, 82px) 20px !important;
  text-align: center !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__hero h1 {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0 0.24em !important;
  width: 100% !important;
  margin: 0 0 clamp(26px, 3vw, 38px) !important;
  color: var(--text) !important;
  font-family: var(--font) !important;
  font-size: clamp(2.2rem, 5.2vw, 4.65rem) !important;
  font-weight: 800 !important;
  line-height: 1.06 !important;
  letter-spacing: -0.05em !important;
  text-align: center !important;
  text-wrap: balance !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__title-gradient {
  display: inline-block !important;
  padding-right: 0.05em !important;
  background: var(--aiomy-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: #f04d91 !important;
  -webkit-text-fill-color: transparent !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__shop-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  min-width: 230px !important;
  min-height: 58px !important;
  margin: 0 !important;
  padding: 15px 25px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 0.95rem !important;
  font-weight: 750 !important;
  line-height: 1.1 !important;
  text-decoration: none !important;
  box-shadow: 0 14px 32px rgba(214, 69, 148, 0.2) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__shop-button svg {
  display: block !important;
  flex: 0 0 20px !important;
}

@media (hover: hover) and (pointer: fine) {
  html body.aiomy-cart-v51 .aiomy-cart-empty__shop-button:hover,
  html body.aiomy-cart-v51 .aiomy-cart-empty__shop-button:focus-visible {
    color: #fff !important;
    -webkit-text-fill-color: #fff !important;
    outline: 0 !important;
    filter: saturate(1.08) brightness(1.02) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 18px 38px rgba(214, 69, 148, 0.26) !important;
  }
}

/* Proponowane oferty — jedna ciągła, bezszwowa karuzela. */
html body.aiomy-cart-v51 .aiomy-cart-empty__recommendations {
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(20px, 3vw, 32px) !important;
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 18px 54px rgba(45, 45, 58, 0.09) !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__recommendations-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 16px !important;
  margin: 0 0 20px !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__recommendations-header h2 {
  margin: 0 !important;
  color: var(--text) !important;
  font-size: clamp(1.55rem, 2.8vw, 2.25rem) !important;
  font-weight: 800 !important;
  line-height: 1.14 !important;
  letter-spacing: -0.04em !important;
  text-transform: none !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__recommendations-header h2 span {
  background: var(--aiomy-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: #ee4f91 !important;
  -webkit-text-fill-color: transparent !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__controls {
  display: flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 8px !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__controls button {
  display: inline-flex !important;
  flex: 0 0 42px !important;
  align-items: center !important;
  justify-content: center !important;
  width: 42px !important;
  min-width: 42px !important;
  max-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  max-height: 42px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(45, 45, 58, 0.11) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--text) !important;
  box-shadow: 0 7px 18px rgba(45, 45, 58, 0.08) !important;
  cursor: pointer !important;
  appearance: none !important;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__controls button svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  pointer-events: none !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__controls button:hover,
html body.aiomy-cart-v51 .aiomy-cart-empty__controls button:focus-visible {
  border-color: transparent !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  outline: 0 !important;
  transform: translateY(-1px) !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__carousel {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  overflow: hidden !important;
  outline: 0 !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__carousel:focus-visible {
  border-radius: 18px !important;
  outline: 2px solid rgba(240, 77, 145, 0.42) !important;
  outline-offset: 4px !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__track,
html body.aiomy-cart-v51 .aiomy-cart-empty__group {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: stretch !important;
  gap: 14px !important;
  width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__track {
  will-change: transform !important;
  transform: translate3d(0, 0, 0);
}

html body.aiomy-cart-v51 .aiomy-cart-empty__group {
  flex: 0 0 auto !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-card {
  position: relative !important;
  display: flex !important;
  flex-direction: column !important;
  flex: 0 0 var(--aiomy-cart-card-width, 240px) !important;
  width: var(--aiomy-cart-card-width, 240px) !important;
  min-width: var(--aiomy-cart-card-width, 240px) !important;
  max-width: var(--aiomy-cart-card-width, 240px) !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(45, 45, 58, 0.08) !important;
  border-radius: 18px !important;
  background: #fff !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-link {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  width: 100% !important;
  min-height: 0 !important;
  color: inherit !important;
  text-decoration: none !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-image {
  position: relative !important;
  display: block !important;
  flex: 0 0 var(--aiomy-cart-card-width, 240px) !important;
  width: 100% !important;
  min-width: 100% !important;
  height: var(--aiomy-cart-card-width, 240px) !important;
  min-height: var(--aiomy-cart-card-width, 240px) !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 17px 17px 0 0 !important;
  background: #fff !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-image img,
html body.aiomy-cart-v51 .aiomy-cart-empty__product-image img.attachment-woocommerce_thumbnail {
  position: absolute !important;
  inset: 0 !important;
  display: block !important;
  width: 100% !important;
  min-width: 100% !important;
  max-width: none !important;
  height: 100% !important;
  min-height: 100% !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  object-fit: contain !important;
  object-position: center center !important;
  transform: none !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-copy {
  display: flex !important;
  flex: 1 1 auto !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
  min-height: 92px !important;
  margin: 0 !important;
  padding: 12px !important;
  background: #fff !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-copy strong {
  display: -webkit-box !important;
  overflow: hidden !important;
  color: var(--text) !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  line-height: 1.42 !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-copy small,
html body.aiomy-cart-v51 .aiomy-cart-empty__product-copy .amount,
html body.aiomy-cart-v51 .aiomy-cart-empty__product-copy bdi {
  margin-top: auto !important;
  color: var(--text) !important;
  -webkit-text-fill-color: var(--text) !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__product-actions {
  display: flex !important;
  flex: 0 0 auto !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 12px 12px !important;
  background: #fff !important;
  box-sizing: border-box !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart,
html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:hover,
html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:focus,
html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:focus-visible,
html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:active {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 9px 12px !important;
  border: 1px solid #2d2d3a !important;
  border-radius: 999px !important;
  background: #2d2d3a !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  box-shadow: none !important;
  font-family: var(--font) !important;
  font-size: 0.74rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  transform: none !important;
  box-sizing: border-box !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart svg {
  display: block !important;
  flex: 0 0 17px !important;
  width: 17px !important;
  height: 17px !important;
  pointer-events: none !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart span {
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart.loading,
html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart.added {
  border-color: #2d2d3a !important;
  background: #2d2d3a !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  opacity: 1 !important;
}

html body.aiomy-cart-v51 .aiomy-cart-empty__choose-options,
html body.aiomy-cart-v51 .aiomy-cart-empty__choose-options:hover,
html body.aiomy-cart-v51 .aiomy-cart-empty__choose-options:focus-visible {
  border-color: transparent !important;
  background: var(--aiomy-gradient) !important;
}

@media (hover: hover) and (pointer: fine) {
  html body.aiomy-cart-v51 .aiomy-cart-empty__product-card:hover {
    border-color: transparent !important;
    background:
      linear-gradient(#fff, #fff) padding-box,
      var(--aiomy-gradient) border-box !important;
    box-shadow: 0 14px 32px rgba(138, 100, 246, 0.15) !important;
    /* Karta nie wychodzi już ponad maskę karuzeli, więc górny kontur
       gradientu pozostaje widoczny na całej szerokości. */
    transform: none !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:not(.aiomy-cart-empty__choose-options):hover {
    border-color: #20202c !important;
    background: #20202c !important;
  }
}

/* Różowy CTA znika, a ciemna stopka zaczyna się bez pustej szczeliny. */
html body.aiomy-cart-v51 .footer-cta-bar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-cart-v51 .site-footer,
html body.aiomy-cart-v51 footer.site-footer,
html body.aiomy-cart-v51 .footer-main {
  margin-top: 0 !important;
}

@media (max-width: 768px) {
  html body.aiomy-cart-v51 {
    background-attachment: scroll !important;
  }

  html body.aiomy-cart-v51 #site-header.site-header,
  html body.aiomy-cart-v51 #site-header.site-header:hover,
  html body.aiomy-cart-v51 #site-header.site-header:focus-within {
    width: 100% !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    background: transparent !important;
  }

  html body.aiomy-cart-v51 main.site-main,
  html body.aiomy-cart-v51 main.wc-main {
    padding-top: 18px !important;
    padding-bottom: 10px !important;
  }

  html body.aiomy-cart-v51 main > .container,
  html body.aiomy-cart-v51 main .entry-content,
  html body.aiomy-cart-v51 main .woocommerce,
  html body.aiomy-cart-v51 main .wp-block-post-content {
    padding-right: 12px !important;
    padding-left: 12px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__hero {
    min-height: 300px !important;
    margin-bottom: 14px !important;
    padding: 46px 8px 42px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__hero h1 {
    flex-direction: column !important;
    gap: 4px !important;
    margin-bottom: 28px !important;
    font-size: clamp(2.05rem, 10.3vw, 3.25rem) !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__shop-button {
    width: min(100%, 270px) !important;
    min-width: 0 !important;
    min-height: 54px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__recommendations {
    padding: 18px 14px !important;
    border-radius: 24px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__recommendations-header {
    gap: 10px !important;
    margin-bottom: 16px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__recommendations-header h2 {
    font-size: clamp(1.42rem, 7.2vw, 1.9rem) !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__controls {
    gap: 6px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__controls button {
    flex-basis: 38px !important;
    width: 38px !important;
    min-width: 38px !important;
    max-width: 38px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__track,
  html body.aiomy-cart-v51 .aiomy-cart-empty__group {
    gap: 10px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__product-copy {
    min-height: 86px !important;
    padding: 10px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__product-actions {
    padding: 0 10px 10px !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart,
  html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:hover,
  html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:focus,
  html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:focus-visible,
  html body.aiomy-cart-v51 .aiomy-cart-empty__add-to-cart:active {
    min-height: 40px !important;
    padding: 8px 9px !important;
    font-size: 0.7rem !important;
  }
}

/* ════════════════════════════════════════
   AIOMY V53 — PUSTY KOSZYK / NAGŁÓWEK DESKTOP
   Dwa czytelne wiersze; wersja telefonu pozostaje bez zmian.
════════════════════════════════════════ */
@media (min-width: 769px) {
  html body.aiomy-cart-v51 .aiomy-cart-empty__hero h1 {
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: clamp(10px, 1vw, 16px) !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__hero h1 > span {
    display: block !important;
    width: 100% !important;
    word-spacing: 0.18em !important;
  }

  html body.aiomy-cart-v51 .aiomy-cart-empty__title-gradient {
    word-spacing: 0.18em !important;
    letter-spacing: -0.035em !important;
  }
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V58 — USUNIĘCIE SYSTEMOWEGO NIEBIESKIEGO OBRYSU KOMUNIKATU
   Zostaje wyłącznie właściwy gradientowy kontur AIOMY.
═══════════════════════════════════════════════════════════════════ */
html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice,
html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice:hover,
html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice:focus,
html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice:focus-visible,
html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice:focus-within,
html body .woocommerce-notices-wrapper .woocommerce-message.aiomy-add-to-cart-notice:active,
html body .woocommerce-message.aiomy-add-to-cart-notice,
html body .woocommerce-message.aiomy-add-to-cart-notice:hover,
html body .woocommerce-message.aiomy-add-to-cart-notice:focus,
html body .woocommerce-message.aiomy-add-to-cart-notice:focus-visible,
html body .woocommerce-message.aiomy-add-to-cart-notice:focus-within,
html body .woocommerce-message.aiomy-add-to-cart-notice:active {
  border: 2px solid transparent !important;
  outline: 0 !important;
  outline-width: 0 !important;
  outline-style: none !important;
  outline-color: transparent !important;
  outline-offset: 0 !important;
  background:
    linear-gradient(#ffffff, #ffffff) padding-box,
    var(--aiomy-gradient) border-box !important;
  box-shadow: 0 12px 30px rgba(45, 45, 58, 0.08) !important;
  filter: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

/* ═══════════════════════════════════════════════════════════════════
   AIOMY V60 — PODSUMOWANIE ZAMÓWIENIA / CHECKOUT
   Jedno tło z serwisem, czysty formularz i panel płatności AIOMY.
═══════════════════════════════════════════════════════════════════ */

/* To samo, ciągłe tło co na stronie głównej, w sklepie i koszyku. */
html body.aiomy-checkout-v59 {
  background-color: #fffdf9 !important;
  background-image:
    radial-gradient(circle at 12% 16%, rgba(255, 212, 92, 0.28), transparent 28%),
    radial-gradient(circle at 76% 24%, rgba(255, 117, 168, 0.27), transparent 27%),
    radial-gradient(circle at 89% 42%, rgba(135, 101, 246, 0.15), transparent 25%),
    radial-gradient(circle at 104% 55%, rgba(81, 169, 245, 0.22), transparent 30%),
    linear-gradient(135deg, #fffdf9 0%, #fff8fb 45%, #f7f7ff 100%) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  overflow-x: clip !important;
}

html body.aiomy-checkout-v59 #page,
html body.aiomy-checkout-v59 .site,
html body.aiomy-checkout-v59 .site-content,
html body.aiomy-checkout-v59 .content-area,
html body.aiomy-checkout-v59 main,
html body.aiomy-checkout-v59 main.site-main,
html body.aiomy-checkout-v59 main.wc-main,
html body.aiomy-checkout-v59 main > .container,
html body.aiomy-checkout-v59 article,
html body.aiomy-checkout-v59 .entry-content,
html body.aiomy-checkout-v59 .wp-site-blocks,
html body.aiomy-checkout-v59 .wp-block-post-content,
html body.aiomy-checkout-v59 .woocommerce,
html body.aiomy-checkout-v59 .woocommerce-notices-wrapper {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Za białą pigułką nagłówka nie powstaje osobny kolorowy pas. */
html body.aiomy-checkout-v59 #site-header.site-header,
html body.aiomy-checkout-v59 #site-header.site-header:hover,
html body.aiomy-checkout-v59 #site-header.site-header:focus-within {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.aiomy-checkout-v59 #site-header.site-header::before,
html body.aiomy-checkout-v59 #site-header.site-header::after {
  display: none !important;
  content: none !important;
}

html body.aiomy-checkout-v59 #site-header.site-header > .header-inner.container {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Główna szerokość pozostaje identyczna z resztą witryny. */
html body.aiomy-checkout-v59 main.site-main,
html body.aiomy-checkout-v59 main.wc-main {
  min-height: 0 !important;
  margin: 0 !important;
  padding: clamp(34px, 5vw, 64px) 0 clamp(24px, 4vw, 48px) !important;
}

html body.aiomy-checkout-v59 main > .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 24px !important;
  padding-left: 24px !important;
  box-sizing: border-box !important;
}

/*
 * Kontener jest ograniczany tylko raz. Wcześniejsze powtarzanie paddingu na
 * entry-content i .woocommerce zwężało checkout oraz przesuwało formularz
 * względem tytułu.
 */
html body.aiomy-checkout-v59 main .entry-content,
html body.aiomy-checkout-v59 main .wp-block-post-content,
html body.aiomy-checkout-v59 main .woocommerce {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
  box-sizing: border-box !important;
}

/* Kupon jest dostępny w koszyku, lecz nie jest powtarzany na checkoutcie. */
html body.aiomy-checkout-v59 .woocommerce-form-coupon-toggle,
html body.aiomy-checkout-v59 form.checkout_coupon,
html body.aiomy-checkout-v59 .checkout_coupon {
  display: none !important;
}

/* Tytuł „Podsumowanie zamówienia” w tym samym języku wizualnym co AIOMY. */
html body.aiomy-checkout-v59 .entry-header,
html body.aiomy-checkout-v59 .page-header {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  background: transparent !important;
  border: 0 !important;
}

html body.aiomy-checkout-v59 .entry-title,
html body.aiomy-checkout-v59 .page-title,
html body.aiomy-checkout-v59 h1.wp-block-post-title {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  gap: 7px !important;
  width: fit-content !important;
  max-width: 100% !important;
  /* Rzeczywisty, wymuszony odstęp między drugą linią tytułu a kartami. */
  margin: 0 0 34px !important;
  color: #20203b !important;
  font-family: var(--font) !important;
  font-size: clamp(1.65rem, 2.05vw, 2rem) !important;
  font-weight: 800 !important;
  line-height: 1.02 !important;
  letter-spacing: -0.035em !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

html body.aiomy-checkout-v59 .aiomy-checkout-v61__title-line {
  display: block !important;
  width: 100% !important;
  white-space: nowrap !important;
}

html body.aiomy-checkout-v59 .aiomy-checkout-v59__title-gradient {
  display: block !important;
  color: #f04d91 !important;
  background: var(--aiomy-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
}

/* Dwie czytelne kolumny: dane klienta i podsumowanie. */
html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout {
  display: grid !important;
  /* Prawa kolumna ma stały wymiar także po zmianie Kurier/Paczkomat. */
  grid-template-columns: minmax(0, 1fr) 466px !important;
  grid-template-rows: auto 1fr !important;
  column-gap: clamp(24px, 3vw, 40px) !important;
  row-gap: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  align-items: start !important;
}

html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #customer_details {
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(24px, 3vw, 36px) !important;
  border: 1px solid rgba(45, 45, 58, 0.07) !important;
  border-radius: 28px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 16px 45px rgba(45, 45, 58, 0.07) !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #order_review_heading {
  grid-column: 2 !important;
  grid-row: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 466px !important;
  margin: 0 !important;
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) 16px !important;
  border: 1px solid rgba(45, 45, 58, 0.07) !important;
  border-bottom: 0 !important;
  border-radius: 28px 28px 0 0 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #20203b !important;
  box-shadow: 0 16px 45px rgba(45, 45, 58, 0.07) !important;
  box-sizing: border-box !important;
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
}

html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #order_review {
  grid-column: 2 !important;
  grid-row: 2 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 466px !important;
  margin: 0 !important;
  padding: 0 clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) !important;
  border: 1px solid rgba(45, 45, 58, 0.07) !important;
  border-top: 0 !important;
  border-radius: 0 0 28px 28px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: 0 16px 45px rgba(45, 45, 58, 0.07) !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 #customer_details::before,
html body.aiomy-checkout-v59 #customer_details::after {
  display: none !important;
  content: none !important;
}

html body.aiomy-checkout-v59 #customer_details .col-1,
html body.aiomy-checkout-v59 #customer_details .col-2 {
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

html body.aiomy-checkout-v59 #customer_details .col-2 {
  margin-top: 18px !important;
}

html body.aiomy-checkout-v59 .woocommerce-billing-fields > h3,
html body.aiomy-checkout-v59 .woocommerce-shipping-fields > h3,
html body.aiomy-checkout-v59 .woocommerce-additional-fields > h3 {
  margin: 0 0 22px !important;
  color: #20203b !important;
  font-size: clamp(1.15rem, 2vw, 1.4rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
}

/* Pola formularza: jasne, czytelne i ze spójnymi stanami błędów. */
html body.aiomy-checkout-v59 form.checkout .form-row {
  margin: 0 0 16px !important;
}

html body.aiomy-checkout-v59 form.checkout .form-row label {
  margin: 0 0 7px !important;
  color: #20203b !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

html body.aiomy-checkout-v59 form.checkout .required {
  color: #f04d91 !important;
  text-decoration: none !important;
}

html body.aiomy-checkout-v59 form.checkout input.input-text,
html body.aiomy-checkout-v59 form.checkout textarea,
html body.aiomy-checkout-v59 form.checkout select,
html body.aiomy-checkout-v59 form.checkout .select2-selection {
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 11px 14px !important;
  border: 1px solid rgba(45, 45, 58, 0.12) !important;
  border-radius: 13px !important;
  outline: 0 !important;
  background: #ffffff !important;
  color: #20203b !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
  transition: border-color 180ms ease, box-shadow 180ms ease !important;
}

html body.aiomy-checkout-v59 form.checkout textarea {
  min-height: 108px !important;
  resize: vertical !important;
}

html body.aiomy-checkout-v59 form.checkout input.input-text:focus,
html body.aiomy-checkout-v59 form.checkout textarea:focus,
html body.aiomy-checkout-v59 form.checkout select:focus,
html body.aiomy-checkout-v59 form.checkout .select2-container--open .select2-selection {
  border-color: #f04d91 !important;
  box-shadow: 0 0 0 3px rgba(240, 77, 145, 0.12) !important;
}

html body.aiomy-checkout-v59 form.checkout .woocommerce-invalid input.input-text,
html body.aiomy-checkout-v59 form.checkout .woocommerce-invalid .select2-selection {
  border-color: #d63638 !important;
  box-shadow: 0 0 0 3px rgba(214, 54, 56, 0.09) !important;
}

html body.aiomy-checkout-v59 form.checkout .select2-selection__rendered {
  padding: 0 !important;
  line-height: 24px !important;
}

html body.aiomy-checkout-v59 form.checkout .select2-selection__arrow {
  top: 50% !important;
  right: 10px !important;
  transform: translateY(-50%) !important;
}

/* Tabela zamówienia bez ciężkich ramek i przypadkowych kolorów. */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table {
  width: 100% !important;
  margin: 0 0 20px !important;
  border: 1px solid rgba(45, 45, 58, 0.08) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 16px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  overflow: hidden !important;
  /* Zawartość metod dostawy nie może przeliczać szerokości panelu. */
  table-layout: fixed !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table td {
  padding: 13px 12px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(45, 45, 58, 0.08) !important;
  color: #20203b !important;
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
  vertical-align: top !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table th {
  font-weight: 800 !important;
}

/*
 * Pełne wykorzystanie szerokości podsumowania: nazwy produktów zajmują
 * lewą część, a wszystkie wartości tworzą równą, wyrównaną prawą kolumnę.
 */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table thead th.product-name,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tbody td.product-name {
  display: table-cell !important;
  width: 66% !important;
  padding-right: 18px !important;
  text-align: left !important;
  white-space: normal !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: auto !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table thead th.product-total,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total {
  display: table-cell !important;
  width: 34% !important;
  min-width: 0 !important;
  text-align: right !important;
  white-space: nowrap !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tbody td.product-total .amount,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot td .amount {
  display: block !important;
  width: 100% !important;
  margin-left: auto !important;
  text-align: right !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot th {
  width: 66% !important;
  padding-right: 16px !important;
  text-align: left !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot td {
  width: 34% !important;
  min-width: 0 !important;
  padding-left: 8px !important;
  text-align: right !important;
  white-space: normal !important;
}

/* Kwota częściowa zawsze pozostaje widoczna w prawej kolumnie. */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal > td {
  display: table-cell !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal > td {
  text-align: right !important;
  white-space: nowrap !important;
}

/*
 * Wiersze dostawy i sumy wykorzystują całą szerokość tabeli. Dzięki temu
 * nazwy metod nie wpadają w wąską kolumnę kwoty i nie zwężają panelu.
 */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > td,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.shipping > td {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  white-space: normal !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.cart-subtotal {
  display: table-row !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.shipping {
  display: grid !important;
  grid-template-columns: 112px minmax(0, 1fr) !important;
  align-items: start !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.shipping > th {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table .product-quantity {
  display: inline !important;
  white-space: nowrap !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr:last-child th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr:last-child td {
  border-bottom: 0 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.order-total {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(188px, auto) !important;
  align-items: start !important;
  width: 100% !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.order-total > th {
  display: block !important;
  width: auto !important;
  min-width: 0 !important;
  padding-top: 17px !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.order-total > td {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: flex-start !important;
  gap: 4px !important;
  width: auto !important;
  min-width: 0 !important;
  padding-top: 15px !important;
  text-align: right !important;
  white-space: normal !important;
  visibility: visible !important;
  opacity: 1 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.order-total > td > strong {
  display: block !important;
  width: 100% !important;
  line-height: 1.05 !important;
  text-align: right !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.order-total > td > strong .amount {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  color: #20203b !important;
  font-size: 1.3rem !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
  text-align: right !important;
  white-space: nowrap !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.order-total .includes_tax {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
  color: #6f6f83 !important;
  font-size: 0.68rem !important;
  font-weight: 500 !important;
  line-height: 1.35 !important;
  text-align: right !important;
  white-space: normal !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tr.order-total .includes_tax .amount {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  color: inherit !important;
  font: inherit !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
}

/* Wszystkie skonfigurowane sposoby dostawy pozostają widoczne i klikalne. */
html body.aiomy-checkout-v59 .woocommerce-shipping-methods,
html body.aiomy-checkout-v59 #shipping_method {
  display: grid !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 .woocommerce-shipping-methods > li,
html body.aiomy-checkout-v59 #shipping_method > li {
  display: grid !important;
  grid-template-columns: 16px minmax(0, 1fr) !important;
  align-items: flex-start !important;
  gap: 8px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 9px 10px !important;
  border: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 11px !important;
  background: #ffffff !important;
  box-sizing: border-box !important;
  overflow: visible !important;
}

html body.aiomy-checkout-v59 .woocommerce-shipping-methods input[type="radio"],
html body.aiomy-checkout-v59 #shipping_method input[type="radio"] {
  flex: 0 0 auto !important;
  margin: 3px 0 0 !important;
  accent-color: #f04d91 !important;
}

html body.aiomy-checkout-v59 .woocommerce-shipping-methods label,
html body.aiomy-checkout-v59 #shipping_method label {
  display: block !important;
  min-width: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  color: #20203b !important;
  font-size: 0.8rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
  cursor: pointer !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
  hyphens: none !important;
}

/* Logo przewoźnika nie może zabierać całej szerokości tekstowi metody. */
html body.aiomy-checkout-v59 .woocommerce-shipping-methods label img,
html body.aiomy-checkout-v59 #shipping_method label img {
  display: block !important;
  float: none !important;
  position: static !important;
  width: auto !important;
  max-width: 58px !important;
  max-height: 28px !important;
  margin: 7px 0 0 !important;
  object-fit: contain !important;
}

html body.aiomy-checkout-v59 .woocommerce-shipping-methods .amount,
html body.aiomy-checkout-v59 #shipping_method .amount {
  display: inline !important;
  width: auto !important;
  margin: 0 !important;
  text-align: left !important;
  white-space: nowrap !important;
}

/* Przycisk wyboru punktu odbioru ma pełną szerokość i pełny, nieucięty tekst. */
html body.aiomy-checkout-v59 tr.woocommerce-shipping-totals td .button,
html body.aiomy-checkout-v59 tr.shipping td .button,
html body.aiomy-checkout-v59 tr.woocommerce-shipping-totals td button,
html body.aiomy-checkout-v59 tr.shipping td button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: none !important;
  min-height: 48px !important;
  margin: 10px 0 0 !important;
  padding: 10px 14px !important;
  box-sizing: border-box !important;
  font-size: 0.82rem !important;
  line-height: 1.2 !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

/* ================================================================
   AIOMY V61 — CZYTELNY WIERSZ „PRZESYŁKA” W „TWOJE ZAMÓWIENIE”
   ================================================================ */

/*
 * Ten wiersz nie może dziedziczyć ogólnego podziału tabeli 66% / 34%.
 * Lewa etykieta zajmuje 32%, a metody dostawy otrzymują pełne 68%.
 */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping {
  display: table-row !important;
  width: 100% !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > th {
  display: table-cell !important;
  width: 32% !important;
  padding: 15px 10px 14px 12px !important;
  vertical-align: top !important;
  text-align: left !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td {
  display: table-cell !important;
  width: 68% !important;
  min-width: 0 !important;
  padding: 10px 12px 14px 6px !important;
  vertical-align: top !important;
  text-align: left !important;
  white-space: normal !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul#shipping_method,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul.woocommerce-shipping-methods {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul#shipping_method > li,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method > li,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods > li,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul.woocommerce-shipping-methods > li {
  display: grid !important;
  grid-template-columns: 17px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 8px !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 10px 11px !important;
  border: 1px solid rgba(45, 45, 58, 0.11) !important;
  border-radius: 12px !important;
  background: #fff !important;
  box-shadow: none !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul#shipping_method > li:has(input[type="radio"]:checked),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method > li:has(input[type="radio"]:checked) {
  border-color: rgba(240, 77, 145, 0.38) !important;
  box-shadow: 0 0 0 2px rgba(240, 77, 145, 0.07) !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals #shipping_method label,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping #shipping_method label {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  color: #20203b !important;
  font-size: 0.82rem !important;
  font-weight: 750 !important;
  line-height: 1.35 !important;
  text-align: left !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals #shipping_method label .amount,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping #shipping_method label .amount {
  display: inline-block !important;
  float: right !important;
  width: auto !important;
  margin: 0 0 0 8px !important;
  color: #20203b !important;
  font: inherit !important;
  font-weight: 850 !important;
  line-height: inherit !important;
  white-space: nowrap !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals #shipping_method label img,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping #shipping_method label img {
  display: block !important;
  float: none !important;
  width: auto !important;
  max-width: 76px !important;
  max-height: 42px !important;
  margin: 7px 0 0 !important;
  object-fit: contain !important;
}

@media (max-width: 520px) {
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > th,
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > th {
    width: 30% !important;
    padding-right: 6px !important;
  }

  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td,
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td {
    width: 70% !important;
    padding-left: 3px !important;
  }
}

/* Jedno neutralne tło płatności — bez różowej ramki wokół panelu. */
html body.aiomy-checkout-v59 #payment.woocommerce-checkout-payment,
html body.aiomy-checkout-v59 #payment,
html body.aiomy-checkout-v59 #payment ul.payment_methods,
html body.aiomy-checkout-v59 #payment .form-row.place-order {
  border: 0 !important;
  outline: 0 !important;
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

html body.aiomy-checkout-v59 #payment ul.payment_methods {
  margin: 0 !important;
  padding: 0 !important;
}

html body.aiomy-checkout-v59 #payment ul.payment_methods > li {
  margin: 0 0 10px !important;
  padding: 12px 13px !important;
  border: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 13px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  color: #20203b !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 #payment ul.payment_methods > li > label {
  color: #20203b !important;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  line-height: 1.4 !important;
}

html body.aiomy-checkout-v59 #payment ul.payment_methods img {
  width: auto !important;
  max-width: 76px !important;
  max-height: 24px !important;
  margin-left: 7px !important;
  object-fit: contain !important;
  vertical-align: middle !important;
}

html body.aiomy-checkout-v59 #payment div.payment_box,
html body.aiomy-checkout-v59 #payment div.payment_box.payment_method_payustandard,
html body.aiomy-checkout-v59 #payment div.payment_box.payment_method_payu {
  margin: 10px 0 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(45, 45, 58, 0.07) !important;
  border-radius: 11px !important;
  background: #ffffff !important;
  color: #6f6f83 !important;
  box-shadow: none !important;
  font-size: 0.76rem !important;
  line-height: 1.55 !important;
}

html body.aiomy-checkout-v59 #payment div.payment_box::before {
  display: none !important;
  content: none !important;
}

html body.aiomy-checkout-v59 #payment .form-row.place-order {
  margin: 4px 0 0 !important;
  padding: 12px 0 0 !important;
}

html body.aiomy-checkout-v59 #payment .woocommerce-privacy-policy-text,
html body.aiomy-checkout-v59 #payment .woocommerce-terms-and-conditions-wrapper {
  color: #6f6f83 !important;
  font-size: 0.75rem !important;
  line-height: 1.55 !important;
}

html body.aiomy-checkout-v59 #payment a {
  color: #f04d91 !important;
  text-decoration-thickness: 1px !important;
  text-underline-offset: 2px !important;
}

/* Główne CTA checkoutu w identycznym gradiencie jak pozostałe CTA AIOMY. */
html body.aiomy-checkout-v59 #place_order,
html body.aiomy-checkout-v59 button#place_order,
html body.aiomy-checkout-v59 .woocommerce-checkout-payment .button.alt {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 52px !important;
  margin: 14px 0 0 !important;
  padding: 13px 22px !important;
  border: 0 !important;
  border-radius: 14px !important;
  outline: 0 !important;
  background: var(--aiomy-gradient) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 28px rgba(240, 77, 145, 0.22) !important;
  font-family: var(--font) !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-transform: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  html body.aiomy-checkout-v59 #place_order:hover,
  html body.aiomy-checkout-v59 button#place_order:hover,
  html body.aiomy-checkout-v59 .woocommerce-checkout-payment .button.alt:hover {
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 16px 34px rgba(240, 77, 145, 0.3) !important;
  }
}

html body.aiomy-checkout-v59 #place_order:focus-visible,
html body.aiomy-checkout-v59 button#place_order:focus-visible {
  outline: 3px solid rgba(135, 101, 246, 0.28) !important;
  outline-offset: 3px !important;
}

/* Komunikaty błędów zostają wyraźne, ale pasują do zaokrągleń strony. */
html body.aiomy-checkout-v59 .woocommerce-error,
html body.aiomy-checkout-v59 .woocommerce-message,
html body.aiomy-checkout-v59 .woocommerce-info {
  margin: 0 0 22px !important;
  padding: 16px 18px 16px 48px !important;
  border: 1px solid rgba(45, 45, 58, 0.09) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 10px 26px rgba(45, 45, 58, 0.06) !important;
}

/* Dolny różowy CTA znika, a ciemna stopka dochodzi bezpośrednio do treści. */
html body.aiomy-checkout-v59 .footer-cta-bar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-checkout-v59 .site-footer,
html body.aiomy-checkout-v59 footer.site-footer,
html body.aiomy-checkout-v59 .footer-main {
  margin-top: 0 !important;
}

@media (max-width: 900px) {
  html body.aiomy-checkout-v59 {
    background-attachment: scroll !important;
  }

  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    row-gap: 22px !important;
  }

  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #customer_details,
  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #order_review_heading,
  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
    max-width: none !important;
  }

  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #order_review_heading {
    margin-bottom: -22px !important;
  }
}

@media (max-width: 768px) {
  html body.aiomy-checkout-v59 main.site-main,
  html body.aiomy-checkout-v59 main.wc-main {
    padding-top: 28px !important;
    padding-bottom: 20px !important;
  }

  html body.aiomy-checkout-v59 main > .container {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }

  html body.aiomy-checkout-v59 main .entry-content,
  html body.aiomy-checkout-v59 main .wp-block-post-content,
  html body.aiomy-checkout-v59 main .woocommerce,
  html body.aiomy-checkout-v59 .entry-header,
  html body.aiomy-checkout-v59 .page-header {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  html body.aiomy-checkout-v59 .entry-header,
  html body.aiomy-checkout-v59 .page-header {
    margin: 0 !important;
    padding-bottom: 0 !important;
  }

  html body.aiomy-checkout-v59 .entry-title,
  html body.aiomy-checkout-v59 .page-title,
  html body.aiomy-checkout-v59 h1.wp-block-post-title {
    gap: 2px !important;
    margin-bottom: 24px !important;
    font-size: clamp(1.55rem, 7vw, 1.9rem) !important;
  }

  html body.aiomy-checkout-v59 .aiomy-checkout-v61__title-line {
    white-space: normal !important;
  }

  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #customer_details {
    padding: 20px 16px !important;
    border-radius: 22px !important;
  }

  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #order_review_heading {
    padding: 20px 16px 14px !important;
    border-radius: 22px 22px 0 0 !important;
  }

  html body.aiomy-checkout-v59 form.checkout.woocommerce-checkout > #order_review {
    padding: 0 16px 20px !important;
    border-radius: 0 0 22px 22px !important;
  }

  html body.aiomy-checkout-v59 form.checkout .form-row-first,
  html body.aiomy-checkout-v59 form.checkout .form-row-last {
    float: none !important;
    width: 100% !important;
  }

  html body.aiomy-checkout-v59 #place_order,
  html body.aiomy-checkout-v59 button#place_order,
  html body.aiomy-checkout-v59 .woocommerce-checkout-payment .button.alt {
    min-height: 50px !important;
  }
}

/* ================================================================
   AIOMY V63 — FINALNY OVERRIDE KASY
   Ta sekcja celowo znajduje się na końcu pliku, aby nie została
   nadpisana przez wcześniejsze reguły tabeli 66% / 34%.
   ================================================================ */

/* 1. „Przesyłka” zajmuje cały wiersz; nagłówek jest nad opcjami. */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > th {
  padding: 15px 12px 6px !important;
  border-bottom: 0 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td {
  padding: 4px 12px 15px !important;
}

/* 2. Lista i oba kafelki metod dostawy mają pełną szerokość. */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul#shipping_method,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul.woocommerce-shipping-methods {
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  gap: 9px !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul#shipping_method > li,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method > li,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods > li,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul.woocommerce-shipping-methods > li {
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 10px !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  box-sizing: border-box !important;
  text-align: left !important;
  overflow: visible !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals #shipping_method label,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping #shipping_method label,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals .woocommerce-shipping-methods label,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping .woocommerce-shipping-methods label {
  display: block !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: break-word !important;
  word-break: normal !important;
}

/* 3. Przycisk wyboru punktu odbioru zawsze wypełnia sekcję. */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td button,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td button,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td .button,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td .button,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td a.button,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td a.button {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 48px !important;
  margin: 10px 0 0 !important;
  padding: 11px 14px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
}

/* 4. Wrappery przycisku i wybranego Paczkomatu nie mogą mieć wąskiej kolumny. */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td > div,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td > div,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td > p,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td > p,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td > section,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td > section,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td > address,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td > address {
  display: block !important;
  float: none !important;
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [class*="paczkom" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [class*="inpost" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [class*="easypack" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [class*="parcel" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [class*="pickup" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [class*="point" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td [class*="paczkom" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td [class*="inpost" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td [class*="easypack" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td [class*="parcel" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td [class*="pickup" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td [class*="point" i]:not(img),
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [id*="paczkom" i],
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [id*="inpost" i],
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [id*="easypack" i],
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [id*="parcel" i],
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [id*="pickup" i],
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [id*="point" i] {
  float: none !important;
  position: relative !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-wrap: break-word !important;
  word-break: normal !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td address,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td address,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td [class*="address" i],
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td [class*="address" i] {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  text-align: left !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: anywhere !important;
  word-wrap: break-word !important;
  word-break: normal !important;
}

/* 5. „Łącznie” po lewej; cena i VAT przy prawej krawędzi. */
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  gap: 16px !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total > th {
  display: block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 17px 12px !important;
  text-align: left !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total > td {
  display: flex !important;
  flex: 0 1 auto !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 0 0 auto !important;
  padding: 15px 12px !important;
  text-align: right !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total > td > strong,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total > td .amount,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total > td .includes_tax {
  width: auto !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: auto !important;
  text-align: right !important;
}

@media (max-width: 600px) {
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > th,
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > th {
    padding: 13px 10px 5px !important;
  }

  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals > td,
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping > td {
    padding: 4px 10px 13px !important;
  }

  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.woocommerce-shipping-totals ul#shipping_method > li,
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.shipping ul#shipping_method > li {
    padding: 10px !important;
  }

  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table tfoot tr.order-total {
    gap: 10px !important;
  }
}

/* ================================================================
   AIOMY V64 — PRZYCISK „WYBIERZ PUNKT ODBIORU” NA PEŁNY WIERSZ
   Wtyczka InPost renderuje ten przycisk poza listą metod dostawy.
   Klasy V64 są nadawane w aiomy.js również po AJAX-owym odświeżeniu kasy.
   ================================================================ */

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  tr.aiomy-pickup-row-v64 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 12px !important;
  border-top: 1px solid rgba(29, 28, 52, 0.10) !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  tr.aiomy-pickup-row-v64 > th:empty {
  display: none !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  tr.aiomy-pickup-row-v64 > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  tr.aiomy-pickup-row-v64 > td,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  .aiomy-pickup-cell-v64,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  .aiomy-pickup-wrap-v64 {
  display: block !important;
  float: none !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
  transform: none !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  tr.aiomy-pickup-row-v64 > th,
html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  tr.aiomy-pickup-row-v64 > td {
  padding: 0 !important;
  border: 0 !important;
}

html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
  .aiomy-pickup-trigger-v64 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  float: none !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 52px !important;
  height: auto !important;
  margin: 0 !important;
  padding: 12px 16px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: clip !important;
  overflow-wrap: break-word !important;
  transform: none !important;
}

/* Fallback dla wariantu InPost umieszczającego przycisk obok tabeli. */
html body.aiomy-checkout-v59 #order_review .aiomy-pickup-wrap-v64,
html body.aiomy-checkout-v59 #order_review .aiomy-pickup-cell-v64,
html body.aiomy-checkout-v59 #order_review .aiomy-pickup-trigger-v64,
html body.aiomy-checkout-v59 .woocommerce-checkout-review-order
  .aiomy-pickup-wrap-v64,
html body.aiomy-checkout-v59 .woocommerce-checkout-review-order
  .aiomy-pickup-cell-v64,
html body.aiomy-checkout-v59 .woocommerce-checkout-review-order
  .aiomy-pickup-trigger-v64 {
  float: none !important;
  position: relative !important;
  inset: auto !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  box-sizing: border-box !important;
  transform: none !important;
}

html body.aiomy-checkout-v59 #order_review .aiomy-pickup-trigger-v64,
html body.aiomy-checkout-v59 .woocommerce-checkout-review-order
  .aiomy-pickup-trigger-v64 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 52px !important;
  height: auto !important;
  margin-top: 0 !important;
  padding: 12px 16px !important;
  text-align: center !important;
  white-space: normal !important;
}

@media (max-width: 600px) {
  html body.aiomy-checkout-v59 table.shop_table.woocommerce-checkout-review-order-table
    tr.aiomy-pickup-row-v64 {
    padding: 10px !important;
  }
}

/* ================================================================
   AIOMY V65 — CHECKOUT: WSPÓLNA PEŁNA SZEROKOŚĆ SEKCJI DOSTAWY
   Wyłącza dla stopki tabeli stary podział 66/34, który ucinał linię,
   przesuwał kontrolki w lewo i blokował sumę przed prawą krawędzią.
   ================================================================ */

html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
}

/* Wiersz kwoty przed dostawą zachowuje układ: etykieta po lewej,
   wartość po prawej. */
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.cart-subtotal {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.cart-subtotal > th,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.cart-subtotal > td {
  display: block !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.cart-subtotal > td {
  margin-left: auto !important;
  text-align: right !important;
}

/* Metody dostawy oraz osobny wiersz przycisku InPost zajmują teraz
   pełną szerokość wnętrza ramki. */
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.woocommerce-shipping-totals,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.shipping,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.aiomy-pickup-row-v64 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  float: none !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.woocommerce-shipping-totals > th,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.shipping > th,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.woocommerce-shipping-totals > td,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.shipping > td {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* Separator jest rysowany na pełnoszerokim wierszu przycisku, a nie
   na komórce ograniczonej dawniej do 66%. */
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.aiomy-pickup-row-v64 {
  padding: 12px !important;
  border-top: 1px solid rgba(29, 28, 52, 0.10) !important;
}

/* Dwa kafelki metod i przycisk mają identyczną oś oraz szerokość. */
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot
  > tr.woocommerce-shipping-totals ul#shipping_method,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot
  > tr.shipping ul#shipping_method,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot
  > tr.woocommerce-shipping-totals ul.woocommerce-shipping-methods,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot
  > tr.shipping ul.woocommerce-shipping-methods,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table
  .aiomy-pickup-trigger-v64 {
  width: min(100%, 240px) !important;
  max-width: 240px !important;
  margin-right: auto !important;
  margin-left: auto !important;
}

/* Pełnoszeroki wiersz sumy: etykieta zostaje po lewej, a kwota z VAT
   jest dociśnięta do prawej ściany ramki. */
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.order-total {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
}

html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.order-total > th {
  display: block !important;
  flex: 0 0 auto !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  text-align: left !important;
}

html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot > tr.order-total > td {
  display: flex !important;
  flex: 0 1 auto !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 0 0 auto !important;
  padding-right: 12px !important;
  text-align: right !important;
}

html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot
  > tr.order-total > td > strong,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot
  > tr.order-total > td .amount,
html body.aiomy-checkout-v59
  table.shop_table.woocommerce-checkout-review-order-table > tfoot
  > tr.order-total > td .includes_tax {
  width: auto !important;
  margin-right: 0 !important;
  margin-left: auto !important;
  text-align: right !important;
}

@media (max-width: 360px) {
  html body.aiomy-checkout-v59
    table.shop_table.woocommerce-checkout-review-order-table > tfoot
    > tr.woocommerce-shipping-totals ul#shipping_method,
  html body.aiomy-checkout-v59
    table.shop_table.woocommerce-checkout-review-order-table > tfoot
    > tr.shipping ul#shipping_method,
  html body.aiomy-checkout-v59
    table.shop_table.woocommerce-checkout-review-order-table
    .aiomy-pickup-trigger-v64 {
    width: 100% !important;
    max-width: none !important;
  }
}

/* ======================================================================
   AIOMY V66 — PRIORYTET KOŃCOWY (MUSI POZOSTAĆ NA KOŃCU PLIKU)
   Przywraca natywny model tabeli po starszych regułach V64/V65.
   ====================================================================== */

/* ======================================================================
   AIOMY V74 — WYBÓR KLIENTA, KONTO W CHECKOUCIE I OSOBNE PŁATNOŚCI
   Nie zmienia klas ani wnętrza sprawdzonego „Twoje zamówienie” V67.
   ====================================================================== */

/* Niezalogowany klient najpierw podejmuje decyzję — brak mignięcia pól. */
html body.aiomy-checkout-choice-pending-v74
  .woocommerce-billing-fields > h3,
html body.aiomy-checkout-choice-pending-v74
  .woocommerce-billing-fields__field-wrapper,
html body.aiomy-checkout-choice-pending-v74
  #customer_details > .col-2,
html body.aiomy-checkout-choice-pending-v74
  .aiomy-payments-v74,
html body.aiomy-checkout-choice-pending-v74
  #payment.woocommerce-checkout-payment {
  display: none !important;
}

html body.aiomy-checkout-access-v74 [hidden] {
  display: none !important;
}

html body.aiomy-checkout-access-v74 .aiomy-checkout-access-card-v74,
html body.aiomy-checkout-access-v74 .aiomy-checkout-customer-card-v74,
html body.aiomy-checkout-access-v74 .aiomy-payments-v74 {
  box-sizing: border-box !important;
  color: #20203b !important;
  font-family: var(--font) !important;
}

html body.aiomy-checkout-access-v74 .aiomy-checkout-access-card-v74 *,
html body.aiomy-checkout-access-v74 .aiomy-checkout-customer-card-v74 *,
html body.aiomy-checkout-access-v74 .aiomy-payments-v74 * {
  box-sizing: border-box !important;
}

.aiomy-checkout-access-card-v74 {
  display: block !important;
  width: 100% !important;
  margin: 0 !important;
}

.aiomy-checkout-access-card-v74__intro {
  margin: 0 0 22px !important;
}

.aiomy-checkout-access-card-v74__intro h3,
.aiomy-checkout-access-card-v74__panel-heading h4 {
  margin: 0 !important;
  color: #20203b !important;
  font-weight: 800 !important;
  letter-spacing: -0.025em !important;
}

.aiomy-checkout-access-card-v74__intro h3 {
  font-size: clamp(1.25rem, 2.4vw, 1.55rem) !important;
  line-height: 1.2 !important;
}

.aiomy-checkout-access-card-v74__intro p,
.aiomy-checkout-access-card-v74__panel-heading p {
  margin: 7px 0 0 !important;
  color: #77758d !important;
  font-size: 0.84rem !important;
  line-height: 1.55 !important;
}

.aiomy-checkout-access-card-v74__choices {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 12px !important;
  width: 100% !important;
}

.aiomy-checkout-access-card-v74__choices > button {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  gap: 7px !important;
  min-width: 0 !important;
  min-height: 132px !important;
  margin: 0 !important;
  padding: 18px 16px !important;
  border: 1px solid rgba(32, 31, 57, 0.11) !important;
  border-radius: 17px !important;
  outline: 0 !important;
  background: #fff !important;
  color: #20203b !important;
  box-shadow: 0 9px 24px rgba(32, 31, 57, 0.045) !important;
  font-family: var(--font) !important;
  text-align: left !important;
  cursor: pointer !important;
  transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease !important;
}

.aiomy-checkout-access-card-v74__choices > button strong,
.aiomy-checkout-access-card-v74__choices > button small {
  display: block !important;
  width: 100% !important;
}

.aiomy-checkout-access-card-v74__choices > button strong {
  color: #20203b !important;
  font-size: 0.94rem !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
}

.aiomy-checkout-access-card-v74__choices > button small {
  color: #77758d !important;
  font-size: 0.72rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

@media (hover: hover) and (pointer: fine) {
  .aiomy-checkout-access-card-v74__choices > button:hover {
    border-color: rgba(240, 77, 145, 0.48) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 14px 30px rgba(240, 77, 145, 0.11) !important;
  }
}

.aiomy-checkout-access-card-v74__choices > button:focus-visible,
.aiomy-checkout-access-card-v74__submit:focus-visible,
.aiomy-checkout-access-card-v74__panel-heading > button:focus-visible,
.aiomy-checkout-access-card-v74__guest-summary > button:focus-visible,
.aiomy-checkout-customer-card-v74 button:focus-visible {
  outline: 3px solid rgba(135, 101, 246, 0.23) !important;
  outline-offset: 2px !important;
}

.aiomy-checkout-access-card-v74__panel {
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

.aiomy-checkout-access-card-v74__panel-heading {
  display: flex !important;
  align-items: flex-start !important;
  gap: 13px !important;
  margin: 0 0 21px !important;
  padding-bottom: 18px !important;
  border-bottom: 1px solid rgba(32, 31, 57, 0.09) !important;
}

.aiomy-checkout-access-card-v74__panel-heading > button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 38px !important;
  width: 38px !important;
  height: 38px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(32, 31, 57, 0.1) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: #20203b !important;
  font-size: 1.1rem !important;
  cursor: pointer !important;
}

.aiomy-checkout-access-card-v74__panel-heading h4 {
  font-size: 1.22rem !important;
  line-height: 1.25 !important;
}

.aiomy-checkout-access-card-v74__fields {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  width: 100% !important;
}

.aiomy-checkout-access-card-v74__fields > label,
.aiomy-checkout-access-card-v74__grid label {
  display: block !important;
  margin: 8px 0 0 !important;
  color: #20203b !important;
  font-size: 0.79rem !important;
  font-weight: 750 !important;
  line-height: 1.4 !important;
}

.aiomy-checkout-access-card-v74__fields label > span,
.aiomy-checkout-access-card-v74__grid label > span {
  color: #f04d91 !important;
}

.aiomy-checkout-access-card-v74__fields label small {
  color: #77758d !important;
  font-weight: 500 !important;
}

.aiomy-checkout-access-card-v74__fields input[type="text"],
.aiomy-checkout-access-card-v74__fields input[type="email"],
.aiomy-checkout-access-card-v74__fields input[type="tel"],
.aiomy-checkout-access-card-v74__fields input[type="password"] {
  display: block !important;
  width: 100% !important;
  min-height: 49px !important;
  margin: 0 !important;
  padding: 11px 14px !important;
  border: 1px solid rgba(32, 31, 57, 0.13) !important;
  border-radius: 13px !important;
  outline: 0 !important;
  background: #fff !important;
  color: #20203b !important;
  box-shadow: none !important;
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
}

.aiomy-checkout-access-card-v74__fields input[readonly]:not([type="hidden"]) {
  background: #f8f7fa !important;
  color: #706e80 !important;
}

.aiomy-checkout-access-card-v74__fields input:focus {
  border-color: #f04d91 !important;
  box-shadow: 0 0 0 3px rgba(240, 77, 145, 0.11) !important;
}

.aiomy-checkout-access-card-v74__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
  width: 100% !important;
}

.aiomy-checkout-access-card-v74__grid > div {
  min-width: 0 !important;
}

.aiomy-checkout-access-card-v74__checkbox {
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !important;
  gap: 9px !important;
  margin: 10px 0 0 !important;
  cursor: pointer !important;
}

.aiomy-checkout-access-card-v74__checkbox input[type="checkbox"] {
  width: 19px !important;
  min-width: 19px !important;
  height: 19px !important;
  min-height: 19px !important;
  margin: 1px 0 0 !important;
  accent-color: #f04d91 !important;
}

.aiomy-checkout-access-card-v74__checkbox > span {
  color: #555268 !important;
  font-size: 0.75rem !important;
  font-weight: 500 !important;
  line-height: 1.5 !important;
}

.aiomy-checkout-access-card-v74__checkbox a,
.aiomy-checkout-access-card-v74__fields > a {
  color: #f04d91 !important;
  font-weight: 700 !important;
  text-underline-offset: 2px !important;
}

.aiomy-checkout-access-card-v74__fields > a {
  align-self: flex-start !important;
  margin-top: 2px !important;
  font-size: 0.76rem !important;
}

.aiomy-checkout-access-card-v74__submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  min-height: 51px !important;
  margin: 12px 0 0 !important;
  padding: 12px 18px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: var(--aiomy-gradient) !important;
  color: #fff !important;
  box-shadow: 0 12px 27px rgba(240, 77, 145, 0.2) !important;
  font-family: var(--font) !important;
  font-size: 0.9rem !important;
  font-weight: 800 !important;
  cursor: pointer !important;
}

.aiomy-checkout-access-card-v74__submit:disabled,
.aiomy-checkout-access-card-v74__submit.is-busy {
  cursor: wait !important;
  opacity: 0.68 !important;
}

.aiomy-checkout-access-card-v74__message,
.aiomy-checkout-customer-card-v74__message {
  min-height: 0 !important;
  margin: 5px 0 0 !important;
  color: #77758d !important;
  font-size: 0.75rem !important;
  font-weight: 650 !important;
  line-height: 1.5 !important;
}

.aiomy-checkout-access-card-v74__message:empty,
.aiomy-checkout-customer-card-v74__message:empty {
  display: none !important;
}

.aiomy-checkout-access-card-v74__message.is-error,
.aiomy-checkout-customer-card-v74__message.is-error {
  color: #b42318 !important;
}

.aiomy-checkout-access-card-v74__message.is-success,
.aiomy-checkout-customer-card-v74__message.is-success {
  color: #177245 !important;
}

.aiomy-checkout-access-card-v74__guest-summary {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px !important;
  width: 100% !important;
  margin: 0 0 24px !important;
  padding: 15px 17px !important;
  border: 1px solid rgba(240, 77, 145, 0.19) !important;
  border-radius: 15px !important;
  background: linear-gradient(105deg, rgba(255, 243, 248, 0.96), rgba(247, 243, 255, 0.96)) !important;
}

.aiomy-checkout-access-card-v74__guest-summary strong,
.aiomy-checkout-access-card-v74__guest-summary small {
  display: block !important;
}

.aiomy-checkout-access-card-v74__guest-summary strong {
  color: #20203b !important;
  font-size: 0.88rem !important;
  font-weight: 800 !important;
}

.aiomy-checkout-access-card-v74__guest-summary small {
  margin-top: 3px !important;
  color: #77758d !important;
  font-size: 0.7rem !important;
  line-height: 1.45 !important;
}

.aiomy-checkout-access-card-v74__guest-summary > button {
  flex: 0 0 auto !important;
  margin: 0 !important;
  padding: 8px 11px !important;
  border: 1px solid rgba(32, 31, 57, 0.1) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #f04d91 !important;
  font-family: var(--font) !important;
  font-size: 0.72rem !important;
  font-weight: 750 !important;
  cursor: pointer !important;
}

/* Informacja zalogowanego klienta, punkty i kupony nad danymi. */
.aiomy-checkout-customer-card-v74 {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 16px !important;
  width: 100% !important;
  margin: 0 0 25px !important;
  padding: 16px !important;
  border: 1px solid rgba(32, 31, 57, 0.09) !important;
  border-radius: 17px !important;
  background: linear-gradient(135deg, rgba(255, 249, 229, 0.68), rgba(255, 247, 251, 0.72) 50%, rgba(238, 241, 255, 0.76)) !important;
}

.aiomy-checkout-customer-card-v74__identity {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0 !important;
}

.aiomy-checkout-customer-card-v74__identity > span {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  border-radius: 13px !important;
  background: #fff !important;
  color: #f04d91 !important;
}

.aiomy-checkout-customer-card-v74__identity svg {
  width: 21px !important;
  height: 21px !important;
}

.aiomy-checkout-customer-card-v74__identity small,
.aiomy-checkout-customer-card-v74__identity strong,
.aiomy-checkout-customer-card-v74__identity div > span,
.aiomy-checkout-customer-card-v74__points small,
.aiomy-checkout-customer-card-v74__points strong {
  display: block !important;
}

.aiomy-checkout-customer-card-v74__identity small,
.aiomy-checkout-customer-card-v74__identity div > span,
.aiomy-checkout-customer-card-v74__points small {
  color: #77758d !important;
  font-size: 0.67rem !important;
  line-height: 1.45 !important;
}

.aiomy-checkout-customer-card-v74__identity strong,
.aiomy-checkout-customer-card-v74__points strong {
  color: #20203b !important;
  font-size: 0.86rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

.aiomy-checkout-customer-card-v74__identity div > span {
  max-width: 260px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}

.aiomy-checkout-customer-card-v74__points {
  display: flex !important;
  flex-direction: column !important;
  align-items: flex-end !important;
  justify-content: center !important;
  min-width: 105px !important;
  text-align: right !important;
}

.aiomy-checkout-customer-card-v74__points > button,
.aiomy-checkout-customer-card-v74__points > a {
  margin: 4px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #f04d91 !important;
  font-family: var(--font) !important;
  font-size: 0.67rem !important;
  font-weight: 750 !important;
  cursor: pointer !important;
  text-decoration: none !important;
}

.aiomy-checkout-customer-card-v74__coupons {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  padding-top: 14px !important;
  border-top: 1px solid rgba(32, 31, 57, 0.09) !important;
}

.aiomy-checkout-customer-card-v74__coupons > strong {
  color: #20203b !important;
  font-size: 0.8rem !important;
  font-weight: 800 !important;
}

.aiomy-checkout-customer-card-v74__coupons > p:not(.aiomy-checkout-customer-card-v74__message) {
  margin: 3px 0 10px !important;
  color: #77758d !important;
  font-size: 0.69rem !important;
  line-height: 1.45 !important;
}

.aiomy-checkout-customer-card-v74__coupons > div {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.aiomy-checkout-customer-card-v74__coupons > div > button {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  min-height: 38px !important;
  margin: 0 !important;
  padding: 8px 11px !important;
  border: 1px dashed rgba(240, 77, 145, 0.42) !important;
  border-radius: 10px !important;
  background: #fff !important;
  color: #20203b !important;
  font-family: var(--font) !important;
  cursor: pointer !important;
}

.aiomy-checkout-customer-card-v74__coupons button > span {
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  letter-spacing: 0.03em !important;
}

.aiomy-checkout-customer-card-v74__coupons button > small {
  color: #77758d !important;
  font-size: 0.64rem !important;
  font-weight: 650 !important;
}

.aiomy-checkout-customer-card-v74__coupons button.is-applied {
  border-style: solid !important;
  border-color: rgba(23, 114, 69, 0.35) !important;
  background: #f2fbf6 !important;
}

.aiomy-checkout-customer-card-v74__coupons button:disabled,
.aiomy-checkout-customer-card-v74__coupons button.is-busy {
  cursor: wait !important;
  opacity: 0.7 !important;
}

/* Prawa kolumna: niezmienione podsumowanie V67 + oddzielna karta płatności. */
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  form.checkout.woocommerce-checkout > #order_review_heading {
  margin: 0 !important;
  padding: clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) 16px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  form.checkout.woocommerce-checkout > #order_review {
  margin: 0 !important;
  padding: 0 clamp(24px, 3vw, 32px) clamp(24px, 3vw, 32px) !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 {
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 22px 0 0 !important;
  padding: 22px !important;
  border: 1px solid rgba(45, 45, 58, 0.08) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 14px 38px rgba(45, 45, 58, 0.065) !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 > h2 {
  margin: 0 0 16px !important;
  padding: 0 0 14px !important;
  border-bottom: 1px solid rgba(45, 45, 58, 0.09) !important;
  color: #20203b !important;
  font-family: var(--font) !important;
  font-size: clamp(1.15rem, 2vw, 1.35rem) !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  letter-spacing: -0.025em !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 #payment,
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 #payment ul.payment_methods,
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 #payment .form-row.place-order {
  width: 100% !important;
  margin-right: 0 !important;
  margin-left: 0 !important;
  background: transparent !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 #payment ul.payment_methods > li {
  width: 100% !important;
  margin: 0 0 10px !important;
  padding: 13px !important;
  border: 1px solid rgba(45, 45, 58, 0.1) !important;
  border-radius: 14px !important;
  background: #fff !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 #payment ul.payment_methods > li:has(input[type="radio"]:checked) {
  border-color: rgba(240, 77, 145, 0.48) !important;
  box-shadow: 0 0 0 2px rgba(240, 77, 145, 0.07) !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 #payment .payment_method_payublik > label {
  font-weight: 850 !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
  .aiomy-payments-v74 #payment div.payment_box {
  width: 100% !important;
  margin-top: 10px !important;
  padding: 12px !important;
  border: 1px solid rgba(45, 45, 58, 0.07) !important;
  border-radius: 11px !important;
  background: #faf9fb !important;
}

@media (max-width: 1100px) {
  .aiomy-checkout-access-card-v74__choices {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .aiomy-checkout-access-card-v74__choices > button {
    min-height: 0 !important;
  }
}

@media (max-width: 900px) {
  html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
    form.checkout.woocommerce-checkout > #order_review_heading {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 600px) {
  .aiomy-checkout-access-card-v74__grid,
  .aiomy-checkout-customer-card-v74 {
    grid-template-columns: minmax(0, 1fr) !important;
  }

  .aiomy-checkout-customer-card-v74__points {
    align-items: flex-start !important;
    min-width: 0 !important;
    text-align: left !important;
  }

  .aiomy-checkout-customer-card-v74__coupons {
    grid-column: 1 !important;
  }

  .aiomy-checkout-access-card-v74__guest-summary {
    align-items: flex-start !important;
  }

  html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
    .aiomy-payments-v74 {
    margin-top: 18px !important;
    padding: 18px 14px !important;
    border-radius: 18px !important;
  }

  html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
    form.checkout.woocommerce-checkout > #order_review_heading {
    padding: 20px 16px 14px !important;
  }

  html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74
    form.checkout.woocommerce-checkout > #order_review {
    padding: 0 16px 20px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .aiomy-checkout-access-card-v74__choices > button,
  .aiomy-checkout-access-card-v74__submit {
    transition-duration: 0.01ms !important;
  }
}


/* AIOMY V74 — końcowa osłona widoczności przed starszą kaskadą checkoutu. */
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74.aiomy-checkout-choice-pending-v74
  .woocommerce-billing-fields > h3,
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74.aiomy-checkout-choice-pending-v74
  .woocommerce-billing-fields__field-wrapper,
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74.aiomy-checkout-choice-pending-v74
  #customer_details > .col-2,
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74.aiomy-checkout-choice-pending-v74
  .aiomy-payments-v74,
html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74.aiomy-checkout-choice-pending-v74
  #payment.woocommerce-checkout-payment {
  display: none !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-access-v74 [hidden] {
  display: none !important;
}

/* V68: trzeci element nagłówka mobilnego bez zmiany rozmiaru logo/paska. */
@media (max-width: 768px) {
  html body #site-header.site-header .header-actions {
    display: flex !important;
    flex: 0 0 132px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    gap: 6px !important;
  }

  html body #site-header.site-header .cart-btn,
  html body #site-header.site-header .aiomy-account-btn,
  html body #site-header.site-header .nav-toggle {
    display: inline-flex !important;
    flex: 0 0 40px !important;
    width: 40px !important;
    min-width: 40px !important;
    max-width: 40px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 8px !important;
    transform: none !important;
  }
}

/* ======================================================================
   AIOMY V75 — WYRÓWNANIE KOLUMN I PUSTY PIERWSZY WYBÓR
   Końcowy priorytet kasy; nie zmienia wnętrza podsumowania V67.
   ====================================================================== */

/* Natywne WooCommerce: „Powracający klient? Kliknij, aby się zalogować”. */
html body.woocommerce-checkout .woocommerce-form-login-toggle,
html body.woocommerce-checkout form.woocommerce-form-login.login,
html body.woocommerce-checkout .woocommerce > form.login.woocommerce-form-login {
  display: none !important;
}

/* Nagłówki tworzą wspólny pierwszy wiersz, a obie karty zaczynają się
   dokładnie na tej samej wysokości w drugim wierszu. */
html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout {
  grid-template-columns: minmax(0, 1fr) 466px !important;
  grid-template-rows: auto auto !important;
  column-gap: clamp(24px, 3vw, 40px) !important;
  row-gap: 0 !important;
  align-items: start !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > input[type="hidden"] {
  display: none !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > .aiomy-checkout-grid-title-v75 {
  grid-column: 1 !important;
  grid-row: 1 !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > #customer_details {
  grid-column: 1 !important;
  grid-row: 2 !important;
  align-self: start !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > #order_review_heading {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > #order_review {
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > .aiomy-checkout-grid-title-v75,
html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > #order_review_heading {
  display: flex !important;
  flex-flow: row wrap !important;
  align-items: baseline !important;
  gap: 0.28em !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  min-height: 36px !important;
  margin: 0 0 18px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #20203b !important;
  box-shadow: none !important;
  font-family: var(--font) !important;
  font-size: clamp(1.25rem, 2vw, 1.55rem) !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: -0.025em !important;
  text-align: left !important;
}

html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  .aiomy-checkout-grid-title-v75 .aiomy-checkout-v61__title-line,
html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  .aiomy-checkout-grid-title-v75 .aiomy-checkout-v59__title-gradient {
  display: inline !important;
  width: auto !important;
  white-space: normal !important;
}

/* Dopóki nie ma świadomego kliknięcia, żadna metoda nie wygląda na aktywną. */
html body.aiomy-shipping-choice-pending-v75
  .aiomy-order-summary-v67__methods li,
html body.aiomy-shipping-choice-pending-v75
  .aiomy-order-summary-v67__methods li.is-selected,
html body.aiomy-shipping-choice-pending-v75
  .aiomy-order-summary-v67__methods li.is-aiomy-selected-v75 {
  border-color: rgba(29, 28, 52, 0.12) !important;
  box-shadow: none !important;
}

html body.aiomy-payment-choice-pending-v75
  .aiomy-payments-v74 #payment ul.payment_methods > li,
html body.aiomy-payment-choice-pending-v75
  .aiomy-payments-v74 #payment ul.payment_methods > li:has(input[type="radio"]:checked) {
  border-color: rgba(45, 45, 58, 0.1) !important;
  box-shadow: none !important;
}

html body.aiomy-payment-choice-pending-v75
  .aiomy-payments-v74 #payment div.payment_box {
  display: none !important;
}

/* Rejestracja: regulamin jest obowiązkowy, newsletter pozostaje dobrowolny. */
.aiomy-checkout-access-card-v74__checkbox--required > span strong,
.aiomy-account-checkbox > span strong {
  color: #f04d91 !important;
  font-weight: 850 !important;
}

@media (max-width: 900px) {
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    row-gap: 18px !important;
  }

  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > .aiomy-checkout-grid-title-v75,
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > #customer_details,
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > #order_review_heading,
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
    max-width: none !important;
  }

  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > .aiomy-checkout-grid-title-v75,
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > #order_review_heading {
    min-height: 0 !important;
    margin: 0 !important;
  }
}

@media (max-width: 600px) {
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > .aiomy-checkout-grid-title-v75,
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > #order_review_heading {
    font-size: clamp(1.2rem, 6vw, 1.45rem) !important;
  }
}

/* ======================================================================
   AIOMY V77 — NAGŁÓWEK „TWOJE ZAMÓWIENIE”
   Lewa krawędź tekstu pokrywa się z lewą krawędzią panelu podsumowania.
   ====================================================================== */
html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
  form.checkout.woocommerce-checkout > #order_review_heading {
  box-sizing: border-box !important;
  padding-right: clamp(24px, 3vw, 32px) !important;
  padding-left: clamp(24px, 3vw, 32px) !important;
}

@media (max-width: 600px) {
  html body.aiomy-checkout-layout-v67.aiomy-checkout-layout-v75
    form.checkout.woocommerce-checkout > #order_review_heading {
    padding-right: 16px !important;
    padding-left: 16px !important;
  }
}

/* ======================================================================
   AIOMY V78 — PANEL ZALOGOWANEGO KLIENTA
   ====================================================================== */
.aiomy-account-welcome__avatar {
  border: 1px solid rgba(255, 255, 255, 0.32) !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, #24213f 0%, #4d477c 58%, #7060b8 100%) !important;
  box-shadow: 0 10px 24px rgba(45, 40, 80, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  color: #fff !important;
}

.aiomy-account-welcome__avatar svg {
  width: 24px !important;
  height: 24px !important;
  stroke-width: 1.65 !important;
}

.aiomy-account-welcome h3 {
  margin: 0 !important;
  font-size: 20px !important;
  letter-spacing: -0.02em !important;
}

.aiomy-account-preferences .aiomy-account-preference-row {
  margin-top: 0 !important;
}

.aiomy-account-token-note br {
  display: block !important;
  content: "" !important;
  margin-top: 3px !important;
}

/* Karta punktów została przeniesiona z szuflady na endpoint „Twoje konto”. */
html body.woocommerce-account
  .woocommerce-MyAccount-content .aiomy-my-account-points-v78 {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 0 28px !important;
  padding: clamp(20px, 3vw, 28px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 24px !important;
  background: linear-gradient(135deg, #29263e 0%, #40365f 62%, #51427c 100%) !important;
  box-shadow: 0 18px 44px rgba(45, 40, 75, 0.14) !important;
  color: #fff !important;
  box-sizing: border-box !important;
}

html body.woocommerce-account
  .woocommerce-MyAccount-content .aiomy-my-account-points-v78 .aiomy-account-button {
  margin-top: 4px !important;
}

@media (max-width: 600px) {
  html body.woocommerce-account
    .woocommerce-MyAccount-content .aiomy-my-account-points-v78 {
    margin-bottom: 20px !important;
    padding: 18px !important;
    border-radius: 19px !important;
  }
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot {
  display: table-row-group !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-shipping-row-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 {
  display: table-row !important;
  float: none !important;
  width: auto !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > th,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > td {
  display: table-cell !important;
  box-sizing: border-box !important;
  padding: 13px 12px !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(29, 28, 52, 0.11) !important;
  vertical-align: middle !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > th {
  width: 66% !important;
  text-align: left !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-subtotal-v66 > td {
  width: 34% !important;
  text-align: right !important;
  white-space: nowrap !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-shipping-row-v66 > .aiomy-shipping-source-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > .aiomy-pickup-sibling-v66 {
  display: none !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-shipping-row-v66 > td.aiomy-shipping-cell-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > td.aiomy-pickup-cell-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > th.aiomy-pickup-cell-v66 {
  display: table-cell !important;
  float: none !important;
  position: static !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(29, 28, 52, 0.11) !important;
  box-sizing: border-box !important;
  transform: none !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-shipping-row-v66 > td.aiomy-shipping-cell-v66 {
  padding: 15px 12px 16px !important;
  text-align: left !important;
  vertical-align: top !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > td.aiomy-pickup-cell-v66,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-pickup-row-v66 > th.aiomy-pickup-cell-v66 {
  padding: 12px !important;
  text-align: center !important;
  vertical-align: middle !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66
  td.aiomy-shipping-cell-v66 ul#shipping_method,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66
  td.aiomy-shipping-cell-v66 ul.woocommerce-shipping-methods,
html body.aiomy-checkout-layout-v66
  #order_review .aiomy-pickup-trigger-v66 {
  float: none !important;
  width: min(100%, 240px) !important;
  max-width: 240px !important;
  min-width: 0 !important;
  margin-right: auto !important;
  margin-left: auto !important;
  box-sizing: border-box !important;
  transform: none !important;
}

html body.aiomy-checkout-layout-v66
  #order_review .aiomy-pickup-trigger-v66 {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 62px !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding: 10px 16px !important;
  text-align: center !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > th,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td {
  display: table-cell !important;
  box-sizing: border-box !important;
  width: 50% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 15px 12px !important;
  border: 0 !important;
  vertical-align: middle !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > th {
  text-align: left !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td {
  text-align: right !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td > strong,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td .amount,
html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td .includes_tax {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin-right: 0 !important;
  margin-left: auto !important;
  text-align: right !important;
}

html body.aiomy-checkout-layout-v66
  table.aiomy-checkout-table-v66 > tfoot
  > tr.aiomy-checkout-total-v66 > td .includes_tax .amount {
  display: inline !important;
  width: auto !important;
}

/* ======================================================================
   AIOMY V79 — KOSMETYKA PANELU „TWOJE KONTO”
   ====================================================================== */

/* Ikona użytkownika i newslettera mają identyczny rozmiar oraz subtelny,
   gradientowy obrys. Wnętrze korzysta z tła panelu AIOMY. */
.aiomy-account-welcome__avatar,
.aiomy-account-preference-row .aiomy-account-card-icon {
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border: 1px solid transparent !important;
  border-radius: 14px !important;
  background:
    var(--aiomy-account-bg) padding-box,
    var(--aiomy-account-gradient) border-box !important;
  box-shadow: none !important;
  color: #171622 !important;
}

.aiomy-account-welcome__avatar svg,
.aiomy-account-preference-row .aiomy-account-card-icon svg {
  width: 19px !important;
  height: 19px !important;
  color: #171622 !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
}

/* Gradient AIOMY pozostaje wyłącznie wewnątrz liter linku. */
.aiomy-account-section-heading a {
  display: inline-block !important;
  background: var(--aiomy-account-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* Bez zmiany wymiarów znacznika: zachowujemy istniejący padding i promień. */
.aiomy-account-orders__status {
  background: var(--aiomy-account-gradient) !important;
  color: #fff !important;
}

/* ======================================================================
   AIOMY V80 — GRADIENTOWE IKONY CZTERECH SKRÓTÓW KONTA
   Gradient jest zapisany bezpośrednio w SVG; kolor poniżej stanowi
   bezpieczny fallback dla starszych przeglądarek.
   ====================================================================== */
.aiomy-account-quick-links a > span {
  color: var(--aiomy-account-pink) !important;
}

/* ======================================================================
   AIOMY V81 — ZWIJANA HISTORIA ZAKUPÓW I KARTA KLIENTA W CHECKOUTCIE
   ====================================================================== */
.aiomy-account-link-orders summary {
  justify-content: space-between !important;
  list-style: none !important;
}

.aiomy-account-link-orders summary::-webkit-details-marker {
  display: none !important;
}

.aiomy-account-link-orders summary::marker {
  content: "" !important;
}

.aiomy-account-link-orders__summary-title {
  display: inline-flex !important;
  min-width: 0 !important;
  align-items: center !important;
  gap: 8px !important;
}

.aiomy-account-link-orders__summary-title > span {
  min-width: 0 !important;
}

.aiomy-account-link-orders__summary-hint {
  display: inline-flex !important;
  flex: 0 0 auto !important;
  align-items: center !important;
  gap: 6px !important;
  margin-left: 8px !important;
  padding: 4px 8px !important;
  border: 1px solid rgba(242, 79, 146, 0.22) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(243, 77, 145, 0.07), rgba(139, 97, 244, 0.08)) !important;
  color: #8b61f4 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.aiomy-account-link-orders__summary-hint i {
  display: block !important;
  width: 6px !important;
  height: 6px !important;
  border-right: 1.5px solid currentColor !important;
  border-bottom: 1.5px solid currentColor !important;
  transform: translateY(-1px) rotate(45deg) !important;
  transition: transform 180ms ease !important;
}

.aiomy-account-link-orders__summary-hint-close {
  display: none !important;
}

.aiomy-account-link-orders[open] .aiomy-account-link-orders__summary-hint-open {
  display: none !important;
}

.aiomy-account-link-orders[open] .aiomy-account-link-orders__summary-hint-close {
  display: inline !important;
}

.aiomy-account-link-orders[open] .aiomy-account-link-orders__summary-hint i {
  transform: translateY(2px) rotate(225deg) !important;
}

.aiomy-checkout-customer-card-v74__points > a {
  display: inline-block !important;
  background: var(--aiomy-account-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* ======================================================================
   AIOMY V82 — IKONA KLIENTA W CHECKOUTCIE 1:1 JAK W PANELU BOCZNYM
   ====================================================================== */
.aiomy-checkout-customer-card-v74__identity > span {
  flex: 0 0 40px !important;
  width: 40px !important;
  height: 40px !important;
  padding: 0 !important;
  border: 1px solid transparent !important;
  border-radius: 14px !important;
  background:
    var(--aiomy-account-bg) padding-box,
    var(--aiomy-account-gradient) border-box !important;
  box-shadow: none !important;
  color: #171622 !important;
}

.aiomy-checkout-customer-card-v74__identity > span svg {
  width: 19px !important;
  height: 19px !important;
  color: #171622 !important;
  stroke: currentColor !important;
  stroke-width: 1.8 !important;
}

/* ======================================================================
   AIOMY V83 — NEWSLETTER TYLKO DLA REJESTRACJI I ZAKUPU GOŚCINNEGO
   ====================================================================== */
html body.logged-in .aiomy-checkout-newsletter,
html body.aiomy-checkout-customer-v74 .aiomy-checkout-newsletter {
  display: none !important;
}

/* ======================================================================
   AIOMY V84 — PEŁNA STRONA „TWOJE KONTO”
   ====================================================================== */
html body.aiomy-my-account-v84 {
  --aiomy-v84-ink: #18172e;
  --aiomy-v84-muted: #716d86;
  --aiomy-v84-line: rgba(31, 28, 55, 0.09);
  --aiomy-v84-card: rgba(255, 255, 255, 0.84);
  --aiomy-v84-gradient: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%);
  background-color: var(--aiomy-site-bg-color) !important;
  background-image: var(--aiomy-site-bg-image) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  overflow-x: clip !important;
}

html body.aiomy-my-account-v84 #page,
html body.aiomy-my-account-v84 .site,
html body.aiomy-my-account-v84 .site-content,
html body.aiomy-my-account-v84 .content-area,
html body.aiomy-my-account-v84 main,
html body.aiomy-my-account-v84 main.site-main,
html body.aiomy-my-account-v84 main.wc-main,
html body.aiomy-my-account-v84 main > .container,
html body.aiomy-my-account-v84 article,
html body.aiomy-my-account-v84 .entry-content,
html body.aiomy-my-account-v84 .wp-site-blocks,
html body.aiomy-my-account-v84 .wp-block-post-content,
html body.aiomy-my-account-v84 .woocommerce,
html body.aiomy-my-account-v84 .woocommerce-notices-wrapper {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Jednolity kolor również za białą pigułką nawigacji — bez odcinającej kreski. */
html body.aiomy-my-account-v84 #site-header.site-header,
html body.aiomy-my-account-v84 #site-header.site-header:hover,
html body.aiomy-my-account-v84 #site-header.site-header:focus-within {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.aiomy-my-account-v84 #site-header.site-header::before,
html body.aiomy-my-account-v84 #site-header.site-header::after {
  display: none !important;
  content: none !important;
}

html body.aiomy-my-account-v84 #site-header.site-header > .header-inner.container {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* V85: bez różowego paska CTA — czarna stopka zajmuje jego miejsce. */
html body.aiomy-my-account-v84 .footer-cta-bar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-my-account-v84 .site-footer,
html body.aiomy-my-account-v84 footer.site-footer,
html body.aiomy-my-account-v84 .footer-main {
  margin-top: 0 !important;
}

html body.aiomy-my-account-v84 main.site-main,
html body.aiomy-my-account-v84 main.wc-main {
  min-height: 70vh !important;
  margin: 0 !important;
  padding: clamp(38px, 5vw, 72px) 0 clamp(72px, 8vw, 120px) !important;
}

html body.aiomy-my-account-v84 main > .container,
html body.aiomy-my-account-v84 main .entry-content,
html body.aiomy-my-account-v84 main .wp-block-post-content {
  width: 100% !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 24px !important;
  padding-left: 24px !important;
  box-sizing: border-box !important;
}

html body.aiomy-my-account-v84 :is(.entry-header, .page-header),
html body.aiomy-my-account-v84 :is(.entry-title, .page-title, .wp-block-post-title) {
  display: none !important;
}

html body.aiomy-my-account-v84 .woocommerce {
  display: grid !important;
  grid-template-columns: minmax(220px, 252px) minmax(0, 1fr) !important;
  gap: 28px 34px !important;
  align-items: start !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  color: var(--aiomy-v84-ink) !important;
  font-family: var(--font) !important;
}

html body.aiomy-my-account-v84 .woocommerce > :is(.woocommerce-notices-wrapper, .woocommerce-message, .woocommerce-error, .woocommerce-info) {
  grid-column: 1 / -1 !important;
}

html body.aiomy-my-account-v84 .aiomy-myaccount-heading-v84 {
  grid-column: 1 / -1 !important;
  margin: 0 0 4px !important;
  padding: 0 !important;
  overflow: visible !important;
}

html body.aiomy-my-account-v84 .aiomy-myaccount-heading-v84 h1 {
  margin: 0 !important;
  padding: 0.04em 0 0.1em !important;
  overflow: visible !important;
  color: var(--aiomy-v84-ink) !important;
  font-family: var(--font) !important;
  font-size: clamp(1.78rem, 3.25vw, 2.65rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.055em !important;
  line-height: 1.16 !important;
}

html body.aiomy-my-account-v84 .aiomy-myaccount-heading-v84 h1 span {
  display: inline-block !important;
  margin-bottom: -0.08em !important;
  padding: 0.02em 0.04em 0.08em 0 !important;
  background: var(--aiomy-v84-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
}

/* Nawigacja boczna. */
html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation {
  position: sticky !important;
  top: 124px !important;
  float: none !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 12px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 24px !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 18px 55px rgba(44, 36, 70, 0.08) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  backdrop-filter: blur(18px) !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation ul {
  display: grid !important;
  gap: 7px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation li {
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  list-style: none !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation li::marker {
  content: "" !important;
  color: transparent !important;
  font-size: 0 !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation a {
  position: relative !important;
  display: flex !important;
  align-items: center !important;
  min-height: 52px !important;
  margin: 0 !important;
  padding: 12px 14px !important;
  overflow: hidden !important;
  border: 0 !important;
  border-radius: 15px !important;
  background: transparent !important;
  background-clip: padding-box !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1.25 !important;
  text-decoration: none !important;
  isolation: isolate !important;
  -webkit-backface-visibility: hidden !important;
  backface-visibility: hidden !important;
  transform: none !important;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation a::before {
  display: none !important;
  content: none !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation a::after {
  display: none !important;
  content: none !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation li.is-active a {
  background: var(--aiomy-v84-gradient) !important;
  background-color: #f04d91 !important;
  background-image: var(--aiomy-v84-gradient) !important;
  box-shadow: none !important;
  color: #fff !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation-link--customer-logout {
  margin-top: 7px !important;
  padding-top: 8px !important;
  border-top: 1px solid var(--aiomy-v84-line) !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation-link--customer-logout a {
  color: #9a3f68 !important;
}

@media (hover: hover) {
  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation li:not(.is-active) a:hover {
    background: rgba(255, 255, 255, 0.82) !important;
    box-shadow: none !important;
    transform: none !important;
  }
}

/* Główna karta treści każdej zakładki. */
html body.aiomy-my-account-v84 .woocommerce-MyAccount-content {
  float: none !important;
  width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: clamp(22px, 3vw, 34px) !important;
  border: 1px solid rgba(255, 255, 255, 0.92) !important;
  border-radius: 30px !important;
  background: var(--aiomy-v84-card) !important;
  box-shadow: 0 24px 70px rgba(42, 34, 67, 0.09) !important;
  -webkit-backdrop-filter: blur(18px) !important;
  backdrop-filter: blur(18px) !important;
  box-sizing: border-box !important;
}

html body.aiomy-my-account-v84 .woocommerce-MyAccount-content > :first-child {
  margin-top: 0 !important;
}

/* Szczegóły zamówienia: własny nagłówek V84 zastępuje fabryczny akapit WooCommerce. */
html body.aiomy-my-account-v84.aiomy-account-view-order-v84 .woocommerce-MyAccount-content > p:first-child {
  display: none !important;
}

html body.aiomy-my-account-v84 .aiomy-account-section-head-v84 {
  display: flex !important;
  align-items: flex-end !important;
  justify-content: space-between !important;
  gap: 22px !important;
  margin: 0 0 26px !important;
  padding: 0 0 22px !important;
  border-bottom: 1px solid var(--aiomy-v84-line) !important;
}

html body.aiomy-my-account-v84 .aiomy-account-section-head-v84 h2,
html body.aiomy-my-account-v84 .aiomy-return-form-v84 h3,
html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 h3,
html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84 h3 {
  margin: 3px 0 5px !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: clamp(1.38rem, 2.3vw, 1.85rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.035em !important;
  line-height: 1.15 !important;
}

html body.aiomy-my-account-v84 .aiomy-account-section-head-v84 p {
  margin: 0 !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.82rem !important;
  line-height: 1.55 !important;
}

html body.aiomy-my-account-v84 .aiomy-account-eyebrow-v84 {
  display: block !important;
  background: var(--aiomy-v84-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 0.68rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.09em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

html body.aiomy-my-account-v84 .aiomy-account-count-v84 {
  flex: 0 0 auto !important;
  padding: 8px 12px !important;
  border: 1px solid rgba(241, 79, 146, 0.17) !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, rgba(241, 79, 146, 0.08), rgba(135, 101, 246, 0.08)) !important;
  color: #8a5bdd !important;
  font-size: 0.68rem !important;
  font-weight: 800 !important;
}

html body.aiomy-my-account-v84 .aiomy-account-cta-v84,
html body.aiomy-my-account-v84 .woocommerce-MyAccount-content a.button,
html body.aiomy-my-account-v84 .woocommerce-MyAccount-content .button.view {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 44px !important;
  margin: 0 !important;
  padding: 11px 18px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: var(--aiomy-v84-gradient) !important;
  box-shadow: 0 11px 28px rgba(240, 77, 145, 0.2) !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-family: var(--font) !important;
  font-size: 0.76rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease !important;
}

html body.aiomy-my-account-v84 .aiomy-account-cta-v84:disabled {
  box-shadow: none !important;
  cursor: not-allowed !important;
  filter: grayscale(0.35) !important;
  opacity: 0.42 !important;
}

@media (hover: hover) {
  html body.aiomy-my-account-v84 :is(.aiomy-account-cta-v84, .woocommerce-MyAccount-content a.button):not(:disabled):hover {
    box-shadow: 0 15px 34px rgba(240, 77, 145, 0.3) !important;
    transform: translateY(-2px) !important;
  }
}

/* Zamówienia — desktopowa tabela i czytelne karty mobilne. */
html body.aiomy-my-account-v84 table.woocommerce-orders-table {
  width: 100% !important;
  margin: 0 !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  border-radius: 19px !important;
  background: rgba(255, 255, 255, 0.78) !important;
  box-shadow: none !important;
  overflow: hidden !important;
}

html body.aiomy-my-account-v84 table.woocommerce-orders-table th {
  padding: 14px 15px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--aiomy-v84-line) !important;
  background: rgba(249, 247, 252, 0.82) !important;
  color: #666178 !important;
  font-size: 0.66rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.025em !important;
  line-height: 1.25 !important;
  text-align: left !important;
  text-transform: uppercase !important;
}

html body.aiomy-my-account-v84 table.woocommerce-orders-table td {
  padding: 17px 15px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--aiomy-v84-line) !important;
  background: transparent !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.76rem !important;
  font-weight: 600 !important;
  line-height: 1.45 !important;
  vertical-align: middle !important;
}

html body.aiomy-my-account-v84 table.woocommerce-orders-table tr:last-child td {
  border-bottom: 0 !important;
}

html body.aiomy-my-account-v84 table.woocommerce-orders-table td.order-number a {
  color: var(--aiomy-v84-ink) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

html body.aiomy-my-account-v84 table.woocommerce-orders-table td.order-status {
  color: #8b4ad5 !important;
  font-weight: 800 !important;
}

html body.aiomy-my-account-v84 .aiomy-order-products-v84 {
  display: block !important;
  max-width: 270px !important;
  color: #353149 !important;
}

html body.aiomy-my-account-v84 .aiomy-order-products-v84 small {
  display: block !important;
  margin-top: 3px !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.65rem !important;
}

html body.aiomy-my-account-v84 table.woocommerce-orders-table td.order-actions {
  text-align: right !important;
}

html body.aiomy-my-account-v84 table.woocommerce-orders-table td.order-actions .button {
  min-height: 37px !important;
  padding: 9px 13px !important;
  border-radius: 11px !important;
  font-size: 0.68rem !important;
}

html body.aiomy-my-account-v84 .woocommerce-pagination {
  margin-top: 22px !important;
}

/* Puste stany, komunikaty i formularze. */
html body.aiomy-my-account-v84 .aiomy-account-empty-v84 {
  display: grid !important;
  place-items: center !important;
  min-height: 240px !important;
  padding: 34px !important;
  border: 1px dashed rgba(135, 101, 246, 0.23) !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(255, 250, 231, 0.68), rgba(248, 239, 255, 0.7)) !important;
  text-align: center !important;
}

html body.aiomy-my-account-v84 .aiomy-account-empty-v84 > span {
  display: grid !important;
  place-items: center !important;
  width: 46px !important;
  height: 46px !important;
  border: 1px solid transparent !important;
  border-radius: 15px !important;
  background: linear-gradient(#fff, #fff) padding-box, var(--aiomy-v84-gradient) border-box !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 1.25rem !important;
}

html body.aiomy-my-account-v84 .aiomy-account-empty-v84 h3 {
  margin: 11px 0 3px !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 1.06rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-account-empty-v84 p {
  max-width: 520px !important;
  margin: 0 !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.76rem !important;
  line-height: 1.55 !important;
}

html body.aiomy-my-account-v84 .aiomy-account-empty-v84--compact {
  min-height: 150px !important;
}

html body.aiomy-my-account-v84 .aiomy-account-success-v84,
html body.aiomy-my-account-v84 .woocommerce-message,
html body.aiomy-my-account-v84 .woocommerce-info,
html body.aiomy-my-account-v84 .woocommerce-error {
  margin: 0 0 22px !important;
  padding: 14px 17px !important;
  border: 1px solid rgba(45, 181, 136, 0.19) !important;
  border-radius: 14px !important;
  background: rgba(232, 255, 246, 0.82) !important;
  color: #176b50 !important;
  font-size: 0.76rem !important;
  font-weight: 700 !important;
  line-height: 1.45 !important;
}

html body.aiomy-my-account-v84 .woocommerce-error {
  border-color: rgba(211, 64, 89, 0.18) !important;
  background: rgba(255, 238, 242, 0.84) !important;
  color: #a62f48 !important;
}

/* Zwroty. */
html body.aiomy-my-account-v84 .aiomy-return-list-v84 {
  display: grid !important;
  gap: 14px !important;
}

html body.aiomy-my-account-v84 .aiomy-return-card-v84 {
  padding: 19px !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.78) !important;
}

html body.aiomy-my-account-v84 .aiomy-return-card-v84 header {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

html body.aiomy-my-account-v84 .aiomy-return-card-v84 header small {
  color: #8e61e4 !important;
  font-size: 0.65rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-return-card-v84 h3 {
  margin: 3px 0 0 !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.94rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-return-card-v84 header > span {
  padding: 7px 10px !important;
  border-radius: 999px !important;
  background: var(--aiomy-v84-gradient) !important;
  color: #fff !important;
  font-size: 0.62rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-return-card-v84 > p {
  margin: 10px 0 18px !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.7rem !important;
}

html body.aiomy-my-account-v84 .aiomy-return-steps-v84 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.aiomy-my-account-v84 .aiomy-return-steps-v84 li {
  position: relative !important;
  display: grid !important;
  justify-items: center !important;
  gap: 7px !important;
  color: #aaa5b6 !important;
  font-size: 0.61rem !important;
  font-weight: 800 !important;
  text-align: center !important;
}

html body.aiomy-my-account-v84 .aiomy-return-steps-v84 li::before {
  content: "" !important;
  position: absolute !important;
  z-index: 0 !important;
  top: 6px !important;
  right: 50% !important;
  width: 100% !important;
  height: 2px !important;
  background: #e8e4ec !important;
}

html body.aiomy-my-account-v84 .aiomy-return-steps-v84 li:first-child::before {
  display: none !important;
}

html body.aiomy-my-account-v84 .aiomy-return-steps-v84 i {
  position: relative !important;
  z-index: 1 !important;
  width: 13px !important;
  height: 13px !important;
  border: 3px solid #ece8ef !important;
  border-radius: 50% !important;
  background: #fff !important;
}

html body.aiomy-my-account-v84 .aiomy-return-steps-v84 li.is-done {
  color: #7d45cf !important;
}

html body.aiomy-my-account-v84 .aiomy-return-steps-v84 li.is-done::before,
html body.aiomy-my-account-v84 .aiomy-return-steps-v84 li.is-done i {
  border-color: #f1599d !important;
  background: var(--aiomy-v84-gradient) !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84[hidden] {
  display: none !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84 {
  margin-top: 22px !important;
  padding: 22px !important;
  border: 1px solid rgba(240, 77, 145, 0.16) !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(255, 250, 231, 0.88), rgba(255, 244, 250, 0.9) 52%, rgba(240, 240, 255, 0.9)) !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84__head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
  margin-bottom: 18px !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84__head button {
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  height: 36px !important;
  padding: 0 !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 50% !important;
  background: #fff !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 1.35rem !important;
  cursor: pointer !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84 form {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 16px !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84 label,
html body.aiomy-my-account-v84 .aiomy-profile-form-v84 label {
  display: grid !important;
  align-content: start !important;
  gap: 7px !important;
  margin: 0 !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.7rem !important;
  font-weight: 800 !important;
  line-height: 1.35 !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84 input,
html body.aiomy-my-account-v84 .aiomy-return-form-v84 select,
html body.aiomy-my-account-v84 .aiomy-return-form-v84 textarea,
html body.aiomy-my-account-v84 .aiomy-profile-form-v84 input {
  width: 100% !important;
  min-height: 48px !important;
  margin: 0 !important;
  padding: 11px 13px !important;
  border: 1px solid rgba(40, 36, 61, 0.13) !important;
  border-radius: 13px !important;
  outline: 0 !important;
  background: rgba(255, 255, 255, 0.88) !important;
  box-shadow: none !important;
  color: var(--aiomy-v84-ink) !important;
  font-family: var(--font) !important;
  font-size: 0.78rem !important;
  font-weight: 500 !important;
  box-sizing: border-box !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84 textarea {
  min-height: 105px !important;
  resize: vertical !important;
}

html body.aiomy-my-account-v84 :is(.aiomy-return-form-v84, .aiomy-profile-form-v84) input:focus,
html body.aiomy-my-account-v84 .aiomy-return-form-v84 :is(select, textarea):focus {
  border-color: #ee5b9c !important;
  box-shadow: 0 0 0 3px rgba(240, 77, 145, 0.09) !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84__wide,
html body.aiomy-my-account-v84 .aiomy-return-form-v84__note,
html body.aiomy-my-account-v84 .aiomy-return-form-v84__submit {
  grid-column: 1 / -1 !important;
}

html body.aiomy-my-account-v84 .aiomy-return-form-v84__note {
  padding: 12px 14px !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.7) !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.7rem !important;
  line-height: 1.5 !important;
}

/* Moje dane. */
html body.aiomy-my-account-v84 .aiomy-profile-form-v84 {
  display: grid !important;
  gap: 18px !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 > section {
  padding: 21px !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.76) !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 section > header {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin-bottom: 18px !important;
  padding-bottom: 15px !important;
  border-bottom: 1px solid var(--aiomy-v84-line) !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 section > header > span {
  display: grid !important;
  flex: 0 0 40px !important;
  place-items: center !important;
  width: 40px !important;
  height: 40px !important;
  border: 1px solid transparent !important;
  border-radius: 13px !important;
  background: linear-gradient(#fff, #fff) padding-box, var(--aiomy-v84-gradient) border-box !important;
  color: #8b5ce0 !important;
  font-size: 0.7rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 h3 {
  margin: 0 0 2px !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.96rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 header p {
  margin: 0 !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.67rem !important;
  line-height: 1.4 !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-grid-v84 {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 15px !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-grid-v84__wide {
  grid-column: 1 / -1 !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 label em {
  color: #f04d91 !important;
  font-style: normal !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 label small {
  color: var(--aiomy-v84-muted) !important;
  font-weight: 500 !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-form-v84 input[readonly] {
  background: rgba(247, 245, 250, 0.9) !important;
  color: #777286 !important;
  cursor: default !important;
}

html body.aiomy-my-account-v84 .aiomy-profile-save-v84 {
  justify-self: end !important;
  min-width: 190px !important;
}

/* Program lojalnościowy. */
html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 {
  margin-bottom: 18px !important;
  padding: clamp(22px, 3.5vw, 32px) !important;
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  border-radius: 23px !important;
  background: linear-gradient(135deg, #292540 0%, #47396b 57%, #6951a9 100%) !important;
  box-shadow: 0 20px 48px rgba(46, 36, 70, 0.2) !important;
  color: #fff !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84__top {
  display: grid !important;
  grid-template-columns: auto 1fr auto !important;
  align-items: center !important;
  gap: 13px !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84__top > span {
  display: grid !important;
  place-items: center !important;
  width: 46px !important;
  height: 46px !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.12) !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84__top svg {
  width: 22px !important;
  height: 22px !important;
  color: #fff !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 small {
  display: block !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.66rem !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 strong {
  display: block !important;
  margin-top: 1px !important;
  color: #fff !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  line-height: 1.05 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 strong b {
  font: inherit !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 em {
  padding: 8px 11px !important;
  border: 1px solid rgba(255, 255, 255, 0.14) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  font-size: 0.64rem !important;
  font-style: normal !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 .aiomy-account-points__progress {
  height: 8px !important;
  margin: 18px 0 8px !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.14) !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 .aiomy-account-points__progress span {
  display: block !important;
  height: 100% !important;
  border-radius: inherit !important;
  background: var(--aiomy-v84-gradient) !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 > p {
  margin: 0 !important;
  color: rgba(255, 255, 255, 0.78) !important;
  font-size: 0.68rem !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84 > p strong {
  display: inline !important;
  font-size: inherit !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-tiers-v84 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 13px !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-tiers-v84 article {
  display: grid !important;
  align-content: start !important;
  min-width: 0 !important;
  padding: 18px !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.8) !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-tiers-v84 article > span {
  color: #8c61df !important;
  font-size: 0.66rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-tiers-v84 article > strong {
  margin: 4px 0 !important;
  background: var(--aiomy-v84-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 2rem !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-tiers-v84 article > p {
  min-height: 38px !important;
  margin: 4px 0 14px !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.67rem !important;
  line-height: 1.45 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-tiers-v84 button {
  width: 100% !important;
  min-height: 40px !important;
  padding: 9px 10px !important;
  font-size: 0.64rem !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84,
html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 {
  margin-top: 18px !important;
  padding: 21px !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.78) !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84[hidden] {
  display: none !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84 ul {
  display: grid !important;
  gap: 9px !important;
  margin: 15px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84 li {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  padding: 12px !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 13px !important;
  background: linear-gradient(135deg, rgba(255, 247, 221, 0.6), rgba(247, 239, 255, 0.65)) !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84 li > span {
  display: grid !important;
  gap: 2px !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84 code {
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.8rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84 small {
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.62rem !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-coupons-v84 button {
  padding: 7px 10px !important;
  border: 1px solid rgba(240, 77, 145, 0.2) !important;
  border-radius: 9px !important;
  background: #fff !important;
  color: #e84d92 !important;
  font-size: 0.64rem !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 > ol {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 11px !important;
  margin: 17px 0 !important;
  padding: 0 !important;
  list-style: none !important;
  counter-reset: aiomy-rule !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 li {
  position: relative !important;
  display: block !important;
  min-height: 92px !important;
  padding: 14px 14px 14px 48px !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 14px !important;
  background: rgba(250, 248, 252, 0.7) !important;
  list-style: none !important;
  counter-increment: aiomy-rule !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 li::marker {
  content: "" !important;
  color: transparent !important;
  font-size: 0 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 li::before {
  content: counter(aiomy-rule) !important;
  position: absolute !important;
  top: 14px !important;
  left: 14px !important;
  display: grid !important;
  place-items: center !important;
  width: 25px !important;
  height: 25px !important;
  border-radius: 9px !important;
  background: var(--aiomy-v84-gradient) !important;
  color: #fff !important;
  font-size: 0.62rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 li strong,
html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 li span {
  display: block !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 li strong {
  margin-bottom: 3px !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.73rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 li span {
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.66rem !important;
  line-height: 1.5 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-example-v84 {
  padding: 15px 17px !important;
  border: 1px solid rgba(240, 77, 145, 0.14) !important;
  border-radius: 15px !important;
  background: linear-gradient(135deg, rgba(255, 245, 214, 0.75), rgba(250, 237, 255, 0.76)) !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-example-v84 strong {
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-example-v84 p {
  margin: 4px 0 0 !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.68rem !important;
  line-height: 1.55 !important;
}

html body.aiomy-my-account-v84 .aiomy-loyalty-example-v84 p br {
  display: block !important;
  margin-top: 7px !important;
  content: "" !important;
}

/* Szczegóły zamówienia — sekcje WooCommerce otrzymują jeden język wizualny. */
html body.aiomy-my-account-v84 .aiomy-order-detail-hero-v84 {
  display: grid !important;
  grid-template-columns: 1fr auto !important;
  gap: 19px !important;
  margin-bottom: 22px !important;
  padding: 22px !important;
  border: 1px solid rgba(240, 77, 145, 0.13) !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(255, 249, 227, 0.8), rgba(255, 243, 249, 0.82) 50%, rgba(240, 240, 255, 0.84)) !important;
}

html body.aiomy-my-account-v84 .aiomy-account-back-v84 {
  display: inline-block !important;
  margin-bottom: 12px !important;
  color: #8d5fe0 !important;
  font-size: 0.66rem !important;
  font-weight: 900 !important;
  text-decoration: none !important;
}

html body.aiomy-my-account-v84 .aiomy-order-detail-hero-v84 h2 {
  margin: 3px 0 0 !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 1.5rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

html body.aiomy-my-account-v84 .aiomy-order-status-v84 {
  align-self: start !important;
  padding: 8px 11px !important;
  border-radius: 999px !important;
  background: var(--aiomy-v84-gradient) !important;
  color: #fff !important;
  font-size: 0.63rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 .aiomy-order-facts-v84 {
  display: grid !important;
  grid-column: 1 / -1 !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  gap: 9px !important;
}

html body.aiomy-my-account-v84 .aiomy-order-facts-v84 > div {
  padding: 11px !important;
  border: 1px solid rgba(255, 255, 255, 0.88) !important;
  border-radius: 12px !important;
  background: rgba(255, 255, 255, 0.62) !important;
}

html body.aiomy-my-account-v84 .aiomy-order-facts-v84 small,
html body.aiomy-my-account-v84 .aiomy-order-facts-v84 strong {
  display: block !important;
}

html body.aiomy-my-account-v84 .aiomy-order-facts-v84 small {
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.6rem !important;
}

html body.aiomy-my-account-v84 .aiomy-order-facts-v84 strong {
  margin-top: 2px !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.72rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 :is(.woocommerce-order-details, .woocommerce-customer-details) {
  margin: 18px 0 0 !important;
  padding: 21px !important;
  border: 1px solid var(--aiomy-v84-line) !important;
  border-radius: 20px !important;
  background: rgba(255, 255, 255, 0.76) !important;
}

html body.aiomy-my-account-v84 :is(.woocommerce-order-details__title, .woocommerce-column__title) {
  margin: 0 0 15px !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

html body.aiomy-my-account-v84 table.woocommerce-table--order-details {
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
}

html body.aiomy-my-account-v84 table.woocommerce-table--order-details :is(th, td) {
  padding: 12px 9px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--aiomy-v84-line) !important;
  background: transparent !important;
  color: var(--aiomy-v84-ink) !important;
  font-size: 0.73rem !important;
}

html body.aiomy-my-account-v84 .woocommerce-customer-details address {
  padding: 14px !important;
  border: 0 !important;
  border-radius: 13px !important;
  background: rgba(248, 246, 250, 0.76) !important;
  color: var(--aiomy-v84-muted) !important;
  font-size: 0.72rem !important;
  line-height: 1.65 !important;
}

/* RWD strefy konta. */
@media (max-width: 900px) {
  html body.aiomy-my-account-v84 .woocommerce {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  html body.aiomy-my-account-v84 .aiomy-myaccount-heading-v84,
  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation,
  html body.aiomy-my-account-v84 .woocommerce-MyAccount-content {
    grid-column: 1 !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation {
    position: static !important;
    overflow-x: auto !important;
    padding: 8px !important;
    border-radius: 18px !important;
    scrollbar-width: none !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation::-webkit-scrollbar {
    display: none !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation ul {
    display: flex !important;
    width: max-content !important;
    min-width: 100% !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation li {
    flex: 0 0 auto !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation a {
    min-height: 44px !important;
    padding: 10px 13px !important;
    white-space: nowrap !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation a::before {
    display: none !important;
    content: none !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-navigation-link--customer-logout {
    margin: 0 !important;
    padding: 0 !important;
    border-top: 0 !important;
  }
}

@media (max-width: 700px) {
  html body.aiomy-my-account-v84 main.site-main,
  html body.aiomy-my-account-v84 main.wc-main {
    padding-top: 28px !important;
    padding-bottom: 72px !important;
  }

  html body.aiomy-my-account-v84 main > .container,
  html body.aiomy-my-account-v84 main .entry-content,
  html body.aiomy-my-account-v84 main .wp-block-post-content {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  html body.aiomy-my-account-v84 .woocommerce-MyAccount-content {
    padding: 18px !important;
    border-radius: 22px !important;
  }

  html body.aiomy-my-account-v84 .aiomy-account-section-head-v84 {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  html body.aiomy-my-account-v84 .aiomy-account-section-head-v84 .aiomy-account-cta-v84 {
    width: 100% !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table,
  html body.aiomy-my-account-v84 table.woocommerce-orders-table tbody,
  html body.aiomy-my-account-v84 table.woocommerce-orders-table tr,
  html body.aiomy-my-account-v84 table.woocommerce-orders-table td {
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table thead {
    display: none !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table {
    border: 0 !important;
    background: transparent !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table tr {
    margin-bottom: 12px !important;
    padding: 13px !important;
    border: 1px solid var(--aiomy-v84-line) !important;
    border-radius: 16px !important;
    background: rgba(255, 255, 255, 0.78) !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table td {
    min-height: 0 !important;
    padding: 7px 0 7px 42% !important;
    border: 0 !important;
    text-align: right !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table td::before {
    left: 0 !important;
    width: 38% !important;
    color: var(--aiomy-v84-muted) !important;
    font-size: 0.62rem !important;
    font-weight: 800 !important;
    text-align: left !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table td.order-actions {
    padding-left: 0 !important;
  }

  html body.aiomy-my-account-v84 table.woocommerce-orders-table td.order-actions .button {
    width: 100% !important;
    margin-top: 5px !important;
  }

  html body.aiomy-my-account-v84 .aiomy-order-products-v84 {
    max-width: none !important;
  }

  html body.aiomy-my-account-v84 .aiomy-return-form-v84 form,
  html body.aiomy-my-account-v84 .aiomy-profile-grid-v84,
  html body.aiomy-my-account-v84 .aiomy-loyalty-tiers-v84,
  html body.aiomy-my-account-v84 .aiomy-loyalty-rules-v84 > ol,
  html body.aiomy-my-account-v84 .aiomy-order-facts-v84 {
    grid-template-columns: 1fr !important;
  }

  html body.aiomy-my-account-v84 .aiomy-return-form-v84__wide,
  html body.aiomy-my-account-v84 .aiomy-return-form-v84__note,
  html body.aiomy-my-account-v84 .aiomy-return-form-v84__submit,
  html body.aiomy-my-account-v84 .aiomy-profile-grid-v84__wide {
    grid-column: 1 !important;
  }

  html body.aiomy-my-account-v84 .aiomy-profile-save-v84 {
    justify-self: stretch !important;
    width: 100% !important;
  }

  html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84__top {
    grid-template-columns: auto 1fr !important;
  }

  html body.aiomy-my-account-v84 .aiomy-loyalty-hero-v84__top em {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
  }

  html body.aiomy-my-account-v84 .aiomy-order-detail-hero-v84 {
    grid-template-columns: 1fr !important;
  }

  html body.aiomy-my-account-v84 .aiomy-order-status-v84 {
    justify-self: start !important;
  }

  html body.aiomy-my-account-v84 .aiomy-order-facts-v84 {
    grid-column: 1 !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body.aiomy-my-account-v84 *,
  html body.aiomy-my-account-v84 *::before,
  html body.aiomy-my-account-v84 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* ======================================================================
   AIOMY V87 — REJESTRACJA, PANEL KONTA I GRANICA NAWIGACJI
   ====================================================================== */

/* Pole rejestracyjnego hasła z przyciskiem podglądu przy prawej krawędzi. */
.aiomy-password-field-v87 {
  position: relative !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
}

.aiomy-password-field-v87 > input {
  width: 100% !important;
  padding-right: 52px !important;
  box-sizing: border-box !important;
}

.aiomy-password-toggle-v87 {
  appearance: none !important;
  -webkit-appearance: none !important;
  position: absolute !important;
  z-index: 3 !important;
  top: 50% !important;
  right: 9px !important;
  display: grid !important;
  place-items: center !important;
  width: 36px !important;
  min-width: 36px !important;
  height: 36px !important;
  min-height: 36px !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 10px !important;
  outline: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: #20203b !important;
  line-height: 1 !important;
  cursor: pointer !important;
  transform: translateY(-50%) !important;
}

.aiomy-password-toggle-v87 svg {
  display: block !important;
  width: 20px !important;
  height: 20px !important;
  pointer-events: none !important;
}

.aiomy-password-toggle-v87__hide,
.aiomy-password-toggle-v87.is-visible .aiomy-password-toggle-v87__show {
  display: none !important;
}

.aiomy-password-toggle-v87.is-visible .aiomy-password-toggle-v87__hide {
  display: block !important;
}

.aiomy-password-toggle-v87:focus-visible {
  outline: 2px solid rgba(135, 101, 246, 0.42) !important;
  outline-offset: 1px !important;
}

@media (hover: hover) and (pointer: fine) {
  .aiomy-password-toggle-v87:hover {
    background: linear-gradient(135deg, rgba(240, 77, 145, 0.08), rgba(135, 101, 246, 0.1)) !important;
  }
}

/* Clearfix WooCommerce nie może tworzyć ukrytych wierszy siatki. Dzięki temu
   sticky menu kończy ruch dokładnie na dolnej krawędzi aktywnej karty. */
html body.aiomy-my-account-v84 .woocommerce::before,
html body.aiomy-my-account-v84 .woocommerce::after {
  display: none !important;
  content: none !important;
}

/* Wymagalność pozostaje w HTML i walidacji, bez różowych kropek przy polach. */
html body.aiomy-my-account-v84 .aiomy-profile-form-v84 label::before,
html body.aiomy-my-account-v84 .aiomy-profile-form-v84 label::after,
html body.aiomy-my-account-v84 .aiomy-profile-form-v84 label em {
  display: none !important;
  content: none !important;
}

/* ======================================================================
   AIOMY V89 — FINALNY EKRAN POTWIERDZENIA ZAMÓWIENIA
   ====================================================================== */

html body.aiomy-order-complete-v89 {
  --aiomy-v89-ink: #18172e;
  --aiomy-v89-muted: #716d86;
  --aiomy-v89-line: rgba(31, 28, 55, 0.1);
  --aiomy-v89-card: rgba(255, 255, 255, 0.84);
  --aiomy-v89-gradient: linear-gradient(118deg, #f04d91 0%, #fd72aa 48%, #8765f6 100%);
  background-color: var(--aiomy-site-bg-color) !important;
  background-image: var(--aiomy-site-bg-image) !important;
  background-repeat: no-repeat !important;
  background-position: center top !important;
  background-size: cover !important;
  background-attachment: fixed !important;
  overflow-x: clip !important;
}

html body.aiomy-order-complete-v89 #page,
html body.aiomy-order-complete-v89 .site,
html body.aiomy-order-complete-v89 .site-content,
html body.aiomy-order-complete-v89 .content-area,
html body.aiomy-order-complete-v89 main,
html body.aiomy-order-complete-v89 main.site-main,
html body.aiomy-order-complete-v89 main.wc-main,
html body.aiomy-order-complete-v89 main > .container,
html body.aiomy-order-complete-v89 article,
html body.aiomy-order-complete-v89 .entry-content,
html body.aiomy-order-complete-v89 .wp-site-blocks,
html body.aiomy-order-complete-v89 .wp-block-post-content,
html body.aiomy-order-complete-v89 .woocommerce,
html body.aiomy-order-complete-v89 .woocommerce-order {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
}

/* Tło za nawigacją stanowi jedną powierzchnię z resztą strony. */
html body.aiomy-order-complete-v89 #site-header.site-header,
html body.aiomy-order-complete-v89 #site-header.site-header:hover,
html body.aiomy-order-complete-v89 #site-header.site-header:focus-within {
  background: transparent !important;
  background-color: transparent !important;
  background-image: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

html body.aiomy-order-complete-v89 #site-header.site-header::before,
html body.aiomy-order-complete-v89 #site-header.site-header::after {
  display: none !important;
  content: none !important;
}

html body.aiomy-order-complete-v89 #site-header.site-header > .header-inner.container {
  border: 0 !important;
  box-shadow: none !important;
}

html body.aiomy-order-complete-v89 :is(.entry-header, .page-header),
html body.aiomy-order-complete-v89 :is(.entry-title, .page-title, .wp-block-post-title) {
  display: none !important;
}

html body.aiomy-order-complete-v89 main.site-main,
html body.aiomy-order-complete-v89 main.wc-main {
  width: 100% !important;
  min-height: 70vh !important;
  margin: 0 !important;
  padding: clamp(38px, 5vw, 72px) 0 clamp(64px, 7vw, 104px) !important;
}

html body.aiomy-order-complete-v89 main > .container,
html body.aiomy-order-complete-v89 main .entry-content,
html body.aiomy-order-complete-v89 main .wp-block-post-content {
  width: 100% !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 24px !important;
  padding-left: 24px !important;
  box-sizing: border-box !important;
}

html body.aiomy-order-complete-v89 .woocommerce,
html body.aiomy-order-complete-v89 .woocommerce-order {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--aiomy-v89-ink) !important;
  font-family: var(--font) !important;
}

/* Wszystkie historyczne i fabryczne warianty znikają; V89 jest jedynym widokiem. */
html body.aiomy-order-complete-v89 .woocommerce-order > :not(.aiomy-order-complete-card-v89) {
  display: none !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-card-v89,
html body.aiomy-order-complete-v89 .aiomy-order-complete-card-v89 * {
  box-sizing: border-box !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-card-v89 {
  display: grid !important;
  gap: 22px !important;
  width: 100% !important;
  max-width: 1080px !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-hero-v89 {
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
  padding: clamp(32px, 5vw, 54px) clamp(20px, 5vw, 58px) !important;
  border: 1px solid rgba(240, 77, 145, 0.13) !important;
  border-radius: 28px !important;
  background: linear-gradient(135deg, rgba(255, 249, 227, 0.84), rgba(255, 243, 249, 0.86) 50%, rgba(240, 240, 255, 0.88)) !important;
  box-shadow: 0 24px 58px rgba(59, 47, 88, 0.08) !important;
  text-align: center !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-hero-v89__icon,
html body.aiomy-order-complete-v89 .aiomy-order-journey-v89__icon {
  display: grid !important;
  place-items: center !important;
  border: 1px solid transparent !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.92)) padding-box,
    var(--aiomy-v89-gradient) border-box !important;
  color: var(--aiomy-v89-ink) !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-hero-v89__icon {
  width: 64px !important;
  height: 64px !important;
  margin-bottom: 15px !important;
  border-radius: 20px !important;
  box-shadow: 0 12px 28px rgba(135, 101, 246, 0.12) !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-hero-v89__icon svg {
  width: 31px !important;
  height: 31px !important;
  stroke-width: 1.6 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-eyebrow-v89,
html body.aiomy-order-complete-v89 .aiomy-order-section-heading-v89 > span {
  display: block !important;
  margin: 0 0 5px !important;
  background: var(--aiomy-v89-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-size: 0.69rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.08em !important;
  line-height: 1.3 !important;
  text-transform: uppercase !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-hero-v89 h1 {
  margin: 0 !important;
  background: var(--aiomy-v89-gradient) !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  color: transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-size: clamp(2rem, 5vw, 3.25rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.055em !important;
  line-height: 1.08 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-hero-v89 p {
  max-width: 680px !important;
  margin: 13px auto 0 !important;
  color: var(--aiomy-v89-muted) !important;
  font-size: 0.88rem !important;
  line-height: 1.72 !important;
}

html body.aiomy-order-complete-v89 :is(.aiomy-order-journey-v89, .aiomy-order-summary-v89) {
  padding: clamp(22px, 3.5vw, 32px) !important;
  border: 1px solid var(--aiomy-v89-line) !important;
  border-radius: 24px !important;
  background: var(--aiomy-v89-card) !important;
  box-shadow: 0 18px 46px rgba(57, 44, 84, 0.06) !important;
  -webkit-backdrop-filter: blur(12px) !important;
  backdrop-filter: blur(12px) !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-section-heading-v89 h2,
html body.aiomy-order-complete-v89 .aiomy-order-summary-v89 h2 {
  margin: 0 !important;
  color: var(--aiomy-v89-ink) !important;
  font-size: clamp(1.25rem, 2.6vw, 1.75rem) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
  line-height: 1.2 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 ol {
  position: relative !important;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 14px !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 ol::before {
  position: absolute !important;
  z-index: 0 !important;
  top: 25px !important;
  right: 16.5% !important;
  left: 16.5% !important;
  height: 1px !important;
  background: var(--aiomy-v89-gradient) !important;
  content: "" !important;
  opacity: 0.35 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li {
  position: relative !important;
  z-index: 1 !important;
  display: flex !important;
  align-items: center !important;
  flex-direction: column !important;
  margin: 0 !important;
  padding: 0 10px !important;
  list-style: none !important;
  text-align: center !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li::before,
html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li::after,
html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li::marker {
  display: none !important;
  content: none !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89__icon {
  flex: 0 0 50px !important;
  width: 50px !important;
  height: 50px !important;
  border-radius: 16px !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89__icon svg {
  width: 23px !important;
  height: 23px !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li strong {
  display: block !important;
  margin-top: 12px !important;
  color: var(--aiomy-v89-ink) !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  line-height: 1.35 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li p {
  margin: 5px 0 0 !important;
  color: var(--aiomy-v89-muted) !important;
  font-size: 0.68rem !important;
  line-height: 1.58 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-summary-v89 {
  background: linear-gradient(135deg, rgba(255, 249, 227, 0.82), rgba(255, 243, 249, 0.84) 50%, rgba(240, 240, 255, 0.86)) !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-summary-v89__head {
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: 18px !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-status-v89 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 0 0 auto !important;
  min-height: 32px !important;
  padding: 7px 12px !important;
  border-radius: 999px !important;
  background: var(--aiomy-v89-gradient) !important;
  color: #fff !important;
  font-size: 0.63rem !important;
  font-weight: 900 !important;
  line-height: 1.3 !important;
  text-align: center !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-facts-v89 {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 10px !important;
  margin-top: 19px !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-facts-v89 > div {
  min-width: 0 !important;
  padding: 13px !important;
  border: 1px solid rgba(255, 255, 255, 0.9) !important;
  border-radius: 14px !important;
  background: rgba(255, 255, 255, 0.66) !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-facts-v89 :is(small, strong) {
  display: block !important;
  overflow-wrap: anywhere !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-facts-v89 small {
  color: var(--aiomy-v89-muted) !important;
  font-size: 0.61rem !important;
  line-height: 1.35 !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-facts-v89 strong {
  margin-top: 3px !important;
  color: var(--aiomy-v89-ink) !important;
  font-size: 0.74rem !important;
  font-weight: 900 !important;
  line-height: 1.4 !important;
}

/* Natywne szczegóły WooCommerce otrzymują wygląd panelu „Twoje konto”. */
html body.aiomy-order-complete-v89 .aiomy-order-complete-details-v89 {
  display: grid !important;
  gap: 22px !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-details-v89 > :is(.woocommerce-order-details, .woocommerce-customer-details, .woocommerce-order-downloads) {
  width: 100% !important;
  margin: 0 !important;
  padding: clamp(20px, 3vw, 30px) !important;
  border: 1px solid var(--aiomy-v89-line) !important;
  border-radius: 24px !important;
  background: var(--aiomy-v89-card) !important;
  box-shadow: 0 18px 46px rgba(57, 44, 84, 0.06) !important;
}

html body.aiomy-order-complete-v89 .woocommerce-order-details__title {
  display: none !important;
}

html body.aiomy-order-complete-v89 .woocommerce-column__title,
html body.aiomy-order-complete-v89 .woocommerce-order-downloads__title {
  margin: 0 0 14px !important;
  color: var(--aiomy-v89-ink) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
}

html body.aiomy-order-complete-v89 .woocommerce-order-details {
  overflow-x: auto !important;
}

html body.aiomy-order-complete-v89 table.woocommerce-table--order-details,
html body.aiomy-order-complete-v89 table.woocommerce-table--order-downloads {
  width: 100% !important;
  min-width: 580px !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  background: transparent !important;
}

html body.aiomy-order-complete-v89 table.woocommerce-table--order-details :is(th, td),
html body.aiomy-order-complete-v89 table.woocommerce-table--order-downloads :is(th, td) {
  padding: 13px 10px !important;
  border: 0 !important;
  border-bottom: 1px solid var(--aiomy-v89-line) !important;
  background: transparent !important;
  color: var(--aiomy-v89-ink) !important;
  font-size: 0.74rem !important;
  line-height: 1.55 !important;
  text-align: left !important;
  vertical-align: top !important;
}

html body.aiomy-order-complete-v89 table.woocommerce-table--order-details thead th,
html body.aiomy-order-complete-v89 table.woocommerce-table--order-downloads thead th {
  color: var(--aiomy-v89-muted) !important;
  font-size: 0.64rem !important;
  font-weight: 900 !important;
  letter-spacing: 0.055em !important;
  text-transform: uppercase !important;
}

html body.aiomy-order-complete-v89 table.woocommerce-table--order-details :is(.product-total, tfoot td),
html body.aiomy-order-complete-v89 table.woocommerce-table--order-downloads td:last-child {
  text-align: right !important;
}

html body.aiomy-order-complete-v89 table.woocommerce-table--order-details tfoot th {
  font-weight: 800 !important;
}

html body.aiomy-order-complete-v89 table.woocommerce-table--order-details tfoot tr:last-child :is(th, td) {
  border-bottom: 0 !important;
  font-size: 0.86rem !important;
  font-weight: 900 !important;
}

html body.aiomy-order-complete-v89 table.woocommerce-table--order-details a {
  color: var(--aiomy-v89-ink) !important;
  font-weight: 800 !important;
  text-decoration: none !important;
}

html body.aiomy-order-complete-v89 .wc-item-meta {
  margin: 5px 0 0 !important;
  padding: 0 !important;
  color: var(--aiomy-v89-muted) !important;
  font-size: 0.66rem !important;
  list-style: none !important;
}

html body.aiomy-order-complete-v89 .wc-item-meta li {
  margin: 2px 0 0 !important;
  list-style: none !important;
}

html body.aiomy-order-complete-v89 .wc-item-meta li::before,
html body.aiomy-order-complete-v89 .wc-item-meta li::marker {
  display: none !important;
  content: none !important;
}

html body.aiomy-order-complete-v89 .woocommerce-customer-details .woocommerce-columns {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 14px !important;
}

html body.aiomy-order-complete-v89 .woocommerce-customer-details .woocommerce-column {
  float: none !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

html body.aiomy-order-complete-v89 .woocommerce-customer-details address {
  min-height: 100% !important;
  margin: 0 !important;
  padding: 16px !important;
  border: 1px solid rgba(31, 28, 55, 0.06) !important;
  border-radius: 15px !important;
  background: rgba(248, 246, 250, 0.76) !important;
  color: var(--aiomy-v89-muted) !important;
  font-size: 0.72rem !important;
  font-style: normal !important;
  line-height: 1.72 !important;
}

/* Historyczny przycisk szczegółów nie może wrócić w tym ekranie. */
html body.aiomy-order-complete-v89 .aiomy-order-complete-card-v89 :is(.button.view, .woocommerce-button.view) {
  display: none !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-actions-v89 {
  display: flex !important;
  justify-content: center !important;
  margin-top: 2px !important;
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-shop-v89 {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 220px !important;
  min-height: 52px !important;
  padding: 12px 24px !important;
  border: 1px solid transparent !important;
  border-radius: 15px !important;
  background:
    linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)) padding-box,
    var(--aiomy-v89-gradient) border-box !important;
  color: var(--aiomy-v89-ink) !important;
  box-shadow: 0 13px 30px rgba(135, 101, 246, 0.11) !important;
  font-size: 0.82rem !important;
  font-weight: 900 !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  transition: transform 180ms ease, box-shadow 180ms ease, color 180ms ease !important;
}

@media (hover: hover) and (pointer: fine) {
  html body.aiomy-order-complete-v89 .aiomy-order-complete-shop-v89:hover {
    background: var(--aiomy-v89-gradient) !important;
    color: #fff !important;
    box-shadow: 0 17px 36px rgba(240, 77, 145, 0.24) !important;
    transform: translateY(-2px) !important;
  }
}

html body.aiomy-order-complete-v89 .aiomy-order-complete-shop-v89:focus-visible {
  outline: 3px solid rgba(135, 101, 246, 0.27) !important;
  outline-offset: 3px !important;
}

/* Bez różowego CTA; cała ciemna stopka przełamuje ograniczenie szerokości strony. */
html body.aiomy-order-complete-v89 .footer-cta-bar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

html body.aiomy-order-complete-v89 .site-footer,
html body.aiomy-order-complete-v89 footer.site-footer {
  position: relative !important;
  left: 50% !important;
  width: 100vw !important;
  max-width: none !important;
  margin: 0 0 0 -50vw !important;
  padding: 0 !important;
}

html body.aiomy-order-complete-v89 :is(.footer-main, .footer-bottom) {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  background: #2d2d3a !important;
}

html body.aiomy-order-complete-v89 .footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
}

html body.aiomy-order-complete-v89 :is(.footer-main, .footer-bottom) > .container {
  width: 100% !important;
  max-width: 1200px !important;
  margin-right: auto !important;
  margin-left: auto !important;
  padding-right: 24px !important;
  padding-left: 24px !important;
  box-sizing: border-box !important;
}

@media (max-width: 760px) {
  html body.aiomy-order-complete-v89 {
    background-attachment: scroll !important;
  }

  html body.aiomy-order-complete-v89 main.site-main,
  html body.aiomy-order-complete-v89 main.wc-main {
    padding-top: 26px !important;
    padding-bottom: 62px !important;
  }

  html body.aiomy-order-complete-v89 main > .container,
  html body.aiomy-order-complete-v89 main .entry-content,
  html body.aiomy-order-complete-v89 main .wp-block-post-content {
    padding-right: 14px !important;
    padding-left: 14px !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-complete-card-v89 {
    gap: 16px !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 ol {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 ol::before {
    top: 24px !important;
    bottom: 24px !important;
    left: 24px !important;
    width: 1px !important;
    height: auto !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li {
    display: grid !important;
    grid-template-columns: 50px minmax(0, 1fr) !important;
    gap: 13px !important;
    align-items: start !important;
    padding: 0 !important;
    text-align: left !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-journey-v89 li strong {
    margin-top: 3px !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-summary-v89__head {
    align-items: flex-start !important;
    flex-direction: column !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-facts-v89 {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  html body.aiomy-order-complete-v89 .woocommerce-customer-details .woocommerce-columns {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 480px) {
  html body.aiomy-order-complete-v89 :is(.aiomy-order-journey-v89, .aiomy-order-summary-v89),
  html body.aiomy-order-complete-v89 .aiomy-order-complete-details-v89 > :is(.woocommerce-order-details, .woocommerce-customer-details, .woocommerce-order-downloads) {
    padding: 18px !important;
    border-radius: 20px !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-facts-v89 {
    grid-template-columns: 1fr !important;
  }

  html body.aiomy-order-complete-v89 .aiomy-order-complete-shop-v89 {
    width: 100% !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  html body.aiomy-order-complete-v89 *,
  html body.aiomy-order-complete-v89 *::before,
  html body.aiomy-order-complete-v89 *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
