/* =====================================================
   MATURIJADA.COM — stilovi
   Jedna datoteka za cijelu stranicu.
   ===================================================== */

@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/anton-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Anton';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/anton-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  --bg: #fffbf2;
  --bg-alt: #fff5d6;
  --ink: #181818;
  --ink-soft: #4a4a4a;
  --accent: #ffd400;       /* megafon žuta */
  --accent-deep: #f5b800;
  --pop: #e63946;          /* alarm crvena */
  --line: #181818;
  --paper: #ffffff;
  --shadow: 6px 6px 0 var(--ink);
  --shadow-sm: 3px 3px 0 var(--ink);
  --radius: 4px;
  --max: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Inter", "Helvetica Neue", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
  overflow-x: hidden;
  background-image:
    radial-gradient(circle at 1px 1px, rgba(0,0,0,0.06) 1px, transparent 0);
  background-size: 22px 22px;
}

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

a { color: var(--ink); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: "Anton", "Bebas Neue", "Impact", sans-serif;
  font-weight: 400;
  letter-spacing: 0.5px;
  line-height: 1.05;
  text-transform: uppercase;
}

h1 { font-size: clamp(2.5rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }

p { margin-bottom: 1em; }

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

/* ===== TOP BAR ===== */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  padding: 8px 0;
  font-weight: 600;
  letter-spacing: 0.5px;
}
.topbar a { color: var(--accent); }
.topbar-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.topbar-info { flex: 1; text-align: center; }
.topbar-social {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}
.social-icon {
  color: #ffffff;
  display: flex;
  align-items: center;
  transition: color 0.2s;
}
.social-icon:hover {
  color: var(--accent);
  text-decoration: none;
}
.social-icon svg {
  width: 18px;
  height: 18px;
}

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--paper);
  border-bottom: 3px solid var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--max);
  margin: 0 auto;
  gap: 16px;
}
.logo {
  font-family: "Anton", sans-serif;
  font-size: 1.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.logo .dot {
  background: var(--accent);
  padding: 2px 10px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  transform: rotate(-3deg);
}
.nav-links {
  display: flex;
  gap: 15px;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
}
.nav-links a:hover { text-decoration: none; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0;
  height: 3px;
  background: var(--accent);
  transition: width 0.2s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.btn-cta {
  background: var(--accent);
  color: var(--ink);
  padding: 10px 20px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-cta:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
}
.nav-links .btn-cta { padding-right: 14px; }
.nav-arrow {
  display: inline-block;
  margin-left: 3px;
  animation: nav-arrow-bounce 1s ease-in-out infinite;
}
@keyframes nav-arrow-bounce {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(5px); }
}
.nav-arrow-l {
  display: inline-flex;
  align-items: center;
  margin-left: 8px;
  margin-right: 3px;
  animation: nav-arrow-bounce-l 1s ease-in-out infinite;
}
@keyframes nav-arrow-bounce-l {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(-5px); }
}
.btn-cta:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}
.nav-links .nav-ai-hover::after { background: #00b0b8; width: 0 !important; }
.nav-links .nav-ai-hover:hover::after { width: 100% !important; }

.btn-secondary {
  background: var(--paper);
  color: var(--ink);
  padding: 10px 20px;
  border: 2px solid var(--ink);
  box-shadow: var(--shadow-sm);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 14px;
  display: inline-block;
  transition: transform 0.15s, box-shadow 0.15s;
}
.btn-secondary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  text-decoration: none;
  background: var(--bg-alt);
}

.menu-toggle {
  display: none;
  background: var(--accent);
  border: 2px solid var(--ink);
  padding: 8px 12px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

/* ===== HERO ===== */
.hero {
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-block;
  background: var(--ink);
  color: var(--accent);
  padding: 6px 14px;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  transform: rotate(-1.5deg);
}
.hero h1 {
  margin-bottom: 16px;
}
.hero h1 .highlight {
  background: var(--accent);
  padding: 0 12px;
  display: inline-block;
  transform: rotate(-1deg);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
}
.hero-lead {
  font-size: 1.15rem;
  margin-bottom: 28px;
  max-width: 540px;
  color: var(--ink-soft);
}
.hero-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
.hero-cta-row .btn-cta,
.hero-cta-row .btn-secondary {
  font-size: 16px;
  padding: 14px 26px;
}
.hero-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 28px;
  font-weight: 600;
  font-size: 14px;
}
.hero-perks span::before {
  content: "✓";
  color: var(--ink);
  background: var(--accent);
  padding: 1px 7px;
  border: 2px solid var(--ink);
  margin-right: 8px;
  font-weight: 700;
}
.hero-art {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-art .shirt-mock {
  width: 100%;
  max-width: 420px;
  background: var(--accent);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 40px 30px;
  position: relative;
  transform: rotate(-3deg);
  font-family: "Anton", sans-serif;
  text-align: center;
}
.hero-art .shirt-mock-small {
  position: absolute;
  width: 200px;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 24px 16px;
  font-family: "Anton", sans-serif;
  text-align: center;
  transform: rotate(8deg);
  bottom: -30px;
  right: -20px;
}
.hero-art .shirt-mock h2,
.hero-art .shirt-mock-small h3 {
  margin: 0;
}
.shirt-line { display: block; }
.shirt-mock .nick { font-size: 0.9rem; opacity: 0.8; }

.megafon-badge {
  position: absolute;
  top: -10px;
  left: -30px;
  background: var(--pop);
  color: var(--paper);
  padding: 14px 22px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  font-family: "Anton", sans-serif;
  font-size: 1.1rem;
  text-transform: uppercase;
  transform: rotate(-12deg);
  z-index: 5;
}

/* ===== SECTIONS ===== */
section {
  padding: 70px 0;
}
.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}
.section-head .eyebrow {
  display: inline-block;
  background: var(--accent);
  padding: 4px 14px;
  border: 2px solid var(--ink);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.section-head p {
  font-size: 1.1rem;
  color: var(--ink-soft);
}

/* ===== PERKS GRID ===== */
.perks {
  background: var(--bg-alt);
  border-top: 3px solid var(--ink);
  border-bottom: 3px solid var(--ink);
}
.perks-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.perk {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s;
}
.perk:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }
.perk-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
  color: var(--ink);
}
.perk-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.perk h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}
.perk p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0;
}

/* ===== PRODUCTS GRID ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
}
.product-card:hover { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--ink); }

/* ===== FEATURED PRODUCT (2/3 video + 1/3 tekst, bočno) ===== */
.product-featured-side {
  display: flex;
  flex-direction: row;
  background: var(--ink);
  color: var(--bg);
  border: 4px solid var(--ink);
  box-shadow: 8px 8px 0 var(--accent);
  margin-bottom: 32px;
  overflow: hidden;
}
.product-featured-side:hover {
  transform: none;
  box-shadow: 12px 12px 0 var(--accent);
}
.product-featured-side .product-featured-video {
  flex: 2;
  min-width: 0;
  position: relative;
  background: #000;
  border-right: 3px solid var(--accent);
  overflow: hidden;
}
.product-featured-video video {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Aspect ratio helper — kartica visinom prati 16:9 videa */
.product-featured-side .product-featured-video::before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.product-featured-side-body {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}
.product-featured-side-body .tag { margin-bottom: 4px; display: inline-block; width: fit-content; }
.product-featured-side-body h3 {
  font-size: 1.6rem;
  color: var(--bg);
  margin-bottom: 4px;
}
.product-featured-side-body p {
  color: rgba(255,251,242,0.75);
  font-size: 0.9rem;
  margin-bottom: 6px;
}
.featured-perks {
  list-style: none;
  margin: 0 0 10px;
  padding: 0;
}
.featured-perks li {
  padding: 3px 0 3px 22px;
  position: relative;
  font-size: 0.85rem;
  color: rgba(255,251,242,0.8);
}
.featured-perks li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* Grid za 4 proizvoda — 4 kolone, kompaktni */
.products-grid-4col {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.product-card-compact .product-card-img {
  aspect-ratio: 1/1;
}
.product-card-compact .product-card-body {
  padding: 14px;
}
.product-card-compact h3 {
  font-size: 1.1rem;
  margin-bottom: 6px;
}
.product-card-compact .price {
  font-size: 1.3rem;
}
.product-card-compact .btn-secondary {
  font-size: 12px;
  padding: 7px 14px;
}
.product-card-img {
  background: var(--bg-alt);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 3px solid var(--ink);
  position: relative;
  overflow: hidden;
}
.product-card-img .placeholder {
  font-family: "Anton", sans-serif;
  font-size: 2.5rem;
  color: var(--ink);
  text-align: center;
  padding: 24px;
  text-transform: uppercase;
  line-height: 1;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.product-card .desc {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin-bottom: 16px;
  flex: 1;
}
.product-card .price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
}
.product-card .price {
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
}
.product-card .price small {
  font-family: "Inter", sans-serif;
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--ink-soft);
}
.tag {
  display: inline-block;
  background: var(--accent);
  border: 2px solid var(--ink);
  padding: 2px 8px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.tag.new { background: var(--pop); color: var(--paper); }

/* ===== COLOR SWATCHES ===== */
.color-swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
  gap: 10px;
  margin: 20px 0;
}
.swatch {
  aspect-ratio: 1/1;
  border: 2px solid var(--ink);
  position: relative;
  cursor: pointer;
  transition: transform 0.15s;
}
.swatch:hover { transform: scale(1.1); z-index: 2; }
.swatch[data-name]::after {
  content: attr(data-name);
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.15s;
  background: var(--ink);
  color: var(--paper);
  padding: 2px 6px;
  pointer-events: none;
}
.swatch:hover::after { opacity: 1; }
.swatch-novo::before {
  content: "NOVO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: var(--pop);
  padding: 2px 8px;
  border: 1px solid var(--ink);
  z-index: 2;
  pointer-events: none;
}

/* ===== SWATCH HOVER PREVIEW ===== */
#swatchPreview {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  padding: 8px;
  width: 170px;
  text-align: center;
}
#swatchPreview.visible { opacity: 1; }
#swatchPreviewImg { width: 100%; display: block; }
#swatchPreviewLabel {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 6px;
  color: var(--ink);
}
#swatchPreviewNote {
  display: none;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-top: 4px;
  color: var(--ink-soft);
  text-transform: uppercase;
}

/* ===== STEPS / HOW IT WORKS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.step {
  text-align: center;
  padding: 0 12px;
}
.step-num {
  font-family: "Anton", sans-serif;
  font-size: 4rem;
  background: var(--accent);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  width: 90px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transform: rotate(-4deg);
}
.step:nth-child(2n) .step-num { transform: rotate(4deg); background: var(--paper); }
.step h3 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.step p {
  font-size: 0.95rem;
  color: var(--ink-soft);
}

/* ===== FAQ ===== */
.faq {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  margin-bottom: 14px;
}
.faq-item summary {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  background: var(--accent);
  border: 2px solid var(--ink);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item .faq-body {
  padding: 0 22px 18px;
  color: var(--ink-soft);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--ink);
  color: var(--bg);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "MATURIJADA · NORIJADA · MATURIJADA · NORIJADA · MATURIJADA · NORIJADA ·";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  font-family: "Anton", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0.7;
}
.cta-banner::after {
  content: "MATURIJADA · NORIJADA · MATURIJADA · NORIJADA · MATURIJADA · NORIJADA ·";
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  font-family: "Anton", sans-serif;
  font-size: 0.9rem;
  letter-spacing: 4px;
  color: var(--accent);
  white-space: nowrap;
  opacity: 0.7;
}
.cta-banner h2 {
  color: var(--bg);
  margin-bottom: 16px;
}
.cta-banner h2 .highlight {
  background: var(--accent);
  color: var(--ink);
  padding: 0 12px;
  display: inline-block;
}
.cta-banner p {
  font-size: 1.15rem;
  max-width: 560px;
  margin: 0 auto 28px;
  opacity: 0.9;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: var(--bg);
  padding: 50px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 32px;
}
.footer-grid h4 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.footer-grid a {
  color: var(--bg);
  display: block;
  padding: 4px 0;
  font-size: 0.95rem;
}
.footer-grid a:hover { color: var(--accent); }
.footer-grid p { font-size: 0.95rem; opacity: 0.85; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  opacity: 0.7;
}

/* ===== COLOR PICKER (forma) ===== */
.color-pick {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 6px;
}
.cpick {
  width: 38px;
  height: 38px;
  border: 2px solid var(--ink);
  cursor: pointer;
  position: relative;
  padding: 0;
  transition: transform 0.15s;
}
.cpick:hover { transform: scale(1.15); z-index: 2; }
.cpick.selected {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  transform: scale(1.15);
}
.cpick.selected::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.6);
}
.cpick--neon::before {
  content: "NOVO";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  color: #fff;
  background: var(--pop);
  padding: 2px 8px;
  border: 1px solid var(--ink);
  z-index: 2;
  pointer-events: none;
}

/* Nickname fields grid */
.nick-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 8px;
}
.nick-field {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nick-field .nick-label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--ink-soft);
  min-width: 36px;
  text-align: right;
  flex-shrink: 0;
}
.nick-field input {
  flex: 1;
  padding: 8px 10px;
  border: 2px solid var(--ink);
  background: var(--bg);
  font-family: inherit;
  font-size: 14px;
}
.nick-size-heading {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 14px 0 8px;
  padding: 6px 10px;
  background: var(--bg-alt);
  border: 2px solid var(--ink);
  display: inline-block;
}
.nick-size-heading:first-child { margin-top: 0; }

/* ===== FONT PICKER ===== */
.font-picker {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 6px;
}
.font-option {
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  cursor: pointer;
  margin: 0;
}
.font-option input { display: none; }
.font-preview {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px 6px;
  border: 2px solid var(--ink);
  background: var(--bg);
  font-size: 16px;
  min-height: 52px;
  transition: background 0.15s, box-shadow 0.15s;
}
.font-option input:checked + .font-preview {
  background: var(--accent);
  box-shadow: var(--shadow-sm);
}
.font-option:hover .font-preview {
  background: var(--bg-alt);
}
.font-option input:checked + .font-preview {
  background: var(--accent);
}

/* Live preview natpis polja */
.natpis-live {
  font-size: 1.6rem;
  line-height: 1.3;
  min-height: 70px;
  resize: both;
  overflow: auto;
}

/* ===== FORMS ===== */
.form-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 32px;
  max-width: 800px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
.form-row.full { grid-template-columns: 1fr; }
label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--ink);
  background: var(--bg);
  font-family: inherit;
  font-size: 16px;
  color: var(--ink);
  transition: box-shadow 0.15s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  box-shadow: var(--shadow-sm);
}
textarea { min-height: 120px; resize: vertical; }
.form-section {
  border-top: 2px dashed var(--ink);
  margin-top: 28px;
  padding-top: 28px;
}
.form-section:first-child { border: 0; margin: 0; padding: 0; }
.form-section h3 {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section h3 .num {
  background: var(--accent);
  border: 2px solid var(--ink);
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.helper { font-size: 13px; color: var(--ink-soft); margin-top: 4px; }
.size-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.size-grid label {
  text-align: center;
  font-size: 13px;
}
.size-grid input { text-align: center; padding: 10px 4px; }
.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
}
.checkbox-row input { margin-top: 4px; }
.checkbox-row label { text-transform: none; letter-spacing: 0; font-weight: 400; cursor: pointer; }
.submit-row {
  text-align: center;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 2px dashed var(--ink);
}
.btn-submit {
  background: var(--pop);
  color: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 18px 42px;
  font-family: "Anton", sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.15s;
}
.btn-submit:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
}
.btn-submit:active {
  transform: translate(2px, 2px);
  box-shadow: 1px 1px 0 var(--ink);
}

/* ===== PRODUCT DETAIL PAGE ===== */
.product-detail {
  padding: 60px 0;
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.product-gallery {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  padding: 30px;
  position: sticky;
  top: 100px;
}
.product-gallery .main-img {
  background: var(--bg-alt);
  aspect-ratio: 1/1;
  border: 2px solid var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-family: "Anton", sans-serif;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
  padding: 24px;
}
.product-info h1 {
  font-size: 3rem;
  margin-bottom: 12px;
}
.product-info .price-big {
  font-family: "Anton", sans-serif;
  font-size: 3.5rem;
  background: var(--accent);
  display: inline-block;
  padding: 0 16px;
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  margin: 16px 0 24px;
  transform: rotate(-2deg);
}
.product-info .price-big small {
  font-family: "Inter", sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.feature-list {
  list-style: none;
  margin: 24px 0;
}
.feature-list li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  border-bottom: 1px dashed var(--ink);
}
.feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  background: var(--accent);
  border: 2px solid var(--ink);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 20px 0;
  font-size: 14px;
  color: var(--ink-soft);
}
.breadcrumbs a { color: var(--ink-soft); }
.breadcrumbs a:hover { color: var(--ink); }
.breadcrumbs .sep { margin: 0 8px; }

/* ===== INFO PAGES ===== */
.info-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0;
}
.info-content h1 { margin-bottom: 32px; }
.info-content h2 { margin: 40px 0 16px; }
.info-content h3 { margin: 24px 0 12px; font-size: 1.3rem; }
.info-content p, .info-content li { margin-bottom: 12px; }
.info-content ul, .info-content ol { padding-left: 24px; margin-bottom: 16px; }

/* ===== UTIL ===== */
.text-center { text-align: center; }
.mt-lg { margin-top: 40px; }
.mb-lg { margin-bottom: 40px; }
.tape {
  position: relative;
  display: inline-block;
}
.tape::before {
  content: "";
  position: absolute;
  width: 60px;
  height: 22px;
  background: var(--accent);
  opacity: 0.7;
  top: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-3deg);
  border: 1px dashed rgba(0,0,0,0.3);
  z-index: -1;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in {
  animation: fadeUp 0.6s ease-out both;
}
.fade-in:nth-child(2) { animation-delay: 0.08s; }
.fade-in:nth-child(3) { animation-delay: 0.16s; }
.fade-in:nth-child(4) { animation-delay: 0.24s; }

@keyframes wobble {
  0%, 100% { transform: rotate(-3deg); }
  50% { transform: rotate(3deg); }
}
.wobble { animation: wobble 4s ease-in-out infinite; }

/* ===== WIDER FORM CONTAINER ===== */
.container-wide {
  max-width: 1100px;
}
.container-wide .form-card {
  max-width: 100%;
  padding-bottom: 80px;
}

/* ===== ORDER WARNINGS ===== */
.order-warn {
  background: #fff0f0;
  border: 2px solid var(--pop);
  color: var(--pop);
  padding: 12px 16px;
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
}
.order-megafon {
  background: var(--bg-alt);
  border: 2px solid var(--accent);
  padding: 12px 16px;
  margin-top: 10px;
  font-size: 14px;
  font-weight: 600;
}
.order-megafon.megafon-earned {
  background: var(--accent);
  color: var(--ink);
  border-color: var(--ink);
}
.order-summary-placeholder { height: 0; }

/* ===== FLOATING ORDER SUMMARY ===== */
.order-float {
  position: fixed;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1100px;
  background: var(--ink);
  color: var(--bg);
  border: 3px solid var(--accent);
  z-index: 200;
  padding: 16px 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3), var(--shadow);
  display: none;
}
.order-float.visible { display: block; }
.order-float-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.order-float-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}
.order-float-left strong {
  font-family: 'Anton', sans-serif;
  font-size: 1.3rem;
  color: var(--accent);
}
.order-float-warn {
  font-size: 13px;
  color: var(--pop);
  background: rgba(230,57,70,0.15);
  padding: 2px 10px;
}
.order-float-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.order-float-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.order-float-total {
  font-family: 'Anton', sans-serif;
  font-size: 1.5rem;
  color: var(--accent);
}
.order-float-per-item {
  font-size: 12px;
  color: rgba(255,251,242,0.6);
}
.order-count.count-low {
  color: var(--pop) !important;
}

/* ===== SMALLER FONT PICKER (per section) ===== */
.font-picker-sm {
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}
.font-picker-sm .font-preview {
  padding: 6px 4px;
  font-size: 13px;
  min-height: 40px;
  max-height: 40px;
  overflow: hidden;
}

/* ===== NATPIS SECTION GRID (left: controls, right: textarea) ===== */
.natpis-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.natpis-left { display: flex; flex-direction: column; }
.natpis-right { display: flex; flex-direction: column; }
.natpis-tall {
  flex: 1;
  min-height: 180px;
  font-size: 1.6rem;
  line-height: 1.3;
  resize: both;
  overflow: auto;
}

/* ===== UPLOAD AREA ===== */
.upload-area {
  background: var(--bg-alt);
  border: 2px dashed var(--ink);
  padding: 20px;
  text-align: center;
}

/* ===== SLEEVE OPTIONS ===== */
.sleeve-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 2px solid var(--ink);
  background: var(--bg);
  cursor: pointer;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  transition: background 0.15s;
}
.sleeve-option:has(input:checked) {
  background: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* ===== GIFT OPTIONS ===== */
.gift-options {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.gift-option {
  cursor: pointer;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
  display: flex;
}
.gift-option input { display: none; }
.gift-card {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border: 2px solid var(--ink);
  background: var(--bg);
  transition: background 0.15s, box-shadow 0.15s;
  flex: 1;
}
.gift-card strong { font-size: 1.05rem; }
.gift-card span { font-size: 0.85rem; color: var(--ink-soft); }
.gift-option input:checked + .gift-card {
  background: var(--accent);
  box-shadow: var(--shadow-sm);
}

/* ===== COMPACT NICK FIELDS (4 col) ===== */
.nick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}
.nick-field input {
  padding: 6px 8px;
  font-size: 13px;
}
.nick-size-heading {
  margin: 10px 0 6px;
  font-size: 12px;
  padding: 4px 8px;
}
.nick-size-heading:first-child { margin-top: 0; }

/* ===== SOCIAL BADGES ===== */
.social-badges {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* ===== BLOG ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--paper);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s;
  text-decoration: none;
  color: var(--ink);
}
.blog-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 9px 9px 0 var(--ink);
  text-decoration: none;
}
.blog-card-thumb {
  background: var(--bg-alt);
  border-bottom: 3px solid var(--ink);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Anton", sans-serif;
  font-size: 2.4rem;
  text-align: center;
  padding: 20px;
  text-transform: uppercase;
  line-height: 1.15;
}
.blog-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-bottom: 12px;
  font-size: 13px;
  color: var(--ink-soft);
  flex-wrap: wrap;
}
.blog-cat {
  background: var(--accent);
  border: 2px solid var(--ink);
  padding: 2px 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--ink);
}
.blog-card h3 {
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.blog-card p {
  font-size: 0.95rem;
  color: var(--ink-soft);
  margin: 0 0 16px;
  flex: 1;
}
.blog-article {
  max-width: 760px;
  margin: 0 auto;
  padding: 40px 0 60px;
}
.blog-article-header {
  margin-bottom: 36px;
  border-bottom: 3px solid var(--ink);
  padding-bottom: 24px;
}
.blog-article-header h1 { margin-bottom: 16px; }
.blog-intro-lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 600;
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 32px;
  line-height: 1.65;
}
.blog-article h2 {
  font-size: clamp(1.4rem, 2.8vw, 2rem);
  margin: 40px 0 14px;
}
.blog-article h3 {
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  margin: 28px 0 10px;
}
.blog-article p {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 1.1em;
  line-height: 1.7;
}
.blog-article ul, .blog-article ol {
  padding-left: 24px;
  margin-bottom: 1.2em;
}
.blog-article li {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 6px;
  line-height: 1.65;
}
.blog-article strong { color: var(--ink); }
.blog-article a.blog-link { font-weight: 700; color: var(--ink); text-decoration: none; }
.blog-article a.blog-link:hover { text-decoration: underline; }
.blog-highlight {
  background: var(--bg-alt);
  border: 3px solid var(--ink);
  box-shadow: var(--shadow-sm);
  padding: 22px 26px;
  margin: 28px 0;
}
.blog-highlight p {
  color: var(--ink) !important;
  font-weight: 600;
  margin: 0 !important;
}
.blog-cta-box {
  background: var(--ink);
  color: var(--bg);
  border: 3px solid var(--accent);
  box-shadow: var(--shadow);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.blog-cta-box h3 {
  color: var(--accent);
  margin-bottom: 12px;
}
.blog-cta-box p {
  color: rgba(255,251,242,0.85) !important;
  margin-bottom: 20px;
}
.blog-related {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 3px solid var(--ink);
}
.blog-related h2 { margin-bottom: 24px; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .social-badges { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-art { order: -1; min-height: 320px; }
  .hero-art .shirt-mock { max-width: 320px; }
  .hero-art .shirt-mock-small { width: 160px; }
  .hero-badge-row { flex-direction: column !important; align-items: center !important; }
  .hero-badge-row .megafon-badge { position: relative; top: auto; left: auto; font-size: 0.9rem !important; padding: 8px 14px !important; }
  .perks-grid { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .products-grid-4col { grid-template-columns: 1fr 1fr; }
  .product-featured-side-body { padding: 18px; }
  .product-featured-side-body h3 { font-size: 1.3rem; }
  .steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 30px; }
  .product-gallery { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .info-content { padding-left: 20px; padding-right: 20px; }
  .blog-grid { grid-template-columns: 1fr; }
  .social-badges { grid-template-columns: 1fr 1fr; gap: 10px; }
  .social-badges a { font-size: 0.95rem !important; padding: 14px 10px !important; gap: 8px !important; }
  .social-badges a svg { width: 22px !important; height: 22px !important; }
  body { font-size: 16px; }
  .topbar-inner { flex-direction: column; gap: 6px; }
  .topbar-social { justify-content: center; }
  .topbar-info { display: flex; flex-direction: column; align-items: center; gap: 3px; }
  .topbar-sep-d { display: none; }
  .font-picker { grid-template-columns: repeat(2, 1fr); }
  .font-picker-sm { grid-template-columns: repeat(3, 1fr); }
  .nick-grid { grid-template-columns: repeat(2, 1fr); }
  .gift-options { grid-template-columns: 1fr; }
  .sleeve-option { font-size: 13px; padding: 6px 10px; }
  .natpis-section-grid { grid-template-columns: 1fr; gap: 16px; }
  .natpis-tall { min-height: 100px; }
  [style*="white-space: nowrap"] { white-space: normal !important; }
  .nav-links {
    position: fixed;
    top: 70px; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 3px solid var(--ink);
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px;
    gap: 12px;
    transform: translateY(-150%);
    transition: transform 0.3s;
  }
  .nav-links.open { transform: translateY(0); }
  .menu-toggle { display: block; }
  .product-featured-side { flex-direction: column !important; box-shadow: 5px 5px 0 var(--accent); }
  .product-featured-side .product-featured-video { border-right: none; border-top: 3px solid var(--accent); order: 2; }
  .product-featured-side .product-featured-video::before { padding-top: 56.25%; }
  .product-featured-side-body { order: 1; }
  .product-featured-side-body { padding: 16px; }
  .product-featured-side-body h3 { font-size: 1.2rem; }
  .product-featured-side-body p { display: none; }
  .products-grid-4col { grid-template-columns: 1fr !important; gap: 10px; }
  .products-grid { grid-template-columns: 1fr; gap: 10px; }
  .product-card { flex-direction: row; }
  .product-card-img { width: 38%; flex-shrink: 0; aspect-ratio: auto; border-bottom: none; border-right: 3px solid var(--ink); }
  .product-card-body { padding: 12px 14px; justify-content: center; }
  .product-card h3 { font-size: 1rem; margin-bottom: 4px; }
  .product-card .desc { display: none; }
  .product-card .price { font-size: 1.2rem; }
  .product-card .price-row { margin-bottom: 8px; }
  .product-card .btn-secondary { font-size: 0.8rem; padding: 7px 10px; align-self: flex-start; }
  .price-row--stacked { flex-direction: column; align-items: flex-start; gap: 6px; }
  .footer-partners-bar { padding-left: 24px !important; padding-right: 24px !important; }
  .footer-copy { text-align: left !important; }
  .price-row--stacked .tag { font-size: 0.65rem; padding: 2px 6px; letter-spacing: 0; }
  .perks-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid--index { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .cta-btn-row { flex-wrap: nowrap !important; gap: 10px !important; }
  .cta-btn-row .btn-cta { font-size: 15px !important; padding: 13px 18px !important; }
  .footer-grid--index > div:first-child { grid-column: 1 / -1; }
  .footer-grid--index h4 { font-size: 0.85rem; margin-bottom: 8px; }
  .footer-grid--index a { font-size: 0.78rem; padding: 2px 0; }
  .footer-grid--index p { font-size: 0.78rem; }
  .size-grid { grid-template-columns: repeat(3, 1fr); }
  .form-card { padding: 22px; }
  section { padding: 50px 0; }
  .hero { padding: 40px 0 60px; }
}
