    :root {
      --purple: #A53CDE;
      --mauve: #A895B1;
      --pink: #EBB6E4;
      --cream: #E6E3BA;
      --lime: #C7D245;
      --bg: #f8f4fb;
      --paper: rgba(255,255,255,.88);
      --text: #2c2231;
      --muted: #6f6276;
      --accent: var(--purple);
      --accent-dark: #7a22b4;
      --soft: #f4d9f0;
      --line: rgba(165,60,222,.18);
      --shadow: 0 18px 55px rgba(165,60,222,.16);
      --radius: 26px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: "Manrope", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at 8% 8%, rgba(235,182,228,.35), transparent 30%),
        radial-gradient(circle at 92% 18%, rgba(199,210,69,.22), transparent 24%),
        linear-gradient(180deg, #fbf7fc 0%, var(--bg) 44%, #f4eff7 100%);
      line-height: 1.6;
    }

    a { color: inherit; text-decoration: none; }


    .top-banner {
      min-height: 600px;
      width: 100%;
      background-image:
        linear-gradient(180deg, rgba(44,34,49,.08), rgba(44,34,49,.02) 38%, rgba(248,244,251,.18) 100%),
        linear-gradient(90deg, rgba(165,60,222,.18), rgba(235,182,228,.10), rgba(255,255,255,.10)),
        url("logo.webp");
      background-size: cover, cover, cover;
      background-position: center center, center center, center center;
      background-repeat: no-repeat;
      background-color: #f8f4fb;
      border-bottom: 1px solid var(--line);
      position: relative;
      overflow: hidden;
    }

    .palette-strip {
      display: none;
    }

    .top-banner::after {
      display: none;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 900;
      letter-spacing: .18em;
      color: var(--purple);
      text-transform: uppercase
    }

    .brand-logo {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      object-fit: cover;
      display: block;
      box-shadow: 0 10px 25px rgba(165, 60, 222, .22);
      border: 2px solid rgba(255, 255, 255, .9);
      background: white
    }

    .brand span.brand-text {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0 0 0 0);
      white-space: nowrap
    }

    .nav-wrap {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
      background: rgba(255,255,255,.84);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(165,60,222,.16);
      box-shadow: 0 10px 30px rgba(165,60,222,.10);
    }

    .nav {
      max-width: 1180px;
      margin: 0 auto;
      min-height: 76px;
      padding: 0 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .nav a {
      font-size: .92rem;
      font-weight: 700;
      color: var(--muted);
      padding: 8px 10px;
      border-radius: 999px;
      transition: .2s ease;
    }

    .nav a:hover {
      background: linear-gradient(135deg, rgba(235,182,228,.45), rgba(230,227,186,.42));
      color: var(--accent-dark);
    }


    .nav-item {
      position: relative;
      display: inline-flex;
      align-items: center;
    }

    .nav-item > a.has-dropdown {
      background: linear-gradient(135deg, rgba(165,60,222,.12), rgba(199,210,69,.18));
      color: var(--accent-dark);
      border: 1px solid rgba(165,60,222,.18);
      padding-right: 30px;
      position: relative;
    }

    .nav-item > a.has-dropdown::after {
      content: "^";
      position: absolute;
      right: 1px;
      top: 50%;
      transform: translateY(-52%);
      font-size: .95rem;
      transition: transform .22s ease;
    }

    .dropdown-menu {
      position: absolute;
      top: calc(100% + 14px);
      left: 50%;
      min-width: 245px;
      transform: translateX(-50%) translateY(10px) scale(.96);
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      padding: 12px;
      border-radius: 22px;
      background: rgba(255,255,255,.94);
      border: 1px solid rgba(165,60,222,.18);
      box-shadow: 0 22px 52px rgba(44,34,49,.18);
      backdrop-filter: blur(18px);
      transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
      z-index: 30;
    }

    .dropdown-menu::before {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: -16px;
      height: 16px;
    }

    .dropdown-menu a {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      width: 100%;
      padding: 12px 14px;
      border-radius: 16px;
      color: var(--text);
      font-weight: 800;
      white-space: nowrap;
    }

    .dropdown-menu a span {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      flex: 0 0 auto;
      box-shadow: 0 0 0 4px rgba(235,182,228,.24);
    }

    .dropdown-menu a:hover {
      transform: translateX(4px);
      background: linear-gradient(135deg, rgba(235,182,228,.52), rgba(230,227,186,.52));
      color: var(--accent-dark);
    }

    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
      transform: translateX(-50%) translateY(0) scale(1);
    }

    .nav-item:hover > a.has-dropdown::after,
    .nav-item:focus-within > a.has-dropdown::after {
      transform: translateY(-45%) rotate(180deg);
    }

    main {
      position: relative;
      z-index: 3;
      margin-top: -400px; /* sadržaj je spušten niže da se banner slika bolje vidi */
    }

    .section {
      max-width: 1180px;
      margin: 0 auto;
      padding: 86px 22px;
      scroll-margin-top: 90px;
    }

    .hero {
      display: grid;
      grid-template-columns: 1.15fr .85fr;
      gap: 34px;
      align-items: center;
      padding: 54px;
      background:
        linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.72));
      border: 1px solid rgba(255,255,255,.68);
      border-radius: 34px;
      box-shadow: 0 26px 70px rgba(44,34,49,.18);
      backdrop-filter: blur(10px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-transform: uppercase;
      letter-spacing: .24em;
      color: var(--accent-dark);
      font-family: "Manrope", ui-sans-serif, system-ui, sans-serif;
      font-weight: 800;
      font-size: .72rem;
      margin-bottom: 16px;
    }

    .eyebrow::before {
      content: "";
      width: 34px;
      height: 1px;
      background: linear-gradient(90deg, var(--purple), var(--pink));
      opacity: .9;
    }

    h1, h2, h3 { line-height: 1.04; margin: 0; }
    h1 {
      font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
      font-size: clamp(4.1rem, 9vw, 8.3rem);
      font-weight: 600;
      letter-spacing: -.055em;
      color: #24182b;
      text-shadow: 0 18px 36px rgba(165,60,222,.14);
    }

    h2 {
      font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
      font-size: clamp(2.55rem, 4.6vw, 4.45rem);
      font-weight: 600;
      letter-spacing: -.038em;
      margin-bottom: 20px;
      color: #2a1d31;
      max-width: 930px;
    }

    h2::after {
      content: "";
      display: block;
      width: 76px;
      height: 2px;
      margin-top: 18px;
      background: linear-gradient(90deg, var(--purple), var(--pink), var(--cream));
      border-radius: 999px;
      opacity: .8;
    }

    h3 {
      font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
      font-weight: 700;
      letter-spacing: -.018em;
      color: #2b1e31;
    }

    p { color: var(--muted); margin: 0; font-weight: 500; }
    .lead {
      font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
      font-size: clamp(1.35rem, 2.3vw, 1.85rem);
      line-height: 1.32;
      color: #4a3c52;
      max-width: 760px;
      margin-top: 24px;
    }

    .quote-card {
      background: rgba(255,255,255,.78);
      border: 1px solid rgba(255,255,255,.62);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 34px;
      position: relative;
    }

    .quote-card::before {
      content: "“";
      position: absolute;
      top: -20px;
      left: 22px;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 7.4rem;
      color: rgba(165,60,222,.18);
      line-height: 1;
    }

    .quote-card strong {
      display: block;
      font-family: "Cormorant Garamond", Georgia, serif;
      font-size: 2rem;
      font-weight: 600;
      letter-spacing: -.02em;
      line-height: 1.25;
      margin-bottom: 16px;
      position: relative;
    }

    .buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 30px; }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 22px;
      border-radius: 999px;
      font-weight: 800;
      border: 1px solid var(--accent);
    }

    .btn.primary {
      background: linear-gradient(135deg, var(--purple), #8b2ac6);
      color: #fff;
      border-color: transparent;
      box-shadow: 0 12px 28px rgba(165,60,222,.26);
    }
    .btn.secondary {
      color: var(--accent-dark);
      background: linear-gradient(135deg, rgba(235,182,228,.38), rgba(230,227,186,.44));
      border-color: rgba(165,60,222,.22);
    }
    
   .product-card {
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 300px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: linear-gradient(135deg, rgba(235,182,228,.22), rgba(255,255,255,.9));
  padding: 14px;
}

.product-image-wrap {
  height: 300px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(235,182,228,.28), rgba(255,255,255,.92));
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border-radius: 18px;
}

    .two-col {
      display: grid;
      grid-template-columns: .85fr 1.15fr;
      gap: 42px;
      align-items: start;
    }

    .panel {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 34px;
      box-shadow: 0 12px 35px rgba(165,60,222,.09);
    }


    /* Pozadinska slika samo na desnom prozoru u sekciji "Više o obrtu" */
    .about-image-panel {
      background:
        linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.76)),
        url("slika1.webp");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      position: relative;
      overflow: hidden;
    }

    .about-image-panel::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 12% 20%, rgba(235,182,228,.24), transparent 32%),
        radial-gradient(circle at 88% 74%, rgba(165,60,222,.12), transparent 34%);
      pointer-events: none;
    }

    .about-image-panel > * {
      position: relative;
      z-index: 1;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      margin-top: 26px;
    }

    .stat {
      padding: 18px;
      border-radius: 20px;
      background: linear-gradient(135deg, rgba(235,182,228,.28), rgba(230,227,186,.35));
      border: 1px solid var(--line);
    }
    .stat b { display: block; font-size: 1.8rem; color: var(--accent-dark); line-height: 1; }
    .stat span { color: var(--muted); font-size: .88rem; }

    .cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 34px;
    }

    .product-card, .review-card, .gallery-item {
      background: var(--paper);
      border: 1px solid var(--line);
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(165,60,222,.10);
    }

    .image-placeholder {
      min-height: 230px;
      background:
        radial-gradient(circle at 28% 18%, rgba(235,182,228,.72), transparent 30%),
        radial-gradient(circle at 82% 28%, rgba(230,227,186,.72), transparent 32%),
        linear-gradient(135deg, rgba(165,60,222,.18), rgba(168,149,177,.22) 42%, rgba(199,210,69,.22)),
        repeating-linear-gradient(45deg, rgba(165,60,222,.08) 0 10px, transparent 10px 20px);
      display: grid;
      place-items: center;
      color: rgba(47,37,34,.45);
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .12em;
      font-size: .78rem;
    }

    .product-body, .review-card { padding: 24px; }
    .product-body h3 { font-size: 1.75rem; margin-bottom: 9px; }


    /* Efekt naslova artikala: prije fokusa je prostor prazan, a tekst se rotira u prikaz. */
    .product-body h3 {
      min-height: 34px;
      perspective: 900px;
      overflow: hidden;
    }

    .product-title-spin {
      display: inline-block;
      opacity: 0;
      transform: rotateX(92deg) translateY(18px) scale(.96);
      transform-origin: center bottom;
      filter: blur(7px);
      transition:
        opacity .18s ease,
        transform .18s ease,
        filter .18s ease;
      will-change: transform, opacity, filter;
    }

    .product-card.title-visible .product-title-spin {
      animation: titleSpinIn .95s cubic-bezier(.2,.9,.2,1.08) forwards;
    }

    .product-card.title-visible:nth-child(2) .product-title-spin { animation-delay: .12s; }
    .product-card.title-visible:nth-child(3) .product-title-spin { animation-delay: .24s; }

    .product-card:not(.title-visible) .product-title-spin {
      animation: none;
    }

    @keyframes titleSpinIn {
      0% {
        opacity: 0;
        transform: rotateX(92deg) translateY(18px) scale(.96);
        filter: blur(7px);
      }
      55% {
        opacity: 1;
        transform: rotateX(-18deg) translateY(-3px) scale(1.02);
        filter: blur(1.5px);
      }
      78% {
        transform: rotateX(8deg) translateY(0) scale(1);
        filter: blur(.4px);
      }
      100% {
        opacity: 1;
        transform: rotateX(0deg) translateY(0) scale(1);
        filter: blur(0);
      }
    }

    .tag {
      display: inline-block;
      margin-top: 18px;
      padding: 7px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(235,182,228,.45), rgba(230,227,186,.42));
      color: var(--accent-dark);
      font-weight: 800;
      font-size: .8rem;
    }


    .materials-section {
      display: grid;
      grid-template-columns: .95fr 1.05fr;
      gap: 32px;
      align-items: stretch;
    }

    .materials-story {
      background:
        radial-gradient(circle at 12% 18%, rgba(235,182,228,.52), transparent 32%),
        radial-gradient(circle at 90% 90%, rgba(199,210,69,.30), transparent 30%),
        rgba(255,255,255,.88);
      border: 1px solid var(--line);
      border-radius: 34px;
      padding: 42px;
      box-shadow: 0 18px 50px rgba(165,60,222,.12);
      backdrop-filter: blur(12px);
    }

    .materials-story p { max-width: 720px; }

    .materials-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .material-card {
      min-height: 190px;
      padding: 24px;
      border-radius: 26px;
      border: 1px solid rgba(165,60,222,.16);
      background: rgba(255,255,255,.78);
      box-shadow: 0 12px 32px rgba(165,60,222,.08);
      position: relative;
      overflow: hidden;
    }

    .material-card::before {
      content: "";
      position: absolute;
      width: 90px;
      height: 90px;
      right: -24px;
      top: -24px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--pink), var(--cream), var(--lime));
      opacity: .58;
    }

    .material-card h3 {
      font-size: 1.72rem;
      margin-bottom: 12px;
      position: relative;
      z-index: 2;
    }

    .material-card p {
      font-size: .95rem;
      position: relative;
      z-index: 2;
    }

    .material-card:nth-child(2)::before { background: linear-gradient(135deg, var(--purple), var(--pink)); }
    .material-card:nth-child(3)::before { background: linear-gradient(135deg, var(--mauve), var(--cream)); }
    .material-card:nth-child(4)::before { background: linear-gradient(135deg, var(--cream), var(--lime)); }

    .owner {
      display: grid;
      grid-template-columns: .78fr 1.22fr;
      gap: 32px;
      align-items: center;
    }

    .portrait {
  min-height: 430px;
  border-radius: var(--radius);
  background:
    linear-gradient(
      rgba(255, 255, 255, 0.10),
      rgba(255, 255, 255, 0.10)
    ),
    url("AnaFilipovic.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: rgba(47,37,34,.5);
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

    .review-card p { margin-top: 12px; }
    .stars { color: var(--accent-dark); letter-spacing: .08em; font-size: 1.05rem; }
    .review-card strong { display: block; margin-top: 18px; }

    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 34px;
    }

    .gallery-image {
  width: 100%;
  height: 190px;
  object-fit: contain;
  object-position: center;
  display: block;
  background: #fff;
  padding: 10px;
}


    .shop-cta {
      display: grid;
      grid-template-columns: 1.05fr .95fr;
      gap: 30px;
      align-items: center;
      padding: 48px;
      border-radius: 34px;
      background:
        radial-gradient(circle at 15% 20%, rgba(235,182,228,.52), transparent 34%),
        radial-gradient(circle at 84% 72%, rgba(199,210,69,.42), transparent 32%),
        linear-gradient(135deg, rgba(165,60,222,.92), rgba(168,149,177,.82));
      color: #fff;
      box-shadow: 0 28px 75px rgba(165,60,222,.28);
      overflow: hidden;
      position: relative;
    }

    .shop-cta::after {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        linear-gradient(90deg, rgba(255,255,255,.14) 1px, transparent 1px),
        linear-gradient(0deg, rgba(255,255,255,.12) 1px, transparent 1px);
      background-size: 58px 58px;
      opacity: .34;
      pointer-events: none;
    }

    .shop-cta > * { position: relative; z-index: 2; }

    .shop-cta h2,
    .shop-cta p,
    .shop-cta .eyebrow { color: #fff; }

    .shop-cta h2::after { background: linear-gradient(90deg, #fff, var(--cream), var(--lime)); opacity: .9; }
    .shop-cta .eyebrow::before { background: rgba(255,255,255,.82); }

    .shop-cta p { opacity: .92; max-width: 640px; }

    .shop-box {
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(255,255,255,.62);
      border-radius: 28px;
      padding: 30px;
      color: var(--text);
      backdrop-filter: blur(12px);
      box-shadow: 0 18px 50px rgba(44,34,49,.18);
    }

    .shop-box p { color: var(--muted); }

    .shop-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 22px;
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 800;
      color: #2c2231;
      background: linear-gradient(135deg, var(--cream), var(--lime));
      box-shadow: 0 12px 30px rgba(199,210,69,.28);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .shop-link:hover {
      transform: translateY(-2px);
      box-shadow: 0 16px 38px rgba(199,210,69,.36);
    }



    .wholesale-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: center;
      padding: 44px;
      border-radius: 34px;
      border: 1px solid rgba(165,60,222,.16);
      background:
        radial-gradient(circle at 12% 18%, rgba(235,182,228,.48), transparent 34%),
        radial-gradient(circle at 88% 82%, rgba(199,210,69,.30), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,.94), rgba(248,239,251,.88));
      box-shadow: 0 22px 60px rgba(165,60,222,.14);
      position: relative;
      overflow: hidden;
    }

    .wholesale-section::before {
      content: "";
      position: absolute;
      width: 220px;
      height: 220px;
      right: -82px;
      top: -82px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(235,182,228,.48), rgba(230,227,186,.38), rgba(199,210,69,.30));
      opacity: .82;
      pointer-events: none;
    }

    .wholesale-section > * {
      position: relative;
      z-index: 2;
    }

    .wholesale-content p {
      max-width: 680px;
      color: var(--muted);
    }

    .wholesale-note {
      background: rgba(255,255,255,.84);
      border: 1px solid rgba(165,60,222,.18);
      border-radius: 28px;
      padding: 30px;
      box-shadow: 0 18px 48px rgba(44,34,49,.10);
      backdrop-filter: blur(12px);
    }

    .wholesale-note h3 {
      margin: 12px 0 10px;
      font-size: clamp(1.5rem, 3vw, 2.1rem);
    }

    .wholesale-note p {
      color: var(--muted);
      margin: 0;
    }

    .wholesale-pill {
      display: inline-flex;
      align-items: center;
      padding: 8px 13px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(235,182,228,.48), rgba(230,227,186,.48));
      color: var(--accent-dark);
      font-size: .78rem;
      font-weight: 900;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .wholesale-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      margin-top: 22px;
      padding: 15px 24px;
      border-radius: 999px;
      font-weight: 900;
      color: #fff;
      background: linear-gradient(135deg, var(--purple), var(--accent-dark));
      box-shadow: 0 14px 34px rgba(165,60,222,.24);
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .wholesale-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 42px rgba(165,60,222,.32);
    }

    /* ── FOOTER ─────────────────────────────────────────── */
    .footer {
      position: relative;
      overflow: hidden;
      border-top: none;
      background: none;
      padding: 0;
    }

    .footer-wave {
      display: block;
      width: 100%;
      overflow: hidden;
      line-height: 0;
      margin-bottom: -2px;
    }

    .footer-wave svg {
      display: block;
      width: 100%;
    }

    .footer-body {
      background:
        radial-gradient(circle at 6% 22%, rgba(165,60,222,.20), transparent 32%),
        radial-gradient(circle at 94% 78%, rgba(199,210,69,.14), transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(235,182,228,.06), transparent 60%),
        linear-gradient(165deg, #2a1e31 0%, #1d1428 55%, #221930 100%);
      padding: 68px 22px 0;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 48px;
      align-items: start;
    }

    .footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
    .footer-logo {
      width: 52px; height: 52px;
      border-radius: 50%;
      object-fit: cover;
      border: 2px solid rgba(255,255,255,.18);
      box-shadow: 0 8px 24px rgba(0,0,0,.25);
    }
    .footer-brand-text {
      font-weight: 900;
      letter-spacing: .18em;
      font-size: .88rem;
      text-transform: uppercase;
      color: rgba(255,255,255,.92);
    }

    .footer-tagline {
      font-size: .88rem;
      color: rgba(255,255,255,.48);
      font-weight: 500;
      margin: 0 0 26px;
      line-height: 1.6;
      max-width: 260px;
    }

    .footer-social {
      display: flex;
      gap: 9px;
    }

    .footer-social a {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.11);
      transition: background .22s ease, border-color .22s ease, transform .22s ease;
      color: rgba(255,255,255,.62);
    }

    .footer-social a:hover {
      background: linear-gradient(135deg, rgba(165,60,222,.40), rgba(235,182,228,.26));
      border-color: rgba(165,60,222,.52);
      color: #fff;
      transform: translateY(-3px);
    }

    .footer-social a svg {
      width: 17px;
      height: 17px;
      fill: currentColor;
    }

    .footer-col-title {
      font-family: "Manrope", ui-sans-serif, sans-serif;
      font-size: .71rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .24em;
      color: rgba(255,255,255,.36);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .footer-col-title::before {
      content: "";
      width: 22px;
      height: 1px;
      flex: 0 0 auto;
      background: linear-gradient(90deg, var(--purple), var(--pink));
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 9px;
    }

    .footer-links li a {
      font-size: .9rem;
      font-weight: 600;
      color: rgba(255,255,255,.55);
      transition: color .18s ease, padding-left .18s ease;
      display: inline-flex;
      align-items: center;
      gap: 0;
    }

    .footer-links li a:hover {
      color: #fff;
      padding-left: 6px;
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;
    }

    .footer-contact-icon {
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: rgba(165,60,222,.18);
      border: 1px solid rgba(165,60,222,.28);
      display: flex;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      color: var(--pink);
    }

    .footer-contact-icon svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .footer-contact-text {
      font-size: .88rem;
      color: rgba(255,255,255,.55);
      line-height: 1.5;
    }

    .footer-contact-text strong {
      display: block;
      font-size: .7rem;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: .16em;
      color: rgba(255,255,255,.28);
      margin-bottom: 3px;
    }

    .footer-contact-text a {
      color: rgba(255,255,255,.55);
      transition: color .18s ease;
    }

    .footer-contact-text a:hover { color: var(--pink); }

    .footer-divider {
      max-width: 1180px;
      margin: 52px auto 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(165,60,222,.28), rgba(235,182,228,.28), transparent);
    }

    .footer-bottom {
      max-width: 1180px;
      margin: 0 auto;
      padding: 20px 0 30px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
    }

    .footer-palette {
      display: flex;
      gap: 6px;
      align-items: center;
    }

    .footer-palette span {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,.18);
    }

    .footer-copy {
      font-size: .8rem;
      color: rgba(255,255,255,.28);
      font-weight: 500;
      margin: 0;
    }

    .footer-legal {
      display: flex; 
      align-items: center; 
      gap: 16px;
      font-size: .78rem; 
      color: rgba(255,255,255,.32);
    }
    .footer-legal a {
      color: rgba(165,60,222,.7);
      transition: .18s ease;
    }
    .footer-legal a:hover { color: var(--pink); }

    @media (max-width: 920px) {
      .top-banner { min-height: 520px; }
      main { margin-top: -340px; }
      .hero, .two-col, .owner, .shop-cta, .wholesale-section, .materials-section { grid-template-columns: 1fr; }
      .cards, .materials-grid { grid-template-columns: 1fr 1fr; }
      .gallery-grid { grid-template-columns: repeat(2, 1fr); }
      .section { padding: 64px 18px; }
      .hero { padding: 34px; }
      .footer-inner { grid-template-columns: 1fr 1fr; gap: 36px; }
      .shop-box p {color: var(--muted) !important;}
    }

    @media (max-width: 620px) {
      .top-banner { min-height: 430px; }
      main { margin-top: -250px; }
      .cards, .stats, .gallery-grid, .materials-grid { grid-template-columns: 1fr; }
      .nav { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
      .nav a { white-space: nowrap; }
      .nav-item { position: static; }
      .dropdown-menu { left: 22px; right: 22px; min-width: 0; transform: translateY(10px) scale(.96); }
      .nav-item:hover .dropdown-menu,
      .nav-item:focus-within .dropdown-menu { transform: translateY(0) scale(1); }
      .quote-card, .panel { padding: 26px; }
      .hero { padding: 26px; border-radius: 24px; }
      .footer-inner { grid-template-columns: 1fr; gap: 28px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; }
      .footer-body { padding: 52px 18px 0; }
      .shop-box p {color: var(--muted) !important;}
    }


    /* Efekt: sadržaj je blago zamućen dok nije u fokusu,
       a izoštri se kada sekcija dođe u sredinu ekrana. */


    .shop-categories-preview {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin: 24px 0 18px;
    }

    .shop-categories-preview a {
      display: inline-flex;
      padding: 9px 14px;
      border-radius: 999px;
      font-size: .9rem;
      font-weight: 800;
      color: var(--accent-dark);
      background: rgba(255,255,255,.68);
      border: 1px solid rgba(165,60,222,.18);
      transition: .2s ease;
    }

    .shop-categories-preview a:hover {
      transform: translateY(-2px);
      background: linear-gradient(135deg, rgba(235,182,228,.55), rgba(199,210,69,.24));
    }

    .focus-blur {
      filter: blur(7px);
      opacity: .58;
      transform: translateY(26px) scale(.985);
      transition: filter .75s ease, opacity .75s ease, transform .75s ease, box-shadow .75s ease;
      will-change: filter, opacity, transform;
    }

    .focus-blur.in-focus {
      filter: blur(0);
      opacity: 1;
      transform: translateY(0) scale(1);
    }

    .focus-blur.soft-focus {
      filter: blur(3px);
      opacity: .82;
      transform: translateY(10px) scale(.995);
    }

    @media (prefers-reduced-motion: reduce) {
      .focus-blur,
      .focus-blur.in-focus,
      .focus-blur.soft-focus {
        transition: none;
        filter: none;
        opacity: 1;
        transform: none;
      }
    }
    
    /* ==========================================================
   GALERIJA - slike bez bijelog okvira + veliko hover uvecanje
   Ovo ostavi na kraju CSS-a da pregazi starija pravila.
   ========================================================== */

.section,
.gallery-grid,
.gallery-item {
  overflow: visible;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 34px;
  position: relative;
  z-index: 1;
  overflow: visible;
}

.gallery-item {
  position: relative;
  height: 240px;
  border-radius: 24px;
  overflow: visible !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  z-index: 1;
}

.gallery-item:hover {
  z-index: 100;
}

.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding: 0 !important;
  background: transparent !important;
  border-radius: 24px;
  box-shadow: 0 12px 34px rgba(165,60,222,.14);
  transform-origin: center;
  transition:
    transform .38s cubic-bezier(.2,.85,.2,1),
    box-shadow .38s ease,
    filter .38s ease;
  will-change: transform;
}

.gallery-item:hover .gallery-image {
  transform: scale(2);
  box-shadow: 0 34px 90px rgba(44,34,49,.38);
  filter: saturate(1.08) contrast(1.04);
}

@media (max-width: 920px) {
  .gallery-item {
    height: 230px;
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.35);
  }
}

@media (max-width: 620px) {
  .gallery-item {
    height: 260px;
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.12);
  }
}



/* ==========================================================
   VIDEO POZADINA - Materijali i izrada
   Video a1.mp4 mora biti u istom folderu kao index.php i index.css.
   ========================================================== */

.materials-video-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 560px;
  display: flex;
  align-items: center;
}

.materials-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.materials-video-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 12% 18%, rgba(235,182,228,.32), transparent 34%),
    radial-gradient(circle at 90% 90%, rgba(199,210,69,.16), transparent 30%),
    linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.70));
  backdrop-filter: blur(1.5px);
  pointer-events: none;
}

.materials-video-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.materials-video-content h2,
.materials-video-content p,
.materials-video-content .eyebrow {
  position: relative;
  z-index: 2;
}

/* Na mobitelu pojačavamo bijeli sloj da tekst ostane čitljiv. */
@media (max-width: 920px) {
  .materials-video-card {
    min-height: 500px;
  }
}

@media (max-width: 620px) {
  .materials-video-card {
    min-height: 460px;
  }

  .materials-video-overlay {
    background:
      radial-gradient(circle at 12% 18%, rgba(235,182,228,.30), transparent 34%),
      linear-gradient(135deg, rgba(255,255,255,.90), rgba(255,255,255,.78));
  }
}


/* ==========================================================
   LIVE FIX / OPTIMIZACIJA - linkovi, mobilni prikaz, video, galerija
   ========================================================== */

/* Video i overlay ne smiju blokirati klikove na elemente stranice. */
.materials-bg-video,
.materials-video-overlay,
.shop-cta::after,
.top-banner::after {
  pointer-events: none !important;
}

/* Linkovi/gumbi uvijek iznad dekorativnih slojeva. */
a,
button,
.btn,
.shop-link,
.nav-wrap,
.dropdown-menu {
  position: relative;
  z-index: 20;
}

/* Ispravljen footer legal tekst bez praznih linkova. */
.footer-legal span {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.28);
}

/* Galerija: čišći prikaz i kontroliran hover na desktopu. */
.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  height: 240px;
  border-radius: 24px;
}

.gallery-image {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/* Bolji mobilni prikaz glavne stranice. */
@media (max-width: 920px) {
  body {
    overflow-x: hidden;
  }

  .nav {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar { display: none; }

  .brand {
    flex: 0 0 auto;
  }

  .top-banner {
    min-height: 520px;
    background-size: cover, cover, cover;
    background-position: center top, center, center;
  }

  main {
    margin-top: -300px;
  }

  .hero,
  .two-col,
  .owner,
  .shop-cta,
  .wholesale-section,
  .materials-section {
    grid-template-columns: 1fr !important;
  }

  h1 {
    font-size: clamp(3.8rem, 15vw, 6.2rem);
  }

  h2 {
    font-size: clamp(2.35rem, 9vw, 3.6rem);
  }

  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.18);
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    position: sticky;
  }

  .nav {
    min-height: 64px;
    padding: 8px 14px;
    gap: 8px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
  }

  .nav a {
    font-size: .82rem;
    padding: 8px 10px;
    white-space: nowrap;
  }

  .dropdown-menu {
    position: fixed;
    left: 12px !important;
    right: 12px !important;
    top: 68px !important;
    min-width: 0 !important;
    transform: translateY(8px) scale(.98) !important;
  }

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    transform: translateY(0) scale(1) !important;
  }

  .top-banner {
    min-height: 420px;
    background-position: center top, center, center;
  }

  main {
    margin-top: -215px;
  }

  .section {
    padding: 52px 16px;
  }

  .hero {
    padding: 24px;
    border-radius: 24px;
    gap: 22px;
  }

  .quote-card,
  .panel,
  .materials-story,
  .shop-box,
  .wholesale-section,
  .wholesale-note {
    padding: 24px;
  }

  .lead {
    font-size: 1.25rem;
  }

  .buttons,
  .shop-cta,
  .wholesale-section {
    gap: 12px;
  }

  .btn,
  .shop-link,
  .wholesale-btn {
    width: 100%;
    text-align: center;
  }

  .cards,
  .stats,
  .materials-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  .product-image-wrap {
    height: 250px;
  }

  .materials-video-card {
    min-height: 520px;
  }

  .materials-video-overlay {
    background: linear-gradient(135deg, rgba(255,255,255,.92), rgba(255,255,255,.80)) !important;
  }

  .gallery-item {
    height: 300px;
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.04);
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
  }
}

/* ==========================================================
   NAVIGACIJA NASLOVNA - uskladeno s web shopom
   Smanjuje bijelu traku i sprjecava prebacivanje linkova u drugi red.
   ========================================================== */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 255, .82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(165, 60, 222, .14);
  box-shadow: none;
}

.nav {
  max-width: 1180px;
  min-height: 82px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: nowrap;
  overflow: visible;
}

.nav .brand {
  flex: 0 0 auto;
}

.nav a,
.nav .nav-item {
  flex: 0 0 auto;
}

.brand-logo {
  width: 64px;
  height: 64px;
}

.nav a {
  white-space: nowrap;
}

@media (max-width: 980px) {
  .nav {
    justify-content: flex-start;
    overflow-x: auto;
    overflow-y: visible;
    gap: 12px;
    min-height: 76px;
    padding: 8px 16px;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .brand-logo {
    width: 54px;
    height: 54px;
  }
}

@media (max-width: 620px) {
  .nav {
    min-height: 66px;
    padding: 7px 14px;
    gap: 8px;
    flex-wrap: nowrap !important;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .nav a {
    font-size: .82rem;
    padding: 8px 10px;
  }
}

/* ==========================================================
   FINAL FIX - kompaktna navigacija na naslovnoj
   Sprjecava da bijela traka naraste u visinu i da linkovi idu u drugi red.
   ========================================================== */
.nav-wrap {
  height: 76px !important;
  min-height: 76px !important;
  max-height: 76px !important;
  overflow: visible !important;
}

.nav {
  height: 76px !important;
  min-height: 0 !important;
  max-height: 76px !important;
  padding: 0 22px !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 18px !important;
  overflow: visible !important;
}

.nav .brand,
.nav a,
.nav .nav-item {
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}

.brand-logo {
  width: 54px !important;
  height: 54px !important;
}

.nav a {
  font-size: .9rem !important;
  padding: 8px 10px !important;
}

.dropdown-menu {
  top: calc(100% + 10px) !important;
}

@media (max-width: 980px) {
  .nav-wrap {
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
  }

  .nav {
    height: 68px !important;
    max-height: 68px !important;
    min-height: 0 !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    padding: 0 14px !important;
    gap: 10px !important;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar { display: none; }

  .brand-logo {
    width: 46px !important;
    height: 46px !important;
  }
}

@media (max-width: 620px) {
  .nav-wrap {
    height: 62px !important;
    min-height: 62px !important;
    max-height: 62px !important;
  }

  .nav {
    height: 62px !important;
    max-height: 62px !important;
    min-height: 0 !important;
    padding: 0 12px !important;
    gap: 8px !important;
  }

  .brand-logo {
    width: 42px !important;
    height: 42px !important;
  }

  .nav a {
    font-size: .82rem !important;
    padding: 7px 9px !important;
  }
}

/* ==========================================================
   FINAL NAV FIX - razmak + dropdown ispod Web shop/Kategorije
   ========================================================== */

.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(165,60,222,.14);
}

.nav {
  max-width: 1180px;
  height: 76px;
  min-height: 76px;
  max-height: 76px;
  margin: 0 auto;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex-wrap: nowrap;
  overflow: visible;
}

/* Logo normalno u istom redu */
.brand {
  flex: 0 0 auto;
  margin: 0;
}

.brand-logo {
  width: 54px;
  height: 54px;
}

/* Svi linkovi jednako u redu, bez ogromnog razmaka */
.nav > a,
.nav > .nav-item {
  flex: 0 0 auto;
  margin: 0 !important;
  white-space: nowrap;
}

/* Ovo sprječava da Kontakt ode skroz desno */
.nav a[href="#kontakt"],
.nav a[href="index.php#kontakt"],
.nav a[href="./index.php#kontakt"] {
  margin-left: 0 !important;
}

/* Dropdown roditelj mora biti referenca za poziciju */
.nav-item {
  position: relative !important;
  display: inline-flex;
  align-items: center;
}

/* Dropdown uvijek ispod svoje tipke */
.dropdown-menu {
  position: absolute !important;
  top: calc(100% + 10px) !important;
  left: 50% !important;
  right: auto !important;
  bottom: auto !important;
  transform: translateX(-50%) translateY(8px) scale(.96) !important;
  min-width: 245px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 10000;
}

/* Hover/focus otvara dropdown točno ispod */
.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

/* Za mobitel neka se meni skrola, ali dropdown ostane vezan uz tipku */
@media (max-width: 760px) {
  .nav {
    justify-content: flex-start;
    gap: 16px;
    overflow-x: auto;
    overflow-y: visible;
    height: 68px;
    min-height: 68px;
    max-height: 68px;
    padding: 0 16px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .nav-item {
    position: relative !important;
  }

  .dropdown-menu {
    left: 0 !important;
    transform: translateY(8px) scale(.96) !important;
  }

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    transform: translateY(0) scale(1) !important;
  }
}


/* ==========================================================
   MOBILE FINAL FIX - Koli ART naslovna
   Dodano za bolji prikaz na mobitelu bez diranja desktop verzije.
   ========================================================== */

@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  body {
    font-size: 15px !important;
  }

  /* Navigacija: kompaktna, u jednom redu, horizontalni scroll */
  .nav-wrap {
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    overflow: visible !important;
    background: rgba(255,255,255,.97) !important;
    z-index: 99999 !important;
  }

  .nav {
    width: 100% !important;
    max-width: none !important;
    height: 64px !important;
    min-height: 64px !important;
    max-height: 64px !important;
    margin: 0 !important;
    padding: 0 12px !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
  }

  .nav::-webkit-scrollbar {
    display: none !important;
  }

  .brand {
    flex: 0 0 auto !important;
  }

  .brand-logo {
    width: 42px !important;
    height: 42px !important;
    min-width: 42px !important;
  }

  .nav a,
  .nav-item,
  .nav-item > a {
    flex: 0 0 auto !important;
    white-space: nowrap !important;
    font-size: .82rem !important;
    line-height: 1 !important;
  }

  .nav a {
    padding: 8px 9px !important;
  }

  .nav-item {
    position: relative !important;
  }

  .dropdown-menu {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: 68px !important;
    min-width: 0 !important;
    width: auto !important;
    max-height: calc(100vh - 88px) !important;
    overflow-y: auto !important;
    transform: translateY(8px) scale(.98) !important;
    z-index: 100000 !important;
  }

  .nav-item:hover .dropdown-menu,
  .nav-item:focus-within .dropdown-menu {
    transform: translateY(0) scale(1) !important;
  }

  /* Banner i uvod: manje agresivno preklapanje na mobitelu */
  .top-banner {
    min-height: 360px !important;
    background-size: cover, cover, cover !important;
    background-position: center top, center, center !important;
  }

  main {
    margin-top: -155px !important;
    position: relative !important;
    z-index: 3 !important;
  }

  .section {
    width: min(100% - 28px, 1180px) !important;
    max-width: none !important;
    padding: 46px 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    scroll-margin-top: 78px !important;
  }

  .hero {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    padding: 24px !important;
    border-radius: 24px !important;
  }

  h1 {
    font-size: clamp(3rem, 18vw, 4.7rem) !important;
    letter-spacing: -.045em !important;
    line-height: .92 !important;
  }

  h2 {
    font-size: clamp(2.15rem, 12vw, 3.25rem) !important;
    line-height: 1 !important;
  }

  h3 {
    line-height: 1.05 !important;
  }

  .lead {
    font-size: 1.18rem !important;
    line-height: 1.42 !important;
    margin-top: 18px !important;
  }

  .eyebrow {
    font-size: .66rem !important;
    letter-spacing: .16em !important;
    gap: 8px !important;
    flex-wrap: wrap !important;
  }

  .eyebrow::before {
    width: 26px !important;
  }

  .buttons,
  .shop-categories-preview {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 10px !important;
  }

  .btn,
  .shop-link,
  .wholesale-btn {
    width: 100% !important;
    text-align: center !important;
  }

  .quote-card,
  .panel,
  .materials-story,
  .shop-box,
  .wholesale-section,
  .wholesale-note {
    padding: 24px !important;
    border-radius: 22px !important;
  }

  .quote-card strong {
    font-size: 1.55rem !important;
  }

  /* Gridovi */
  .two-col,
  .owner,
  .shop-cta,
  .wholesale-section,
  .materials-section {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .cards,
  .stats,
  .materials-grid,
  .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .shop-cta {
    padding: 28px 22px !important;
    border-radius: 26px !important;
  }

  .shop-cta h2,
  .shop-cta p,
  .shop-cta .eyebrow {
    color: #fff !important;
  }

  .stat {
    padding: 16px !important;
  }

  .product-image-wrap {
    height: 260px !important;
    padding: 14px !important;
  }

  .product-body {
    padding: 20px !important;
  }

  .product-body h3 {
    font-size: 1.65rem !important;
    min-height: auto !important;
  }

  .tag {
    margin-top: 14px !important;
  }

  .portrait {
    min-height: 320px !important;
    border-radius: 22px !important;
  }

  .material-card {
    min-height: auto !important;
    padding: 22px !important;
  }

  .gallery-grid {
    overflow: visible !important;
  }

  .gallery-item {
    height: 260px !important;
    border-radius: 22px !important;
  }

  .gallery-image {
    border-radius: 22px !important;
    transform: none !important;
  }

  .gallery-item:hover .gallery-image {
    transform: scale(1.03) !important;
  }

  /* Na mobitelu blur efekt pogoršava čitljivost i performanse */
  .focus-blur,
  .focus-blur.soft-focus,
  .focus-blur.in-focus {
    filter: none !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  /* Video/prozirni slojevi ne smiju blokirati klik */
  video,
  .card-bg-video,
  .materials-bg-video,
  .video-card::before,
  .video-card::after {
    pointer-events: none !important;
  }
  
  .shop-box p { color: var(--muted) !important; }

  /* Footer */
  .footer-body {
    padding: 48px 18px 0 !important;
  }

  .footer-inner {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  .footer-logo {
    font-size: 2.35rem !important;
  }

  .footer-bottom {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 14px !important;
  }

  .footer-palette {
    flex-wrap: wrap !important;
  }
}

@media (max-width: 430px) {
  .top-banner {
    min-height: 320px !important;
  }

  main {
    margin-top: -125px !important;
  }

  .section {
    width: min(100% - 22px, 1180px) !important;
    padding: 38px 0 !important;
  }

  .hero {
    padding: 20px !important;
  }

  h1 {
    font-size: clamp(2.7rem, 19vw, 4.1rem) !important;
  }

  h2 {
    font-size: clamp(2rem, 13vw, 3rem) !important;
  }

  .lead {
    font-size: 1.08rem !important;
  }

  .product-image-wrap {
    height: 235px !important;
  }

  .gallery-item {
    height: 235px !important;
  }

  .portrait {
    min-height: 280px !important;
  }

  .nav a {
    font-size: .78rem !important;
    padding: 7px 8px !important;
  }
  .shop-box p {color: var(--muted) !important;}
}



/* ==========================================================
   PLETER DEKORATIVNI RUB - između bannera i sadržaja
   ========================================================== */
.top-banner {
  position: relative !important;
  overflow: visible !important;
  z-index: 2 !important;
  border-bottom: none !important;
}

main {
  position: relative !important;
  z-index: 3 !important;
}

.top-banner::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: -22px !important;
  height: 44px !important;
  background-image: url("pleter-web-transparent.webp") !important;
  background-repeat: repeat-x !important;
  background-size: auto 44px !important;
  background-position: center !important;
  z-index: 2 !important;
  pointer-events: none !important;
}

@media (max-width: 620px) {
  .top-banner::before {
    bottom: -16px !important;
    height: 32px !important;
    background-size: auto 32px !important;
  }
}



/* ==========================================================
   COOKIE BANNER — samo pozicioniranje i stil
   Animacija je u potpunosti u JS-u (rAF loop, inline stilovi)
   ========================================================== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 32px), 800px);
  z-index: 99999;
  border-radius: 24px;
  background: linear-gradient(135deg, #2a1c34 0%, #1a1228 100%);
  border: 1px solid rgba(165,60,222,.35);
  box-shadow:
    0 24px 60px rgba(0,0,0,.55),
    0 0 0 1px rgba(235,182,228,.08),
    inset 0 1px 0 rgba(255,255,255,.06);
  padding: 22px 26px;
}

.cookie-banner-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  width: 100%;
}

.cookie-banner-icon {
  font-size: 2.1rem;
  flex: 0 0 auto;
  line-height: 1;
  user-select: none;
}

.cookie-banner-content {
  flex: 1 1 220px;
  min-width: 0;
}

.cookie-banner-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.22rem;
  font-weight: 700;
  letter-spacing: -.01em;
  color: rgba(255,255,255,.94);
  margin: 0 0 3px;
  line-height: 1.2;
}

.cookie-banner-text {
  font-size: .82rem;
  color: rgba(255,255,255,.50);
  font-weight: 500;
  line-height: 1.52;
  margin: 0;
}

.cookie-banner-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  flex-wrap: wrap;
}

.cookie-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  border-radius: 999px;
  font-family: "Manrope", ui-sans-serif, sans-serif;
  font-size: .84rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  line-height: 1;
  border: none;
  -webkit-tap-highlight-color: transparent;
}

.cookie-btn-primary {
  background: linear-gradient(135deg, #A53CDE, #8928cc);
  color: #fff;
  box-shadow: 0 6px 22px rgba(165,60,222,.48);
}
.cookie-btn-primary:active { opacity: .82; }

.cookie-btn-outline {
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.75);
  border: 1px solid rgba(255,255,255,.18);
}
.cookie-btn-outline:active { opacity: .72; }

.cookie-btn-link {
  font-family: "Manrope", ui-sans-serif, sans-serif;
  font-size: .81rem;
  font-weight: 600;
  color: rgba(165,60,222,.80);
  padding: 4px 2px;
  white-space: nowrap;
  text-decoration: underline;
  text-decoration-color: rgba(165,60,222,.35);
  text-underline-offset: 3px;
  -webkit-tap-highlight-color: transparent;
}

/* ── Mobitel ── */
@media (max-width: 620px) {
  .cookie-banner {
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    transform: none;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    padding: 18px 20px calc(18px + env(safe-area-inset-bottom, 0px)) 20px;
  }

  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 14px; }
  .cookie-banner-icon  { display: none; }
  .cookie-banner-title { font-size: 1.05rem; }
  .cookie-banner-title::before { content: "🍪 "; }
  .cookie-banner-content { flex-basis: 100%; width: 100%; }
  .cookie-banner-text  { font-size: .8rem; }

  .cookie-banner-actions { width: 100%; flex-wrap: nowrap; gap: 8px; }

  .cookie-btn-primary,
  .cookie-btn-outline {
    flex: 1 1 0;
    padding: 12px 10px;
    font-size: .82rem;
    justify-content: center;
  }

  .cookie-btn-link {
    align-self: center;
    margin-left: auto;
    flex: 0 0 auto;
    font-size: .78rem;
  }
}


/* ==========================================================
   FIX 09.06.2026 — mobile cookie banner overflow
   Sprečava da gumbi odu izvan ekrana na mobilnom prikazu.
   ========================================================== */
@media (max-width: 620px) {
  .cookie-banner,
  .cookie-banner * {
    box-sizing: border-box;
  }

  .cookie-banner {
    max-width: 100vw;
    overflow: hidden;
  }

  .cookie-banner-inner {
    width: 100%;
    max-width: 100%;
  }

  .cookie-banner-actions {
    width: 100%;
    max-width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    flex-wrap: initial;
    align-items: stretch;
  }

  .cookie-btn-primary,
  .cookie-btn-outline {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    line-height: 1.15;
    text-align: center;
  }

  .cookie-btn-link {
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: 0;
    max-width: 100%;
    white-space: normal;
    text-align: center;
  }
}


/* ==========================================================
   FIX 09.06.2026 — cookie banner mobile final
   Gumbi se na mobitelu slažu jedan ispod drugog i banner više ne može otići izvan ekrana.
   ========================================================== */
.cookie-banner,
.cookie-banner * {
  box-sizing: border-box;
}

.cookie-banner.cookie-banner--visible {
  display: flex;
}

@media (max-width: 760px) {
  .cookie-banner {
    left: 12px !important;
    right: 12px !important;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px)) !important;
    width: auto !important;
    max-width: none !important;
    transform: none !important;
    border-radius: 20px !important;
    padding: 16px 14px !important;
    overflow-x: hidden !important;
    overflow-y: auto !important;
    max-height: min(78dvh, 520px) !important;
  }

  .cookie-banner-inner {
    width: 100% !important;
    max-width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 12px !important;
  }

  .cookie-banner-icon {
    display: none !important;
  }

  .cookie-banner-content {
    width: 100% !important;
    flex: 0 0 auto !important;
    min-width: 0 !important;
  }

  .cookie-banner-title {
    font-size: 1.02rem !important;
    line-height: 1.15 !important;
  }

  .cookie-banner-text {
    font-size: .82rem !important;
    line-height: 1.45 !important;
  }

  .cookie-banner-actions {
    width: 100% !important;
    max-width: 100% !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 9px !important;
    margin-top: 2px !important;
    flex: 0 0 auto !important;
  }

  .cookie-btn,
  .cookie-btn-primary,
  .cookie-btn-outline,
  .cookie-btn-link {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 !important;
    white-space: normal !important;
    text-align: center !important;
    justify-content: center !important;
  }

  .cookie-btn-primary,
  .cookie-btn-outline {
    padding: 12px 14px !important;
    font-size: .86rem !important;
    line-height: 1.15 !important;
  }

  .cookie-btn-link {
    display: block !important;
    padding: 6px 0 2px !important;
    font-size: .8rem !important;
  }
}


/* FORCE FIX 09.06.2026 — cookie banner mobile inline backup */
.cookie-banner, .cookie-banner * { box-sizing: border-box !important; }
.cookie-banner.cookie-banner--visible { display: flex !important; }
@media (max-width: 900px) {
  .cookie-banner { left:10px!important; right:10px!important; bottom:calc(10px + env(safe-area-inset-bottom,0px))!important; width:auto!important; max-width:none!important; min-width:0!important; transform:none!important; padding:14px!important; border-radius:18px!important; overflow-x:hidden!important; overflow-y:auto!important; max-height:calc(100dvh - 90px)!important; }
  .cookie-banner-inner { display:flex!important; flex-direction:column!important; align-items:stretch!important; width:100%!important; max-width:100%!important; min-width:0!important; gap:10px!important; flex-wrap:nowrap!important; }
  .cookie-banner-icon { display:none!important; }
  .cookie-banner-content { width:100%!important; max-width:100%!important; min-width:0!important; flex:0 0 auto!important; }
  .cookie-banner-title { margin:0 0 4px!important; font-size:1rem!important; line-height:1.15!important; }
  .cookie-banner-title::before { content:"🍪 "!important; }
  .cookie-banner-text { margin:0!important; font-size:.78rem!important; line-height:1.38!important; }
  .cookie-banner-actions { display:grid!important; grid-template-columns:1fr!important; width:100%!important; max-width:100%!important; min-width:0!important; gap:8px!important; margin:0!important; flex:0 0 auto!important; }
  .cookie-btn, .cookie-btn-primary, .cookie-btn-outline, .cookie-btn-link { display:flex!important; width:100%!important; max-width:100%!important; min-width:0!important; margin:0!important; white-space:normal!important; text-align:center!important; justify-content:center!important; align-items:center!important; }
  .cookie-btn-primary, .cookie-btn-outline { padding:11px 12px!important; font-size:.84rem!important; line-height:1.15!important; }
  .cookie-btn-link { padding:4px 0 0!important; font-size:.78rem!important; }
}


/* ==========================================================
   FAQ SEKCIJA - Koli ART
   ========================================================== */
.faq-section {
  position: relative;
}

.faq-section::before {
  content: "";
  position: absolute;
  inset: 18px 0 auto auto;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(235,182,228,.34), transparent 68%);
  pointer-events: none;
  filter: blur(2px);
}

.faq-heading {
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, .65fr);
  gap: 28px;
  align-items: end;
}

.faq-heading p {
  margin: 0;
  color: var(--muted);
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(165,60,222,.14);
  border-radius: 22px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(165,60,222,.08);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, .72fr) minmax(0, 1.15fr);
  gap: 24px;
  margin-top: 34px;
  align-items: start;
}

.faq-card,
.faq-item {
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(165,60,222,.16);
  box-shadow: 0 18px 50px rgba(165,60,222,.10);
}

.faq-card {
  border-radius: 30px;
  padding: 30px;
  position: sticky;
  top: 98px;
  overflow: hidden;
}

.faq-card::after {
  content: "";
  position: absolute;
  right: -56px;
  bottom: -68px;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(199,210,69,.30), transparent 70%);
}

.faq-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(165,60,222,.13), rgba(235,182,228,.34));
  color: var(--accent-dark);
  font-weight: 900;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.faq-card h3 {
  position: relative;
  z-index: 1;
  margin: 18px 0 12px;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  line-height: .96;
  color: var(--text);
}

.faq-card p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--muted);
}

.faq-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  margin-top: 22px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--purple), #8b2ac6);
  color: #fff;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(165,60,222,.22);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border-radius: 22px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 19px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text);
  font-weight: 900;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(235,182,228,.42), rgba(230,227,186,.42));
  color: var(--accent-dark);
  font-size: 1.2rem;
  line-height: 1;
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  content: "−";
  transform: rotate(180deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .faq-heading,
  .faq-layout {
    grid-template-columns: 1fr;
  }

  .faq-card {
    position: relative;
    top: auto;
  }
}

@media (max-width: 620px) {
  .faq-heading p,
  .faq-card,
  .faq-item summary,
  .faq-item p {
    padding-left: 18px;
    padding-right: 18px;
  }

  .faq-card {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .faq-item summary {
    align-items: flex-start;
  }
}

/* ==========================================================
   FIX - Koli ART banner: pozadinska logo slika je bila previsoko
   Pomaknut je treći background layer: url("logo.webp") malo niže.
   Ako treba još niže: smanji 42% na 38% ili 35%.
   Ako treba više gore: povećaj 42% na 46% ili 50%.
   ========================================================== */
.top-banner {
  background-position: center center, center center, center 42% !important;
}

@media (max-width: 920px) {
  .top-banner {
    background-position: center center, center center, center 40% !important;
  }
}

@media (max-width: 620px) {
  .top-banner {
    background-position: center center, center center, center 38% !important;
  }
}

/* ==========================================================
   KOLI ART - nježniji footer 2026-06-21
   Footer je prebačen iz tamne ljubičaste u nježnu pastelnu pozadinu,
   uz tamnije tekstove radi bolje čitljivosti.
   ========================================================== */
.footer-wave svg path,
.footer-wave path {
  fill: #f6e8f6 !important;
}

.footer-body {
  background:
    radial-gradient(circle at 8% 18%, rgba(235, 182, 228, .42), transparent 34%),
    radial-gradient(circle at 92% 78%, rgba(230, 227, 186, .52), transparent 34%),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, .70), transparent 48%),
    linear-gradient(135deg, #f6e8f6 0%, #fff7ea 58%, #f1f3d2 100%) !important;
  color: #2c2231 !important;
  border-top: 1px solid rgba(165, 60, 222, .12) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.75) !important;
}

.footer-brand-text {
  color: #342839 !important;
}

.footer-tagline,
.footer-links li a,
.footer-contact-text,
.footer-contact-text a {
  color: rgba(52, 40, 57, .72) !important;
}

.footer-col-title,
.footer-contact-text strong,
.footer-copy,
.footer-legal,
.footer-legal span {
  color: rgba(52, 40, 57, .54) !important;
}

.footer-links li a:hover,
.footer-contact-text a:hover,
.footer-legal a,
.footer-legal a:hover {
  color: var(--purple) !important;
}

.footer-logo {
  background: rgba(255,255,255,.72) !important;
  border-color: rgba(165, 60, 222, .20) !important;
  box-shadow: 0 10px 24px rgba(165, 60, 222, .12) !important;
}

.footer-social a {
  background: rgba(255,255,255,.58) !important;
  border-color: rgba(165, 60, 222, .18) !important;
  color: var(--purple) !important;
  box-shadow: 0 10px 20px rgba(165, 60, 222, .10) !important;
}

.footer-social a:hover {
  background: linear-gradient(135deg, rgba(165,60,222,.16), rgba(235,182,228,.48)) !important;
  border-color: rgba(165,60,222,.30) !important;
  color: #7a22b4 !important;
}

.footer-contact-icon {
  background: rgba(255,255,255,.58) !important;
  border-color: rgba(165, 60, 222, .18) !important;
  color: var(--purple) !important;
}

.footer-divider {
  background: linear-gradient(90deg, transparent, rgba(165,60,222,.20), rgba(199,210,69,.18), transparent) !important;
}

.footer-palette span {
  border-color: rgba(52, 40, 57, .16) !important;
  box-shadow: 0 6px 14px rgba(52, 40, 57, .08) !important;
}


/* ==========================================================
   KOLI ART - uklanjanje palete boja iz footera 2026-06-21
   Sakriva 5 kružića na dnu footera.
   ========================================================== */
.footer-palette {
  display: none !important;
}

.footer-bottom {
  justify-content: center !important;
  text-align: center !important;
}

.footer-copy,
.footer-legal {
  width: 100% !important;
  justify-content: center !important;
}

/* ==========================================================
   SLAVONIKA PREMIUM KOLEKCIJA
   Fotografije se automatski učitavaju iz mape /slavonika.
   Desktop: 3 u prikazu, tablet: 2, mobitel: 1.
   ========================================================== */
.slavonika-section {
  max-width: 1260px;
}

.slavonika-shell {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 54px);
  border: 1px solid rgba(230, 227, 186, .34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 12%, rgba(235, 182, 228, .18), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(199, 210, 69, .10), transparent 30%),
    linear-gradient(145deg, #241a29 0%, #3a2344 52%, #241a29 100%);
  box-shadow: 0 24px 60px rgba(36, 26, 41, .24);
}

.slavonika-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 34px 34px;
}

.slavonika-heading,
.slavonika-track,
.slavonika-progress {
  position: relative;
  z-index: 1;
}

.slavonika-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 28px;
}

.slavonika-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 8px;
  color: #e6e3ba;
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.slavonika-kicker::before {
  content: "";
  width: 34px;
  height: 1px;
  background: currentColor;
}

.slavonika-heading h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.9rem, 7vw, 6.4rem);
  line-height: .86;
  letter-spacing: .035em;
  text-shadow: 0 12px 30px rgba(0,0,0,.25);
}

.slavonika-heading p {
  max-width: 670px;
  margin: 18px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 1rem;
  line-height: 1.75;
}

.slavonika-controls {
  display: flex;
  gap: 10px;
  flex: 0 0 auto;
}

.slavonika-arrow {
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: #fff;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: transform .2s ease, background .2s ease, border-color .2s ease, opacity .2s ease;
}

.slavonika-arrow:hover:not(:disabled),
.slavonika-arrow:focus-visible:not(:disabled) {
  transform: translateY(-2px);
  background: rgba(230,227,186,.18);
  border-color: rgba(230,227,186,.65);
  outline: none;
}

.slavonika-arrow:disabled {
  cursor: default;
  opacity: .28;
}

.slavonika-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 36px) / 3);
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 4px 2px 14px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 2px;
  scrollbar-width: none;
  overscroll-behavior-inline: contain;
  -webkit-overflow-scrolling: touch;
}

.slavonika-track::-webkit-scrollbar {
  display: none;
}

.slavonika-card {
  position: relative;
  min-width: 0;
  aspect-ratio: 4 / 5;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 24px;
  background: linear-gradient(145deg, #f7f3ea, #e8dfcf);
  box-shadow: 0 18px 35px rgba(0,0,0,.22);
  scroll-snap-align: start;
  isolation: isolate;
}

.slavonika-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 67%, rgba(18, 11, 21, .72) 100%);
}

.slavonika-open {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.slavonika-open:focus-visible {
  outline: 3px solid #e6e3ba;
  outline-offset: -5px;
}

.slavonika-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transform-origin: 50% 50%;
  transition: transform .42s cubic-bezier(.2,.8,.2,1), filter .3s ease;
}

@media (hover: hover) and (pointer: fine) {
  .slavonika-open:hover img {
    transform: scale(1.6);
    filter: saturate(1.04) contrast(1.03);
  }
}

.slavonika-zoom-hint {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 7px 11px;
  border: 1px solid rgba(255,255,255,.42);
  border-radius: 999px;
  color: #fff;
  background: rgba(28, 17, 32, .68);
  backdrop-filter: blur(9px);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  opacity: .78;
  transition: opacity .2s ease, transform .2s ease;
}

.slavonika-open:hover .slavonika-zoom-hint,
.slavonika-open:focus-visible .slavonika-zoom-hint {
  opacity: 1;
  transform: translateY(-2px);
}

.slavonika-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  left: 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  pointer-events: none;
}

.slavonika-card figcaption span {
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .16em;
}

.slavonika-card figcaption small {
  color: #e6e3ba;
  font-size: .78rem;
  font-weight: 800;
}

.slavonika-progress {
  height: 2px;
  margin-top: 14px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
}

.slavonika-progress span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #e6e3ba, #ebb6e4);
  transform: scaleX(.08);
  transform-origin: left center;
  transition: transform .15s linear;
}

@media (max-width: 920px) {
  .slavonika-track {
    grid-auto-columns: calc((100% - 16px) / 2);
    gap: 16px;
  }
}

@media (max-width: 620px) {
  .slavonika-shell {
    padding: 28px 18px 24px;
    border-radius: 26px;
  }

  .slavonika-heading {
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .slavonika-heading p {
    font-size: .93rem;
  }

  .slavonika-controls {
    display: none;
  }

  .slavonika-track {
    grid-auto-columns: 86%;
    gap: 13px;
  }

  .slavonika-card {
    border-radius: 20px;
  }
}



/* Povećani prikaz fotografije — tekst na majicama ostaje čitljiv u punoj veličini. */
body.slavonika-lightbox-open {
  overflow: hidden;
}

.slavonika-lightbox[hidden] {
  display: none;
}

.slavonika-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 12px;
  padding: 34px;
  background: rgba(16, 10, 19, .92);
  backdrop-filter: blur(18px);
  opacity: 0;
  transition: opacity .18s ease;
}

.slavonika-lightbox.is-visible {
  opacity: 1;
}

.slavonika-lightbox-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: min(88vh, 980px);
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255,255,255,.05);
  box-shadow: 0 30px 80px rgba(0,0,0,.44);
}

.slavonika-lightbox-stage img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  cursor: zoom-in;
  transform: scale(1);
  transform-origin: 50% 50%;
  transition: transform .25s ease;
  user-select: none;
  -webkit-user-drag: none;
}

.slavonika-lightbox-stage img.is-zoomed {
  transform: scale(1.8);
  cursor: zoom-out;
}

.slavonika-lightbox-tip {
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  padding: 8px 13px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(16,10,19,.68);
  font-size: .76rem;
  font-weight: 700;
  pointer-events: none;
  white-space: nowrap;
}

.slavonika-lightbox-close,
.slavonika-lightbox-arrow {
  border: 1px solid rgba(255,255,255,.24);
  color: #fff;
  background: rgba(255,255,255,.09);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}

.slavonika-lightbox-close:hover,
.slavonika-lightbox-arrow:hover,
.slavonika-lightbox-close:focus-visible,
.slavonika-lightbox-arrow:focus-visible {
  transform: scale(1.06);
  background: rgba(230,227,186,.2);
  outline: none;
}

.slavonika-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  line-height: 1;
}

.slavonika-lightbox-arrow {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  font-size: 2.5rem;
  line-height: 1;
}

.slavonika-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  color: #e6e3ba;
  font-size: .82rem;
  font-weight: 800;
  letter-spacing: .12em;
}

@media (max-width: 720px) {
  .slavonika-lightbox {
    grid-template-columns: 1fr;
    padding: 68px 12px 54px;
  }

  .slavonika-lightbox-stage {
    height: 74vh;
    border-radius: 14px;
  }

  .slavonika-lightbox-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 44px;
    height: 44px;
    font-size: 2rem;
    transform: translateY(-50%);
  }

  .slavonika-lightbox-arrow:hover,
  .slavonika-lightbox-arrow:focus-visible {
    transform: translateY(-50%) scale(1.05);
  }

  .slavonika-lightbox-prev { left: 10px; }
  .slavonika-lightbox-next { right: 10px; }
  .slavonika-lightbox-tip { display: none; }
  .slavonika-lightbox-stage img.is-zoomed { transform: scale(1.45); }
}

@media (prefers-reduced-motion: reduce) {
  .slavonika-track {
    scroll-behavior: auto;
  }

  .slavonika-card img,
  .slavonika-arrow,
  .slavonika-progress span,
  .slavonika-lightbox,
  .slavonika-lightbox-stage img {
    transition: none;
  }
}


/* ObrtBoost performance patch 2026-07-21 */
.gallery-item,
.slavonika-card,
.product-card { contain: layout paint style; }
@supports (content-visibility: auto) {
  #artikli,
  #slavonika,
  #webshop,
  #veleprodaja-majica,
  #materijali,
  #vlasnik,
  #recenzije,
  #najcesca-pitanja,
  #galerija,
  .footer { content-visibility: auto; contain-intrinsic-size: 1px 760px; }
}
@media (max-width: 980px), (prefers-reduced-motion: reduce) {
  .nav-wrap,
  .panel,
  .quote-card,
  .shop-box,
  .materials-video-content { backdrop-filter: none !important; -webkit-backdrop-filter: none !important; }
}
