:root {
  --vex-navy: #0B1D33;
  --vex-navy-light: #13294B;
  --vex-blue: #2F6FED;
  --vex-blue-dark: #1E4FB8;
  --vex-signal: #FF5A1F;
  --vex-paper: #F7F8FA;
  --vex-white: #FFFFFF;
  --vex-ink: #14171F;
  --vex-ink-muted: #5B6472;
  --vex-line: #E2E5EA;
  --vex-success: #1E9E6B;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

* { box-sizing: border-box; }

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

body {
  font-family: var(--font-body);
  color: var(--vex-ink);
  background: var(--vex-paper);
  margin: 0;
}

h1, h2, h3, .vex-logo {
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

a { text-decoration: none; color: inherit; }

/* ---------- Header ---------- */
.vex-header-top {
  background: var(--vex-navy);
  color: var(--vex-white);
}
.vex-header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.6rem 0;
}

.vex-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--vex-white);
  white-space: nowrap;
}
.vex-logo span { color: var(--vex-blue); }
.vex-logo-footer { color: var(--vex-ink); }
.vex-logo-footer span { color: var(--vex-blue); }

.vex-search { display: flex; flex: 1; max-width: 640px; }
.vex-search input {
  flex: 1;
  border: none;
  border-radius: 8px 0 0 8px;
  padding: 0.65rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.vex-search input:focus { outline: 2px solid var(--vex-blue); outline-offset: -2px; }
.vex-search button {
  border: none;
  background: var(--vex-blue);
  color: var(--vex-white);
  padding: 0 1.2rem;
  border-radius: 0 8px 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
}
.vex-search button:hover { background: var(--vex-blue-dark); }

.vex-cart-link {
  color: var(--vex-white);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}
.vex-cart-badge {
  background: var(--vex-signal);
  color: var(--vex-white);
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: 999px;
  padding: 0.05rem 0.4rem;
}

.vex-nav { background: var(--vex-navy-light); border-top: 1px solid rgba(255,255,255,0.08); position: relative; }

.vex-nav-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: none;
  border: none;
  color: var(--vex-white);
  padding: 0.7rem 0;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
}

.vex-nav-list {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--vex-white);
  width: 280px;
  max-width: 90vw;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: 0 16px 40px rgba(11,29,51,0.22);
  border-radius: 0 0 10px 10px;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0;
  z-index: 30;
  flex-direction: column;
}
.vex-nav-list.show { display: flex; }

.vex-nav-item { position: relative; }
.vex-nav-item > a {
  display: block;
  color: var(--vex-ink);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.55rem 1rem;
}
.vex-nav-item > a:hover { color: var(--vex-blue); background: var(--vex-paper); }
.vex-nav-outlet > a { color: var(--vex-signal); font-weight: 700; }
.vex-nav-outlet > a:hover { color: var(--vex-signal); background: var(--vex-paper); }

.vex-nav-dropdown { list-style: none; margin: 0; padding: 0; }
.vex-nav-dropdown a {
  display: block;
  padding: 0.45rem 1rem 0.45rem 2rem;
  color: var(--vex-ink-muted);
  font-size: 0.84rem;
}
.vex-nav-dropdown a:hover { background: var(--vex-paper); color: var(--vex-blue); }

/* ---------- Pristupačnost: vizuelno sakriven, ali dostupan citacima ekrana i Google-u ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* ---------- Section titles ---------- */
.vex-section-title { font-size: 1.4rem; font-weight: 600; margin: 0 0 1.25rem; padding-top: 2.5rem; color: var(--vex-ink); }

/* ---------- Brendovi ---------- */
.vex-brands { display: flex; flex-wrap: wrap; gap: 0.6rem; }
.vex-brand-chip {
  border: 1px solid var(--vex-line);
  background: var(--vex-white);
  border-radius: 999px;
  padding: 0.45rem 1.1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--vex-ink);
}
.vex-brand-chip:hover { border-color: var(--vex-blue); color: var(--vex-blue); }

/* ---------- Trust bedzevi ---------- */
.vex-trust {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  background: var(--vex-white);
  border: 1px solid var(--vex-line);
  border-radius: 12px;
  padding: 1.25rem;
  margin-top: 2.5rem;
}
.vex-trust-item { display: flex; align-items: center; gap: 0.75rem; }
.vex-trust-item svg { width: 26px; height: 26px; color: var(--vex-blue); flex-shrink: 0; }
.vex-trust-item span { font-size: 0.85rem; font-weight: 500; color: var(--vex-ink); line-height: 1.3; }

/* ---------- Category grid ---------- */
.vex-category-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 0.85rem; }
.vex-category-tile {
  background: var(--vex-white);
  border: 1px solid var(--vex-line);
  border-radius: 10px;
  padding: 1.1rem 1rem;
  font-weight: 500;
  font-size: 0.92rem;
  text-align: center;
  transition: border-color 0.15s, transform 0.15s;
}
.vex-category-tile:hover { border-color: var(--vex-blue); transform: translateY(-2px); }

/* ---------- Product grid & card ---------- */
.vex-product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.25rem; }
.vex-card {
  background: var(--vex-white);
  border: 1px solid var(--vex-line);
  border-radius: 10px;
  overflow: hidden;
  display: block;
  transition: box-shadow 0.15s;
}
.vex-card:hover { box-shadow: 0 8px 24px rgba(11,29,51,0.1); }
.vex-card-media { position: relative; aspect-ratio: 4 / 3; background: var(--vex-paper); }
.vex-card-media-placeholder {
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, var(--vex-line) 0, var(--vex-line) 1px, transparent 1px, transparent 12px);
}
.vex-badge {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  color: var(--vex-white);
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.vex-badge-outlet { background: var(--vex-signal); }
.vex-badge-sale { background: var(--vex-success); left: auto; right: 0.6rem; }
.vex-card-body { padding: 0.9rem 1rem 1.1rem; }
.vex-card-sku { font-family: var(--font-mono); font-size: 0.72rem; color: var(--vex-ink-muted); display: block; margin-bottom: 0.25rem; }
.vex-mono { font-family: var(--font-mono); font-size: 0.85rem; color: var(--vex-ink-muted); }
.vex-card-title {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.35;
  margin: 0 0 0.4rem;
  color: var(--vex-ink);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.vex-card-condition { display: inline-block; font-size: 0.72rem; color: var(--vex-signal); font-weight: 600; margin-bottom: 0.4rem; }
.vex-card-price { font-family: var(--font-mono); }
.vex-price { font-size: 1.05rem; font-weight: 700; color: var(--vex-ink); }
.vex-price-old { font-size: 0.82rem; color: var(--vex-ink-muted); text-decoration: line-through; margin-right: 0.4rem; }

/* ---------- Footer ---------- */
.vex-footer { background: var(--vex-white); border-top: 1px solid var(--vex-line); margin-top: 3rem; padding: 3rem 0 1.5rem; }
.vex-footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr 1fr; gap: 2rem; }
.vex-footer h6 {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--vex-ink-muted);
  margin-bottom: 0.9rem;
}
.vex-footer-text { color: var(--vex-ink-muted); font-size: 0.9rem; line-height: 1.6; max-width: 320px; }
.vex-footer-links { list-style: none; margin: 0; padding: 0; }
.vex-footer-links li { margin-bottom: 0.5rem; font-size: 0.9rem; }
.vex-footer-links a:hover { color: var(--vex-blue); }
.vex-footer-bottom { border-top: 1px solid var(--vex-line); margin-top: 2.5rem; padding-top: 1.25rem; font-size: 0.82rem; color: var(--vex-ink-muted); display: flex; flex-wrap: wrap; gap: 0.4rem 1.5rem; justify-content: space-between; }

@media (max-width: 767px) {
  .vex-footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Pristupačnost ---------- */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2px solid var(--vex-blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; }
}

/* ---------- Auth / forme (admin login) ---------- */
.vex-auth-wrap { min-height: 100vh; display: flex; align-items: center; background: var(--vex-paper); }
.vex-auth-card {
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  background: var(--vex-white);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(11,29,51,0.08);
  padding: 2rem;
}
.vex-auth-title { font-size: 1.2rem; font-weight: 600; text-align: center; margin: 0 0 1.5rem; }
.vex-field { margin-bottom: 1rem; }
.vex-field label { display: block; font-size: 0.88rem; font-weight: 500; margin-bottom: 0.35rem; color: var(--vex-ink); }
.vex-field input {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.95rem;
}
.vex-field input:focus { outline: 2px solid var(--vex-blue); outline-offset: 1px; border-color: var(--vex-blue); }
.vex-btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: var(--vex-blue);
  color: var(--vex-white);
  border: none;
  padding: 0.65rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
}
.vex-btn:hover { background: var(--vex-blue-dark); }
.vex-alert { padding: 0.65rem 0.9rem; border-radius: 6px; font-size: 0.88rem; margin-bottom: 1rem; }
.vex-alert-danger { background: #FCE9E6; color: #9A2F1F; }
.vex-alert-warning { background: #FDF3DC; color: #7A5209; }

/* ---------- Stranica kategorije ---------- */
.vex-breadcrumbs { font-size: 0.82rem; color: var(--vex-ink-muted); padding: 1.25rem 0 0.5rem; display: flex; gap: 0.4rem; flex-wrap: wrap; }
.vex-breadcrumbs a:hover { color: var(--vex-blue); }
.vex-breadcrumbs [aria-current] { color: var(--vex-ink); font-weight: 500; }

.vex-category-head { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; flex-wrap: wrap; padding: 0.5rem 0 1rem; }
.vex-category-head h1 { font-size: 1.6rem; font-weight: 600; margin: 0; }
.vex-result-count { font-size: 0.85rem; color: var(--vex-ink-muted); }

.vex-subcats { display: flex; flex-wrap: wrap; gap: 0.5rem; padding-bottom: 1.5rem; }
.vex-subcat-chip {
  border: 1px solid var(--vex-line);
  background: var(--vex-white);
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--vex-ink);
}
.vex-subcat-chip:hover { border-color: var(--vex-blue); color: var(--vex-blue); }
.vex-subcat-chip.active { background: var(--vex-navy); border-color: var(--vex-navy); color: var(--vex-white); }

.vex-category-layout { display: grid; grid-template-columns: 240px 1fr; gap: 2rem; align-items: start; padding-bottom: 3rem; }
@media (max-width: 800px) {
  .vex-category-layout { grid-template-columns: 1fr; }
}

.vex-filters {
  background: var(--vex-white);
  border: 1px solid var(--vex-line);
  border-radius: 10px;
  padding: 1.25rem;
}
.vex-filter-group { padding-bottom: 1.25rem; margin-bottom: 1.25rem; border-bottom: 1px solid var(--vex-line); }
.vex-filter-group:last-of-type { border-bottom: none; margin-bottom: 0.5rem; }
.vex-filter-group h3 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.02em; color: var(--vex-ink-muted); margin: 0 0 0.75rem; }
.vex-filter-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.88rem; padding: 0.3rem 0; cursor: pointer; }
.vex-price-inputs { display: flex; align-items: center; gap: 0.5rem; }
.vex-price-inputs input {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  padding: 0.4rem 0.5rem;
  font-size: 0.85rem;
}
.vex-price-inputs span { color: var(--vex-ink-muted); }
.vex-filters .vex-btn { margin-top: 0.5rem; }
.vex-filter-reset { display: block; text-align: center; font-size: 0.82rem; color: var(--vex-ink-muted); margin-top: 0.75rem; }
.vex-filter-reset:hover { color: var(--vex-blue); }

.vex-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.vex-sort { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--vex-ink-muted); }
.vex-sort select {
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  padding: 0.4rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--vex-ink);
  background: var(--vex-white);
}
.vex-view-toggle { display: flex; gap: 0.25rem; }
.vex-view-toggle a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  color: var(--vex-ink-muted);
}
.vex-view-toggle a.active { background: var(--vex-navy); border-color: var(--vex-navy); color: var(--vex-white); }

.vex-product-list { display: flex; flex-direction: column; gap: 0.85rem; }
.vex-card--list { display: flex; align-items: stretch; }
.vex-card--list .vex-card-media { width: 160px; flex-shrink: 0; aspect-ratio: auto; }
.vex-card--list .vex-card-body { flex: 1; display: flex; flex-direction: column; justify-content: center; }
@media (max-width: 560px) {
  .vex-card--list { flex-direction: column; }
  .vex-card--list .vex-card-media { width: 100%; aspect-ratio: 4 / 3; }
}

.vex-card--oos { opacity: 0.6; }
.vex-price-oos { font-size: 0.9rem; font-weight: 600; color: var(--vex-ink-muted); }

.vex-pagination { display: flex; gap: 0.4rem; justify-content: center; padding-top: 2rem; }
.vex-pagination a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  font-size: 0.88rem;
  color: var(--vex-ink);
}
.vex-pagination a.active { background: var(--vex-navy); border-color: var(--vex-navy); color: var(--vex-white); }
.vex-pagination a:hover:not(.active) { border-color: var(--vex-blue); color: var(--vex-blue); }

.vex-empty-state { text-align: center; padding: 3rem 1rem; color: var(--vex-ink-muted); }
.vex-btn-link { display: inline-block; margin-top: 0.75rem; color: var(--vex-blue); font-weight: 600; font-size: 0.9rem; }
.vex-btn-link:hover { text-decoration: underline; }

/* ---------- Stranica proizvoda ---------- */
.vex-alert-success { background: #E4F5EC; color: #15794F; }

.vex-product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 2.5rem; padding: 1.5rem 0 2.5rem; }
@media (max-width: 800px) {
  .vex-product-detail { grid-template-columns: 1fr; }
}

.vex-gallery-main { position: relative; border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 3; background: var(--vex-white); border: 1px solid var(--vex-line); }
.vex-gallery-thumbs { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.vex-gallery-thumb { width: 70px; aspect-ratio: 1; border-radius: 8px; overflow: hidden; position: relative; border: 1px solid var(--vex-line); }

.vex-product-info .vex-card-sku { margin-bottom: 0.4rem; }
.vex-product-info h1 { font-size: 1.5rem; font-weight: 600; margin: 0 0 0.75rem; line-height: 1.3; }

.vex-outlet-box {
  background: #FFF4EE;
  border: 1px solid #FFD9C2;
  border-radius: 10px;
  padding: 0.9rem 1rem;
  margin-bottom: 1rem;
}
.vex-outlet-condition { display: inline-block; font-weight: 700; color: var(--vex-signal); font-size: 0.88rem; margin-right: 1rem; }
.vex-outlet-warranty { font-size: 0.85rem; color: var(--vex-ink-muted); }
.vex-outlet-desc { font-size: 0.88rem; color: var(--vex-ink); margin: 0.5rem 0 0; line-height: 1.5; }

.vex-product-price { font-family: var(--font-mono); margin-bottom: 0.5rem; }
.vex-price-large { font-size: 1.9rem; font-weight: 700; color: var(--vex-ink); }
.vex-price-old-large { font-size: 1.1rem; color: var(--vex-ink-muted); text-decoration: line-through; margin-right: 0.6rem; }
.vex-price-oos-large { font-size: 1.3rem; font-weight: 600; color: var(--vex-ink-muted); }

.vex-stock-status { display: inline-block; font-size: 0.85rem; font-weight: 500; margin-bottom: 1rem; }
.vex-stock-status.in-stock { color: var(--vex-success); }
.vex-stock-status.out-of-stock { color: var(--vex-ink-muted); }

.vex-product-short-desc { color: var(--vex-ink-muted); font-size: 0.95rem; line-height: 1.6; margin-bottom: 1.25rem; }

.vex-add-to-cart { display: flex; gap: 0.75rem; margin-bottom: 1rem; }
.vex-add-to-cart input[type="number"] {
  width: 70px;
  border: 1px solid var(--vex-line);
  border-radius: 8px;
  padding: 0 0.75rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
}
.vex-add-to-cart .vex-btn { width: auto; padding: 0 1.75rem; }
.vex-warranty-note { font-size: 0.85rem; color: var(--vex-ink-muted); }

.vex-product-tabs { border-top: 1px solid var(--vex-line); padding-top: 2rem; margin-bottom: 2rem; }
.vex-product-section { margin-bottom: 2rem; }
.vex-product-section h2 { font-size: 1.15rem; font-weight: 600; margin: 0 0 1rem; }
.vex-product-description { color: var(--vex-ink); font-size: 0.95rem; line-height: 1.7; }

.vex-spec-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; max-width: 600px; }
.vex-spec-table tr { border-bottom: 1px solid var(--vex-line); }
.vex-spec-table th { text-align: left; padding: 0.6rem 1rem 0.6rem 0; color: var(--vex-ink-muted); font-weight: 500; width: 40%; }
.vex-spec-table td { padding: 0.6rem 0; font-weight: 500; }

/* ---------- Korpa i checkout ---------- */
.vex-cart-page { padding: 1.5rem 0 3rem; max-width: 720px; }
.vex-cart-title { font-size: 1.6rem; font-weight: 600; margin: 0 0 1.5rem; }

.vex-cart-items { margin-bottom: 2rem; }
.vex-cart-row {
  display: grid;
  grid-template-columns: 1fr 70px 110px 32px;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--vex-line);
}
.vex-cart-item-link { display: flex; align-items: center; gap: 0.85rem; min-width: 0; }
.vex-cart-thumb {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: var(--vex-paper);
  background-image: repeating-linear-gradient(135deg, var(--vex-line) 0, var(--vex-line) 1px, transparent 1px, transparent 8px);
  border: 1px solid var(--vex-line);
}
.vex-cart-item-info { min-width: 0; display: flex; flex-direction: column; gap: 0.2rem; }
.vex-cart-item-name {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--vex-ink);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.vex-outlet-tag { color: var(--vex-signal); font-weight: 700; }
.vex-cart-qty {
  width: 100%;
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  padding: 0.4rem;
  text-align: center;
  font-family: var(--font-body);
}
.vex-cart-remove {
  border: none;
  background: none;
  color: var(--vex-ink-muted);
  font-size: 1.3rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}
.vex-cart-remove:hover { color: var(--vex-signal); }

.vex-cart-total-row { display: flex; align-items: center; justify-content: space-between; padding-top: 1.25rem; }
.vex-cart-total { font-family: var(--font-mono); font-size: 1.1rem; }
.vex-btn-secondary {
  background: var(--vex-white);
  border: 1px solid var(--vex-line);
  color: var(--vex-ink);
  padding: 0.55rem 1.1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
}
.vex-btn-secondary:hover { border-color: var(--vex-blue); color: var(--vex-blue); }

.vex-hidden-form { display: none; }
.vex-honeypot { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.vex-checkout-title { padding-top: 1rem; border-top: 1px solid var(--vex-line); }
.vex-checkout-subtitle { font-size: 1rem; font-weight: 600; margin: 1.5rem 0 0.85rem; }
.vex-checkout-note { font-size: 0.85rem; color: var(--vex-ink-muted); margin: 1rem 0 1.25rem; }

.vex-customer-type { display: flex; gap: 1.5rem; margin-bottom: 1.25rem; }
.vex-radio { display: flex; align-items: center; gap: 0.5rem; font-size: 0.92rem; font-weight: 500; cursor: pointer; }

.vex-company-fields { background: var(--vex-paper); border-radius: 10px; padding: 1rem; margin-bottom: 1.25rem; }

.vex-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
@media (max-width: 560px) {
  .vex-form-row { grid-template-columns: 1fr; }
}
.vex-field-col { display: flex; flex-direction: column; gap: 0.35rem; }
.vex-field-col label, .vex-field-col > span { font-size: 0.85rem; font-weight: 500; color: var(--vex-ink-muted); }
.vex-field-col input, .vex-field-col textarea {
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  width: 100%;
}
.vex-field-col textarea { resize: vertical; }

.vex-delivery-options { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.25rem; }
.vex-radio-card {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--vex-line);
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
}
.vex-radio-card:has(input:checked) { border-color: var(--vex-blue); background: #EFF4FF; }

.vex-order-success { text-align: center; padding: 3rem 1rem; }
.vex-order-success h1 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.vex-order-success p { color: var(--vex-ink-muted); margin-bottom: 0.5rem; }

/* ---------- Kontakt ---------- */
.vex-contact-page { padding: 1.5rem 0 3rem; }
.vex-contact-page h1 { font-size: 1.6rem; font-weight: 600; margin: 0 0 1.5rem; }
.vex-contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 2.5rem; }
@media (max-width: 700px) { .vex-contact-grid { grid-template-columns: 1fr; } }
.vex-contact-info h2, .vex-contact-form-wrap h2 { font-size: 1.05rem; font-weight: 600; margin: 0 0 1rem; }
.vex-contact-info p { margin: 0 0 0.6rem; font-size: 0.92rem; }
.vex-contact-info a { color: var(--vex-blue); }
.vex-contact-form .vex-field-col { margin-bottom: 1rem; display: flex; flex-direction: column; gap: 0.35rem; }
.vex-contact-form label { font-size: 0.85rem; font-weight: 500; color: var(--vex-ink-muted); }
.vex-contact-form input, .vex-contact-form textarea {
  border: 1px solid var(--vex-line);
  border-radius: 6px;
  padding: 0.55rem 0.75rem;
  font-family: var(--font-body);
  font-size: 0.92rem;
  width: 100%;
}
.vex-contact-form textarea { resize: vertical; }

/* ---------- Info stranice (nacin isporuke i slicne) ---------- */
.vex-info-page { padding: 1.5rem 0 3rem; max-width: 860px; }
.vex-info-page h1 { font-size: 1.6rem; font-weight: 600; margin: 0 0 1rem; }
.vex-info-intro { color: var(--vex-ink-muted); font-size: 0.95rem; line-height: 1.6; margin: 0 0 2rem; }
.vex-info-cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.25rem; margin-bottom: 2.5rem; }
.vex-info-card { background: var(--vex-white); border: 1px solid var(--vex-line); border-radius: 10px; padding: 1.25rem; }
.vex-info-card h2 { font-size: 1rem; font-weight: 600; margin: 0 0 0.6rem; }
.vex-info-card p { font-size: 0.88rem; color: var(--vex-ink-muted); line-height: 1.6; margin: 0; }
.vex-faq-item { margin-bottom: 1.25rem; }
.vex-faq-item h3 { font-size: 0.95rem; font-weight: 600; margin: 0 0 0.4rem; }
.vex-faq-item p { font-size: 0.9rem; color: var(--vex-ink-muted); line-height: 1.6; margin: 0; }
.vex-faq-item a { color: var(--vex-blue); }