/* Fonty z archiwum 360
   Wgraj pliki fontów ręcznie do folderu /fonts, zachowując nazwy z listy.
   Po wgraniu strona automatycznie użyje fontów przez @font-face. */
@font-face {
  font-family: "Alef";
  src: url("../fonts/Alef-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Alef";
  src: url("../fonts/Alef-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADE TOMMY Medium_PERSONAL USE.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE TOMMY";
  src: url("../fonts/MADE TOMMY Bold_PERSONAL USE.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Stereofidelic";
  src: url("../fonts/stereofidelic.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Ultra Fresh";
  src: url("../fonts/Ultra Fresh - Demo.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #03050c;
  --bg-soft: #070915;
  --text: #f7f8fb;
  --muted: #c3cad8;
  --pink: #ff3ab9;
  --cyan: #43d8ff;
  --purple: #a66bff;
  --yellow: #ffd32f;
  --line: rgba(195, 203, 225, .18);
  --max: 1180px;
  --radius: 28px;
  --display: "Stereofidelic", "Ultra Fresh", Impact, Haettenschweiler, "Arial Black", sans-serif;
  --body: "Alef", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --headline: "MADE TOMMY", Impact, Haettenschweiler, "Arial Black", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  line-height: 1.5;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 40vw;
  height: 40vw;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .22;
  pointer-events: none;
  z-index: -2;
}
body::before { left: -12vw; top: -10vw; background: var(--pink); }
body::after { right: -10vw; bottom: -12vw; background: var(--purple); }

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

.site-header {
  min-height: 100vh;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 58, 185, .22), transparent 36%),
    radial-gradient(circle at 92% 5%, rgba(67, 216, 255, .18), transparent 34%),
    radial-gradient(circle at 85% 100%, rgba(166, 107, 255, .20), transparent 38%),
    linear-gradient(135deg, #03050c 0%, #07121b 100%);
}
.site-header::before {
  content: "";
  position: absolute;
  right: min(10vw, 120px);
  top: 150px;
  width: 260px;
  height: 260px;
  background: url("../assets/540_spray.png") center/contain no-repeat;
  opacity: .8;
  mix-blend-mode: screen;
}

.topbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 22px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 5;
}
.brand img { width: 82px; height: auto; }
.category-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.category-nav a,
.menu-toggle {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.05);
  color: var(--text);
  text-decoration: none;
  padding: 10px 14px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .02em;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.category-nav a:hover,
.menu-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(67,216,255,.55);
  background: rgba(67,216,255,.10);
}
.menu-toggle { display: none; cursor: pointer; }

.hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  min-height: calc(100vh - 130px);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.eyebrow {
  color: var(--cyan);
  text-transform: uppercase;
  letter-spacing: .24em;
  font-weight: 800;
  margin: 0 0 12px;
  font-size: 13px;
}
h1, h2, h3 { line-height: .95; margin: 0; }
h1 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(62px, 10vw, 154px);
  max-width: 760px;
  background: linear-gradient(90deg, #fff, #ff4dc6 38%, #43d8ff 75%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 14px rgba(255,58,185,.22));
}
.hero-lead {
  font-size: clamp(19px, 2vw, 27px);
  color: var(--muted);
  max-width: 620px;
  margin: 28px 0 34px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .03em;
}
.button.primary {
  color: #05070d;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  box-shadow: 0 0 30px rgba(67,216,255,.18);
}
.button.ghost {
  border: 1px solid rgba(255,255,255,.18);
  color: var(--text);
  background: rgba(255,255,255,.04);
}
.hero-products {
  min-height: 650px;
  position: relative;
}
.hero-product {
  position: absolute;
  filter: drop-shadow(0 0 22px rgba(255,58,185,.26)) drop-shadow(0 30px 30px rgba(0,0,0,.42));
}
.hero-hoodie { width: min(550px, 64vw); right: 0; top: 70px; }
.hero-shirt { width: min(430px, 42vw); left: 0; top: 190px; }
.hero-bag { width: min(300px, 30vw); right: 90px; bottom: 20px; }

.intro-section,
.category-section,
.site-footer {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}
.intro-section {
  padding: 90px 0 40px;
  display: grid;
  grid-template-columns: .9fr 1fr;
  gap: 60px;
  border-bottom: 1px solid var(--line);
}
.intro-section h2,
.category-heading h2 {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: clamp(46px, 6vw, 92px);
  background: linear-gradient(90deg, var(--pink), var(--purple), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.intro-section p:last-child {
  color: var(--muted);
  font-size: 20px;
  margin: 26px 0 0;
}

.category-section {
  padding: 90px 0 30px;
  border-bottom: 1px solid var(--line);
}
.category-heading {
  margin-bottom: 52px;
}
.product-list {
  display: grid;
  gap: 96px;
}
.product-row {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(360px, .95fr);
  align-items: center;
  gap: clamp(32px, 7vw, 88px);
  position: relative;
}
.product-row + .product-row::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -48px;
  height: 1px;
  background: var(--line);
}
.product-row--reverse .product-media { order: 2; }
.product-row--reverse .product-info { order: 1; }
.product-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  position: relative;
}
.product-media::before {
  content: "";
  position: absolute;
  inset: 8% 5%;
  background: radial-gradient(circle, rgba(67,216,255,.16), transparent 60%);
  filter: blur(35px);
}
.product-media img {
  max-height: min(650px, 68vh);
  width: auto;
  position: relative;
  z-index: 1;
  filter: drop-shadow(0 0 26px rgba(255,58,185,.22)) drop-shadow(0 28px 28px rgba(0,0,0,.46));
}
.product-info {
  position: relative;
  padding: 12px 0;
}
.product-info::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 60px;
  top: -34px;
  left: -16px;
  background: url("../assets/dry-brush-stroke-12.png") center/100% 100% no-repeat;
  opacity: .95;
  z-index: -1;
}
.product-category {
  display: inline-block;
  margin: 0 0 18px;
  padding: 8px 16px;
  min-width: 210px;
  color: #05070d;
  font-weight: 1000;
  text-transform: uppercase;
  letter-spacing: .09em;
  background: url("../assets/dry-brush-stroke-21.png") center/100% 100% no-repeat;
}
.product-info h3 {
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: .02em;
  max-width: 620px;
}
.product-price {
  display: inline-flex;
  margin: 18px 0 22px;
  padding: 8px 22px;
  min-width: 180px;
  justify-content: center;
  color: #05070d;
  font-weight: 1000;
  font-size: 26px;
  background: url("../assets/dry-brush-stroke-2.png") center/100% 100% no-repeat;
}
.product-description {
  color: var(--text);
  font-size: 21px;
  max-width: 680px;
  margin: 0 0 24px;
}

.color-swatches-wrap {
  margin: 0 0 24px;
}
.swatches-label {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-family: var(--headline);
}
.color-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.swatch {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--swatch);
  border: 1.5px solid var(--swatch-border, rgba(255,255,255,.14));
  box-shadow: 0 0 0 1px rgba(255,255,255,.10), 0 6px 14px rgba(0,0,0,.28);
  display: inline-block;
}

.chips {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0 0 28px;
}
.chips li {
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--muted);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
}
.measurements {
  max-width: 100%;
}
.measurements summary {
  cursor: pointer;
  width: fit-content;
  color: var(--cyan);
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 14px;
}
.table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
}
table {
  width: 100%;
  min-width: 820px;
  border-collapse: collapse;
  font-size: 14px;
}
th, td {
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 12px 10px;
  text-align: left;
  white-space: nowrap;
}
thead th {
  color: var(--cyan);
  font-weight: 900;
}
tbody th {
  color: var(--text);
  width: 150px;
}
td { color: var(--muted); }

.site-footer {
  padding: 70px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: var(--muted);
}
.site-footer img { width: 72px; }
.site-footer a { color: var(--cyan); text-decoration: none; font-weight: 900; }


.category-nav a,
.menu-toggle,
.button,
.product-category,
.product-price,
.measurements summary,
thead th,
.site-footer a,
.eyebrow {
  font-family: var(--headline);
}

.product-info h3 {
  font-family: var(--headline);
}

@media (max-width: 900px) {
  .menu-toggle { display: inline-flex; }
  .category-nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 92px;
    padding: 14px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 20px;
    background: rgba(5,7,13,.96);
    justify-content: flex-start;
  }
  .category-nav.is-open { display: flex; }
  .hero,
  .intro-section,
  .product-row {
    grid-template-columns: 1fr;
  }
  .hero { padding: 44px 0 80px; }
  .hero-products { min-height: 520px; }
  .hero-hoodie { width: 80vw; top: 0; right: -8vw; }
  .hero-shirt { width: 55vw; top: 140px; left: -4vw; }
  .hero-bag { width: 42vw; right: 4vw; bottom: 0; }
  .product-row,
  .product-row--reverse .product-media,
  .product-row--reverse .product-info { order: initial; }
  .product-row { min-height: auto; gap: 20px; }
  .product-media { min-height: 360px; }
  .product-media img { max-height: 430px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .brand img { width: 62px; }
  .topbar,
  .hero,
  .intro-section,
  .category-section,
  .site-footer { width: min(100% - 28px, var(--max)); }
  h1 { font-size: 58px; }
  .intro-section h2,
  .category-heading h2 { font-size: 46px; }
  .product-info h3 { font-size: 34px; }
  .product-description { font-size: 18px; }
  .product-media { min-height: 300px; }
  .product-media img { max-height: 340px; }
  .button { width: 100%; }
}

/* === 360 katalog: mocniejsza poświata za produktami === */

.hero-products::before,
.hero-products::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-products::before {
  left: 2%;
  top: 24%;
  width: 320px;
  height: 320px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, .24) 0%,
    rgba(67, 216, 255, .30) 38%,
    rgba(67, 216, 255, 0) 74%
  );
  filter: blur(72px);
}

.hero-products::after {
  right: 0;
  top: 6%;
  width: 360px;
  height: 360px;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, .18) 0%,
    rgba(255, 58, 185, .34) 40%,
    rgba(255, 58, 185, 0) 76%
  );
  filter: blur(78px);
}

.hero-product {
  z-index: 1;
  filter:
    brightness(1.03)
    drop-shadow(0 0 18px rgba(255, 255, 255, .12))
    drop-shadow(0 0 34px rgba(67, 216, 255, .18))
    drop-shadow(0 30px 30px rgba(0, 0, 0, .42));
}

.product-media::before {
  content: "";
  position: absolute;
  inset: 4% 1%;
  background:
    radial-gradient(
      circle at 50% 44%,
      rgba(255, 255, 255, .28) 0%,
      rgba(255, 255, 255, .15) 18%,
      rgba(67, 216, 255, .30) 40%,
      rgba(255, 58, 185, .26) 58%,
      transparent 76%
    );
  filter: blur(48px);
  opacity: 1;
  z-index: 0;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 14% 12%;
  background: radial-gradient(
    circle at 50% 48%,
    rgba(255, 255, 255, .16),
    rgba(67, 216, 255, .10) 46%,
    transparent 72%
  );
  filter: blur(26px);
  opacity: .95;
  z-index: 0;
  pointer-events: none;
}

.product-media img {
  position: relative;
  z-index: 1;
  filter:
    brightness(1.03)
    drop-shadow(0 0 18px rgba(255, 255, 255, .12))
    drop-shadow(0 0 38px rgba(67, 216, 255, .16))
    drop-shadow(0 28px 28px rgba(0, 0, 0, .46));
}

/* Mobile - mocniejszy glow pod małe ekrany */

@media (max-width: 900px) {
  .hero-products::before {
    width: 250px;
    height: 250px;
    left: -4vw;
    top: 130px;
    filter: blur(68px);
  }

  .hero-products::after {
    width: 280px;
    height: 280px;
    right: -4vw;
    top: 10px;
    filter: blur(74px);
  }

  .product-media::before {
    inset: -2% -2%;
    filter: blur(58px);
    background:
      radial-gradient(
        circle at 50% 45%,
        rgba(255, 255, 255, .32) 0%,
        rgba(255, 255, 255, .16) 20%,
        rgba(67, 216, 255, .34) 42%,
        rgba(255, 58, 185, .30) 62%,
        transparent 80%
      );
  }

  .product-media::after {
    inset: 8% 8%;
    filter: blur(30px);
  }

  .product-media img {
    filter:
      brightness(1.04)
      drop-shadow(0 0 20px rgba(255, 255, 255, .14))
      drop-shadow(0 0 46px rgba(67, 216, 255, .18))
      drop-shadow(0 28px 28px rgba(0, 0, 0, .46));
  }
}

@media (max-width: 560px) {
  .product-media::before {
    inset: -5% -6%;
    filter: blur(62px);
  }

  .product-media::after {
    inset: 6% 6%;
    filter: blur(34px);
  }

  .product-media img {
    filter:
      brightness(1.05)
      drop-shadow(0 0 18px rgba(255, 255, 255, .16))
      drop-shadow(0 0 42px rgba(67, 216, 255, .20))
      drop-shadow(0 24px 24px rgba(0, 0, 0, .46));
  }
}