/* ===== Tokens ===== */
:root {
  --red: #d81e0a;
  --red-bright: #ff5a47;
  --ink: #1a1a1a;
  --ink-2: #444;
  --muted: #82838a;
  --line: #e6e6e8;
  --light: #f7f7f9;
  --light-2: #ececed;
  --dark: #0c0e11;
  --dark-2: #15171b;
  --maxw: 1280px;
  --nav-h: 60px;
  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
/* Brez zaokroženih robov — vse pravokotno */
*, *::before, *::after { border-radius: 0 !important; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--ink); background: #fff; line-height: 1.5; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
svg { display: block; max-width: 100%; }

/* ===== Nav (DJI-style: thin, minimal) ===== */
.nav {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
.nav__inner {
  max-width: var(--maxw); height: 100%; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav__logo { display: flex; align-items: center; gap: 8px; font-weight: 700; font-size: 0.92rem; letter-spacing: 0.06em; }
.nav__mark {
  width: 24px; height: 24px; border-radius: 5px; background: var(--red); color: #fff;
  display: grid; place-items: center; font-weight: 800; font-size: 0.95rem;
}
.nav__menu { display: flex; gap: 30px; }
.nav__menu a { font-size: 0.86rem; font-weight: 500; color: var(--ink-2); transition: color 0.2s; }
.nav__menu a:hover { color: var(--red); }
.nav__right { display: flex; align-items: center; gap: 18px; }
.nav__icon { font-size: 1.15rem; color: var(--ink-2); }
.nav__icon:hover { color: var(--red); }
.nav__cta {
  font-size: 0.8rem; font-weight: 600; color: #fff; background: var(--red);
  padding: 7px 16px; border-radius: 999px; transition: background 0.2s;
}
.nav__cta:hover { background: #b3160a; }
.nav__region { font-size: 0.8rem; font-weight: 600; color: var(--ink-2); }
.nav__burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; }

/* Nav over dark hero */
.nav.on-dark { background: rgba(12,14,17,0.55); border-color: rgba(255,255,255,0.08); }
.nav.on-dark .nav__logo, .nav.on-dark .nav__region { color: #fff; }
.nav.on-dark .nav__menu a, .nav.on-dark .nav__icon { color: rgba(255,255,255,0.8); }
.nav.on-dark .nav__menu a:hover, .nav.on-dark .nav__icon:hover { color: #fff; }
.nav.on-dark .nav__burger span { background: #fff; }

/* ===== Panels (the DJI hallmark) ===== */
.panel {
  position: relative;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; overflow: hidden;
  padding: 64px 24px 0;
  min-height: 640px;
}
.panel--hero { min-height: calc(100vh - var(--nav-h)); padding-top: 90px; }
.panel--light { background: var(--light); color: var(--ink); }
.panel--light:nth-of-type(even) { background: #fff; }
.panel--dark { background: var(--dark); color: #fff; }

.panel__top { position: relative; z-index: 3; max-width: 760px; }
.panel__kicker {
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--red-bright); margin-bottom: 14px;
}
.panel--light .panel__kicker { color: var(--red); }
.panel__title { font-size: clamp(2.4rem, 5.5vw, 4.2rem); font-weight: 600; letter-spacing: -0.02em; line-height: 1.05; }
.panel--hero .panel__title { font-size: clamp(3rem, 8vw, 5.6rem); font-weight: 700; }
.panel__title--sm { font-size: clamp(1.8rem, 3.4vw, 2.6rem); }
.panel__tagline { font-size: clamp(1rem, 1.7vw, 1.35rem); font-weight: 400; color: inherit; opacity: 0.78; margin-top: 12px; }
.panel--light .panel__tagline { color: var(--ink-2); opacity: 1; }

/* DJI text links */
.panel__links { display: flex; gap: 26px; justify-content: center; margin-top: 22px; }
.link-more, .link-buy {
  font-size: 0.95rem; font-weight: 500; position: relative; padding-bottom: 2px;
  display: inline-flex; align-items: center; gap: 4px; transition: color 0.2s;
}
.link-more::after { content: "›"; font-size: 1.1rem; line-height: 0; transition: transform 0.2s; }
.link-more:hover::after { transform: translateX(3px); }
.panel--dark .link-more, .panel--dark .link-buy { color: #fff; }
.panel--light .link-more { color: var(--red); }
.panel--light .link-buy { color: var(--ink); }
.link-buy { text-decoration: underline; text-underline-offset: 4px; text-decoration-thickness: 1px; }
.link-more:hover, .link-buy:hover { color: var(--red-bright); }
.panel--light .link-buy:hover { color: var(--red); }

/* Stage = product imagery filling lower part of panel */
.panel__stage {
  position: relative; z-index: 2;
  width: 100%; flex: 1;
  display: flex; align-items: center; justify-content: center;
  margin-top: 26px;
}
.machine { width: min(900px, 90%); height: auto; }
.machine--hero { width: min(1000px, 96%); }
.machine--wide { width: min(900px, 94%); border-radius: 14px; }
.panel--dark .panel__stage--hero { width: 100%; }

/* ===== Two-up duo ===== */
.duo { display: grid; grid-template-columns: 1fr 1fr; }
.duo .tile { min-height: 560px; padding-top: 56px; }
.duo .tile .machine { width: min(420px, 88%); }

/* ===== Explore grid (chips) ===== */
.explore { background: #fff; text-align: center; padding: 96px 24px 100px; }
.explore__title { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.01em; }
.explore__sub { color: var(--muted); margin-top: 12px; font-size: 1.02rem; }
.explore__grid {
  max-width: 1080px; margin: 46px auto 0;
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px;
}
.chip {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  padding: 26px 12px; background: var(--light); border-radius: 14px;
  font-size: 0.86rem; font-weight: 500; color: var(--ink-2);
  transition: transform 0.2s, background 0.2s, color 0.2s, box-shadow 0.2s;
}
.chip__ico { font-size: 1.7rem; }
.chip:hover { transform: translateY(-4px); background: #fff; color: var(--red); box-shadow: 0 12px 30px -14px rgba(0,0,0,0.25); }

/* ===== Support ===== */
.support { background: var(--light); padding: 70px 24px; }
.support__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px;
}
.support__col { background: #fff; border-radius: 16px; padding: 34px; }
.support__col h3 { font-size: 1.3rem; font-weight: 600; margin-bottom: 8px; }
.support__col p { color: var(--muted); font-size: 0.95rem; margin-bottom: 16px; }

/* ===== Footer ===== */
.footer { background: #fff; border-top: 1px solid var(--line); padding: 56px 24px 0; }
.footer__inner {
  max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr) 1.4fr; gap: 30px; padding-bottom: 44px;
}
.footer__col h4 { font-size: 0.82rem; font-weight: 600; margin-bottom: 16px; color: var(--ink); }
.footer__col a, .footer__col p { display: block; font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.footer__col a:hover { color: var(--red); }
.footer__col--addr p { line-height: 1.7; }
.footer__bar {
  max-width: var(--maxw); margin: 0 auto; border-top: 1px solid var(--line);
  padding: 20px 0; display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: var(--muted);
}
.footer__legal { display: flex; gap: 20px; }
.footer__legal a:hover { color: var(--red); }

/* ===== Reveal ===== */
.panel__top, .chip, .support__col { opacity: 0; transform: translateY(22px); transition: opacity 0.7s ease, transform 0.7s ease; }
.panel--hero .panel__top { opacity: 1; transform: none; }
.is-in { opacity: 1 !important; transform: none !important; }
.panel__stage .machine { transition: transform 0.9s ease, opacity 0.9s ease; }

/* ===================================================================
   E-TRGOVINA
   =================================================================== */
.shop-page { max-width: var(--maxw); margin: 0 auto; padding: 30px 24px 80px; }

/* Ikona košarice */
.cart-btn { position: relative; background: none; border: none; cursor: pointer; font-size: 1.2rem; padding: 4px; line-height: 1; }
.cart-btn__count {
  position: absolute; top: -6px; right: -8px; min-width: 18px; height: 18px; padding: 0 4px;
  background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 700;
  display: grid; place-items: center; line-height: 1;
}
.cart-btn__count.is-empty { display: none; }

/* Drsnik košarice */
.cart-drawer { position: fixed; inset: 0; z-index: 300; background: rgba(0,0,0,0.4); opacity: 0; visibility: hidden; transition: opacity 0.25s; }
.cart-drawer.open { opacity: 1; visibility: visible; }
.cart-drawer__panel {
  position: absolute; top: 0; right: 0; width: min(420px, 92vw); height: 100%;
  background: #fff; display: flex; flex-direction: column; transform: translateX(100%); transition: transform 0.28s ease;
}
.cart-drawer.open .cart-drawer__panel { transform: translateX(0); }
.cart-drawer__head { display: flex; justify-content: space-between; align-items: center; padding: 20px 22px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
.cart-drawer__x { background: none; border: none; font-size: 1.8rem; line-height: 1; cursor: pointer; color: var(--muted); }
.cart-drawer__body { flex: 1; overflow-y: auto; padding: 12px 22px; }
.cart-drawer__foot { border-top: 1px solid var(--line); padding: 18px 22px; }
.cart-empty { color: var(--muted); text-align: center; padding: 40px 0; }
.cart-line { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line__img { background: var(--light); display: grid; place-items: center; height: 56px; }
.cart-line__img .shp-ill, .cart-line__img img { width: 44px; height: 44px; object-fit: contain; }
.cart-line__name { font-size: 0.9rem; font-weight: 600; color: var(--ink); display: block; }
.cart-line__name:hover { color: var(--red); }
.cart-line__price { font-size: 0.82rem; color: var(--muted); margin: 2px 0 6px; }
.cart-line__sum { font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.cart-line__rm { margin-left: 6px; background: none; border: none; cursor: pointer; opacity: 0.6; }
.cart-row { display: flex; justify-content: space-between; padding: 5px 0; font-size: 0.92rem; }
.cart-row--muted { color: var(--muted); }
.cart-row--total { font-size: 1.1rem; padding: 10px 0; border-top: 1px solid var(--line); margin-top: 6px; }
.cart-ship-hint { font-size: 0.8rem; color: var(--red); background: #fff3f1; padding: 8px 10px; margin: 6px 0; }
.cart-cont { width: 100%; background: none; border: none; color: var(--muted); padding: 12px 0 2px; cursor: pointer; font: inherit; }
.cart-cont:hover { color: var(--red); }
.qty { display: inline-flex; align-items: center; border: 1px solid var(--line); }
.qty button { width: 34px; height: 34px; background: #fff; border: none; cursor: pointer; font-size: 1.1rem; color: var(--ink); }
.qty button:hover { background: var(--light); color: var(--red); }
.qty span { min-width: 34px; text-align: center; font-weight: 600; }
.qty--sm button { width: 26px; height: 26px; font-size: 0.95rem; }
.qty--sm span { min-width: 26px; font-size: 0.85rem; }
.qty--sm .cart-line__rm { width: auto; }

/* Toast */
.toast { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%) translateY(20px); z-index: 400;
  background: var(--ink); color: #fff; padding: 12px 22px; font-weight: 600; font-size: 0.9rem; opacity: 0; transition: all 0.25s; pointer-events: none; }
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Shop hero */
.shop-hero { background: linear-gradient(120deg, #16191e, #2a2f37); color: #fff; }
.shop-hero__inner { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px; display: grid; grid-template-columns: 1.4fr 0.8fr; gap: 40px; align-items: center; }
.shop-hero__tag { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--red-bright); }
.shop-hero__text h1 { font-size: clamp(2rem, 4.2vw, 3.2rem); font-weight: 800; margin: 12px 0 14px; letter-spacing: -0.02em; }
.shop-hero__text p { color: #c3c9d2; font-size: 1.08rem; margin-bottom: 24px; }
.shop-hero__cta { display: flex; align-items: center; gap: 22px; }
.shop-hero__cta .link-buy { color: #fff; }
.shop-hero__deal { background: #fff; color: var(--ink); padding: 24px; text-align: center; position: relative; }
.shop-hero__deal-badge { position: absolute; top: 14px; left: 14px; background: var(--red); color: #fff; font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 5px 10px; }
.shop-hero__deal-ico { width: 130px; margin: 6px auto 10px; }
.shop-hero__deal h3 { font-size: 1.1rem; margin-bottom: 8px; }
.shop-hero__deal .shp-price { justify-content: center; margin-bottom: 14px; }

/* Trust strip */
.trust-strip { background: var(--light); border-bottom: 1px solid var(--line); }
.trust-strip__inner { max-width: var(--maxw); margin: 0 auto; padding: 18px 24px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item span { font-size: 1.5rem; }
.trust-item strong { display: block; font-size: 0.9rem; }
.trust-item small { color: var(--muted); font-size: 0.8rem; }

/* Shop sections */
.shop-sec { padding: 60px 0; background: #fff; }
.shop-sec--alt { background: var(--light); }
.shop-sec__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.shop-sec__title { font-size: clamp(1.5rem, 3vw, 2.1rem); font-weight: 700; }
.shop-sec__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 26px; }

/* Category tiles */
.cat-tiles { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 26px; }
.cat-tile { background: var(--light); padding: 22px 14px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 6px; transition: transform 0.18s, box-shadow 0.18s, background 0.18s; }
.cat-tile:hover { transform: translateY(-4px); background: #fff; box-shadow: 0 14px 34px -18px rgba(0,0,0,0.3); }
.cat-tile__ico { width: 76px; height: 76px; }
.cat-tile__name { font-weight: 600; font-size: 0.92rem; color: var(--ink); }
.cat-tile__count { font-size: 0.78rem; color: var(--muted); }

/* Product grid + card */
.shp-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.shp-card { position: relative; background: #fff; border: 1px solid var(--line); display: flex; flex-direction: column; transition: box-shadow 0.18s, transform 0.18s; }
.shp-card:hover { transform: translateY(-4px); box-shadow: 0 18px 40px -22px rgba(0,0,0,0.3); }
.shp-badge { position: absolute; top: 10px; left: 10px; z-index: 2; background: var(--red); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 9px; }
.shp-badge--lg { font-size: 0.95rem; padding: 6px 12px; }
.shp-card__media { display: grid; place-items: center; padding: 22px; background: #fff; border-bottom: 1px solid var(--line); }
.shp-card__media .shp-ill { width: 120px; height: 120px; }
.shp-card__media img.shp-photo { width: 100%; height: 150px; object-fit: contain; }
.shp-card__body { padding: 14px 16px 16px; display: flex; flex-direction: column; flex: 1; }
.shp-card__brand { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.shp-card__name { font-size: 0.95rem; font-weight: 600; color: var(--ink); margin: 4px 0 6px; line-height: 1.3; min-height: 2.5em; }
.shp-card__name:hover { color: var(--red); }
.shp-card__rating { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; margin-bottom: 6px; }
.stars { color: #f5a623; letter-spacing: 1px; }
.shp-card__rev { color: var(--muted); }
.shp-card__stock { font-size: 0.78rem; margin-bottom: 12px; }
.stock--ok { color: #1c8c4a; }
.stock--low { color: #d9820a; }
.stock--order { color: var(--muted); }
.shp-card__buy { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.shp-price { display: flex; align-items: baseline; gap: 8px; }
.shp-price__old { color: var(--muted); text-decoration: line-through; font-size: 0.85rem; }
.shp-price__now { font-size: 1.2rem; font-weight: 800; color: var(--ink); }
.shp-price--lg .shp-price__now { font-size: 2rem; }
.shp-add { background: var(--red); color: #fff; border: none; font-family: var(--font); font-weight: 600; font-size: 0.82rem; padding: 9px 12px; cursor: pointer; white-space: nowrap; transition: background 0.18s; }
.shp-add:hover { background: #b3160a; }

/* Category page */
.shop-crumb { margin-bottom: 18px; }
.shop-cat__head h1 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-weight: 800; }
.shop-cat__head p { color: var(--muted); margin: 6px 0 26px; max-width: 640px; }
.shop-cat__layout { display: grid; grid-template-columns: 250px 1fr; gap: 32px; align-items: start; }
.shop-side h3 { font-size: 0.95rem; font-weight: 700; margin: 22px 0 10px; }
.shop-side h3:first-child { margin-top: 0; }
.shop-side__cats { display: flex; flex-direction: column; }
.shop-side__cats a { display: flex; justify-content: space-between; padding: 9px 0; font-size: 0.9rem; color: var(--ink-2); border-bottom: 1px solid var(--line); }
.shop-side__cats a span { color: var(--muted); font-size: 0.8rem; }
.shop-side__cats a:hover, .shop-side__cats a.is-active { color: var(--red); font-weight: 600; }
.shop-side__filter { display: flex; flex-direction: column; gap: 9px; }
.shop-side__filter label { font-size: 0.88rem; color: var(--ink-2); display: flex; align-items: center; gap: 8px; cursor: pointer; }
.shop-cat__bar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.shop-cat__bar #shop-count { color: var(--muted); font-size: 0.9rem; }
.shop-sort { font-size: 0.85rem; color: var(--muted); display: flex; align-items: center; gap: 8px; }
.shop-sort select { font-family: var(--font); font-size: 0.85rem; padding: 8px 12px; border: 1px solid var(--line); background: #fff; cursor: pointer; }
.shp-grid--cat { grid-template-columns: repeat(3, 1fr); }

/* PDP — product detail */
.pdp { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; margin: 8px 0 40px; }
.pdp__gallery { position: relative; background: var(--light); display: grid; place-items: center; padding: 40px; }
.pdp__main { width: 100%; display: grid; place-items: center; }
.pdp__main .shp-ill { width: 260px; height: 260px; }
.pdp__main img.shp-photo { width: 100%; max-height: 380px; object-fit: contain; }
.pdp__brand { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); font-weight: 600; }
.pdp__title { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 800; margin: 6px 0 10px; letter-spacing: -0.01em; }
.pdp__rating { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--muted); margin-bottom: 8px; }
.pdp__sku { font-size: 0.85rem; color: var(--muted); margin-bottom: 18px; }
.pdp__pricebox { display: flex; align-items: baseline; gap: 14px; flex-wrap: wrap; margin-bottom: 14px; }
.pdp__save { background: #fff3f1; color: var(--red); font-weight: 700; font-size: 0.82rem; padding: 4px 10px; }
.pdp__vat { color: var(--muted); font-size: 0.8rem; }
.pdp__stock { font-size: 0.92rem; margin-bottom: 20px; font-weight: 600; }
.pdp__actions { display: flex; gap: 12px; margin-bottom: 14px; }
.pdp__add { flex: 1; font-size: 1rem; }
.pdp__buynow { display: inline-block; font-weight: 600; color: var(--red); margin-bottom: 22px; }
.pdp__perks { list-style: none; display: flex; flex-direction: column; gap: 8px; border-top: 1px solid var(--line); padding-top: 18px; }
.pdp__perks li { font-size: 0.9rem; color: var(--ink-2); }
.pdp__tabs { margin: 10px 0 20px; }
.pdp__tabbar { display: flex; gap: 6px; border-bottom: 1px solid var(--line); }
.pdp__tabbar button { background: none; border: none; padding: 12px 18px; font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--muted); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; }
.pdp__tabbar button.is-on { color: var(--ink); border-bottom-color: var(--red); }
.pdp__tabpanel { padding: 22px 0; max-width: 760px; }
.pdp__tabpanel p { color: var(--ink-2); line-height: 1.7; margin-bottom: 12px; }

@media (max-width: 980px) {
  .shop-hero__inner { grid-template-columns: 1fr; }
  .cat-tiles { grid-template-columns: repeat(3, 1fr); }
  .shp-grid, .shp-grid--cat { grid-template-columns: repeat(2, 1fr); }
  .shop-cat__layout { grid-template-columns: 1fr; }
  .shop-side { padding-bottom: 14px; border-bottom: 1px solid var(--line); margin-bottom: 20px; }
  .shop-side__cats { display: grid; grid-template-columns: 1fr 1fr; gap: 0 20px; }
  .shop-side h3 { margin-top: 16px; }
  .pdp { grid-template-columns: 1fr; gap: 26px; }
  .trust-strip__inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .cat-tiles { grid-template-columns: repeat(2, 1fr); }
  .shp-grid, .shp-grid--cat { grid-template-columns: 1fr 1fr; }
  .shp-card__name { min-height: 0; }
}

/* Menjalnik pogleda + razvrščanje */
.shop-cat__bar-right { display: flex; align-items: center; gap: 16px; }
.view-toggle { display: inline-flex; border: 1px solid var(--line); }
.view-toggle button { width: 38px; height: 38px; background: #fff; border: none; cursor: pointer; color: var(--muted); font-size: 1.1rem; line-height: 1; }
.view-toggle button + button { border-left: 1px solid var(--line); }
.view-toggle button.is-on { background: var(--ink); color: #fff; }

/* Tabelarični pogled */
.shop-table { width: 100%; border-collapse: collapse; }
.shop-table thead th { text-align: left; font-size: 0.76rem; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 600; padding: 12px 10px; background: var(--light); border-bottom: 1px solid var(--line); }
.shop-table td { padding: 12px 10px; border-bottom: 1px solid var(--line); vertical-align: middle; }
.shop-table tbody tr:hover { background: #fafafb; }
.shop-table__img { width: 56px; }
.shop-table__img .shp-ill { width: 46px; height: 46px; }
.shop-table__img img.shp-photo { width: 46px; height: 46px; object-fit: contain; }
.shop-table__sku { color: var(--muted); font-size: 0.88rem; white-space: nowrap; }
.shop-table__name a { font-weight: 600; color: var(--ink); }
.shop-table__name a:hover { color: var(--red); }
.shop-table__name small { display: block; color: var(--muted); font-weight: 400; font-size: 0.8rem; margin-top: 2px; }
.shop-table__stock { font-size: 0.85rem; white-space: nowrap; }
.shop-table__price { font-weight: 800; white-space: nowrap; }
.shop-table__price .shp-price__old { font-weight: 400; }
.shop-table .wish { background: none; border: none; cursor: pointer; color: var(--muted); font-size: 1.2rem; line-height: 1; }
.shop-table .wish.is-on, .shop-table .wish:hover { color: var(--red); }
.shop-table .qty-input { width: 54px; height: 38px; border: 1px solid var(--line); text-align: center; font: inherit; }
.shop-table__add { width: 46px; height: 38px; background: var(--ink); color: #fff; border: none; cursor: pointer; font-size: 1rem; }
.shop-table__add:hover { background: var(--red); }
@media (max-width: 720px) {
  .shop-table thead { display: none; }
  .shop-table, .shop-table tbody, .shop-table tr, .shop-table td { display: block; width: 100%; }
  .shop-table tr { border: 1px solid var(--line); margin-bottom: 12px; padding: 8px; position: relative; }
  .shop-table td { border: none; padding: 4px 10px; }
  .shop-table__img { position: absolute; top: 8px; right: 8px; }
}

/* Mega meni e-trgovine */
.megamenu__inner--shop { display: block; padding: 22px 24px 28px; }
.megamenu__shophead { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 14px; }
.megamenu__shophead strong { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.megamenu__shop { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0 28px; }
.mega-shopcat { padding: 11px 6px; color: var(--ink); border-bottom: 1px solid var(--line); font-size: 0.92rem; font-weight: 500; }
.mega-shopcat:hover { color: var(--red); }
@media (max-width: 900px) { .megamenu__shop { grid-template-columns: 1fr 1fr; } }

/* Mobilni meni trgovine (ploščat seznam) */
.m-accordion--flat { display: flex; flex-direction: column; }
.m-flat { padding: 14px 22px; font-size: 1rem; font-weight: 500; color: var(--ink); border-bottom: 1px solid var(--line); }
.m-flat:hover { color: var(--red); }

/* ===== Sekcije izdelkov na domači strani ===== */
.home-section { padding: 84px 0; background: #fff; }
.home-section--alt { background: var(--light); }
.home-section__inner { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.home-section__head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.home-section__head h2 { font-size: clamp(1.8rem, 3.4vw, 2.6rem); font-weight: 700; letter-spacing: -0.01em; }
.home-section__head .eyebrow-red { margin-bottom: 8px; }
.link-arrow { font-family: var(--font); font-weight: 600; font-size: 0.92rem; color: var(--red); white-space: nowrap; }
.link-arrow:hover { text-decoration: underline; }

/* Carousel */
.carousel__nav { display: flex; align-items: center; gap: 12px; }
.carousel__btn {
  width: 46px; height: 46px; border: 1px solid var(--line); background: #fff;
  font-size: 1.4rem; line-height: 1; color: var(--ink); cursor: pointer;
  display: grid; place-items: center; transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.carousel__btn:hover:not(:disabled) { border-color: var(--red); color: var(--red); }
.carousel__btn:disabled { opacity: 0.35; cursor: default; }
.carousel {
  display: flex; gap: 24px; overflow-x: auto; scroll-snap-type: x mandatory;
  scroll-behavior: smooth; padding-bottom: 4px; scrollbar-width: none;
}
.carousel::-webkit-scrollbar { display: none; }
.carousel > .prod { flex: 0 0 320px; scroll-snap-align: start; }

@media (max-width: 560px) {
  .home-section__head { flex-direction: column; align-items: flex-start; }
  .carousel > .prod { flex-basis: 82%; }
}

/* ===== Mega meni ===== */
.mega-trigger { display: inline-flex !important; align-items: center; gap: 5px; cursor: pointer; }
.mega-trigger__caret { font-size: 0.7rem; transition: transform 0.2s; }
.nav.mega-open .mega-trigger__caret { transform: rotate(180deg); }
.megamenu {
  position: absolute; top: 100%; left: 0; right: 0; z-index: 90;
  background: #fff; border-top: 1px solid var(--line);
  box-shadow: 0 24px 50px -24px rgba(0,0,0,0.35);
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.nav.mega-open .megamenu { opacity: 1; visibility: visible; transform: translateY(0); }
.megamenu__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 290px 1fr; min-height: 360px; }
/* Levi seznam kategorij */
.megamenu__rail { border-right: 1px solid var(--line); padding: 16px 0; background: var(--light); }
.mrail {
  display: flex; align-items: center; gap: 12px; width: 100%;
  padding: 11px 24px; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 0.95rem; font-weight: 500; color: var(--ink-2); text-align: left;
  transition: background 0.14s, color 0.14s;
}
.mrail__ico { font-size: 1.25rem; line-height: 1; }
.mrail__name { flex: 1; }
.mrail__arr { color: var(--muted); opacity: 0; transition: opacity 0.14s; }
.mrail:hover, .mrail.is-on { background: #fff; color: var(--red); }
.mrail.is-on .mrail__arr { opacity: 1; color: var(--red); }
/* Desni izdelki */
.megamenu__panes { position: relative; padding: 26px 30px 30px; }
.mpane { display: none; }
.mpane.is-on { display: block; animation: mfade 0.2s ease; }
@keyframes mfade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }
.mpane__head { display: flex; align-items: baseline; justify-content: space-between; margin-bottom: 16px; }
.mpane__head h3 { font-size: 1.2rem; font-weight: 600; }
.mpane__all { font-size: 0.85rem; font-weight: 600; color: var(--red); }
.mpane__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 4px; }
.mprod {
  display: flex; flex-direction: column; gap: 2px; padding: 11px 14px;
  border: 1px solid transparent; transition: background 0.14s, border-color 0.14s;
}
.mprod:hover { background: var(--light); border-color: var(--line); }
.mprod__name { font-size: 0.94rem; font-weight: 500; color: var(--ink); }
.mprod:hover .mprod__name { color: var(--red); }
.mprod__tag { font-size: 0.76rem; color: var(--muted); }

/* Ilustracije / fotografije izdelkov */
.prod__media .ill { width: 100%; max-width: 300px; height: auto; }
.prod__photo { width: 100%; height: 210px; object-fit: contain; display: block; }
.prod-hero__media .ill { width: 100%; max-width: 460px; height: auto; margin: 0 auto; display: block; }
/* Fotografija v heroju izdelka — brez ozadja, večja */
.prod-hero__media.has-photo { background: transparent; padding: 0; }
.prod-hero__media.has-photo .prod-hero__photo { width: 124%; max-width: none; margin-left: -12%; }
.prod-hero__photo { width: 100%; height: auto; display: block; }

/* ===== Active nav item ===== */
.nav__menu a.is-active { color: var(--red); }
.nav.on-dark .nav__menu a.is-active { color: #fff; position: relative; }
.nav.on-dark .nav__menu a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -19px; height: 2px; background: var(--red);
}

/* ===== Category hero ===== */
.cat-hero {
  background: var(--dark); color: #fff; text-align: center;
  padding: 56px 24px 64px;
}
.breadcrumb { display: flex; gap: 8px; justify-content: center; align-items: center; font-size: 0.8rem; color: #8a8d94; margin-bottom: 26px; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #55585f; }
.breadcrumb__cur { color: #c3c6cc; }
.cat-hero__kicker { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 12px; }
.cat-hero__title { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; letter-spacing: -0.02em; }
.cat-hero__lead { color: #b6b9c0; font-size: 1.08rem; margin-top: 14px; line-height: 1.6; }

/* ===== Filter bar ===== */
.filterbar {
  position: sticky; top: var(--nav-h); z-index: 40;
  background: rgba(255,255,255,0.94); backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--line); transition: box-shadow 0.25s;
}
.filterbar.is-stuck { box-shadow: 0 8px 26px -18px rgba(0,0,0,0.4); }
.filterbar__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 26px; flex-wrap: wrap;
}
.filter-group { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-group__label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; margin-right: 4px; }
.fchip {
  font-family: var(--font); font-size: 0.85rem; font-weight: 500; color: var(--ink-2);
  background: var(--light); border: 1px solid transparent; border-radius: 999px;
  padding: 8px 16px; cursor: pointer; transition: all 0.18s;
}
.fchip:hover { background: #ececef; color: var(--ink); }
.fchip.is-on { background: var(--red); color: #fff; }
.filter-sort { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.filter-sort label { font-size: 0.78rem; font-weight: 600; color: var(--muted); text-transform: uppercase; letter-spacing: 0.08em; }
.filter-sort select {
  font-family: var(--font); font-size: 0.85rem; color: var(--ink); background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 8px 14px; cursor: pointer;
}

/* ===== Catalog grid ===== */
.catalog { max-width: var(--maxw); margin: 0 auto; padding: 36px 24px 80px; }
.catalog__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.catalog__count { font-size: 0.92rem; color: var(--muted); }
.catalog__reset { background: none; border: none; color: var(--red); font: inherit; font-size: 0.88rem; font-weight: 500; cursor: pointer; }
.catalog__reset:hover { text-decoration: underline; }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.prod {
  position: relative; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}
.prod:hover { transform: translateY(-6px); box-shadow: 0 22px 50px -24px rgba(0,0,0,0.32); border-color: transparent; }
.prod__badge {
  position: absolute; top: 16px; left: 16px; z-index: 2;
  background: var(--red); color: #fff; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px;
}
.prod__media {
  background: linear-gradient(160deg, #fafafb, #f1f2f4);
  padding: 28px 24px 8px; display: flex; align-items: center; justify-content: center;
}
.prod__svg { width: 100%; max-width: 300px; height: auto; transition: transform 0.3s ease; }
.prod:hover .prod__svg { transform: scale(1.04); }
.prod__body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.prod__type { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.prod__name { font-size: 1.3rem; font-weight: 600; letter-spacing: -0.01em; }
.prod__desc { color: var(--muted); font-size: 0.9rem; margin: 8px 0 16px; flex: 1; }
.prod__specs { list-style: none; border-top: 1px solid var(--line); padding-top: 14px; margin-bottom: 18px; display: flex; flex-direction: column; gap: 8px; }
.prod__specs li { display: flex; justify-content: space-between; font-size: 0.86rem; }
.prod__specs span { color: var(--muted); }
.prod__specs strong { font-weight: 600; color: var(--ink); }
.prod__links { display: flex; gap: 22px; }
.prod .link-more { color: var(--red); }
.prod .link-buy { color: var(--ink); }

.empty { text-align: center; padding: 70px 20px; color: var(--muted); }
.empty p { font-size: 1.05rem; margin-bottom: 18px; }

/* ===== Help banner ===== */
.help { background: var(--light); }
.help__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 48px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.help__inner h3 { font-size: 1.5rem; font-weight: 600; }
.help__inner p { color: var(--muted); margin-top: 6px; }
.help__links { display: flex; gap: 24px; }
.help .link-more { color: var(--red); }

/* ===== Catalog responsive ===== */
@media (max-width: 900px) {
  .grid { grid-template-columns: repeat(2, 1fr); }
  .filter-sort { margin-left: 0; }
}
@media (max-width: 560px) {
  .grid { grid-template-columns: 1fr; }
  .filterbar__inner { gap: 16px; }
}

/* ===== Skupni gradniki za podstrani ===== */
.eyebrow-red { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red); margin-bottom: 12px; }
.btn-solid {
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--red); color: #fff; font-weight: 600; font-size: 0.92rem;
  padding: 13px 26px; transition: background 0.2s;
}
.btn-solid:hover { background: #b3160a; }
.btn-solid--block { display: flex; width: 100%; margin-top: 18px; }
.breadcrumb--left { justify-content: flex-start; margin-bottom: 22px; }

/* ===== Hero izdelka ===== */
.prod-hero { background: var(--dark); color: #fff; overflow: hidden; }
.prod-hero__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 40px 24px 64px;
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center;
}
.prod-hero__kicker { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 12px; }
.prod-hero__title { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.02em; }
.prod-hero__lead { color: #b6b9c0; font-size: 1.1rem; margin: 16px 0 28px; max-width: 480px; line-height: 1.6; }
.prod-hero__stats { display: flex; gap: 36px; margin-bottom: 30px; }
.prod-hero__stats div { display: flex; flex-direction: column; }
.prod-hero__stats strong { font-size: 1.5rem; font-weight: 700; }
.prod-hero__stats span { font-size: 0.82rem; color: #8a8d94; margin-top: 2px; }
.prod-hero__cta { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.prod-hero__cta .link-buy { color: #fff; }
.prod-hero__media { background: radial-gradient(circle at 55% 45%, #20242b, #0c0e11); padding: 30px; }
.prod-hero__svg { width: 100%; height: auto; }

/* ===== Pas s hitrimi specifikacijami ===== */
.spec-strip { background: var(--dark-2); color: #fff; border-top: 1px solid #23262c; }
.spec-strip__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: repeat(6, 1fr);
}
.spec-strip__item { padding: 22px 16px; border-left: 1px solid #23262c; display: flex; flex-direction: column; gap: 4px; }
.spec-strip__item:first-child { border-left: none; }
.spec-strip__item span { font-size: 0.74rem; color: #8a8d94; text-transform: uppercase; letter-spacing: 0.06em; }
.spec-strip__item strong { font-size: 1.02rem; font-weight: 600; }

/* ===== Opis ===== */
.prod-desc { background: #fff; }
.prod-desc__inner { max-width: 820px; margin: 0 auto; padding: 72px 24px; }
.prod-desc__inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.5rem); font-weight: 600; margin-bottom: 18px; }
.prod-desc__inner p:not(.eyebrow-red) { color: var(--ink-2); font-size: 1.08rem; line-height: 1.7; }

/* ===== Komponente ===== */
.components { background: var(--light); padding: 76px 24px; }
.components__head { max-width: var(--maxw); margin: 0 auto 40px; text-align: center; }
.components__head h2 { font-size: clamp(1.9rem, 3.6vw, 2.6rem); font-weight: 600; }
.components__sub { color: var(--muted); margin-top: 10px; }
.components__grid { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.comp-card {
  background: #fff; border: 1px solid var(--line); padding: 30px 26px;
  display: flex; flex-direction: column; gap: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.comp-card:hover { transform: translateY(-5px); box-shadow: 0 20px 46px -24px rgba(0,0,0,0.3); border-color: transparent; }
.comp-card__ico { font-size: 2rem; }
.comp-card h3 { font-size: 1.2rem; font-weight: 600; }
.comp-card p { color: var(--muted); font-size: 0.9rem; flex: 1; }
.comp-card__cta { font-weight: 600; font-size: 0.88rem; color: var(--red); margin-top: 6px; }

/* ===== Tabela specifikacij ===== */
.spec-table-wrap { background: #fff; padding: 76px 24px; }
.spec-table-wrap__inner { max-width: 820px; margin: 0 auto; }
.spec-table-wrap__inner h2 { font-size: clamp(1.8rem, 3.4vw, 2.4rem); font-weight: 600; margin-bottom: 28px; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 15px 4px; border-bottom: 1px solid var(--line); font-size: 0.95rem; vertical-align: top; }
.spec-table th { font-weight: 600; color: var(--ink); width: 42%; }
.spec-table td { color: var(--ink-2); }

/* ===== Hero komponente ===== */
.comp-hero { background: var(--dark); color: #fff; text-align: center; padding: 48px 24px 60px; }
.comp-hero__kicker { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--red-bright); margin-bottom: 12px; }
.comp-hero__title { font-size: clamp(2.1rem, 4.6vw, 3.3rem); font-weight: 700; letter-spacing: -0.02em; }
.comp-hero__lead { color: #b6b9c0; font-size: 1.08rem; max-width: 680px; margin: 16px auto 0; line-height: 1.6; }

/* ===== Telo komponente ===== */
.comp-body { background: #fff; padding: 64px 24px; }
.comp-body__inner { max-width: var(--maxw); margin: 0 auto; display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.comp-body__ico { font-size: 2.6rem; display: block; margin-bottom: 16px; }
.comp-body__intro { color: var(--ink-2); font-size: 1.1rem; line-height: 1.7; margin-bottom: 32px; }
.comp-body__h { font-size: 1.3rem; font-weight: 600; margin-bottom: 16px; }
.comp-feats { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.comp-feats li { position: relative; padding-left: 30px; color: var(--ink-2); }
.comp-feats li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; background: var(--red); color: #fff;
  font-size: 0.7rem; font-weight: 700; display: grid; place-items: center;
}
.comp-side { background: var(--light); border: 1px solid var(--line); padding: 28px; position: sticky; top: calc(var(--nav-h) + 20px); }
.comp-side h3 { font-size: 1.05rem; font-weight: 600; margin-bottom: 14px; }
.comp-var { width: 100%; border-collapse: collapse; }
.comp-var th, .comp-var td { text-align: left; padding: 11px 2px; border-bottom: 1px solid var(--line); font-size: 0.9rem; }
.comp-var th { font-weight: 600; color: var(--ink); }
.comp-var td { color: var(--ink-2); }
.comp-var tr:last-child th, .comp-var tr:last-child td { border-bottom: none; }

/* ===== Druge komponente ===== */
.other-comps { background: var(--light); padding: 64px 24px 80px; }
.other-comps__inner { max-width: var(--maxw); margin: 0 auto; }
.other-comps__inner h2 { font-size: 1.5rem; font-weight: 600; margin-bottom: 24px; }
.other-comps__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; margin-bottom: 34px; }
.other-card { background: #fff; border: 1px solid var(--line); padding: 22px 18px; display: flex; flex-direction: column; gap: 8px; transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s; }
.other-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px -22px rgba(0,0,0,0.3); border-color: transparent; }
.other-card__ico { font-size: 1.5rem; }
.other-card__name { font-size: 0.92rem; font-weight: 600; flex: 1; }
.other-card__cta { font-size: 0.82rem; font-weight: 600; color: var(--red); }
.back-link { font-weight: 600; color: var(--ink); }
.back-link:hover { color: var(--red); }

/* ===== Responsivno (podstrani) ===== */
@media (max-width: 900px) {
  .prod-hero__inner { grid-template-columns: 1fr; gap: 30px; }
  .prod-hero__media { order: -1; }
  .spec-strip__inner { grid-template-columns: repeat(3, 1fr); }
  .spec-strip__item:nth-child(3n+1) { border-left: none; }
  .components__grid { grid-template-columns: repeat(2, 1fr); }
  .comp-body__inner { grid-template-columns: 1fr; gap: 30px; }
  .comp-side { position: static; }
  .other-comps__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 560px) {
  .spec-strip__inner { grid-template-columns: 1fr 1fr; }
  .spec-strip__item { border-left: none; }
  .components__grid { grid-template-columns: 1fr; }
  .prod-hero__stats { gap: 22px; }
  .other-comps__grid { grid-template-columns: 1fr 1fr; }
}

/* ===== Mobile menu ===== */
.mobile-menu {
  position: fixed; inset: 0; z-index: 200; background: #fff;
  display: flex; flex-direction: column; overflow-y: auto;
  transform: translateX(100%); transition: transform 0.28s ease; visibility: hidden;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
.mobile-menu__bar {
  position: sticky; top: 0; background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 22px; z-index: 2;
}
.mobile-menu__brand { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.mobile-menu__brand .nav__mark { width: 26px; height: 26px; font-size: 1rem; }
.mobile-menu__x { background: none; border: none; color: #fff; font-size: 2rem; line-height: 1; cursor: pointer; }
.mobile-menu .m-top {
  display: block; padding: 16px 22px; font-size: 1.05rem; font-weight: 600; color: var(--ink);
  border-bottom: 1px solid var(--line);
}
.mobile-menu .m-top:hover { color: var(--red); }
.m-accordion { border-bottom: 1px solid var(--line); }
.m-item { border-bottom: 1px solid var(--line); }
.m-cat {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 15px 22px; background: none; border: none; cursor: pointer;
  font-family: var(--font); font-size: 1.02rem; font-weight: 600; color: var(--ink); text-align: left;
}
.m-cat__ico { margin-right: 10px; }
.m-cat__plus { font-size: 1.4rem; color: var(--muted); transition: transform 0.2s; }
.m-item.open .m-cat__plus { transform: rotate(45deg); color: var(--red); }
.m-sub { display: none; flex-direction: column; background: var(--light); padding: 4px 0 10px; }
.m-item.open .m-sub { display: flex; }
.m-sub a { padding: 10px 22px 10px 44px; font-size: 0.94rem; color: var(--ink-2); }
.m-sub a:hover { color: var(--red); }
.m-sub .m-all { font-weight: 600; color: var(--red); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .nav__menu { display: none; }
  .nav__burger { display: flex; }
  .nav__cta { display: none; }
  .megamenu { display: none !important; }
  .duo { grid-template-columns: 1fr; }
  .explore__grid { grid-template-columns: repeat(4, 1fr); }
  .support__inner { grid-template-columns: 1fr; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .panel { min-height: 560px; }
}
@media (max-width: 560px) {
  .explore__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .panel__links { flex-direction: column; gap: 14px; }
  .footer__bar { flex-direction: column; gap: 12px; }
}
