/** Shopify CDN: Minification failed

Line 590:0 All "@import" rules must come first

**/
/* ==========================================================================
   ARCTIS 45 — motyw "Upał kontra Chłód"
   ========================================================================== */


   :root {
  /* -- kolory: cieplejsze, bardziej zachęcające -- */
  --color-ember: #d6af00ff;      /* było mocno czerwone, teraz przyjazny pomarańcz-ceglasty */
  --color-blaze: #f0cc00f5;
  --color-sun: #2fc7c7ff;
  --color-sand: #FFF9F0;       /* jaśniejszy, cieplejszy sand */
  --color-ice: #4aa7e0ff;
  --color-ice-deep: #3892d3ff;   /* trochę jaśniejszy niż wcześniej dla lepszego kontrastu tekstu */
  --color-frost: #8FE3FF;
  --color-char: #031131ff;
  --color-white: #FFFFFF;

  /* -- typografia -- */
  --font-display: 'Unbounded', monospace;
  --font-body: 'Unbounded', monospace;

  /* -- layout -- */
  --container: 1200px;
  --radius: 10px;
  --shadow-hot: 0 12px 32px rgba(232, 81, 31, 0.22);
  --shadow-cold: 0 12px 32px rgba(11, 61, 92, 0.3);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 112.5%; } /* baza 18px zamiast 16px - lepsza czytelność */

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-char);
  background: var(--color-sand);
  -webkit-font-smoothing: antialiased;
  line-height: 1.65;
  font-size: 1.05rem;
}

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

.skip-link {
  position: absolute; left: -999px; top: 0; z-index: 999;
  background: var(--color-char); color: var(--color-white);
  padding: 12px 20px; border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { left: 0; }

a { color: inherit; }

button, .btn {
  font-family: var(--font-body);
  cursor: pointer;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  letter-spacing: 0.02em;
}

:focus-visible {
  outline: 3px solid var(--color-frost);
  outline-offset: 2px;
}

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
  font-weight: 700;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--color-ember);
  color: var(--color-white);
  padding: 16px 30px;
  font-size: 1.02rem;
  border-radius: 999px;
  text-transform: none;
  letter-spacing: 0;
  box-shadow: 0 10px 24px rgba(232, 81, 31, 0.28);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.btn-primary:hover { transform: translateY(-2px); background: #01947bff; }
.btn-primary:disabled { opacity: .5; cursor: not-allowed; transform: none; }

.btn-ghost {
  background: var(--color-white);
  border: 1.5px solid rgba(36,26,18,0.15);
  color: var(--color-char);
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 1.02rem;
}
.btn-ghost:hover { border-color: var(--color-char); }

/* pasek zaufania z avatarami */
.trust-avatars {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  font-size: 0.92rem;
}
.trust-avatars__label { font-weight: 700; }
.trust-avatars__stack { display: flex; }
.trust-avatars__stack img {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 2.5px solid var(--color-sand);
  object-fit: cover;
  margin-left: -10px;
}
.trust-avatars__stack img:first-child { margin-left: 0; }
.trust-avatars__count { opacity: 0.7; }

/* ==========================================================================
   HEADER — pływająca pigułka
   ========================================================================== */
.site-header {
  position: sticky;
  top: 16px;
  z-index: 40;
  background: transparent;
  margin: 18px 0 0;
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: rgba(255, 249, 240, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(36,26,18,0.08);
  border-radius: 999px;
  padding: 10px 12px 10px 22px;
  box-shadow: 0 8px 30px rgba(36,26,18,0.08);
}
.site-header__logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.01em;
  text-decoration: none;
  color: var(--color-char);
  display: flex;
  align-items: center;
  gap: 8px;
}
.site-header__logo svg { width: 22px; height: 22px; color: var(--color-ember); }
.site-header__logo span { color: var(--color-ember); }
.site-header__nav { display: flex; gap: 160px; list-style: none; margin: 0; padding: 0; }
.site-header__nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-char);
  opacity: 0.7;
}
.site-header__nav a:hover { opacity: 1; }

.header-actions { display: flex; align-items: center; gap: 10px; }
.cart-toggle {
  position: relative;
  background: var(--color-char);
  color: var(--color-sand);
  padding: 11px;
  border-radius: 50%;
  display: flex;
}
.cart-toggle svg { width: 20px; height: 20px; }
.cart-count {
  position: absolute; top: -4px; right: -4px;
  background: var(--color-ember);
  color: var(--color-white);
  font-size: 0.68rem;
  font-weight: 700;
  border-radius: 50%;
  min-width: 17px; height: 17px;
  display: flex; align-items: center; justify-content: center;
  padding: 0 3px;
  border: 2px solid var(--color-sand);
}

/* ==========================================================================
   HERO — oprawiona karta (ramka chłodu)
   ========================================================================== */
.hero {
  padding: 20px 0 0;
  background: var(--color-sand);
}
.hero-frame {
  background: var(--color-ice-deep);
  border-radius: 32px;
  padding: 14px;
}
.hero-frame__inner {
  background: var(--color-sand);
  border-radius: 22px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 620px;
}
.hero__content {
  padding: 60px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-white);
  border: 1px solid rgba(36,26,18,0.1);
  color: var(--color-char);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: 999px;
  width: fit-content;
  margin-bottom: 26px;
  text-transform: none;
  letter-spacing: 0;
}
.hero__eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--color-ember); }

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.2vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 22px;
  color: var(--color-char);
  text-shadow: none;
}
.hero h1 .cold { color: var(--color-ice); }
.hero p.lede {
  font-size: 1.15rem;
  line-height: 1.6;
  max-width: 44ch;
  margin: 0 0 34px;
  color: var(--color-char);
  opacity: 0.7;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__visual {
  position: relative;
  overflow: hidden;
}
.hero__visual img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero__visual .temp-tag {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(6,52,80,0.85);
  backdrop-filter: blur(6px);
  color: var(--color-frost);
  font-family: var(--font-display);
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 999px;
}
.hero__visual .stat-tag {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--color-white);
  color: var(--color-char);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 18px;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.hero__visual .stat-tag span { display: block; font-family: var(--font-display); font-size: 1.3rem; color: var(--color-ember); }

/* ==========================================================================
   PRODUCT SECTION — strefa chłodu
   ========================================================================== */
.product-zone {
  margin-top: 50px;
  background: var(--color-ice-deep);
  color: var(--color-sand);
  padding: 10px 0 90px;
}
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.product__gallery { position: sticky; top: 100px; }
.product__main-image {
  border-radius: 10px;
  overflow: hidden;
  background: var(--color-ice);
  box-shadow: var(--shadow-cold);
  aspect-ratio: 1/1;
}
.product__main-image img { width: 100%; height: 100%; object-fit: cover; }
.product__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}
.product__thumbs button {
  background: var(--color-ice);
  padding: 0;
  border-radius: 6px;
  overflow: hidden;
  width: 72px;
  height: 72px;
  border: 2px solid transparent;
}
.product__thumbs button.active { border-color: var(--color-frost); }
.product__thumbs img { width: 100%; height: 100%; object-fit: cover; }

.product__info .eyebrow { color: var(--color-frost); }
.product__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  line-height: 1.05;
  margin: 10px 0 6px;
}
.product__rating { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; opacity: .85; font-size: .9rem; }

.product__price-row {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 8px 0 22px;
}
.price-now { font-family: var(--font-display); font-size: 2.4rem; color: var(--color-sun); }
.price-was { font-size: 1.2rem; text-decoration: line-through; opacity: 0.55; }
.price-badge {
  background: var(--color-ember);
  color: var(--color-white);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 5px 10px;
  border-radius: 999px;
}

.product__desc { opacity: 0.9; margin-bottom: 26px; max-width: 54ch; }

.feature-bullets {
  list-style: none;
  margin: 0 0 30px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.feature-bullets li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 1.05rem;
  line-height: 1.5;
}
.feature-bullets svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-frost); margin-top: 2px; }

.product-form__row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.qty-stepper {
  display: flex;
  align-items: center;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
}
.qty-stepper button {
  background: transparent;
  color: var(--color-sand);
  width: 40px;
  height: 46px;
  font-size: 1.2rem;
}
.qty-stepper input {
  width: 44px;
  text-align: center;
  background: transparent;
  border: none;
  color: var(--color-sand);
  font-family: var(--font-body);
  font-size: 1rem;
  -moz-appearance: textfield;
}
.qty-stepper input::-webkit-outer-spin-button,
.qty-stepper input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.product-form .btn-primary { flex: 1; justify-content: center; padding: 16px 24px; font-size: 1.05rem; }

.stock-note { font-size: 0.85rem; display: flex; align-items: center; gap: 8px; }
.stock-dot { width: 8px; height: 8px; border-radius: 50%; background: #3ddc84; }
.stock-dot.low { background: var(--color-sun); }

.trust-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 0.82rem;
  opacity: 0.85;
}
.trust-row span { display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   FEATURES GRID
   ========================================================================== */
.features {
  background: var(--color-sand);
  padding: 90px 0;
}
.features__head { max-width: 60ch; margin-bottom: 48px; }
.features__head .eyebrow { color: var(--color-ember); }
.features__head h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 10px 0 0;
  line-height: 1.05;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--color-white);
  border: 1px solid rgba(26,18,12,0.08);
  border-radius: 10px;
  padding: 28px 22px;
  transition: transform .15s ease, box-shadow .15s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hot); }
.feature-card__icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: var(--color-ember);
  color: var(--color-white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feature-card__icon svg { width: 24px; height: 24px; }
.feature-card h3 { font-family: var(--font-display); font-size: 1.25rem; margin: 0 0 10px; letter-spacing: 0.01em; }
.feature-card p { margin: 0; font-size: 1rem; line-height: 1.55; opacity: 0.82; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-char);
  color: var(--color-sand);
  padding: 60px 0 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer__brand { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 12px; }
.footer__brand span { color: var(--color-blaze); }
.footer__col h4 { text-transform: uppercase; font-size: 0.8rem; letter-spacing: 0.1em; opacity: 0.6; margin: 0 0 14px; }
.footer__col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 10px; }
.footer__col a { text-decoration: none; opacity: 0.85; font-size: 0.92rem; }
.footer__col a:hover { color: var(--color-frost); opacity: 1; }
.footer__newsletter form { display: flex; gap: 8px; margin-top: 6px; }
.footer__newsletter input {
  flex: 1;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: var(--color-sand);
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 0.82rem;
  opacity: 0.6;
  flex-wrap: wrap;
  gap: 10px;
}

/* ==========================================================================
   CART DRAWER
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(6,38,57,0.55);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease;
  z-index: 90;
}
.cart-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--color-sand);
  color: var(--color-char);
  z-index: 91;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -10px 0 40px rgba(0,0,0,.3);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 3px solid var(--color-ember);
  background: var(--color-char);
  color: var(--color-sand);
}
.cart-drawer__head h2 { font-family: var(--font-display); margin: 0; font-size: 1.3rem; }
.cart-drawer__close { background: transparent; color: var(--color-sand); font-size: 1.6rem; line-height: 1; padding: 4px 8px; }

.cart-drawer__body { flex: 1; overflow-y: auto; padding: 18px 22px; }
.cart-line {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(26,18,12,0.1);
}
.cart-line img { width: 70px; height: 70px; object-fit: cover; border-radius: 6px; }
.cart-line__title { font-weight: 700; font-size: 0.95rem; margin: 0 0 4px; }
.cart-line__price { color: var(--color-ember); font-weight: 700; font-size: 0.9rem; }
.cart-line__qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
.cart-line__qty button { background: var(--color-ice-deep); color: var(--color-sand); width: 26px; height: 26px; border-radius: 4px; }
.cart-line__remove { background: transparent; color: var(--color-ember); font-size: 0.8rem; text-decoration: underline; padding: 0; margin-top: 8px; }
.cart-empty { text-align: center; padding: 60px 20px; opacity: 0.6; }

.cart-drawer__footer { padding: 20px 22px; border-top: 2px solid var(--color-char); background: var(--color-white); }
.cart-drawer__subtotal { display: flex; justify-content: space-between; font-size: 1.15rem; font-weight: 700; margin-bottom: 14px; }
.cart-drawer__footer .btn-primary { width: 100%; justify-content: center; }

/* ==========================================================================
   RESPONSYWNOŚĆ
   ========================================================================== */
@media (max-width: 900px) {
  .hero-frame__inner { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { aspect-ratio: 16/10; }
  .hero__content { padding: 44px 30px; }
  .product { grid-template-columns: 1fr; }
  .product__gallery { position: static; }
  .features__grid { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 600px) {
  .site-header__nav { display: none; }
  .site-header__bar { padding: 8px 8px 8px 16px; }
  .features__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero-frame { border-radius: 22px; padding: 8px; }
  .hero-frame__inner { border-radius: 16px; }
  .hero__content { padding: 34px 22px; }
  .hero h1 { font-size: 2.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap');

h1, h2, h3, h4, h5, h6, p,li {
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.05em;
}

