/* ══════════════════════════════════════════════════════
   OPTIKA TEŽAK — Shared Stylesheet
   Brand: Green #2D7D6F · Gold #B8952A · Dark #3D3D5C
   Fonts: Cormorant Garamond + DM Sans
══════════════════════════════════════════════════════ */

/* ── CSS Variables ───────────────────────────────── */
:root {
  --green:    #2D7D6F;
  --green-d:  #1a5c50;
  --green-dp: #1a3d35;
  --gold:     #B8952A;
  --navy:     #3D3D5C;
  --cream:    #F8F7F4;
  --white:    #FFFFFF;
  --pad-section: 100px;
  --pad-section-mobile: 60px;
}

/* ── Reset ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  background: #fff;
  color: var(--navy);
  overflow-x: hidden;
}

/* ── Scrollbar ───────────────────────────────────── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: rgba(184,149,42,.4); border-radius: 2px; }

/* ════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════ */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e4dc;
  transition: box-shadow 0.3s;
}
#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(61,61,92,.08);
}
.navbar-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 0 40px;
  height: 64px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem;
}
.navbar-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; text-decoration: none; }
.navbar-logo img { height: 40px; width: 40px; object-fit: contain; flex-shrink: 0; }

/* ── Nav tabs with sliding cursor ─────────────────── */
.nav-tabs {
  display: flex; align-items: center;
  list-style: none; padding: 6px; margin: 0;
  background: var(--cream);
  border-radius: 9999px;
  position: relative;
  gap: 0;
}
.nav-tab { position: relative; z-index: 1; }
.nav-tab a {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  padding: 7px 16px;
  border-radius: 9999px;
  white-space: nowrap;
  transition: color 0.2s;
  position: relative; z-index: 1;
}
.nav-tab a:hover  { color: var(--navy); }
.nav-tab a.cursor-over { color: #fff; }

/* Green sliding pill */
.nav-cursor {
  position: absolute;
  top: 6px; left: 6px;
  height: calc(100% - 12px);
  background: var(--green);
  border-radius: 9999px;
  pointer-events: none;
  z-index: 0;
  transition: left 0.28s cubic-bezier(.4,0,.2,1),
              width 0.28s cubic-bezier(.4,0,.2,1),
              opacity 0.2s;
  opacity: 0;
}

/* ── Right side ───────────────────────────────────── */
.navbar-right {
  display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0;
}
.navbar-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: #fff; background: var(--green);
  padding: 10px 24px; border-radius: 9999px;
  text-decoration: none;
  transition: background 0.2s;
  white-space: nowrap;
}
.navbar-cta:hover { background: var(--green-d); }

/* ── Auth login link ─────────────────────────────── */
.navbar-login {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.09em; text-transform: uppercase;
  color: var(--navy); text-decoration: none;
  padding: 8px 16px;
  border: 1px solid rgba(61,61,92,.2);
  border-radius: 9999px;
  white-space: nowrap;
  transition: border-color .2s, color .2s;
}
.navbar-login:hover { border-color: var(--green); color: var(--green); }

/* ── Hamburger ────────────────────────────────────── */
.hamburger-btn {
  display: none;
  flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 6px;
  background: none; border: none; cursor: pointer;
  border-radius: 8px;
}
.hamburger-btn span {
  display: block; width: 100%; height: 1.5px;
  background: var(--navy); border-radius: 2px;
  transition: transform 0.25s, opacity 0.2s;
}

/* ── Mobile menu ─────────────────────────────────── */
#mobile-menu {
  position: fixed; inset: 0; z-index: 190;
  background: #fff; flex-direction: column;
  align-items: center; justify-content: center; gap: 2rem;
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  display: flex;
}
#mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-close {
  position: absolute; top: 1.25rem; right: 1.5rem;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.mobile-nav-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; align-items: center; gap: 0.25rem;
  width: 100%;
}
.mobile-nav-link {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 1.4rem; font-weight: 300;
  letter-spacing: 0.06em;
  color: var(--navy); text-decoration: none;
  padding: 0.6rem 2rem;
  transition: color 0.2s;
}
.mobile-nav-link:hover { color: var(--green); }
.mobile-cta-link {
  margin-top: 1rem;
  background: var(--green); color: #fff !important;
  border-radius: 9999px; font-weight: 600;
  padding: 0.65rem 2.5rem;
}
.mobile-cta-link:hover { background: var(--green-d); }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 768px) {
  .nav-tabs    { display: none; }
  .navbar-cta  { display: none; }
  .navbar-login { display: none; }
  .hamburger-btn { display: flex; }
}
@media (max-width: 480px) {
  .navbar-inner { padding: 0 16px; }
}


/* ════════════════════════════════════════════════════
   PAGE HERO (inner pages — 400px dark green banner)
════════════════════════════════════════════════════ */
.page-hero {
  background: var(--green-dp);
  padding: 100px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(45,125,111,.18) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(184,149,42,.75);
  display: flex; align-items: center; justify-content: center; gap: 0.75rem;
  margin-bottom: 1.25rem;
}
.page-hero-label::before,
.page-hero-label::after {
  content: ''; display: block;
  width: 24px; height: 1px;
  background: rgba(184,149,42,.4);
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.05;
  letter-spacing: -0.01em;
  color: #fff;
  margin-bottom: 1rem;
}
.page-hero p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.6);
}

/* ════════════════════════════════════════════════════
   SECTION HELPERS
════════════════════════════════════════════════════ */
.section-label {
  display: block;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1rem;
}
.gold-rule {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(184,149,42,.3), transparent);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ── Tailwind utility overrides ──────────────────────
   The global reset (* { margin:0; padding:0 }) is unlayered
   and therefore overrides all Tailwind @layer utilities.
   These unlayered rules restore the critical spacing utilities. */
.mx-auto  { margin-left: auto; margin-right: auto; }
.px-6     { padding-left: 1.5rem;  padding-right: 1.5rem;  }
@media (min-width: 1024px) {
  .lg\:px-10 { padding-left: 2.5rem; padding-right: 2.5rem; }
}

/* ════════════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(22px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1),
              transform .8s cubic-bezier(.16,1,.3,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.rd1 { transition-delay: .08s; }
.rd2 { transition-delay: .16s; }
.rd3 { transition-delay: .24s; }
.rd4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-arrow { animation: none; }
}

/* ════════════════════════════════════════════════════
   BUTTONS
════════════════════════════════════════════════════ */
.btn-green {
  display: inline-block;
  padding: 12px 28px;
  background: var(--green); color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--green); border-radius: 9999px;
  cursor: pointer; text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-green:hover { background: transparent; color: var(--green); }

.btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: transparent; color: var(--green);
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid var(--green); border-radius: 9999px;
  cursor: pointer; text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-outline:hover { background: var(--green); color: #fff; }

.btn-outline-white {
  display: inline-block;
  padding: 12px 28px;
  background: transparent; color: #fff;
  font-family: 'DM Sans', sans-serif; font-size: 13px;
  font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  border: 2px solid #fff; border-radius: 9999px;
  cursor: pointer; text-decoration: none;
  transition: all .2s;
  white-space: nowrap;
}
.btn-outline-white:hover { background: #fff; color: var(--green); }

/* ════════════════════════════════════════════════════
   SERVICE CARDS — Editorial style
════════════════════════════════════════════════════ */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.svc-card {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding: 2.75rem 2rem 2rem;
  border-right: 1px solid #f0ede8;
  border-bottom: 1px solid #f0ede8;
  text-decoration: none;
  display: flex; flex-direction: column;
  transition: background .35s ease, transform .35s ease, border-color .35s ease;
}
.svc-card:hover {
  background: var(--green);
  transform: translateY(-4px);
  border-color: var(--green);
  z-index: 1;
  box-shadow: 0 16px 48px rgba(45,125,111,.18);
}
.svc-card:nth-child(3n)          { border-right: none; }
.svc-card:nth-last-child(-n+3)   { border-bottom: none; }

.svc-num {
  position: absolute;
  top: -10px; right: 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 7.5rem; font-weight: 300; line-height: 1;
  color: var(--green); opacity: 0.06;
  pointer-events: none; user-select: none;
  transition: color .35s ease, opacity .35s ease;
}
.svc-card:hover .svc-num { color: #fff; opacity: 0.08; }

.svc-icon {
  color: var(--green);
  margin-bottom: .875rem;
  flex-shrink: 0;
  transition: color .35s ease;
}
.svc-card:hover .svc-icon { color: #fff; }

.svc-rule {
  width: 40px; height: 2px;
  background: var(--gold);
  margin-bottom: 1.25rem;
  flex-shrink: 0;
  transition: background .35s ease;
}
.svc-card:hover .svc-rule { background: #fff; }

.svc-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.375rem; font-weight: 400;
  color: var(--navy); line-height: 1.25;
  margin-bottom: .75rem;
  transition: color .35s ease;
}
.svc-card:hover .svc-title { color: #fff; }

.svc-desc {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.875rem; font-weight: 300;
  color: #6b7280; line-height: 1.7;
  flex: 1;
  transition: color .35s ease;
}
.svc-card:hover .svc-desc { color: rgba(255,255,255,.85); }

.svc-cta {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6875rem; font-weight: 500;
  letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold);
  margin-top: 1.75rem;
  flex-shrink: 0;
  transition: color .35s ease;
}
.svc-card:hover .svc-cta { color: #fff; }

/* Buttons inside svc-cards (storitve.html) invert on hover */
.svc-card:hover .btn-green {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}
.svc-card:hover .btn-outline {
  background: #fff;
  color: var(--green);
  border-color: #fff;
}

/* Legacy class kept for any remaining references */
.service-card {
  background: #fff;
  border: 1px solid rgba(61,61,92,.1);
  padding: 2.5rem 2rem;
  transition: border-color .3s, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  cursor: default;
}
.service-card:hover {
  border-color: var(--green);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(45,125,111,.08);
}

/* ════════════════════════════════════════════════════
   PRODUCT CARDS (Trgovina)
════════════════════════════════════════════════════ */
.product-card {
  background: #fff;
  border: 1px solid rgba(61,61,92,.1);
  transition: border-color .3s, transform .35s cubic-bezier(.16,1,.3,1), box-shadow .35s;
  cursor: pointer;
  overflow: hidden;
}
.product-card:hover {
  border-color: var(--green);
  transform: translateY(-5px);
  box-shadow: 0 20px 48px rgba(45,125,111,.08);
}
.product-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f0ede8 0%, #e8e4dc 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}

/* ════════════════════════════════════════════════════
   BRAND CAROUSEL
════════════════════════════════════════════════════ */
.brands-wrapper {
  overflow: hidden;
  width: 100%;
  /* Soft fade edges */
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}
.brands-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: scroll-brands 30s linear infinite;
  padding: 8px 0; /* room for box-shadow */
}
.brands-wrapper:hover .brands-track {
  animation-play-state: paused;
}
@keyframes scroll-brands {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 70px;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid #ede9e3;
  border-radius: 6px;
  padding: 12px 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(61,61,92,.6);
  cursor: default;
  transition: border-color .3s, color .3s, box-shadow .3s;
  user-select: none;
  box-sizing: border-box;
}
.brand-logo:hover {
  border-color: var(--green);
  color: var(--green);
  box-shadow: 0 4px 16px rgba(45,125,111,.1);
}

/* Logo images — normalized to same visual weight */
.brand-logo img {
  max-height: 38px;
  max-width: 120px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: grayscale(100%) opacity(0.5);
  transition: filter 0.3s ease;
}
.brand-logo:hover img {
  filter: grayscale(0%) opacity(1);
}

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  .brands-track { animation: none; }
}

/* ════════════════════════════════════════════════════
   LOCATION & INFO CARDS
════════════════════════════════════════════════════ */
.loc-card {
  background: #fff; border: 1px solid rgba(61,61,92,.1);
  padding: 2rem 1.75rem;
  transition: border-color .25s;
}
.loc-card:hover { border-color: var(--gold); }

.value-card {
  background: var(--cream);
  padding: 2.25rem 1.75rem;
  border-top: 2px solid var(--gold);
}

/* ════════════════════════════════════════════════════
   FORM ELEMENTS
════════════════════════════════════════════════════ */
.form-label {
  display: block; font-size: .65rem; font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--navy); margin-bottom: .5rem;
}
.form-input {
  width: 100%; border: 1px solid rgba(61,61,92,.18); background: #fff;
  padding: .9rem 1rem;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; color: var(--navy);
  outline: none; transition: border-color .2s, box-shadow .2s;
  -webkit-appearance: none; appearance: none;
}
.form-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,125,111,.08);
}
.form-input::placeholder { color: rgba(61,61,92,.35); }

/* ════════════════════════════════════════════════════
   WATERMARK NUMBER
════════════════════════════════════════════════════ */
.big-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem,18vw,16rem); font-weight: 300;
  line-height: .85; color: transparent;
  -webkit-text-stroke: 1px rgba(184,149,42,.2);
  user-select: none; pointer-events: none;
}

/* ════════════════════════════════════════════════════
   SCROLL EXPAND MEDIA HERO (index.html only)
════════════════════════════════════════════════════ */
#sem-track { position: relative; width: 100%; max-width: 100%; margin: 0; left: 0; }
#sem-sticky {
  position: sticky; top: 0;
  height: 100vh; width: 100%; max-width: 100%;
  overflow: hidden; background: #0d0d0d;
  left: 0; margin: 0;
}
#sem-bg {
  position: absolute; inset: 0;
  background-image: var(--sem-img-url);
  background-size: cover; background-position: center;
  filter: blur(28px) brightness(0.35);
  transform: scale(1.08);
  will-change: opacity; transition: opacity 0.05s linear;
}
#sem-media-wrap { position: absolute; inset: 0; will-change: clip-path; width: 100%; max-width: 100%; }
#sem-video {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center center; display: block;
}
#sem-overlay {
  position: absolute; inset: 0;
  background: rgba(26,61,53,.35); pointer-events: none;
}
#sem-content {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  z-index: 10; pointer-events: none;
  will-change: opacity; padding: 2rem;
}
#sem-date {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.3em; text-transform: uppercase;
  color: rgba(255,255,255,.65); margin-bottom: 1.75rem;
  display: flex; align-items: center; gap: 0.75rem;
}
#sem-date::before, #sem-date::after {
  content: ''; display: block;
  width: 24px; height: 1px; background: rgba(184,149,42,.6);
}
#sem-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem,9vw,8.5rem);
  font-weight: 300; line-height: 0.95;
  letter-spacing: -0.02em; color: #fff;
  text-align: center; margin-bottom: 1.5rem;
}
#sem-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem,3.5vw,3rem);
  font-weight: 300; font-style: italic;
  color: rgba(255,255,255,.75);
  text-align: center; margin-bottom: 2.5rem;
  letter-spacing: 0.02em;
}
#sem-ctas { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
#sem-scroll-hint {
  position: absolute; bottom: 2.5rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  will-change: opacity; z-index: 10; pointer-events: none;
}
#sem-scroll-hint span {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.6rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(255,255,255,.5); white-space: nowrap;
}
@keyframes bounce-down {
  0%,100% { transform: translateY(0); opacity:.5; }
  50%      { transform: translateY(6px); opacity:1; }
}
.scroll-arrow { animation: bounce-down 2s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) {
  #sem-media-wrap, #sem-bg, #sem-content, #sem-scroll-hint { transition:none; will-change:auto; }
}

/* ════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════ */
.footer-link {
  font-size: .83rem; color: rgba(255,255,255,.4);
  text-decoration: none; font-weight: 300;
  transition: color .2s; display: block;
}
.footer-link:hover { color: #fff; }

/* ════════════════════════════════════════════════════
   FILTER BAR (Trgovina)
════════════════════════════════════════════════════ */
.filter-btn {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 8px 18px;
  border: 2px solid rgba(61,61,92,.18);
  border-radius: 9999px;
  background: transparent; color: rgba(61,61,92,.6);
  cursor: pointer; transition: all .2s;
  white-space: nowrap;
}
.filter-btn:hover,
.filter-btn.active {
  border-color: var(--green);
  background: var(--green);
  color: #fff;
}

/* ════════════════════════════════════════════════════
   PREGLED VIDA — RICH SECTION (storitve.html)
════════════════════════════════════════════════════ */

/* Shared H3 */
.pv-h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.25rem);
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 2rem;
  line-height: 1.2;
}

/* ── Stats bar ─────────────────────────────────────── */
.pv-stats-bar {
  display: flex;
  align-items: center;
  background: #fff;
  border: 1px solid #f0ede8;
  border-radius: 12px;
  padding: 1.5rem 2rem;
  gap: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,.04);
  flex-wrap: wrap;
}
.pv-stat {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 160px;
  padding: .5rem 1rem;
}
.pv-stat-icon {
  width: 40px; height: 40px;
  background: rgba(45,125,111,.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.pv-stat-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem; font-weight: 500;
  color: var(--navy);
  line-height: 1.3;
}
.pv-stat-divider {
  width: 1px; height: 40px;
  background: #f0ede8;
  flex-shrink: 0;
}

/* ── Why cards ─────────────────────────────────────── */
.pv-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pv-reason-card {
  background: #F8F7F4;
  padding: 2rem 1.75rem;
  border-top: 3px solid var(--green);
  border-radius: 0 0 8px 8px;
  transition: transform .3s cubic-bezier(.16,1,.3,1), box-shadow .3s;
}
.pv-reason-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(45,125,111,.1);
}
.pv-reason-icon {
  width: 44px; height: 44px;
  background: rgba(45,125,111,.1);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--green);
  margin-bottom: 1.25rem;
}
.pv-reason-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem; font-weight: 500;
  color: var(--navy);
  margin-bottom: .75rem;
  line-height: 1.25;
}
.pv-reason-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .875rem; font-weight: 300;
  color: rgba(61,61,92,.65);
  line-height: 1.75;
}

/* ── Exam steps timeline ───────────────────────────── */
.pv-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.pv-step {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 1.5rem 0 0;
  position: relative;
}
.pv-step:last-child { padding-right: 0; }
.pv-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .75rem;
}
.pv-step-connector {
  position: absolute;
  top: 1.45rem; /* vertically centred on the number */
  right: -.5rem;
  width: calc(100% - 2.5rem);
  height: 1px;
  border-top: 1px dashed var(--green);
  opacity: .4;
  pointer-events: none;
}
.pv-step-connector--last { display: none; }
.pv-step-body {
  padding-top: 1.25rem;
  border-top: 2px solid var(--green);
  width: 100%;
}
.pv-step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 500;
  color: var(--navy);
  margin-bottom: .5rem;
}
.pv-step-text {
  font-family: 'DM Sans', sans-serif;
  font-size: .82rem; font-weight: 300;
  color: rgba(61,61,92,.62);
  line-height: 1.7;
}
.pv-step:hover .pv-step-body {
  box-shadow: 0 8px 28px rgba(45,125,111,.08);
}

/* ── Inline CTA ────────────────────────────────────── */
.pv-cta { background: #1a3d35; padding: 3.5rem 0; }
.pv-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 1023px) {
  .pv-timeline { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .pv-step-connector { display: none; }
}
@media (max-width: 767px) {
  .pv-stats-bar    { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .pv-stat-divider { display: none; }
  .pv-stat         { padding: 0; }
  .pv-reasons-grid { grid-template-columns: 1fr; }
  .pv-timeline     { grid-template-columns: 1fr; gap: 2rem; }
  .pv-cta-inner    { flex-direction: column; text-align: center; }
}

/* ════════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
════════════════════════════════════════════════════ */
.review-card {
  background: #fff;
  border-radius: 12px;
  padding: 28px;
  border-top: 3px solid var(--green);
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .3s cubic-bezier(.16,1,.3,1),
              box-shadow .3s cubic-bezier(.16,1,.3,1);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,.1);
}
.review-stars {
  color: var(--gold);
  font-size: 1.05rem;
  letter-spacing: .08em;
  line-height: 1;
}
.review-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.08rem; font-weight: 400; font-style: italic;
  line-height: 1.75; color: rgba(61,61,92,.8);
  margin: 0; flex: 1;
}
.review-footer {
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  margin-top: .25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(61,61,92,.07);
}
.review-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 600;
  color: var(--navy); margin-bottom: .2rem;
}
.review-meta {
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem; font-weight: 300;
  color: rgba(61,61,92,.42);
}
.review-avatar {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(61,61,92,.08); color: var(--navy);
  font-family: 'DM Sans', sans-serif;
  font-size: .88rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

/* ── Mobile carousel ─────────────────────────────── */
.review-slide {
  min-width: 100%; padding: 0 1rem;
  box-sizing: border-box;
}
.review-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: rgba(61,61,92,.18);
  border: none; padding: 0; cursor: pointer;
  transition: background .2s, transform .2s;
}
.review-dot.active {
  background: var(--green);
  transform: scale(1.25);
}

@media (max-width: 767px) {
  #reviews-desktop { display: none !important; }
  #reviews-mobile  { display: block !important; }
  .review-slide    { padding: 0 .5rem; }
}

/* ════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════ */
@media (max-width: 1023px) {
  .page-hero { padding: 80px 0 60px; }
}
@media (min-width: 640px) and (max-width: 1023px) {
  .svc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-card:nth-child(3n)        { border-right: 1px solid #f0ede8; }
  .svc-card:nth-child(2n)        { border-right: none; }
  .svc-card:nth-last-child(-n+3) { border-bottom: 1px solid #f0ede8; }
  .svc-card:nth-last-child(-n+2) { border-bottom: none; }
}
@media (max-width: 767px) {
  :root { --pad-section: 60px; }
  .about-grid   { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .booking-grid { grid-template-columns: 1fr !important; gap: 2rem !important; }
  .footer-grid  { grid-template-columns: 1fr 1fr !important; }
  .form-2col    { grid-template-columns: 1fr !important; }
  .loc-pair     { grid-template-columns: 1fr !important; }
  .values-grid  { grid-template-columns: 1fr !important; }
  .svc-grid { grid-template-columns: 1fr; }
  .svc-card { border-right: none; }
  .svc-card:nth-child(3n)        { border-right: none; }
  .svc-card:nth-last-child(-n+3) { border-bottom: 1px solid #f0ede8; }
  .svc-card:last-child           { border-bottom: none; }
}
@media (max-width: 599px) {
  .footer-grid  { grid-template-columns: 1fr !important; }
  .stats-grid   { grid-template-columns: repeat(2,1fr) !important; }
  .products-grid { grid-template-columns: 1fr 1fr !important; }
}

/* ════════════════════════════════════════════════════
   AUTH PAGES — login, register, pozabljeno-geslo, profil
════════════════════════════════════════════════════ */
.auth-page {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #F8F7F4;
  padding: 60px 20px;
}
.auth-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 40px rgba(0,0,0,.08);
  padding: 2.75rem 2.5rem;
  width: 100%;
  max-width: 420px;
}
.auth-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 500;
  color: #1a3d35;
  margin-bottom: .35rem;
  letter-spacing: -.01em;
}
.auth-subtitle {
  font-size: .875rem;
  color: #888;
  margin-bottom: 1.75rem;
  font-family: 'DM Sans', sans-serif;
}
.auth-msg {
  font-size: .85rem;
  font-family: 'DM Sans', sans-serif;
  margin-bottom: 1rem;
  min-height: 1.2em;
  color: #c0392b;
}
.auth-msg.success { color: #2D7D6F; }
.auth-field {
  margin-bottom: 1.1rem;
}
.auth-field label {
  display: block;
  font-size: .8rem;
  font-weight: 500;
  color: #555;
  margin-bottom: .4rem;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .02em;
}
.auth-field input {
  width: 100%;
  border: 1px solid #e0ddd7;
  border-radius: 10px;
  padding: 11px 14px;
  font-size: .95rem;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a1a;
  background: #fafaf8;
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease;
  box-sizing: border-box;
}
.auth-field input:focus {
  border-color: #2D7D6F;
  box-shadow: 0 0 0 3px rgba(45,125,111,.1);
  background: #fff;
}
.auth-btn {
  width: 100%;
  padding: 13px;
  background: #2D7D6F;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: .9rem;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .04em;
  cursor: pointer;
  margin-top: .5rem;
  transition: background 180ms ease, transform 120ms ease;
}
.auth-btn:hover  { background: #1a5c50; }
.auth-btn:active { transform: scale(0.98); }
.auth-btn:disabled { background: #aaa; cursor: not-allowed; }
.auth-divider {
  border: none;
  border-top: 1px solid #f0ede8;
  margin: 1.5rem 0 1rem;
}
.auth-link {
  font-size: .85rem;
  color: #888;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
}
.auth-link a {
  color: #2D7D6F;
  font-weight: 500;
  text-decoration: none;
}
.auth-link a:hover { text-decoration: underline; }

/* ════════════════════════════════════════════════════
   STATS GRID — DESKTOP BASE
════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center !important;
}
.stats-grid > div {
  padding: 2.5rem 1rem;
  border-right: 0.5px solid rgba(255,255,255,.12);
}
.stats-grid > div:last-child {
  border-right: none;
}

/* ════════════════════════════════════════════════════
   FOOTER — STACKED CENTERED DESIGN
════════════════════════════════════════════════════ */
.footer-stacked {
  background: #1a1a1a;
  padding: 60px 0 40px;
  text-align: center;
}
.footer-stacked-inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 1. Logo circle */
.footer-logo-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(45,125,111,0.15);
  border: 1px solid rgba(45,125,111,0.3);
  margin-bottom: 32px;
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.3s ease, border-color 0.3s ease;
}
.footer-logo-circle:hover {
  border-color: #2D7D6F;
  background: rgba(45,125,111,0.25);
}

/* 2. Nav links */
.footer-nav-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}
.footer-nav-link {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-nav-link:hover { color: #fff; }

/* 3. Social icons */
.footer-social-row {
  display: flex;
  gap: 12px;
  margin-bottom: 32px;
}
.footer-social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  background: transparent;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
  flex-shrink: 0;
}
.footer-social-btn:hover {
  border-color: #2D7D6F;
  background: rgba(45,125,111,0.15);
}

/* 4. Newsletter form */
.footer-newsletter-form {
  width: 100%;
  max-width: 400px;
  display: flex;
  margin-bottom: 40px;
}
.footer-email-input {
  flex: 1;
  min-width: 0;
  height: 44px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  border-right: none;
  border-radius: 9999px 0 0 9999px;
  padding: 0 20px;
  color: #fff;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s ease;
}
.footer-email-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-email-input:focus { border-color: #2D7D6F; }
.footer-submit-btn {
  height: 44px;
  padding: 0 24px;
  background: #2D7D6F;
  color: #fff;
  border: none;
  border-radius: 0 9999px 9999px 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease;
}
.footer-submit-btn:hover { background: #1a5c50; }

/* 5. Divider */
.footer-divider {
  width: 100%;
  max-width: 600px;
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 0 auto 24px;
}

/* 6. Bottom row */
.footer-bottom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  margin: 0 0 14px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 5px 10px;
  margin-bottom: 18px;
}
.footer-legal-link {
  font-size: 12px;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
  text-decoration: none;
  font-family: 'DM Sans', system-ui, sans-serif;
  transition: color 0.2s ease;
}
.footer-legal-link:hover { color: rgba(255,255,255,0.65); }
.footer-legal-sep {
  font-size: 12px;
  color: rgba(255,255,255,0.15);
}
.footer-chatoo {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
  margin-top: 10px;
  font-family: 'DM Sans', system-ui, sans-serif;
}
.footer-chatoo a {
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-chatoo a:hover { color: rgba(255,255,255,0.65); }

/* 7. Impresum line */
.footer-impresum {
  font-size: 10px;
  color: rgba(255,255,255,0.16);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  letter-spacing: 0.03em;
  text-align: center;
  margin-bottom: 8px;
  line-height: 1.6;
}

/* 8. EU ODR line */
.footer-odr {
  font-size: 10px;
  color: rgba(255,255,255,0.16);
  font-family: 'DM Sans', system-ui, sans-serif;
  font-weight: 300;
  text-align: center;
  max-width: 560px;
  margin-bottom: 20px;
  line-height: 1.6;
}
.footer-odr-link {
  color: rgba(184,149,42,0.5);
  text-decoration: none;
  transition: color 0.2s ease;
  white-space: nowrap;
}
.footer-odr-link:hover { color: rgba(184,149,42,0.85); }

/* ════════════════════════════════════════════════════
   GLOBE + LOCATION SECTION
════════════════════════════════════════════════════ */
.globe-loc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.globe-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.globe-wrap {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}
.loc-cards-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

/* Location card (link-style, left accent border) */
.loc-card-3d {
  display: block;
  position: relative;
  text-decoration: none;
  background: #fff;
  border-radius: 0 10px 10px 0;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .25s ease, box-shadow .25s ease;
}
.loc-card-3d:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 32px rgba(45,125,111,.12);
}
.loc-card-accent {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 4px;
  background: #2D7D6F;
  border-radius: 4px 0 0 4px;
  transition: background .25s ease;
}
.loc-card-3d:hover .loc-card-accent {
  background: #B8952A;
}
.loc-card-body {
  padding: 1.5rem 1.75rem 1.5rem 1.875rem;
}
.loc-maps-pill {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
  color: #2D7D6F;
  border: 1px solid rgba(45,125,111,.3);
  border-radius: 9999px;
  padding: 5px 14px;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.loc-card-3d:hover .loc-maps-pill {
  background: #2D7D6F;
  color: #fff;
  border-color: #2D7D6F;
}

/* Responsive: stack on mobile */
@media (max-width: 900px) {
  .globe-loc-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .globe-wrap {
    max-width: 320px;
  }
}

/* ════════════════════════════════════════════════════
   PREGLED VIDA — ANIMATIONS & ENHANCEMENTS
════════════════════════════════════════════════════ */

/* Icon pulse on stats bar */
@keyframes pv-icon-pulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(45,125,111,0.25); }
  50%       { transform: scale(1.1); box-shadow: 0 0 0 7px rgba(45,125,111,0); }
}
.pv-stat-icon {
  animation: pv-icon-pulse 3.5s ease-in-out infinite;
}
.pv-stat:nth-child(3)  .pv-stat-icon { animation-delay: 0.875s; }
.pv-stat:nth-child(5)  .pv-stat-icon { animation-delay: 1.75s; }
.pv-stat:nth-child(7)  .pv-stat-icon { animation-delay: 2.625s; }

/* Why cards — hover light green + icon highlight */
.pv-reason-card {
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}
.pv-reason-card:hover {
  background: #f0f7f5;
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(45,125,111,.12);
}
.pv-reason-icon {
  transition: background .3s ease;
}
.pv-reason-card:hover .pv-reason-icon {
  background: rgba(45,125,111,.18);
}

/* 90% watermark behind first why card */
.pv-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 140px;
  font-weight: 300;
  color: #2D7D6F;
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
  z-index: 0;
  line-height: 1;
}
/* keep card content above watermark */
.pv-reason-card > *:not(.pv-watermark) { position: relative; z-index: 1; }

/* Timeline step icon */
.pv-step-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: rgba(184,149,42,.10);
  border-radius: 8px;
  margin-bottom: .75rem;
  flex-shrink: 0;
}

/* Timeline connector — animates width from 0 */
.pv-step-connector {
  transition: width 1.4s ease;
}
#pregled-vida-detail .pv-step-connector {
  width: 0 !important;
  opacity: 0;
}
#pregled-vida-detail .pv-timeline.pv-line-ready .pv-step:nth-child(1) .pv-step-connector {
  width: calc(100% - 2.5rem) !important;
  opacity: .4;
  transition-delay: 0s;
}
#pregled-vida-detail .pv-timeline.pv-line-ready .pv-step:nth-child(2) .pv-step-connector {
  width: calc(100% - 2.5rem) !important;
  opacity: .4;
  transition-delay: .4s;
}
#pregled-vida-detail .pv-timeline.pv-line-ready .pv-step:nth-child(3) .pv-step-connector {
  width: calc(100% - 2.5rem) !important;
  opacity: .4;
  transition-delay: .8s;
}
#pregled-vida-detail .pv-timeline.pv-line-ready .pv-step:nth-child(4) .pv-step-connector {
  width: 0 !important;
  opacity: 0;
}

/* ── Stats bar 3D depth ──────────────────────────── */
.pv-stats-bar--3d {
  background: linear-gradient(135deg, #fff 0%, #f8f7f4 100%);
  padding: 1.25rem;
  gap: .75rem;
  border: 1px solid #f0ede8;
}
.pv-stat-box {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex: 1;
  min-width: 160px;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 0 #c4e0db;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: default;
}
.pv-stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 9px 0 #c4e0db, 0 14px 28px rgba(45,125,111,.10);
}
/* keep icon pulse scoped to box children */
.pv-stat-box .pv-stat-icon { animation: pv-icon-pulse 3.5s ease-in-out infinite; }
.pv-stat-box:nth-child(2) .pv-stat-icon { animation-delay: .875s; }
.pv-stat-box:nth-child(3) .pv-stat-icon { animation-delay: 1.75s; }
.pv-stat-box:nth-child(4) .pv-stat-icon { animation-delay: 2.625s; }

/* ── Why cards 3D tilt (JS-driven) ──────────────── */
.pv-reason-card.pv-tilt {
  will-change: transform;
}
/* child depth layers (set via JS) */
.pv-reason-card.pv-tilt .pv-reason-icon,
.pv-reason-card.pv-tilt .pv-reason-title,
.pv-reason-card.pv-tilt .pv-reason-text {
  transition: transform 0.5s ease;
}

/* ── Timeline flip cards ─────────────────────────── */
.pv-flip-card {
  perspective: 900px;
  width: 100%;
  margin-top: 1.25rem;
}
.pv-flip-inner {
  position: relative;
  width: 100%;
  min-height: 140px;
  transform-style: preserve-3d;
  transition: transform 0.65s cubic-bezier(.4,0,.2,1);
}
.pv-flip-card:hover .pv-flip-inner {
  transform: rotateY(180deg);
}
.pv-flip-front,
.pv-flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.pv-flip-front {
  justify-content: flex-start;
}
.pv-flip-back {
  transform: rotateY(180deg);
  background: var(--green);
  color: #fff;
  padding: 1.25rem 1rem;
  border-radius: 8px;
  font-size: .84rem;
  line-height: 1.75;
  font-weight: 300;
  justify-content: center;
  align-items: flex-start;
}

/* ── CTA particles ───────────────────────────────── */
.pv-particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #2D7D6F;
  opacity: 0;
  pointer-events: none;
}
@keyframes pv-float {
  0%   { transform: translateY(0) scale(1);   opacity: .15; }
  50%  { transform: translateY(-45px) scale(1.4); opacity: .28; }
  100% { transform: translateY(-90px) scale(.7); opacity: 0; }
}

/* ── Step number gold pulse when activated ───────── */
@keyframes pv-step-num-pulse {
  0%   { color: var(--gold); }
  40%  { color: #e0b030; text-shadow: 0 0 24px rgba(184,149,42,.5); }
  100% { color: var(--gold); }
}
.pv-step.pv-step-lit .pv-step-num {
  animation: pv-step-num-pulse 0.9s ease forwards;
}

/* ════════════════════════════════════════════════════
   SHOPPING CART
════════════════════════════════════════════════════ */

/* ── Navbar cart icon ─────────────────────────────── */
.cart-icon-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 10px;
  color: var(--navy);
  text-decoration: none;
  transition: background .18s, color .18s;
  flex-shrink: 0;
}
.cart-icon-btn:hover { background: var(--cream); color: var(--green); }
.cart-badge {
  position: absolute;
  top: 2px; right: 2px;
  min-width: 17px; height: 17px;
  background: var(--green);
  color: #fff;
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 700;
  border-radius: 9999px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  line-height: 1;
  pointer-events: none;
}

/* ── Product card "V košarico" button ─────────────── */
.btn-cart {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 0;
  background: var(--green);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .18s, transform .15s;
}
.btn-cart:hover  { background: var(--green-d); transform: translateY(-1px); }
.btn-cart-added  { background: #1a5c50 !important; }
.btn-povprasaj-sm {
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 7px 0;
  background: transparent;
  color: rgba(61,61,92,.5);
  border: 1px solid rgba(61,61,92,.12);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .72rem;
  font-weight: 400;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: border-color .18s, color .18s;
}
.btn-povprasaj-sm:hover { border-color: var(--green); color: var(--green); }

/* ── Cart page layout ─────────────────────────────── */
.cart-layout {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 900px) {
  .cart-layout { grid-template-columns: 1fr; }
}

/* ── Cart items table ─────────────────────────────── */
.cart-items-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid rgba(61,61,92,.08);
  overflow: hidden;
}
.cart-items-header {
  padding: 20px 24px;
  border-bottom: 1px solid rgba(61,61,92,.07);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-items-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 500;
  color: var(--navy);
}
.cart-clear-btn {
  background: none; border: none;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px; color: rgba(61,61,92,.4);
  cursor: pointer; transition: color .18s;
}
.cart-clear-btn:hover { color: #e05c5c; }

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(61,61,92,.06);
  transition: background .15s;
}
.cart-item:last-child { border-bottom: none; }
.cart-item:hover { background: #fafaf9; }
.cart-item-img {
  width: 72px; height: 72px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(61,61,92,.08);
  background: var(--cream);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.cart-item-img img { width:100%; height:100%; object-fit:cover; display:block; }
.cart-item-brand {
  font-size: .65rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 2px;
}
.cart-item-name {
  font-family: 'DM Sans', sans-serif;
  font-size: .92rem; font-weight: 500;
  color: var(--navy); margin-bottom: 6px;
}
.cart-item-price { font-size: .88rem; font-weight: 600; color: var(--green); }

/* Qty stepper */
.qty-stepper {
  display: flex; align-items: center; gap: 0;
  border: 1px solid rgba(61,61,92,.14);
  border-radius: 8px; overflow: hidden;
  width: fit-content; margin-top: 8px;
}
.qty-btn {
  width: 28px; height: 28px;
  background: none; border: none;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: 14px; color: var(--navy);
  transition: background .15s;
}
.qty-btn:hover { background: var(--cream); }
.qty-num {
  width: 32px; height: 28px;
  border: none; border-left: 1px solid rgba(61,61,92,.1); border-right: 1px solid rgba(61,61,92,.1);
  text-align: center; font-size: 13px; font-weight: 500;
  color: var(--navy); font-family: 'DM Sans', sans-serif;
  background: #fff;
}
.qty-num:focus { outline: none; }

/* Remove btn */
.cart-remove-btn {
  background: none; border: none; cursor: pointer;
  color: rgba(61,61,92,.25); transition: color .18s;
  padding: 4px; border-radius: 6px;
  align-self: flex-start;
}
.cart-remove-btn:hover { color: #e05c5c; background: #fef2f2; }

/* ── Empty cart ───────────────────────────────────── */
.cart-empty {
  text-align: center;
  padding: 60px 24px;
  color: rgba(61,61,92,.4);
}
.cart-empty svg { margin: 0 auto 16px; display: block; color: rgba(61,61,92,.2); }
.cart-empty p { font-size: .9rem; margin-bottom: 20px; }

/* ── Order summary + Checkout ─────────────────────── */
.checkout-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(61,61,92,.08);
  box-shadow: 0 4px 24px rgba(61,61,92,.09), 0 1px 4px rgba(61,61,92,.05);
  overflow: hidden;
  position: sticky;
  top: 84px;
}
.checkout-section {
  padding: 22px 24px;
  border-bottom: 1px solid rgba(61,61,92,.07);
}
.checkout-section:last-child { border-bottom: none; }
.checkout-section-title {
  font-family: 'DM Sans', sans-serif;
  font-size: .6rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: rgba(61,61,92,.42);
  margin-bottom: 14px;
}

/* Summary rows */
.summary-row {
  display: flex; justify-content: space-between;
  align-items: center; margin-bottom: 8px;
  font-size: .88rem; color: rgba(61,61,92,.65);
}
.summary-row.total {
  font-size: 1.05rem; font-weight: 700;
  color: var(--navy); margin-top: 14px; padding-top: 14px;
  border-top: 2px solid rgba(61,61,92,.08);
  margin-bottom: 0;
}
.summary-row.total span:last-child {
  color: var(--green);
  font-size: 1.25rem;
  font-weight: 700;
}
.shipping-badge {
  font-size: 11px; font-weight: 600;
  color: var(--green); background: rgba(45,125,111,.08);
  padding: 2px 8px; border-radius: 9999px;
}

/* Checkout form field spacing */
.co-field { margin-bottom: 12px; }

/* Checkout inputs */
.checkout-input {
  display: block; width: 100%; height: 44px;
  border: 1.5px solid rgba(61,61,92,.16);
  border-radius: 10px; padding: 0 12px;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px;
  color: var(--navy); background: #fff;
  transition: border-color .18s, box-shadow .18s;
  margin-bottom: 0;
  -webkit-appearance: none;
}
.checkout-input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(45,125,111,.12);
}
.checkout-input::placeholder { color: rgba(61,61,92,.3); }
.checkout-input.error {
  border-color: #e05c5c;
  box-shadow: 0 0 0 3px rgba(224,92,92,.10);
}
.checkout-label {
  display: block; font-size: 10.5px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  color: rgba(61,61,92,.55); margin-bottom: 5px;
}
.checkout-row-2 {
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 8px;
}
textarea.checkout-input {
  height: 72px; padding: 10px 12px;
  resize: vertical; min-height: 72px;
}
select.checkout-input {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%233D3D5C' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  cursor: pointer;
}

/* ── Delivery method toggle cards ──────────────────── */
.nacin-lbl {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 13px;
  border: 2px solid rgba(61,61,92,.15);
  border-radius: 12px;
  cursor: pointer;
  transition: border-color .18s, background .18s;
  user-select: none;
}
.nacin-lbl:has(input:checked) {
  background: rgba(45,125,111,.04);
}
.nacin-lbl:hover { background: rgba(61,61,92,.02); }
.nacin-lbl:has(input:checked):hover { background: rgba(45,125,111,.06); }
.nacin-radio {
  accent-color: #2D7D6F;
  margin-top: 2px;
  flex-shrink: 0;
  cursor: pointer;
  width: 15px; height: 15px;
}
.nacin-icon {
  color: rgba(61,61,92,.35);
  flex-shrink: 0;
  margin-top: 1px;
  transition: color .18s;
}
.nacin-lbl:has(input:checked) .nacin-icon { color: var(--green, #2D7D6F); }
.nacin-title {
  font-size: .83rem; font-weight: 600;
  color: #3D3D5C; margin: 0 0 3px; line-height: 1.3;
}
.nacin-sub {
  font-size: .7rem; color: rgba(61,61,92,.5);
  margin: 0; line-height: 1.4;
}

/* ── Discount code field ───────────────────────────── */
.popust-wrap {
  position: relative;
  display: flex;
  align-items: center;
}
.popust-icon {
  position: absolute;
  left: 13px;
  color: rgba(61,61,92,.3);
  pointer-events: none;
  flex-shrink: 0;
  transition: color .18s;
}
.popust-wrap:focus-within .popust-icon { color: var(--green, #2D7D6F); }
.popust-input {
  padding-left: 38px !important;
  letter-spacing: .04em;
}

/* ── Payment section ───────────────────────────────── */
.payment-option {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1.5px solid var(--green);
  border-radius: 12px; padding: 14px 16px;
  background: rgba(45,125,111,.03);
  margin-bottom: 0;
}
.payment-option-header {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 8px;
}
.payment-radio-dot {
  width: 16px; height: 16px; border-radius: 50%;
  border: 2px solid var(--green); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.payment-radio-dot::after {
  content: ''; width: 8px; height: 8px;
  background: var(--green); border-radius: 50%;
}
.payment-label {
  font-size: .88rem; font-weight: 600; color: var(--navy); flex: 1;
}
.payment-logos {
  display: flex; gap: 4px; align-items: center;
}
.payment-logo-chip {
  font-size: 9px; font-weight: 700; letter-spacing: .04em;
  background: #635BFF; color: #fff;
  padding: 2px 6px; border-radius: 3px;
  font-family: 'DM Sans', sans-serif;
}
.payment-desc {
  font-size: .75rem; color: rgba(61,61,92,.5);
  margin-bottom: 14px; padding-left: 26px;
  line-height: 1.5;
}

/* ── Pay button ────────────────────────────────────── */
.btn-pay {
  display: flex; width: 100%;
  align-items: center; justify-content: center; gap: 8px;
  height: 50px;
  background: var(--green);
  color: #fff; border: none; border-radius: 12px;
  font-family: 'DM Sans', sans-serif;
  font-size: .9rem; font-weight: 700;
  letter-spacing: .04em; cursor: pointer;
  transition: background .18s, transform .15s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(45,125,111,.32);
}
.btn-pay:hover { background: var(--green-d); transform: translateY(-1px); box-shadow: 0 8px 28px rgba(45,125,111,.4); }
.btn-pay:focus-visible { outline: none; box-shadow: 0 0 0 3px rgba(45,125,111,.4); }
.btn-pay:disabled { opacity: .6; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-pay-note {
  text-align: center; font-size: 11px; color: rgba(61,61,92,.35);
  margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 4px;
}

/* ── Kmalu modal ──────────────────────────────────── */
.kmalu-backdrop {
  display: none;
  position: fixed; inset: 0; z-index: 500;
  background: rgba(0,0,0,.5);
  align-items: center; justify-content: center;
  padding: 20px;
}
.kmalu-backdrop.open { display: flex; }
.kmalu-box {
  background: #fff; border-radius: 20px;
  padding: 40px 36px; max-width: 420px; width: 100%;
  text-align: center;
  box-shadow: 0 24px 80px rgba(0,0,0,.18);
  animation: kmalu-pop .3s cubic-bezier(.16,1,.3,1);
}
@keyframes kmalu-pop {
  from { opacity:0; transform:translateY(20px) scale(.97); }
  to   { opacity:1; transform:translateY(0) scale(1); }
}
.kmalu-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: rgba(45,125,111,.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.kmalu-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; font-weight: 500; color: var(--navy);
  margin-bottom: 12px;
}
.kmalu-text {
  font-size: .88rem; color: rgba(61,61,92,.6);
  line-height: 1.7; margin-bottom: 24px;
}
.kmalu-contacts {
  display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 24px;
}
.kmalu-contact-link {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 10px;
  font-family: 'DM Sans', sans-serif; font-size: .9rem; font-weight: 500;
  text-decoration: none; transition: background .18s;
}
.kmalu-contact-phone {
  background: rgba(45,125,111,.08); color: var(--green);
}
.kmalu-contact-phone:hover { background: rgba(45,125,111,.15); }
.kmalu-contact-email {
  background: var(--cream); color: var(--navy);
}
.kmalu-contact-email:hover { background: #ede9e0; }
.kmalu-close-btn {
  width: 100%; padding: 12px; border-radius: 10px;
  background: none; border: 1px solid rgba(61,61,92,.15);
  font-family: 'DM Sans', sans-serif; font-size: .85rem;
  color: rgba(61,61,92,.5); cursor: pointer;
  transition: border-color .18s, color .18s;
}
.kmalu-close-btn:hover { border-color: rgba(61,61,92,.4); color: var(--navy); }

/* ============================================
   MOBILE REDESIGN — complete rewrite
   ≤768px + ≤480px
   Desktop (>768px) = untouched
   ============================================ */

@media (max-width: 768px) {

  /* --- GLOBAL --- */
  html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
  body { overflow-x: hidden; -webkit-font-smoothing: antialiased; background: #fff; }
  *, *::before, *::after { box-sizing: border-box; }
  img { max-width: 100%; height: auto; display: block; }
  input, select, textarea { font-size: 16px !important; }
  a, button { touch-action: manipulation; -webkit-tap-highlight-color: transparent; }
  main, .main-content, .page-content { padding-bottom: 80px; }

  /* --- HIDE DESKTOP NAV --- */
  #navbar { display: none !important; }
  #mobile-menu { display: none !important; }

  /* --- BOTTOM TAB BAR --- */
  .mobile-tab-bar {
    display: flex !important;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 56px;
    background: #fff;
    border-top: 0.5px solid rgba(0,0,0,0.1);
    z-index: 9999;
    padding-bottom: env(safe-area-inset-bottom);
    transform: translateY(100%);
    animation: tabBarSlideUp 0.3s ease-out 0.1s forwards;
  }
  @keyframes tabBarSlideUp {
    to { transform: translateY(0); }
  }
  .mobile-tab-bar a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 10px;
    font-weight: 500;
    color: #999;
    text-decoration: none;
    min-height: 56px;
    transition: color 0.2s ease, transform 0.15s ease;
    border-top: 2px solid transparent;
  }
  .mobile-tab-bar a svg { width: 22px; height: 22px; stroke-width: 1.5; }
  .mobile-tab-bar a.active {
    color: #2D7D6F;
    border-top-color: #2D7D6F;
    transform: scale(1.05);
  }
  .mobile-tab-bar a:active { transform: scale(0.9); }

  /* --- HERO (index.html) --- */
  .hero, #hero, [class*="hero-section"], .home-hero {
    position: relative !important;
    width: 100% !important;
    height: 100svh !important;
    min-height: 600px !important;
    border-radius: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    background: #1a3d35 !important;
  }
  .hero video, #hero video, .hero-video {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    border-radius: 0 !important;
  }
  .hero::after, #hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.65) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .hero-content, .hero .container, #hero .container {
    position: absolute !important;
    bottom: 90px !important;
    left: 0 !important; right: 0 !important;
    padding: 0 24px !important;
    z-index: 2 !important;
    text-align: left !important;
    max-width: 100% !important;
  }
  .hero-badge, .hero-eyebrow, [class*="hero-tag"] {
    display: inline-block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(255,255,255,0.75);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }
  .hero h1, #hero h1 {
    font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
    line-height: 1.1 !important;
    color: #fff !important;
    margin-bottom: 8px !important;
    font-weight: 600 !important;
  }
  .hero p, .hero-subtitle, #hero p {
    font-size: 15px !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 24px !important;
    line-height: 1.5 !important;
  }
  .hero .btn-group, .hero-btns, .hero .buttons {
    display: flex !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
  }
  .hero .btn-green, .hero .btn-primary {
    flex: 1 !important;
    height: 48px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    background: #2D7D6F !important;
    color: #fff !important;
    border: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .hero .btn-outline, .hero .btn-outline-white {
    flex: 1 !important;
    height: 48px !important;
    border-radius: 10px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.6) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .scroll-indicator, [class*="scroll-down"], [class*="scroll-arrow"] { display: none !important; }
  .hero-est-outside, .hero > .est-badge { display: none !important; }

  /* --- STATS GRID --- */
  .stats-grid, .stats-row, [class*="stats-bar"], .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    border-top: 0.5px solid #ebebeb !important;
    margin: 0 !important;
    background: #fff !important;
  }
  .stats-grid > *, .stats-row > *, [class*="stats-bar"] > *, .hero-stats > * {
    padding: 18px 16px !important;
    text-align: center !important;
    border-right: 0.5px solid #ebebeb !important;
    border-bottom: 0.5px solid #ebebeb !important;
  }
  .stats-grid > *:nth-child(2n), .stats-row > *:nth-child(2n) { border-right: none !important; }
  .stat-number, [class*="stat-num"], .stats-grid strong {
    font-size: 28px !important;
    font-weight: 700 !important;
    color: #1a3d35 !important;
    display: block !important;
    line-height: 1 !important;
    margin-bottom: 4px !important;
  }
  .stat-label, [class*="stat-lbl"], .stats-grid span {
    font-size: 11px !important;
    color: #888 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
  }

  /* --- SERVICES --- */
  .svc-grid { display: none !important; }
  .svc-mobile-list { display: flex !important; flex-direction: column !important; }
  .svc-mobile-list a {
    display: flex !important; align-items: center !important; gap: 14px !important;
    padding: 14px 20px !important; min-height: 60px !important;
    border-bottom: 0.5px solid #ebebeb !important;
    text-decoration: none !important; color: inherit !important;
    transition: background 0.15s ease !important;
  }
  .svc-mobile-list a:active { background: #f5f5f5 !important; }
  .svc-mobile-list .svc-icon {
    width: 40px; height: 40px; border-radius: 50%;
    background: #f0f7f5; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .svc-mobile-list .svc-icon svg { width: 18px; height: 18px; stroke: #2D7D6F; }
  .svc-mobile-list .svc-text { flex: 1; }
  .svc-mobile-list .svc-title { font-size: 14px; font-weight: 600; color: #1a1a1a; }
  .svc-mobile-list .svc-desc { font-size: 12px; color: #888; margin-top: 2px; }
  .svc-mobile-list .svc-chevron { color: #ccc; flex-shrink: 0; }

  /* --- BRANDS --- */
  .brands-carousel, [class*="brand-track"], .brand-logos { display: none !important; }
  .brands-chips-mobile {
    display: flex !important; gap: 8px !important; overflow-x: auto !important;
    scrollbar-width: none !important; -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important; padding: 4px 20px 12px !important;
    -webkit-mask: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%) !important;
    mask: linear-gradient(to right, transparent 0, black 20px, black calc(100% - 20px), transparent 100%) !important;
  }
  .brands-chips-mobile::-webkit-scrollbar { display: none; }
  .brands-chips-mobile span {
    scroll-snap-align: start; flex-shrink: 0; border: 1px solid #e0e0e0;
    border-radius: 20px; padding: 6px 14px; font-size: 12px; font-weight: 500;
    color: #444; white-space: nowrap; background: #fff;
  }

  /* --- REVIEWS --- */
  .reviews-grid, [class*="reviews-list"] {
    display: flex !important; overflow-x: auto !important; scrollbar-width: none !important;
    scroll-snap-type: x mandatory !important; gap: 12px !important;
    padding: 4px 20px 16px !important; -webkit-overflow-scrolling: touch !important;
  }
  .reviews-grid::-webkit-scrollbar { display: none; }
  .reviews-grid > *, [class*="review-card"] {
    min-width: 78vw !important; max-width: 78vw !important;
    scroll-snap-align: start !important; flex-shrink: 0 !important;
    border: 1px solid #ebebeb !important; border-radius: 16px !important;
    padding: 16px !important; background: #fff !important;
  }

  /* --- CTA BOOKING SECTION --- */
  [class*="booking"], [class*="cta-section"], .narocanje-cta {
    text-align: center !important; padding: 40px 24px !important;
  }
  [class*="booking"] h2, [class*="cta-section"] h2 {
    font-size: clamp(1.6rem, 6vw, 2rem) !important; margin-bottom: 8px !important;
  }
  [class*="booking"] p, [class*="cta-section"] p {
    font-size: 14px !important; color: #666 !important; margin-bottom: 24px !important;
  }
  [class*="booking"] .btn-group, [class*="cta-section"] .btn-group { flex-direction: column !important; gap: 10px !important; }
  [class*="booking"] .btn-green, [class*="cta-section"] .btn-green {
    width: 100% !important; height: 52px !important; border-radius: 12px !important; font-size: 15px !important;
  }
  [class*="booking"] .btn-outline, [class*="cta-section"] .btn-outline {
    width: 100% !important; height: 52px !important; border-radius: 12px !important; font-size: 15px !important;
  }

  /* --- FOOTER --- */
  footer { padding-bottom: 80px !important; }
  .footer-grid, .footer-cols, footer .grid {
    display: flex !important; flex-direction: column !important; gap: 24px !important; padding: 32px 20px !important;
  }
  footer .footer-logo { text-align: center !important; }
  footer .footer-logo img { margin: 0 auto !important; max-width: 120px !important; }
  footer nav, footer .footer-links { display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 4px 16px !important; }
  footer nav a, footer .footer-links a {
    font-size: 14px !important; padding: 8px 0 !important; min-height: 44px !important;
    display: flex !important; align-items: center !important;
  }
  .footer-social { display: flex !important; justify-content: center !important; gap: 16px !important; }
  .footer-social a {
    width: 44px !important; height: 44px !important;
    display: flex !important; align-items: center !important; justify-content: center !important;
  }
  .footer-copyright { font-size: 12px !important; text-align: center !important; padding: 0 20px 16px !important; }

  /* --- SHOP / TRGOVINA --- */
  .shop-grid, .products-grid, [class*="product-grid"] {
    display: grid !important; grid-template-columns: 1fr 1fr !important; gap: 12px !important; padding: 0 16px !important;
  }
  [class*="product-card"] { border-radius: 12px !important; overflow: hidden !important; border: 1px solid #ebebeb !important; }
  [class*="product-card"] img { aspect-ratio: 1/1 !important; object-fit: cover !important; width: 100% !important; }
  [class*="product-card"] .product-info { padding: 10px 12px !important; }
  [class*="product-card"] .product-name { font-size: 13px !important; font-weight: 500 !important; }
  [class*="product-card"] .product-price { font-size: 14px !important; color: #2D7D6F !important; font-weight: 600 !important; }
  .filter-bar, [class*="filter-row"] {
    overflow-x: auto !important; scrollbar-width: none !important; white-space: nowrap !important; padding: 8px 16px !important;
  }

  /* --- FORMS --- */
  .form-group { margin-bottom: 16px !important; }
  .form-group label {
    display: block !important; font-size: 13px !important; font-weight: 500 !important;
    margin-bottom: 6px !important; color: #333 !important;
  }
  .form-group input, .form-group select, .form-group textarea {
    width: 100% !important; height: 52px !important; border-radius: 10px !important;
    border: 1.5px solid #e0e0e0 !important; padding: 0 14px !important; font-size: 16px !important;
    transition: border-color 0.2s !important; background: #fff !important;
  }
  .form-group textarea { height: auto !important; min-height: 120px !important; padding: 14px !important; }
  .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none !important; border-color: #2D7D6F !important;
    box-shadow: 0 0 0 3px rgba(45,125,111,0.1) !important;
  }
  [type="submit"], .btn-submit {
    width: 100% !important; height: 52px !important; background: #2D7D6F !important;
    color: #fff !important; border: none !important; border-radius: 12px !important;
    font-size: 16px !important; font-weight: 600 !important;
    cursor: pointer !important; transition: background 0.2s !important;
  }
  [type="submit"]:active { background: #1a5c50 !important; }

  /* --- SCROLL ANIMATIONS --- */
  .animate-on-scroll { opacity: 0; transform: translateY(20px); transition: opacity 0.4s ease, transform 0.4s ease; }
  .animate-on-scroll.is-visible { opacity: 1; transform: translateY(0); }
  .animate-on-scroll:nth-child(2) { transition-delay: 80ms; }
  .animate-on-scroll:nth-child(3) { transition-delay: 160ms; }
  .animate-on-scroll:nth-child(4) { transition-delay: 240ms; }

  /* --- SECTION TITLES --- */
  .section-title, [class*="section-heading"], h2.title {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    line-height: 1.2 !important; padding: 0 20px !important; margin-bottom: 20px !important;
  }

  /* --- PAGE HERO (inner pages) --- */
  .page-hero, [class*="page-hero"] {
    padding: 80px 20px 40px !important; text-align: center !important; min-height: auto !important;
  }
  .page-hero h1 { font-size: clamp(1.8rem, 7vw, 2.5rem) !important; }

  /* --- GENERAL CONTAINERS --- */
  .container { padding-left: 20px !important; padding-right: 20px !important; max-width: 100% !important; }
  section { padding: 40px 0 !important; }

}

/* ≤480px tweaks */
@media (max-width: 480px) {
  .hero h1, #hero h1 { font-size: 2rem !important; }
  .shop-grid, .products-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; }
  [class*="product-card"] .product-name { font-size: 12px !important; }
  .mobile-tab-bar a { font-size: 9px !important; }
  .mobile-tab-bar a svg { width: 20px !important; height: 20px !important; }
}

/* ── Hero: real element IDs (ScrollExpandMedia) ── */
@media (max-width: 768px) {
  #sem-track, #sem-sticky {
    border-radius: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
  }
  #sem-sticky {
    position: relative !important;
    height: 100svh !important;
    overflow: hidden !important;
  }
  #sem-content {
    position: absolute !important;
    bottom: 90px !important;
    left: 0 !important;
    right: 0 !important;
    padding: 0 24px !important;
    z-index: 2 !important;
  }
  #sem-title {
    font-size: clamp(2.2rem, 9vw, 3.2rem) !important;
    line-height: 1.1 !important;
    color: #fff !important;
  }
  #sem-subtitle {
    font-size: 15px !important;
    color: rgba(255,255,255,0.8) !important;
    margin-bottom: 24px !important;
  }
  #sem-ctas {
    display: flex !important;
    gap: 10px !important;
  }
  #sem-ctas a:first-child {
    flex: 1 !important;
    height: 48px !important;
    background: #2D7D6F !important;
    color: #fff !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    border: none !important;
    text-decoration: none !important;
  }
  #sem-ctas a:last-child {
    flex: 1 !important;
    height: 48px !important;
    background: transparent !important;
    color: #fff !important;
    border: 1.5px solid rgba(255,255,255,0.6) !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-decoration: none !important;
  }
}
