/* ============================================
   OT SHOP — DESIGN SYSTEM
   Performance meets Tech
   ============================================ */

:root {
  --bg-base: #0a0a0c;
  --bg-elev: #131316;
  --bg-elev-2: #1c1c20;
  --bg-elev-3: #25252b;
  --ink: #f5f5f7;
  --ink-muted: #a1a1a9;
  --ink-faint: #56565c;
  --gold: #d4a84a;
  --gold-bright: #f0c75e;
  --gold-deep: #9a7a30;
  --red: #e63027;
  --red-deep: #b81d15;
  --red-glow: rgba(230, 48, 39, 0.4);
  --green: #38d97c;
  --line: rgba(255, 255, 255, 0.06);
  --line-strong: rgba(255, 255, 255, 0.14);
  --container: 1410px;
  --radius: 0;
}

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

html { scroll-behavior: smooth; scrollbar-gutter: stable; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--bg-base);
  color: var(--ink);
  line-height: 1.5;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; color: inherit; }
input, textarea, select { font-family: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

::selection { background: var(--gold); color: var(--bg-base); }

/* ============================================
   TOPBAR
============================================ */
.topbar {
  background: linear-gradient(90deg, var(--bg-elev-2), var(--bg-base), var(--bg-elev-2));
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.topbar-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.topbar-left, .topbar-right {
  display: flex;
  gap: 20px;
  align-items: center;
  color: var(--ink-muted);
  flex-wrap: wrap;
}
.topbar-right a:hover { color: var(--gold-bright); }

.status-live {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
}
.dot-pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
  display: inline-block;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============================================
   HEADER (sticky)
============================================ */
header {
  position: sticky;
  top: 0;
  background: rgba(10, 10, 12, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid var(--line);
  z-index: 100;
  transition: padding 0.3s, background 0.3s;
}
.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}
.logo-mark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}
.logo-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 35% 30%, var(--gold-bright), var(--gold-deep));
  color: #1a1408;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 0.02em;
  box-shadow: 0 0 24px rgba(212,168,74,0.35);
  transition: transform 0.3s;
}
.logo-mark:hover .logo-circle { transform: rotate(-8deg) scale(1.05); }
.logo-text {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--ink);
}
.logo-text small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 10px;
  font-weight: 600;
  color: var(--gold-bright);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-top: 4px;
}

nav ul {
  display: flex;
  gap: 36px;
  justify-content: center;
}
nav a {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--ink);
  text-transform: uppercase;
  position: relative;
  padding: 8px 0;
  transition: color 0.2s;
}
nav a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
  transform: translateX(-50%);
}
nav a:hover { color: var(--gold-bright); }
nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.icon-btn {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.icon-btn:hover {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
  transform: translateY(-2px);
}
.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 20px;
  height: 20px;
  background: var(--red);
  color: white;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 800;
  display: grid;
  place-items: center;
  border: 2px solid var(--bg-base);
  transition: transform 0.3s;
}
.cart-count.bump {
  animation: bump 0.4s;
}
@keyframes bump {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.4); }
}

.mobile-menu-btn { display: none; }

/* ============================================
   HERO
============================================ */
.hero {
  position: relative;
  padding: 80px 24px 0;
  overflow: hidden;
  min-height: 720px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: float 8s ease-in-out infinite;
}
.hero-blob-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
  top: -100px;
  right: -100px;
}
.hero-blob-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--red) 0%, transparent 70%);
  bottom: 100px;
  left: -150px;
  animation-delay: 3s;
  opacity: 0.3;
}
@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(40px, -30px); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  padding-bottom: 100px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 100px;
  color: var(--gold-bright);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 32px;
  background: rgba(212, 168, 74, 0.08);
  animation: fadeUp 0.6s ease-out;
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  display: inline-block;
  box-shadow: 0 0 8px var(--red);
  animation: pulse 1.5s infinite;
}

.hero-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.92;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  animation: fadeUp 0.9s ease-out 0.1s backwards;
}
.word-red {
  color: var(--red);
  font-style: italic;
  position: relative;
  display: inline-block;
}
.word-red::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  animation: drawLine 1s ease-out 1.5s forwards;
}
.word-gold { color: var(--gold-bright); }

@keyframes drawLine {
  to { transform: scaleX(1); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-sub {
  font-size: 17px;
  color: var(--ink-muted);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 36px;
  animation: fadeUp 1s ease-out 0.3s backwards;
}
.hero-ctas {
  display: flex;
  gap: 12px;
  margin-bottom: 48px;
  animation: fadeUp 1.1s ease-out 0.5s backwards;
  flex-wrap: wrap;
}

.btn-primary, .btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.3s;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  border: none;
}
.btn-primary {
  background: var(--red);
  color: white;
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-primary:hover { background: var(--red-deep); box-shadow: 0 8px 32px var(--red-glow); transform: translateY(-2px); }
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary.white { background: white; color: var(--bg-base); }
.btn-primary.white:hover { background: var(--gold-bright); color: var(--bg-base); }
.btn-primary.full { width: 100%; justify-content: center; }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-strong);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.hero-trust {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp 1.2s ease-out 0.7s backwards;
}
.trust-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-muted);
}
.trust-row strong { color: var(--ink); }
.trust-stars { color: var(--gold-bright); letter-spacing: 2px; font-size: 14px; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: var(--line-strong);
}

/* Hero Right - floating cards */
.hero-right {
  position: relative;
  height: 500px;
  animation: fadeUp 1.3s ease-out 0.9s backwards;
}
.hero-card {
  position: absolute;
  width: 200px;
  aspect-ratio: 1;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  color: var(--gold);
  animation: floatCard 6s ease-in-out infinite;
  overflow: hidden;
}
.hero-card svg { width: 60px; height: 60px; position: relative; z-index: 2; }
.hero-card-label {
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  position: relative;
  z-index: 2;
}
.hero-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 50%, rgba(212, 168, 74, 0.15), transparent 70%);
}
.hero-card-1 {
  top: 0;
  right: 40px;
  border-color: var(--gold);
  z-index: 3;
}
.hero-card-2 {
  top: 140px;
  left: 0;
  border-color: var(--red);
  color: var(--red);
  animation-delay: 1s;
  z-index: 2;
}
.hero-card-2 .hero-card-glow { background: radial-gradient(circle at 50% 50%, var(--red-glow), transparent 70%); }
.hero-card-3 {
  bottom: 20px;
  right: 80px;
  animation-delay: 2s;
  z-index: 1;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-16px) rotate(-2deg); }
}

/* Ticker */
.hero-ticker {
  position: relative;
  z-index: 2;
  padding: 18px 0;
  background: var(--bg-elev);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  margin: 0 -24px;
}
.ticker-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}
.ticker-item {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 0.15em;
  color: var(--gold-bright);
}
.ticker-dot { color: var(--red); font-size: 18px; }
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS (general)
============================================ */
.section {
  padding: 120px 24px;
  position: relative;
}
.section-inner {
  max-width: var(--container);
  margin: 0 auto;
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
}
.eyebrow.red-eyebrow { color: var(--red); }
.eyebrow-dot.red { background: var(--gold); box-shadow: 0 0 8px var(--gold); }

.section-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.02em;
  max-width: 100%;
  overflow-wrap: break-word;
  word-break: break-word;
}
.section-title .accent {
  color: var(--red);
  font-style: italic;
}
.section-subtitle-side {
  max-width: 400px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================
   KATEGORIJE - tiles
============================================ */
.cat-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.cat-tile {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 36px;
  text-align: left;
  cursor: pointer;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}
.cat-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(212, 168, 74, 0.06), transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.cat-tile::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s;
}
.cat-tile:hover {
  border-color: var(--gold);
  transform: translateY(-6px);
}
.cat-tile:hover::before { opacity: 1; }
.cat-tile:hover::after { transform: scaleX(1); }
.cat-tile.featured {
  border-color: var(--red);
  background: linear-gradient(135deg, rgba(230, 48, 39, 0.04), var(--bg-elev));
}
.cat-tile.featured::after { transform: scaleX(1); }

.cat-tile-icon {
  width: 64px;
  height: 64px;
  background: rgba(212, 168, 74, 0.1);
  border: 1px solid var(--line-strong);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  transition: all 0.3s;
}
.cat-tile-icon svg { width: 32px; height: 32px; }
.cat-tile:hover .cat-tile-icon {
  background: var(--gold);
  color: var(--bg-base);
  transform: rotate(-6deg) scale(1.1);
}
.cat-tile h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}
.cat-tile p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 20px;
}
.cat-tile-count {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 700;
}

/* ============================================
   DEALS BANNER
============================================ */
.deals-section { padding: 60px 24px; }
.deals-banner {
  background: linear-gradient(135deg, var(--red-deep) 0%, #1a0808 60%, var(--bg-elev) 100%);
  border: 1px solid rgba(230, 48, 39, 0.3);
  padding: 60px;
  position: relative;
  overflow: hidden;
}
.deals-bg-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at top right, black 0%, transparent 70%);
}
.deals-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.deals-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1;
  margin-top: 16px;
  margin-bottom: 16px;
}
.huge-pct {
  color: var(--gold-bright);
  font-size: 1.4em;
  font-style: italic;
  text-shadow: 0 4px 20px rgba(240, 199, 94, 0.5);
}
.deals-sub {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 28px;
  font-size: 16px;
}

.deals-countdown {
  background: rgba(0,0,0,0.4);
  border: 1px solid var(--line-strong);
  padding: 28px;
  backdrop-filter: blur(10px);
}
.countdown-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 16px;
  text-align: center;
}
.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.cd-cell {
  text-align: center;
  background: rgba(255,255,255,0.05);
  padding: 12px 4px;
  border: 1px solid var(--line);
}
.cd-num {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.cd-unit {
  font-size: 9px;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
  margin-top: 6px;
}

/* ============================================
   FILTER PILLS
============================================ */
.filter-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-select-wrap { display: none; }
.pill {
  padding: 10px 18px;
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink-muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
}
.pill:hover { color: var(--ink); border-color: var(--line-strong); }
.pill.active {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-base);
}

/* ============================================
   PRODUCTS GRID
============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.3s;
  overflow: hidden;
  position: relative;
}
.product:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.product-image {
  aspect-ratio: 1;
  background: linear-gradient(135deg, var(--bg-elev-2), var(--bg-base));
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}
.product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(212, 168, 74, 0.1), transparent 60%);
  opacity: 0;
  transition: opacity 0.4s;
}
.product:hover .product-image::before { opacity: 1; }
.product-image svg {
  width: 45%;
  height: 45%;
  color: var(--gold);
  opacity: 0.6;
  transition: transform 0.4s;
}
.product:hover .product-image svg { transform: scale(1.1) rotate(-5deg); color: var(--gold-bright); opacity: 1; }

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  padding: 5px 10px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
}
.product-badge.gold { background: var(--gold); color: var(--bg-base); }
.product-badge.green { background: var(--green); color: var(--bg-base); }

.product-quickview {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: rgba(10, 10, 12, 0.9);
  backdrop-filter: blur(10px);
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  padding: 8px 16px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  opacity: 0;
  transition: all 0.3s;
}
.product:hover .product-quickview { opacity: 1; transform: translateX(-50%) translateY(0); }

.product-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-cat {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
  min-height: 40px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 11px;
  color: var(--ink-muted);
}
.product-rating .stars { color: var(--gold-bright); letter-spacing: 1px; }

.product-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: auto;
  gap: 12px;
}
.product-prices { display: flex; flex-direction: column; gap: 2px; }
.product-price-old {
  font-size: 12px;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.product-price {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1;
}
.product-price .currency {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 700;
  margin-left: 2px;
}
.product-add {
  width: 38px;
  height: 38px;
  background: var(--red);
  color: white;
  border: none;
  display: grid;
  place-items: center;
  transition: all 0.2s;
  cursor: pointer;
  flex-shrink: 0;
}
.product-add:hover {
  background: var(--red-deep);
  transform: scale(1.1) rotate(90deg);
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 60px;
}

/* ============================================
   WHY US
============================================ */
.why-section { background: var(--bg-elev); }
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.why-card {
  background: var(--bg-base);
  border: 1px solid var(--line);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s;
}
.why-card:hover { transform: translateY(-6px); }
.why-card.red { background: linear-gradient(180deg, rgba(230, 48, 39, 0.08), var(--bg-base)); }
.why-num {
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  font-weight: 800;
  position: absolute;
  top: -10px;
  right: 16px;
  color: var(--ink-faint);
  opacity: 0.15;
  line-height: 1;
}
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 74, 0.1);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.why-card.red .why-icon { background: rgba(230, 48, 39, 0.12); color: var(--red); }
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.why-card p {
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}

/* ============================================
   REVIEWS
============================================ */
.reviews-section { position: relative; }
.rating-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}
.big-rating {
  font-family: 'Syne', sans-serif;
  font-size: 64px;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}
.rating-stars { color: var(--gold-bright); letter-spacing: 3px; font-size: 18px; }
.rating-meta { color: var(--ink-muted); font-size: 13px; margin-top: 4px; }
.rating-meta strong { color: var(--ink); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s;
  position: relative;
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 0;
  right: 20px;
  font-family: 'Syne', sans-serif;
  font-size: 80px;
  color: var(--gold);
  opacity: 0.2;
  line-height: 1;
}
.review-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
}
.review-stars {
  color: var(--gold-bright);
  letter-spacing: 2px;
  font-size: 14px;
}
.review-text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-muted);
  flex: 1;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  color: var(--bg-base);
  display: grid;
  place-items: center;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 16px;
}
.review-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.review-author small {
  font-size: 11px;
  color: var(--ink-faint);
  letter-spacing: 0.05em;
}

/* ============================================
   ABOUT
============================================ */
.about-section { background: var(--bg-elev); position: relative; }
.about-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-lead {
  font-size: 19px;
  color: var(--ink);
  margin-top: 24px;
  margin-bottom: 20px;
  line-height: 1.5;
}
.about-lead strong { color: var(--gold-bright); }
.about-text {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 36px;
}
.about-text strong { color: var(--ink); }

.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(72px, 1fr));
  gap: 20px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.about-stat { text-align: center; min-width: 0; }
.about-stat strong { display: block; font-family: 'Syne', sans-serif; font-size: 30px; font-weight: 800; color: var(--gold-bright); line-height: 1; }
.about-stat span { display: block; font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-muted); margin-top: 8px; }
.stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: var(--gold-bright);
  line-height: 1;
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
  margin-top: 8px;
}

.about-right { display: flex; flex-direction: column; gap: 32px; }
.about-logo-frame {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 40px;
}
.about-logo-frame img {
  width: 100%;
  max-width: 320px;
  z-index: 2;
  position: relative;
  filter: drop-shadow(0 20px 60px rgba(212, 168, 74, 0.3));
  animation: floatLogo 6s ease-in-out infinite;
}
@keyframes floatLogo {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-12px) rotate(2deg); }
}
.about-logo-glow {
  position: absolute;
  width: 80%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(212, 168, 74, 0.3), transparent 70%);
  filter: blur(40px);
  z-index: 1;
}

.about-quote {
  position: relative;
  padding: 24px 28px;
  background: var(--bg-base);
  border-left: 3px solid var(--gold);
  font-size: 14px;
  color: var(--ink-muted);
  line-height: 1.6;
}
.about-quote svg {
  color: var(--gold);
  position: absolute;
  top: 12px;
  left: 12px;
}
.about-quote p { padding-left: 28px; }
.about-quote em { color: var(--gold-bright); font-style: italic; }

/* ============================================
   FAQ
============================================ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: var(--gold); }
.faq-item summary {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  list-style: none;
  font-family: 'Syne', sans-serif;
  font-size: 18px;
  font-weight: 700;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { color: var(--gold-bright); }
.faq-item[open] summary { color: var(--gold-bright); }
.faq-icon {
  color: var(--gold-bright);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-icon { transform: rotate(180deg); }
.faq-body {
  padding: 0 0 24px;
  color: var(--ink-muted);
  font-size: 15px;
  line-height: 1.7;
  max-width: 90%;
}
.faq-body a { color: var(--gold-bright); }

/* ============================================
   CONTACT
============================================ */
.contact-section { background: var(--bg-elev); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
}
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.contact-row {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-icon {
  width: 48px;
  height: 48px;
  background: rgba(212, 168, 74, 0.1);
  color: var(--gold-bright);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.contact-label {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 4px;
}
.contact-value {
  color: var(--ink);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.4;
}
.contact-value a { color: var(--ink); transition: color 0.2s; }
.contact-value a:hover { color: var(--gold-bright); }

.contact-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.social-btn {
  width: 44px;
  height: 44px;
  background: var(--bg-base);
  border: 1px solid var(--line-strong);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.social-btn:hover {
  background: var(--gold);
  color: var(--bg-base);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.contact-form {
  background: var(--bg-base);
  border: 1px solid var(--line);
  padding: 40px;
}
.form-title {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  margin-bottom: 8px;
}
.form-sub {
  color: var(--ink-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form-field label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-muted);
}
.form-field input,
.form-field textarea,
.form-field select {
  background: var(--bg-elev);
  border: 1px solid var(--line);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 14px;
  transition: all 0.2s;
}
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--bg-elev-2);
}
.form-field textarea { resize: vertical; min-height: 100px; }

.form-alt {
  margin-top: 16px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-faint);
}
.form-alt a { color: var(--gold-bright); }

/* ============================================
   FOOTER
============================================ */
footer {
  background: var(--bg-base);
  border-top: 1px solid var(--line);
  padding: 80px 24px 32px;
}
.footer-grid {
  max-width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand p {
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.6;
  margin: 20px 0;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border: 1px solid var(--line-strong);
  color: var(--ink-muted);
  display: grid;
  place-items: center;
  transition: all 0.2s;
}
.footer-socials a:hover {
  border-color: var(--gold);
  color: var(--gold-bright);
}
.footer-col h4 {
  font-family: 'Syne', sans-serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col li a {
  font-size: 13px;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.footer-col li a:hover { color: var(--ink); }
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-contact .row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--ink-muted);
  line-height: 1.4;
}
.footer-contact svg {
  color: var(--gold-bright);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact a { color: var(--ink-muted); }
.footer-contact a:hover { color: var(--gold-bright); }
.footer-bottom {
  max-width: var(--container);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-faint);
}

/* ============================================
   CART SIDEBAR
============================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cart-overlay.active { opacity: 1; pointer-events: auto; }
.cart-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 440px;
  height: 100vh;
  max-width: 100vw;
  background: var(--bg-elev);
  border-left: 1px solid var(--line-strong);
  z-index: 201;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
.cart-sidebar.active { transform: translateX(0); }

.cart-head {
  padding: 24px 28px;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-head h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cart-count-pill {
  background: var(--gold);
  color: var(--bg-base);
  font-size: 11px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  font-family: 'Manrope', sans-serif;
}
.cart-close {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  color: var(--ink-muted);
  transition: color 0.2s;
}
.cart-close:hover { color: var(--gold-bright); }

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 28px;
}
.cart-empty {
  padding: 80px 24px;
  text-align: center;
  color: var(--ink-muted);
}
.cart-empty svg {
  width: 64px;
  height: 64px;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.cart-empty h4 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}
.cart-empty p { font-size: 14px; line-height: 1.6; }

.cart-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 14px;
  align-items: center;
}
.cart-item-img {
  width: 70px;
  height: 70px;
  background: var(--bg-base);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
}
.cart-item-img svg {
  width: 36px;
  height: 36px;
  color: var(--gold);
  opacity: 0.6;
}
.cart-item-info h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  line-height: 1.3;
  margin-bottom: 6px;
}
.cart-item-cat {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}
.cart-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
}
.cart-qty button {
  width: 26px;
  height: 28px;
  color: var(--ink);
  font-size: 14px;
  transition: color 0.2s;
}
.cart-qty button:hover { color: var(--gold-bright); }
.cart-qty span {
  width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
}
.cart-item-price {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--gold-bright);
}
.cart-item-remove {
  background: transparent;
  color: var(--ink-faint);
  padding: 4px;
  transition: color 0.2s;
}
.cart-item-remove:hover { color: var(--red); }

.cart-foot {
  border-top: 1px solid var(--line);
  padding: 24px 28px;
  background: var(--bg-elev-2);
}
.cart-totals { margin-bottom: 16px; }
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.cart-total-row.grand {
  margin-top: 8px;
  padding-top: 12px;
  border-top: 1px solid var(--line-strong);
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
}
.cart-total-row.grand span:last-child {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  color: var(--gold-bright);
}

/* ============================================
   MODAL (product quickview + checkout)
============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: auto; }
.modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: min(900px, 92vw);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-elev);
  border: 1px solid var(--line-strong);
  z-index: 301;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.modal.active {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
  pointer-events: auto;
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  color: var(--ink);
  display: grid;
  place-items: center;
  z-index: 5;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--red); border-color: var(--red); }

.modal-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.modal-product-image {
  background: linear-gradient(135deg, var(--bg-elev-2), var(--bg-base));
  min-height: 400px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}
.modal-product-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(212, 168, 74, 0.15), transparent 70%);
}
.modal-product-image svg {
  width: 60%;
  height: 60%;
  color: var(--gold);
  position: relative;
  z-index: 2;
}
.modal-product-image .badge {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 6px 14px;
  background: var(--red);
  color: white;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 3;
}

.modal-product-info {
  padding: 40px;
  display: flex;
  flex-direction: column;
}
.modal-product-cat {
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 12px;
}
.modal-product-title {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
}
.modal-product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.modal-product-rating .stars { color: var(--gold-bright); letter-spacing: 2px; }
.modal-product-rating .meta { font-size: 12px; color: var(--ink-muted); }

.modal-product-prices {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 20px;
}
.modal-product-prices .price {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  font-weight: 800;
}
.modal-product-prices .price .currency {
  color: var(--gold-bright);
  font-size: 18px;
}
.modal-product-prices .old {
  font-size: 18px;
  color: var(--ink-faint);
  text-decoration: line-through;
}
.modal-product-prices .save {
  font-size: 11px;
  font-weight: 800;
  color: var(--red);
  background: rgba(230, 48, 39, 0.15);
  padding: 4px 10px;
  letter-spacing: 0.1em;
  margin-left: auto;
}

.modal-product-desc {
  color: var(--ink-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.modal-product-features {
  margin-bottom: 28px;
}
.modal-product-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.modal-product-features svg {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 2px;
}

.modal-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  margin-top: auto;
}
.modal-qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--line-strong);
}
.modal-qty button {
  width: 44px;
  height: 52px;
  font-size: 16px;
}
.modal-qty button:hover { color: var(--gold-bright); }
.modal-qty span {
  width: 44px;
  text-align: center;
  font-weight: 700;
  border-left: 1px solid var(--line);
  border-right: 1px solid var(--line);
  line-height: 52px;
}

/* Checkout modal */
.checkout-modal {
  width: min(700px, 92vw);
}
.checkout-modal .modal-content { display: block; padding: 40px; }
.checkout-header {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.checkout-header h2 {
  font-family: 'Syne', sans-serif;
  font-size: 36px;
  margin-top: 12px;
}
.form-section-title {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  font-weight: 700;
  margin: 28px 0 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.form-section-title:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.pay-options { display: flex; flex-direction: column; gap: 10px; }
.pay-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  padding: 16px;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: all 0.2s;
  align-items: center;
}
.pay-option:hover { border-color: var(--gold); }
.pay-option.selected { border-color: var(--gold); background: rgba(212, 168, 74, 0.04); }
.pay-option input { display: none; }
.pay-radio {
  width: 18px;
  height: 18px;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.pay-option.selected .pay-radio { border-color: var(--gold); }
.pay-option.selected .pay-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}
.pay-info strong {
  font-family: 'Syne', sans-serif;
  display: block;
  font-size: 14px;
}
.pay-info small {
  color: var(--ink-muted);
  font-size: 12px;
}

.order-summary-mini {
  background: var(--bg-elev-2);
  border: 1px solid var(--line);
  padding: 20px;
  margin: 24px 0;
}
.order-summary-mini h4 {
  font-family: 'Syne', sans-serif;
  font-size: 14px;
  margin-bottom: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-bright);
}
.osm-row {
  display: flex;
  justify-content: space-between;
  padding: 4px 0;
  font-size: 13px;
  color: var(--ink-muted);
}
.osm-row.total {
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  font-size: 16px;
  color: var(--ink);
  font-weight: 700;
}
.osm-row.total span:last-child { color: var(--gold-bright); font-family: 'Syne', sans-serif; }

.terms-check {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 12px;
  color: var(--ink-muted);
  line-height: 1.5;
  margin-bottom: 20px;
  cursor: pointer;
}
.terms-check input { accent-color: var(--gold); margin-top: 2px; }
.terms-check a { color: var(--gold-bright); }

/* Success modal */
.success-modal { width: min(480px, 92vw); }
.success-modal .modal-content {
  display: block;
  padding: 60px 40px;
  text-align: center;
}
.success-icon {
  width: 88px;
  height: 88px;
  background: rgba(56, 217, 124, 0.12);
  color: var(--green);
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  animation: successPop 0.5s ease-out;
}
@keyframes successPop {
  0% { transform: scale(0); }
  60% { transform: scale(1.15); }
  100% { transform: scale(1); }
}
.success-title {
  font-family: 'Syne', sans-serif;
  font-size: 32px;
  margin-bottom: 16px;
}
.success-text {
  color: var(--ink-muted);
  line-height: 1.6;
  margin-bottom: 28px;
}

/* ============================================
   FLOATING VIBER
============================================ */
.floating-viber {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: #7360f2;
  color: white;
  display: grid;
  place-items: center;
  z-index: 50;
  box-shadow: 0 8px 32px rgba(115, 96, 242, 0.5);
  transition: all 0.3s;
  animation: floatViber 3s ease-in-out infinite;
}
.floating-viber:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 40px rgba(115, 96, 242, 0.7);
}
@keyframes floatViber {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.viber-tooltip {
  position: absolute;
  right: 75px;
  background: var(--bg-base);
  color: var(--ink);
  padding: 8px 14px;
  font-size: 12px;
  white-space: nowrap;
  border: 1px solid var(--line-strong);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
}
.floating-viber:hover .viber-tooltip { opacity: 1; }

/* ============================================
   TOAST notification
============================================ */
.toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  background: var(--bg-elev);
  border: 1px solid var(--green);
  color: var(--ink);
  padding: 14px 24px;
  z-index: 400;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}
.toast svg { color: var(--green); }
.toast.show {
  transform: translateX(-50%) translateY(0);
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1100px) {
  .hero-content { grid-template-columns: 1fr; gap: 40px; padding-bottom: 60px; }
  .hero-right { display: none; }
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .deals-content { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .modal-content { grid-template-columns: 1fr; }
  .modal-product-image { min-height: 300px; }
  /* na mobilnom: sakrij desktop nav, koristi zaseban drawer van header-a */
  header nav { display: none; }
  .mobile-drawer {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(84vw, 360px); height: 100%;
    background: linear-gradient(165deg, #17171c 0%, #0e0e11 100%);
    border-left: 1px solid var(--line-strong);
    box-shadow: -30px 0 70px rgba(0,0,0,0.55);
    transform: translateX(105%);
    transition: transform .55s cubic-bezier(.66,0,.2,1);
    z-index: 90; display: block;
    padding: 104px 26px 40px; overflow-y: auto;
  }
  body.menu-open .mobile-drawer { transform: translateX(0); }
  .mobile-drawer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; align-items: stretch; gap: 6px; }
  .mobile-drawer ul li {
    opacity: 0; transform: translateX(28px);
    transition: opacity .5s ease, transform .5s cubic-bezier(.66,0,.2,1);
  }
  body.menu-open .mobile-drawer ul li { opacity: 1; transform: translateX(0); }
  body.menu-open .mobile-drawer ul li:nth-child(1) { transition-delay: .10s; }
  body.menu-open .mobile-drawer ul li:nth-child(2) { transition-delay: .16s; }
  body.menu-open .mobile-drawer ul li:nth-child(3) { transition-delay: .22s; }
  body.menu-open .mobile-drawer ul li:nth-child(4) { transition-delay: .28s; }
  body.menu-open .mobile-drawer ul li:nth-child(5) { transition-delay: .34s; }
  body.menu-open .mobile-drawer ul li:nth-child(6) { transition-delay: .40s; }
  .mobile-drawer ul li a {
    display: block; padding: 15px 16px; border-radius: 13px;
    font-size: 18px; font-weight: 600; color: var(--ink); text-decoration: none;
    border: 1px solid transparent; position: relative;
    transition: background .25s, border-color .25s, color .25s, padding-left .25s;
  }
  .mobile-drawer ul li a::before {
    content: ''; position: absolute; left: 6px; top: 50%; transform: translateY(-50%);
    width: 3px; height: 0; background: var(--gold-bright); border-radius: 3px;
    transition: height .25s ease;
  }
  .mobile-drawer ul li a:hover, .mobile-drawer ul li a:focus, .mobile-drawer ul li a.active {
    background: rgba(212,168,74,0.08); border-color: rgba(212,168,74,0.22);
    color: var(--gold-bright); padding-left: 24px;
  }
  .mobile-drawer ul li a:hover::before, .mobile-drawer ul li a.active::before { height: 56%; }
  .mobile-menu-btn { display: grid; place-items: center; width: 44px; height: 44px; background: var(--bg-elev); border: 1px solid var(--line); color: var(--ink); border-radius: 50%; }
}

@media (max-width: 700px) {
  .topbar-inner { padding: 8px 16px; font-size: 11px; }
  .hide-mobile { display: none; }
  .header-inner { padding: 14px 16px; gap: 16px; }
  .logo-text { font-size: 18px; }
  .logo-text small { font-size: 9px; }
  .logo-circle { width: 44px; height: 44px; }
  .hero { padding: 60px 16px 0; min-height: auto; }
  .hero-title { font-size: clamp(30px, 8.2vw, 48px); overflow-wrap: break-word; word-break: break-word; }
  .hero-left { min-width: 0; max-width: 100%; }
  .word-red, .word-gold { overflow-wrap: break-word; }
  .hero-sub { font-size: 15px; }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn-primary, .hero-ctas .btn-ghost { flex: 1; justify-content: center; padding: 14px 18px; font-size: 12px; }
  .hero-trust { gap: 16px; }
  .trust-divider { display: none; }
  .section { padding: 80px 16px; }
  .section-title { font-size: clamp(24px, 6.8vw, 40px); letter-spacing: -0.01em; }
  .section-head { margin-bottom: 40px; flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-head > div { min-width: 0; max-width: 100%; }
  .filter-pills { display: none; }
  .filter-select-wrap { display: block; width: 100%; }
  .filter-select-wrap .cs { display: block; width: 100%; }
  .about-logo-frame { padding: 12px; max-width: 260px; margin: 0 auto; }
  .about-quote p { padding-left: 24px; }
  .stat-num { font-size: 28px; }
  .cat-tiles { grid-template-columns: 1fr; }
  .cat-tile { padding: 28px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-body { padding: 14px; }
  .product-name { font-size: 14px; min-height: 36px; }
  .product-price { font-size: 18px; }
  .product-add { width: 32px; height: 32px; }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .deals-section { padding: 40px 16px; }
  .deals-banner { padding: 40px 24px; }
  .countdown-grid { gap: 6px; }
  .cd-num { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .modal-product-info { padding: 28px 24px; }
  .modal-product-title { font-size: 22px; }
  .checkout-modal .modal-content { padding: 28px 20px; }
  .contact-form { padding: 28px 24px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .cart-sidebar { width: 100vw; }
  .cart-head, .cart-body, .cart-foot { padding-left: 20px; padding-right: 20px; }
  .about-stats { grid-template-columns: repeat(2, 1fr); }
  .rating-summary { gap: 12px; }
  .big-rating { font-size: 48px; }
  .floating-viber { bottom: 20px; right: 20px; width: 52px; height: 52px; }
}

/* ============================================
   PREMIUM POLISH
   Scrollbars, scroll-reveals, parallax, micro-FX
============================================ */

/* ─── Custom scrollbar (Webkit) ─────────────── */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-base);
  border-left: 1px solid var(--line);
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-deep) 0%, var(--gold) 50%, var(--gold-deep) 100%);
  border: 2px solid var(--bg-base);
  border-radius: 100px;
  transition: background 0.3s;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, var(--gold), var(--gold-bright));
  box-shadow: inset 0 0 8px rgba(240, 199, 94, 0.4);
}
::-webkit-scrollbar-corner { background: var(--bg-base); }

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) var(--bg-base);
}

/* Scrollbar inside modals + cart - bg matches container */
.cart-body::-webkit-scrollbar-track,
.modal::-webkit-scrollbar-track {
  background: var(--bg-elev);
  border-left: 1px solid var(--line);
}
.cart-body::-webkit-scrollbar-thumb,
.modal::-webkit-scrollbar-thumb {
  border-color: var(--bg-elev);
}

/* ─── Scroll progress bar ──────────────────── */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  width: 0%;
  background: linear-gradient(90deg,
    var(--gold) 0%,
    var(--gold-bright) 50%,
    var(--red) 100%);
  z-index: 999;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(212, 168, 74, 0.5);
  transition: width 0.1s ease-out;
}

/* ─── Scroll-triggered reveal ─────────────── */
.reveal {
  opacity: 0;
}
.reveal.visible {
  animation: revealIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s) backwards;
  opacity: 1;
}
@keyframes revealIn {
  from {
    opacity: 0;
    transform: translateY(48px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Side-slide variant for certain elements */
.reveal-x {
  opacity: 0;
}
.reveal-x.visible {
  animation: revealInX 0.9s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0s) backwards;
  opacity: 1;
}
@keyframes revealInX {
  from {
    opacity: 0;
    transform: translateX(-48px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ─── Product card stagger reveal ─────────── */
.product.staggered-in {
  animation: productReveal 0.6s cubic-bezier(0.16, 1, 0.3, 1) var(--product-delay, 0s) backwards;
}
@keyframes productReveal {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ─── Cart item stagger reveal ────────────── */
.cart-sidebar.opening .cart-item {
  animation: cartItemIn 0.45s cubic-bezier(0.16, 1, 0.3, 1) var(--item-delay, 0s) backwards;
}
@keyframes cartItemIn {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ─── Sticky header morph on scroll ───────── */
header {
  transition: background 0.4s ease, border-bottom-color 0.4s ease;
}
header .header-inner {
  transition: padding 0.4s ease;
}
header .logo-circle {
  transition: width 0.4s ease, height 0.4s ease, transform 0.3s;
}
header.scrolled {
  background: rgba(8, 8, 10, 0.96);
  border-bottom-color: rgba(212, 168, 74, 0.15);
  box-shadow: 0 4px 32px rgba(0, 0, 0, 0.4);
}
header.scrolled .header-inner {
  padding-top: 10px;
  padding-bottom: 10px;
}
header.scrolled .logo-circle {
  width: 44px;
  height: 44px;
}

/* ─── Enhanced modal entrance ─────────────── */
.modal {
  transform: translate(-50%, -42%) scale(0.94);
  transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.4s ease-out;
}
.modal.active {
  transform: translate(-50%, -50%) scale(1);
}

/* Modal overlay sharper transition */
.modal-overlay {
  transition: opacity 0.4s ease-out;
}

/* ─── Counter glow on count complete ──────── */
.stat-num.counting,
.big-rating.counting {
  text-shadow: 0 0 28px rgba(240, 199, 94, 0.4);
  transition: text-shadow 0.4s;
}

/* ─── Subtle filter pill enhancement ──────── */
.filter-pills .pill {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.filter-pills .pill.active {
  box-shadow: 0 4px 20px rgba(212, 168, 74, 0.35);
  transform: translateY(-1px);
}

/* ─── Subtle category tile reveal ridge ───── */
.cat-tile {
  transform: translateY(0);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.3s;
}

/* ─── Smooth load-more entrance ───────────── */
.load-more-wrap {
  animation: revealIn 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s backwards;
}

/* ─── Hero parallax: prepare for transforms ─ */
.hero-bg {
  will-change: transform;
  transition: none;
}

/* ─── Premium countdown number flash ──────── */
.cd-num {
  transition: color 0.3s, transform 0.2s;
  display: inline-block;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum' 1;
}
.cd-cell { min-width: 0; }
.deals-countdown { min-width: 0; }
.countdown-grid { min-width: 0; }
.cd-num.tick {
  animation: cdTick 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes cdTick {
  0% { transform: translateY(0); opacity: 1; }
  40% { transform: translateY(-8px); opacity: 0.3; }
  60% { transform: translateY(6px); opacity: 0.3; }
  100% { transform: translateY(0); opacity: 1; }
}

/* ─── CTA button enhanced shimmer ─────────── */
.btn-primary {
  will-change: transform;
}
.btn-primary:active {
  transform: translateY(0) scale(0.98);
  transition: transform 0.1s;
}

/* ─── Toast smoother entrance ─────────────── */
.toast {
  transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1),
              opacity 0.3s;
}

/* ─── Focus states (accessibility + premium) ─ */
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}
.btn-primary:focus-visible,
.btn-ghost:focus-visible {
  outline-offset: 4px;
}

/* ─── Selection ribbon for FAQ ─────────────── */
.faq-item summary {
  position: relative;
  transition: padding-left 0.3s;
}
.faq-item[open] summary {
  padding-left: 16px;
}
.faq-item summary::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  width: 3px;
  height: 0;
  background: var(--gold);
  transform: translateY(-50%);
  transition: height 0.3s;
}
.faq-item[open] summary::before {
  height: 60%;
}

/* ─── Product image subtle pan on hover ───── */
.product:hover .product-image svg {
  filter: drop-shadow(0 8px 24px rgba(212, 168, 74, 0.3));
}

/* ─── Reduced motion respect ──────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-x, .product.staggered-in {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
  }
  .hero-blob, .floating-viber, .hero-card {
    animation: none !important;
  }
}

/* ============================================
   COOKIE CONSENT BANNER
============================================ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  right: 24px;
  max-width: 560px;
  margin: 0 auto;
  background: var(--bg-elev);
  border: 1px solid var(--gold);
  padding: 24px 28px;
  z-index: 500;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 40px rgba(212,168,74,0.1);
  transform: translateY(120%);
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 {
  font-family: 'Syne', sans-serif;
  font-size: 16px;
  margin-bottom: 8px;
  color: var(--gold-bright);
  letter-spacing: 0.05em;
}
.cookie-banner p {
  font-size: 13px;
  color: var(--ink-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}
.cookie-banner a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.cookie-actions button {
  padding: 10px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--line-strong);
  background: transparent;
  color: var(--ink);
  transition: all 0.2s;
}
.cookie-actions button:hover { border-color: var(--gold); color: var(--gold-bright); }
.cookie-actions button.primary {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--bg-base);
}
.cookie-actions button.primary:hover { background: var(--gold-bright); }

@media (max-width: 700px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; padding: 20px; }
}

/* ============================================
   LEGAL PAGES (privacy, terms, cookies)
============================================ */
.legal-page {
  padding: 140px 24px 80px;
  max-width: 900px;
  margin: 0 auto;
}
.legal-page h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.legal-page .legal-meta {
  color: var(--ink-faint);
  font-size: 13px;
  margin-bottom: 48px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal-page h2 {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 700;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--gold-bright);
}
.legal-page p, .legal-page li {
  color: var(--ink-muted);
  line-height: 1.7;
  margin-bottom: 14px;
  font-size: 15px;
}
.legal-page strong { color: var(--ink); }
.legal-page ul {
  list-style: none;
  margin-bottom: 20px;
}
.legal-page ul li {
  padding-left: 24px;
  position: relative;
}
.legal-page ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 1px;
  background: var(--gold);
}
.legal-page a {
  color: var(--gold-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ============================================
   404 PAGE
============================================ */
.error-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 24px;
  text-align: center;
}
.error-code {
  font-family: 'Syne', sans-serif;
  font-size: clamp(120px, 25vw, 240px);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(180deg, var(--gold) 0%, var(--red) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 20px;
}
.error-title {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  margin-bottom: 16px;
}
.error-text {
  color: var(--ink-muted);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

/* ============================================
   EMPTY STATE (no products yet etc)
============================================ */
.empty-state {
  grid-column: 1 / -1;
  padding: 80px 24px;
  text-align: center;
  color: var(--ink-muted);
  border: 1px dashed var(--line-strong);
}
.empty-state svg {
  width: 56px;
  height: 56px;
  color: var(--ink-faint);
  margin-bottom: 20px;
}
.empty-state h3 {
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ============================================================
   FIX: poravnanje širine navigacije sa sadržajem stranice
   (header/topbar su imali gutter 24px, a .section-inner 0 → nije se poklapalo)
   ============================================================ */
.section-inner,
.footer-grid,
.hero-content { padding-left: 24px; padding-right: 24px; }
@media (max-width: 700px) {
  .section-inner,
  .footer-grid,
  .hero-content { padding-left: 16px; padding-right: 16px; }
}

/* FIX: slike u korpi i u quick-view modalu (proizvodi sad imaju prave slike iz baze) */
.cart-item-img { overflow: hidden; }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.modal-product-image img { width: 100%; height: 100%; object-fit: contain; display: block; }
.product-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero animirana mreža (canvas, brand boje) — iza sadržaja, ne blokira klik */
.hero-net { position: absolute; inset: 0; z-index: 1; pointer-events: none; }


/* O nama — veliki zlatni monogram umjesto stare logo slike */
.about-logo-mono{
  width:280px;height:280px;max-width:100%;aspect-ratio:1;border-radius:50%;
  display:grid;place-items:center;margin:0 auto;position:relative;z-index:2;overflow:hidden;
  background:radial-gradient(circle at 35% 30%,var(--gold-bright),var(--gold-deep));
  color:#1a1408;font-family:'Syne',sans-serif;font-weight:800;font-size:92px;line-height:1;letter-spacing:0.04em;
  box-shadow:0 0 60px rgba(212,168,74,0.35);
  animation:floatLogo 6s ease-in-out infinite;
}

/* ============================================================
   KORISNIČKI NALOZI — prijava / registracija / nalog (modul 1)
   ============================================================ */
.acct-link{font-size:13px;font-weight:600;color:var(--ink-muted);text-decoration:none;padding:8px 12px;border:1px solid var(--line);border-radius:10px;transition:.2s;white-space:nowrap;}
.acct-link:hover{color:var(--ink);border-color:var(--gold);}

.auth-wrap{max-width:480px;margin:60px auto;padding:0 20px;}
.auth-card{background:var(--bg-base);border:1px solid var(--line);border-radius:18px;padding:36px 32px;}
.auth-title{font-family:'Syne',sans-serif;font-size:30px;font-weight:800;margin:0 0 6px;}
.auth-sub{color:var(--ink-muted);font-size:14px;margin:0 0 22px;}
.auth-foot{text-align:center;margin-top:18px;font-size:14px;color:var(--ink-muted);}
.auth-foot a{color:var(--gold);text-decoration:none;font-weight:600;}
.auth-note{margin-top:18px;padding:14px 16px;border-radius:12px;background:rgba(212,168,74,0.08);border:1px solid rgba(212,168,74,0.25);font-size:13px;color:var(--ink-muted);line-height:1.55;}
.auth-alert{padding:12px 16px;border-radius:12px;font-size:14px;margin-bottom:18px;}
.auth-alert.err{background:rgba(230,48,39,0.12);border:1px solid rgba(230,48,39,0.4);color:#ff9a91;}
.auth-alert.ok{background:rgba(56,217,124,0.10);border:1px solid rgba(56,217,124,0.35);color:#7ee2a6;}

.account-wrap{max-width:1100px;margin:48px auto;padding:0 24px;}
.account-head{display:flex;align-items:center;gap:20px;margin-bottom:32px;}
.account-avatar{width:84px;height:84px;border-radius:50%;overflow:hidden;flex-shrink:0;display:grid;place-items:center;background:radial-gradient(circle at 35% 30%,var(--gold-bright),var(--gold-deep));color:#1a1408;font-family:'Syne',sans-serif;font-weight:800;font-size:36px;}
.account-avatar img{width:100%;height:100%;object-fit:cover;}
.account-name{font-family:'Syne',sans-serif;font-size:26px;font-weight:800;margin:0;}
.account-meta{color:var(--ink-muted);font-size:14px;margin:4px 0 0;}

.account-grid{display:grid;grid-template-columns:1fr 1fr;gap:20px;}
.account-card{background:var(--bg-base);border:1px solid var(--line);border-radius:16px;padding:24px;}
.account-card-wide{grid-column:1 / -1;}
.account-card h2{font-family:'Syne',sans-serif;font-size:18px;font-weight:700;margin:0 0 12px;}
.account-card .muted{color:var(--ink-muted);font-size:13px;line-height:1.55;margin:0 0 14px;}

.progress{height:10px;border-radius:999px;background:rgba(255,255,255,0.07);overflow:hidden;}
.progress-bar{height:100%;background:linear-gradient(90deg,var(--gold-deep),var(--gold-bright));border-radius:999px;transition:width .6s ease;}

.ref-link{display:flex;gap:8px;}
.ref-link input{flex:1;background:rgba(255,255,255,0.05);border:1px solid var(--line);border-radius:10px;padding:10px 12px;color:var(--ink);font-size:13px;}

.orders-table{display:flex;flex-direction:column;gap:2px;}
.orders-row{display:grid;grid-template-columns:1.2fr 1fr 1fr 1fr;gap:12px;padding:12px 10px;border-bottom:1px solid var(--line);font-size:14px;align-items:center;}
.orders-head{color:var(--ink-faint);font-size:11px;text-transform:uppercase;letter-spacing:.08em;font-weight:700;}
.ostatus{color:var(--gold);font-weight:600;}

@media (max-width:760px){
  .account-grid{grid-template-columns:1fr;}
  .orders-row{grid-template-columns:1fr 1fr;}
}

/* ============================================================
   LOJALNOST (popust 300→20%) i GIVEAWAY sekcije
   ============================================================ */
.loyalty-banner{display:flex;align-items:center;gap:32px;background:linear-gradient(135deg,rgba(212,168,74,0.12),rgba(230,48,39,0.07));border:1px solid rgba(212,168,74,0.30);border-radius:22px;padding:36px 40px;}
.loyalty-badge{font-family:'Bebas Neue',sans-serif;font-size:72px;color:var(--gold-bright);line-height:.9;flex-shrink:0;letter-spacing:1px;text-shadow:0 0 30px rgba(212,168,74,0.4);}
.loyalty-copy h2{font-family:'Syne',sans-serif;font-size:26px;font-weight:800;margin:0 0 8px;}
.loyalty-copy p{color:var(--ink-muted);font-size:15px;line-height:1.6;margin:0 0 18px;max-width:660px;}

.giveaway-card{background:var(--bg-base);border:1px solid rgba(212,168,74,0.30);border-radius:24px;padding:44px;max-width:820px;margin:0 auto;text-align:center;position:relative;overflow:hidden;}
.giveaway-eyebrow{display:inline-block;font-size:13px;font-weight:700;letter-spacing:.12em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;}
.giveaway-title{font-family:'Syne',sans-serif;font-size:34px;font-weight:800;margin:0 0 10px;}
.giveaway-sub{color:var(--ink-muted);font-size:16px;margin:0 0 20px;}
.giveaway-body{text-align:left;max-width:560px;margin:0 auto 22px;color:var(--ink-muted);font-size:14px;line-height:1.7;background:rgba(255,255,255,0.03);border:1px solid var(--line);border-radius:14px;padding:18px 22px;}
.giveaway-prize{font-size:15px;margin-bottom:22px;color:var(--ink-muted);}
.giveaway-prize strong{color:var(--gold-bright);}
.giveaway-cta p{color:var(--ink-muted);font-size:14px;margin:0 0 12px;}
.giveaway-cta .ref-link{max-width:520px;margin:0 auto;}
.giveaway-count,.giveaway-note{margin-top:12px;}

@media (max-width:700px){
  .loyalty-banner{flex-direction:column;text-align:center;gap:18px;padding:28px 22px;}
  .loyalty-copy p{margin-left:auto;margin-right:auto;}
  .giveaway-card{padding:30px 20px;}
  .giveaway-title{font-size:26px;}
}

/* ============================================================
   GIVEAWAY — redizajn (dvije kolone + prikaz nagrade)
   ============================================================ */
.gv-wrap{display:grid;grid-template-columns:1.12fr 0.88fr;gap:44px;align-items:center;background:linear-gradient(135deg,rgba(212,168,74,0.10),rgba(230,48,39,0.06));border:1px solid rgba(212,168,74,0.30);border-radius:26px;padding:44px;position:relative;overflow:hidden;}
.gv-eyebrow{display:inline-flex;align-items:center;gap:8px;font-size:12px;font-weight:700;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:14px;}
.gv-dot{width:8px;height:8px;border-radius:50%;background:var(--red);box-shadow:0 0 12px var(--red);animation:pulse 1.6s infinite;}
.gv-title{font-family:'Bebas Neue',sans-serif;font-size:clamp(34px,5vw,56px);line-height:.95;margin:0 0 10px;letter-spacing:.5px;}
.gv-sub{color:var(--ink-muted);font-size:16px;margin:0 0 20px;}
.gv-list{list-style:none;padding:0;margin:0 0 22px;display:flex;flex-direction:column;gap:10px;}
.gv-list li{display:flex;align-items:center;gap:10px;font-size:14px;color:var(--ink);}
.gv-list svg{color:var(--gold);flex-shrink:0;}
.gv-steps{display:flex;flex-direction:column;gap:12px;margin:0 0 24px;}
.gv-step{display:flex;align-items:center;gap:12px;}
.gv-step-n{width:32px;height:32px;border-radius:50%;background:rgba(212,168,74,0.14);border:1px solid rgba(212,168,74,0.4);color:var(--gold-bright);font-weight:800;display:grid;place-items:center;font-size:14px;flex-shrink:0;font-family:'Syne',sans-serif;}
.gv-step strong{display:block;font-size:14px;line-height:1.2;}
.gv-step small{color:var(--ink-faint);font-size:12px;}
.gv-meta{display:flex;gap:14px;flex-wrap:wrap;margin-bottom:24px;}
.gv-chip{background:rgba(255,255,255,0.04);border:1px solid var(--line);border-radius:14px;padding:12px 18px;display:flex;flex-direction:column;gap:2px;}
.gv-chip span{font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:var(--ink-faint);}
.gv-chip strong{font-family:'Syne',sans-serif;font-size:20px;color:var(--gold-bright);}
.gv-btn{font-size:15px;}
.gv-note{color:var(--ink-muted);font-size:13px;margin:12px 0 0;}
.gv-count{margin-top:12px;color:var(--ink-muted);}
.gv-cta .ref-link{max-width:520px;}

.gv-visual{position:relative;display:grid;grid-template-columns:1fr 1fr;gap:14px;align-content:center;}
.gv-glow{position:absolute;inset:8%;background:radial-gradient(circle,rgba(212,168,74,0.25),transparent 70%);filter:blur(50px);z-index:0;}
.gv-photo{position:relative;z-index:1;border-radius:12px;overflow:hidden;background:#0d0d10;margin:0;box-shadow:0 18px 40px rgba(0,0,0,0.4);}
.gv-photo img{width:100%;display:block;aspect-ratio:1;object-fit:cover;}
.gv-photo-1{grid-column:1 / -1;}
.gv-prize-tag{position:absolute;top:14px;right:14px;z-index:3;background:var(--red);color:#fff;font-weight:700;font-size:12px;padding:7px 13px;border-radius:999px;box-shadow:0 10px 24px rgba(230,48,39,0.4);}

@media (max-width:860px){
  .gv-wrap{grid-template-columns:1fr;gap:28px;padding:30px 22px;}
  .gv-visual{order:-1;}
}


/* Kontakt — mapa popunjava lijevu kolonu */
.contact-map{margin-top:auto;border:1px solid var(--line);border-radius:14px;overflow:hidden;min-height:200px;background:var(--bg-base);}
.contact-map iframe{width:100%;height:260px;border:0;display:block;filter:grayscale(0.25) contrast(1.05) brightness(0.9);}

/* ============================================================
   MULTI-PAGE: shop filteri, info kartice, FAQ, pravila igre
   ============================================================ */
.shop-filters{display:flex;flex-wrap:wrap;gap:16px;justify-content:space-between;align-items:center;margin-bottom:18px;}
.shop-pills{display:flex;flex-wrap:wrap;gap:8px;}
.shop-pill{padding:8px 16px;border:1px solid var(--line);border-radius:999px;font-size:13px;font-weight:600;color:var(--ink-muted);text-decoration:none;transition:.2s;white-space:nowrap;}
.shop-pill:hover{color:var(--ink);border-color:var(--gold);}
.shop-pill.active{background:var(--gold);color:#1a1408;border-color:var(--gold);}
.shop-tools{display:flex;gap:8px;align-items:center;flex-wrap:wrap;}
.shop-search-wrap{position:relative;display:flex;align-items:center;}
.shop-search-wrap svg{position:absolute;left:12px;color:var(--ink-faint);pointer-events:none;}
.shop-search{padding:10px 14px 10px 36px;background:rgba(255,255,255,0.05);border:1px solid var(--line);border-radius:10px;color:var(--ink);font-size:14px;min-width:200px;}
.shop-sort{padding:10px 14px;background:rgba(255,255,255,0.05);border:1px solid var(--line);border-radius:10px;color:var(--ink);font-size:14px;}
.shop-count{color:var(--ink-muted);font-size:13px;margin:0 0 22px;}

.info-cards{display:grid;grid-template-columns:repeat(auto-fit,minmax(240px,1fr));gap:20px;}
.info-card{background:var(--bg-base);border:1px solid var(--line);border-radius:18px;padding:28px;}
.info-ico{width:52px;height:52px;border-radius:14px;background:rgba(212,168,74,0.1);color:var(--gold-bright);display:grid;place-items:center;margin-bottom:16px;}
.info-ico svg{width:26px;height:26px;}
.info-card h3{font-family:'Syne',sans-serif;font-size:18px;margin:0 0 8px;}
.info-card p{color:var(--ink-muted);font-size:14px;line-height:1.6;margin:0;}
.info-note{margin-top:28px;padding:18px 22px;border-radius:14px;background:rgba(212,168,74,0.07);border:1px solid rgba(212,168,74,0.22);color:var(--ink-muted);font-size:14px;}
.info-note a{color:var(--gold-bright);}

.faq-list{display:flex;flex-direction:column;gap:12px;max-width:820px;}
.faq-item{background:var(--bg-base);border:1px solid var(--line);border-radius:14px;overflow:hidden;}
.faq-item summary{list-style:none;cursor:pointer;padding:18px 22px;font-weight:600;font-size:15px;display:flex;justify-content:space-between;align-items:center;gap:12px;}
.faq-item summary::-webkit-details-marker{display:none;}
.faq-plus{width:18px;height:18px;position:relative;flex-shrink:0;}
.faq-plus::before,.faq-plus::after{content:'';position:absolute;background:var(--gold-bright);transition:.2s;}
.faq-plus::before{top:8px;left:0;width:18px;height:2px;}
.faq-plus::after{left:8px;top:0;width:2px;height:18px;}
.faq-item[open] .faq-plus::after{transform:rotate(90deg);opacity:0;}
.faq-answer{padding:0 22px 20px;color:var(--ink-muted);font-size:14px;line-height:1.7;}

.gv-rules{margin-top:32px;background:var(--bg-base);border:1px solid var(--line);border-radius:18px;padding:28px 32px;max-width:760px;}
.gv-rules h3{font-family:'Syne',sans-serif;font-size:20px;margin:0 0 12px;}
.gv-rules div{color:var(--ink-muted);font-size:14px;line-height:1.7;}

header nav a.active{color:var(--gold-bright);}

/* ============================================================
   CUSTOM DROPDOWN (stilizovani select) — cijeli sajt
   ============================================================ */
.cs{position:relative;display:inline-block;}
.cs.cs-block{display:block;width:100%;}
.cs-trigger{display:flex;align-items:center;justify-content:space-between;gap:12px;min-width:170px;width:100%;padding:11px 14px;background:rgba(255,255,255,0.05);border:1px solid var(--line);border-radius:10px;color:var(--ink);font-size:14px;font-family:inherit;cursor:pointer;text-align:left;transition:border-color .2s;}
.cs-trigger svg{color:var(--ink-faint);flex-shrink:0;transition:transform .2s;}
.cs.open .cs-trigger{border-color:var(--gold);}
.cs.open .cs-trigger svg{transform:rotate(180deg);}
.cs-menu{position:absolute;top:calc(100% + 6px);left:0;min-width:100%;background:#141417;border:1px solid var(--line-strong,var(--line));border-radius:12px;padding:6px;box-shadow:0 24px 60px rgba(0,0,0,0.55);z-index:200;opacity:0;visibility:hidden;transform:translateY(-6px);transition:opacity .18s,transform .18s,visibility .18s;max-height:300px;overflow:auto;}
.cs.open .cs-menu{opacity:1;visibility:visible;transform:none;}
.cs-option{padding:10px 12px;border-radius:8px;font-size:14px;color:var(--ink-muted);cursor:pointer;white-space:nowrap;transition:background .15s,color .15s;}
.cs-option:hover{background:rgba(212,168,74,0.12);color:var(--ink);}
.cs-option.sel{color:var(--gold-bright);background:rgba(212,168,74,0.08);}

/* ============================================================
   GIVEAWAY — manje slike da lijeva i desna strana budu ujednačene
   ============================================================ */
.gv-visual{max-width:400px;margin-left:auto;margin-right:auto;width:100%;}

.shop-tools .btn-primary{border-radius:10px;}

/* ===== Premium mobilni meni — hamburger morph + overlay ===== */
.mobile-menu-btn { position: relative; z-index: 130; }
@media (min-width: 1101px) { .mobile-drawer { display: none; } }
.mm-bars { position: relative; display: block; width: 22px; height: 14px; }
.mm-bars i {
  position: absolute; left: 0; height: 2px; width: 100%;
  background: currentColor; border-radius: 2px;
  transition: transform .45s cubic-bezier(.66,0,.2,1), opacity .25s ease, top .25s ease;
}
.mm-bars i:nth-child(1) { top: 0; }
.mm-bars i:nth-child(2) { top: 6px; }
.mm-bars i:nth-child(3) { top: 12px; }
body.menu-open .mm-bars i:nth-child(1) { top: 6px; transform: rotate(45deg); }
body.menu-open .mm-bars i:nth-child(2) { opacity: 0; transform: translateX(-12px); }
body.menu-open .mm-bars i:nth-child(3) { top: 6px; transform: rotate(-45deg); }

.mobile-nav-overlay {
  position: fixed; inset: 0; background: rgba(8,8,10,0.62);
  -webkit-backdrop-filter: blur(6px); backdrop-filter: blur(6px);
  opacity: 0; visibility: hidden;
  transition: opacity .45s ease, visibility .45s; z-index: 80;
}
body.menu-open .mobile-nav-overlay { opacity: 1; visibility: visible; }
body.menu-open { overflow: hidden; }
@media (prefers-reduced-motion: reduce) {
  header nav, header nav ul li, .mm-bars i, .mobile-nav-overlay { transition-duration: .01ms !important; }
}

/* ===== Globalna zaštita od prelijevanja teksta (svi uređaji) ===== */
p, h1, h2, h3, h4, li, a, span, blockquote, .about-quote, .about-lead, .about-text {
  overflow-wrap: break-word;
  word-break: break-word;
}
img, iframe, video, svg { max-width: 100%; }
.section-inner { max-width: min(1290px, 100%); }

/* ============================================================
   MOBILE / TABLET FIXES — NoLimitDigital.io
   1) Topbar = single clean row (no wrap to 2nd line)
   2) About monogram = tasteful badge (not a giant circle)
   3) Header actions hug the right edge when desktop nav is hidden
   4) Mobile drawer first item never hides under the header
   5) Countdown gets breathing room on small screens
   (placed at end of file intentionally — overrides earlier rules)
   ============================================================ */

/* ---- (1) TOPBAR: force one row, shrink/hide secondary bits ---- */
@media (max-width: 1100px){
  .topbar-inner{ flex-wrap: nowrap; gap: 12px; }
  .topbar-left{ flex-wrap: nowrap; gap: 14px; min-width: 0; overflow: hidden; }
  .topbar-right{ flex-wrap: nowrap; gap: 14px; flex-shrink: 0; }
  .status-live{ min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
}
/* hide address + free-delivery earlier so the right side never wraps on tablets */
@media (max-width: 900px){
  .hide-mobile{ display: none !important; }
}
/* small phones: drop the opening-hours suffix so the phone stays on one line */
@media (max-width: 560px){
  .topbar-inner{ font-size: 11px; gap: 10px; }
  .topbar-left, .topbar-right{ gap: 12px; }
  .tb-hours{ display: none; }
}
/* very small phones: drop the Facebook link too */
@media (max-width: 420px){
  .topbar .tb-fb{ display: none; }
}

/* ---- (3) HEADER: switch to flex so the icon group sits at the far right ---- */
@media (max-width: 1100px){
  .header-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
  }
  .header-actions{ flex-shrink: 0; margin-left: auto; }
}

/* ---- (4) MOBILE DRAWER: guaranteed clearance under the header ---- */
@media (max-width: 1100px){
  /* While the menu is open, hide the topbar and pin the header to the top,
     so the space above the drawer is constant (= header height only). */
  body.menu-open .topbar{ display: none; }
  body.menu-open header{
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 120;
  }
  .mobile-drawer{
    padding-top: 100px;   /* header is ~72–85px tall — this always clears it */
    padding-bottom: 40px;
  }
}

/* ---- (5) COUNTDOWN: more room + rounded cells on small screens ---- */
@media (max-width: 700px){
  .deals-banner{ padding: 28px 18px; }
  .deals-countdown{ padding: 16px 14px; border-radius: 16px; }
  .countdown-grid{ gap: 8px; }
  .cd-cell{ padding: 14px 6px; border-radius: 12px; }
  .cd-num{ font-size: clamp(20px, 6vw, 26px); }
  .cd-unit{ letter-spacing: 0.12em; }
}
@media (max-width: 380px){
  .deals-countdown{ padding: 14px 10px; }
  .cd-cell{ padding: 12px 3px; }
  .cd-unit{ font-size: 8px; letter-spacing: 0.08em; }
}

/* ---- (2) ABOUT MONOGRAM: small centered badge instead of a giant circle ---- */
@media (max-width: 1100px){
  .about-right{ align-items: center; gap: 24px; }
  .about-logo-frame{
    aspect-ratio: auto;
    padding: 8px;
    min-height: 0;
    max-width: none;
    margin: 0 auto;
  }
  .about-logo-mono{
    width: 132px; height: 132px;
    font-size: 46px;
  }
  .about-logo-glow{
    width: 160px; height: 160px;
  }
  .about-quote{ width: 100%; }
}
@media (max-width: 480px){
  .about-logo-mono{ width: 112px; height: 112px; font-size: 40px; }
  .about-logo-glow{ width: 140px; height: 140px; }
}

/* ============================================================
   MOBILE / TABLET FIXES v2 — NoLimitDigital.io
   6) Winner "Osvojio:" chip no longer breaks char-by-char
   7) Products page: category dropdown instead of wrapping pills
   8) Auto "−X%" discount badge (from admin old_price)
   9) No sticky :hover on touch devices (quick-view, lift, zoom)
   ============================================================ */

/* (6) undo the over-aggressive global word-break that collapsed flex labels */
p, h1, h2, h3, h4, li, a, span, blockquote { word-break: normal; }
.win-prize{ flex-wrap: nowrap; max-width: 100%; }
.win-prize .wp-label{ flex: 0 0 auto; white-space: nowrap; }
.win-prize b{ flex: 1 1 auto; min-width: 0; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-prize, .win-prize *{ word-break: normal; overflow-wrap: normal; }
@media (max-width: 380px){ .win-prize{ font-size: 12px; padding: 7px 10px; } }

/* (7) products page — dropdown replaces the wrapping pill row on small screens */
.shop-cat-select-wrap{ display: none; }
.shop-cat-select{ width: 100%; padding: 11px 14px; background: rgba(255,255,255,0.05); border: 1px solid var(--line); border-radius: 10px; color: var(--ink); font-size: 14px; }
@media (max-width: 860px){
  .shop-cat-select-wrap{ display: block; width: 100%; margin-bottom: 14px; }
  .shop-cat-select-wrap .cs{ display: block !important; width: 100% !important; }
  .shop-cat-select-wrap .cs-trigger{ width: 100%; min-width: 0; }
  .shop-filters .shop-pills{ display: none; }
  .shop-filters{ flex-direction: column; align-items: stretch; gap: 12px; }
  .shop-tools{ width: 100%; }
  .shop-search-wrap{ flex: 1; }
  .shop-search{ width: 100%; min-width: 0; }
}

/* (8) auto discount badge (top-right, won't clash with Hit/Novo badge top-left) */
.product-discount{
  position: absolute; top: 14px; right: 14px; z-index: 2;
  background: var(--red); color: #fff;
  font-size: 11px; font-weight: 800; letter-spacing: .02em;
  padding: 5px 9px; border-radius: 999px;
  box-shadow: 0 6px 16px rgba(230,48,39,0.40);
}
@media (max-width: 700px){ .product-discount{ top: 10px; right: 10px; font-size: 10px; padding: 4px 7px; } }

/* (9) touch devices: kill sticky hover states (this is the "loše na hoveru" issue) */
@media (hover: none){
  .product-quickview{ display: none !important; }
  .product:hover{ transform: none; }
  .product:hover .product-image::before{ opacity: 0; }
  .product:hover .product-image svg{ transform: none; color: var(--gold); opacity: .6; }
  .product-add:hover{ transform: none; background: var(--red); }
  .win-card:hover{ transform: none; box-shadow: none; }
  .win-card:hover .win-media img{ transform: none; }
  .cat-tile:hover{ transform: none; }
}

/* "Akcija" nav link — gold sale accent (NoLimitDigital.io) */
header nav a.nav-akcija, .mobile-drawer a.nav-akcija { color: var(--gold-bright, #f0c75e); font-weight: 700; }
header nav a.nav-akcija:hover, .mobile-drawer a.nav-akcija:hover { color: #fff; }

/* Kupon dropdown (Moj nalog) — meni prati širinu polja, duga imena proizvoda se prelamaju */
.coupon-pick .cs-menu{ width:100%; min-width:0; left:0; right:0; }
.coupon-pick .cs-option{ white-space:normal; line-height:1.35; }
