   /* ===================== CSS VARIJABLE ===================== */
    :root {
      --roza:    #f5a7b8;
      --tamna:   #3b1f2b;
      --krem:    #fdf6ee;
      --smedja:  #c07850;
      --svj:     #fff8f2;
      --siva:    #888;
      --sjena:   0 4px 24px rgba(59,31,43,.13);
    }

    /* ===================== RESET ===================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Lato', sans-serif; background: var(--svj); color: var(--tamna); }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ===================== NAVIGACIJA ===================== */
    header {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      background: transparent;
      transition: background .35s, box-shadow .35s;
    }
    header.scrolled {
      background: var(--tamna);
      box-shadow: 0 2px 16px rgba(0,0,0,.25);
    }
    nav {
      display: flex; align-items: center; justify-content: space-between;
      padding: 1.1rem 2rem;
      max-width: 1200px; margin: 0 auto;
    }
    .logo {
      font-family: 'Playfair Display', serif;
      font-size: 1.6rem; color: #fff;
      letter-spacing: .03em;
    }
    .logo span { color: var(--roza); }
    .nav-links { display: flex; gap: 2rem; }
    .nav-links a {
      color: #fff; font-size: .95rem; font-weight: 700;
      letter-spacing: .05em; text-transform: uppercase;
      position: relative; padding-bottom: 3px;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: 0; left: 0;
      width: 0; height: 2px; background: var(--roza);
      transition: width .3s;
    }
    .nav-links a:hover::after { width: 100%; }

    /* hamburger */
    #hamburger {
      display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px;
    }
    .linija {
      width: 26px; height: 2px; background: #fff;
      transition: transform .3s, opacity .3s;
    }
    #hamburger.open .linija:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    #hamburger.open .linija:nth-child(2) { opacity: 0; }
    #hamburger.open .linija:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

    /* ===================== GUMBI ===================== */
    .btn {
      display: inline-block; padding: .8rem 2rem;
      border-radius: 50px; font-weight: 700; font-size: .9rem;
      letter-spacing: .06em; text-transform: uppercase;
      cursor: pointer; transition: transform .2s, box-shadow .2s, background .2s;
      border: none;
    }
    .btn:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,.2); }
    .btn-primary { background: var(--roza); color: var(--tamna); }
    .btn-outline { background: transparent; border: 2px solid #fff; color: #fff; }
    .btn-outline:hover { background: #fff; color: var(--tamna); }
    .btn-smedja { background: var(--smedja); color: #fff; }

    /* ===================== HERO ===================== */
    .hero {
      position: relative; min-height: 100vh;
      display: flex; align-items: center; justify-content: center;
      text-align: center; overflow: hidden;
      background: #3b1f2b; /* fallback dok se slika učitava */
    }
    /* Pozadinska slika – pokriva cijelu hero sekciju */
    .hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover; object-position: center;
      z-index: 0;
    }
    /* Tamni overlay – čini tekst čitljivim preko slike */
    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(135deg,
        rgba(59,31,43,.85) 0%,
        rgba(122,63,80,.70) 50%,
        rgba(192,120,80,.60) 100%);
      z-index: 1;
    }
    .hero::before, .hero::after {
      content: ''; position: absolute; border-radius: 50%;
      opacity: .12; pointer-events: none; z-index: 2;
    }
    .hero::before {
      width: 500px; height: 500px; background: var(--roza);
      top: -150px; right: -100px;
    }
    .hero::after {
      width: 350px; height: 350px; background: var(--smedja);
      bottom: -100px; left: -80px;
    }
    .hero-content { position: relative; z-index: 3; padding: 2rem; }
    .hero-eyebrow {
      font-size: .85rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--roza); margin-bottom: 1rem;
    }
    .hero h1 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.5rem, 6vw, 5rem);
      color: #fff; line-height: 1.15; margin-bottom: 1rem;
    }
    .hero h1 em { font-style: italic; color: var(--roza); }
    .hero-desc { color: rgba(255,255,255,.85); font-size: 1.1rem; margin-bottom: 2.5rem; }
    .hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* Plutajući krugovi s mini slikama u hero pozadini */
    .floaty {
      position: absolute; z-index: 2;
      width: 80px; height: 80px; border-radius: 50%;
      overflow: hidden; opacity: .22; pointer-events: none;
      animation: float 6s ease-in-out infinite;
      box-shadow: 0 4px 16px rgba(0,0,0,.3);
    }
    .floaty img { width: 100%; height: 100%; object-fit: cover; }
    .floaty:nth-child(1) { top: 15%; left: 8%;  animation-delay: 0s; }
    .floaty:nth-child(2) { top: 30%; right: 10%; animation-delay: 1.5s; }
    .floaty:nth-child(3) { bottom: 20%; left: 15%; animation-delay: 3s; }
    .floaty:nth-child(4) { bottom: 30%; right: 8%; animation-delay: 2s; }
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-18px); }
    }

    /* ===================== SEKCIJE ===================== */
    section { padding: 5rem 1.5rem; }
    .container { max-width: 1150px; margin: 0 auto; }
    .section-tamna { background: var(--tamna); color: #fff; }
    .section-krem  { background: var(--krem); }

    .eyebrow {
      font-size: .8rem; letter-spacing: .18em; text-transform: uppercase;
      color: var(--smedja); margin-bottom: .6rem;
    }
    .eyebrow.center, h2.center { text-align: center; }
    h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.8rem, 4vw, 2.8rem);
      line-height: 1.2; margin-bottom: 2.5rem;
    }
    .section-tamna h2 { color: #fff; }
    .section-tamna .eyebrow { color: var(--roza); }

    /* ===================== O NAMA – FLEXBOX ===================== */
    .about-flex {
      display: flex; align-items: center; gap: 4rem; flex-wrap: wrap;
    }
    .about-img-wrap { flex: 1 1 300px; }
    /* Slika u sekciji "O nama" */
    .about-img {
      border-radius: 12px; width: 100%; height: 380px;
      object-fit: cover; object-position: center top;
      box-shadow: var(--sjena);
      transition: transform .4s;
    }
    .about-img:hover { transform: scale(1.03); }
    .about-text { flex: 1 1 300px; }
    .about-text p { line-height: 1.8; margin-bottom: 1rem; color: #555; }
    .about-text .btn { margin-top: .5rem; }

    /* ===================== PONUDA – GRID ===================== */
    .menu-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 1.8rem;
    }
    .menu-card {
      background: #fff; border-radius: 16px;
      box-shadow: var(--sjena); overflow: hidden;
      transition: transform .3s, box-shadow .3s;
      cursor: pointer;
    }
    .menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(59,31,43,.18); }
    /* Wrapper gornjeg dijela kartice – slika proizvoda */
    .menu-card-img-wrap {
      overflow: hidden;
      background: linear-gradient(135deg, #fde8ed, #fef0e4);
    }
    /* Slika proizvoda na kartici */
    .menu-card-img {
      width: 100%; height: 180px;
      object-fit: cover; object-position: center;
      display: block;
      transition: transform .4s;
    }
    .menu-card:hover .menu-card-img { transform: scale(1.06); }
    .menu-card-body { padding: 1.2rem 1.4rem; }
    .menu-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; margin-bottom: .4rem; }
    .menu-card-body p  { font-size: .88rem; color: var(--siva); margin-bottom: .8rem; }
    .menu-card-body .cijena { font-weight: 700; color: var(--smedja); font-size: 1rem; }

    /* ===================== NARUDŽBE – GRID ===================== */
    .order-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: start;
    }
    .order-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1rem; }
    .order-info p  { line-height: 1.8; color: #555; margin-bottom: 1rem; }
    .order-steps { list-style: none; margin: 1.5rem 0; }
    .order-steps li {
      display: flex; align-items: center; gap: .8rem;
      padding: .7rem 0; border-bottom: 1px dashed #e0cfc8; font-size: .95rem;
    }
    .order-steps li span.step-num {
      background: var(--roza); color: var(--tamna);
      width: 28px; height: 28px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-weight: 700; font-size: .85rem; flex-shrink: 0;
    }
    .contact-form label { display: block; font-size: .85rem; font-weight: 700; margin-bottom: .4rem; color: var(--tamna); }
    .contact-form input,
    .contact-form textarea,
    .contact-form select {
      width: 100%; padding: .75rem 1rem;
      border: 2px solid #e8dbd5; border-radius: 8px;
      font-family: 'Lato', sans-serif; font-size: .95rem;
      background: var(--svj); margin-bottom: 1.1rem;
      transition: border-color .25s;
    }
    .contact-form input:focus,
    .contact-form textarea:focus,
    .contact-form select:focus { outline: none; border-color: var(--roza); }
    .contact-form textarea { resize: vertical; }

    /* ===================== GALERIJA – FLEXBOX WRAP ===================== */
    .gallery-flex { display: flex; flex-wrap: wrap; gap: 1rem; }
    .gallery-item {
      flex: 1 1 200px; border-radius: 12px; overflow: hidden;
      box-shadow: var(--sjena); cursor: pointer; position: relative;
    }
    /* Slika u galeriji – pokriva cijeli prostor */
    .gallery-img {
      width: 100%; height: 220px;
      object-fit: cover; object-position: center;
      display: block;
      transition: transform .4s;
    }
    .gallery-item:hover .gallery-img { transform: scale(1.1); }
    .gallery-label {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: rgba(59,31,43,.82);
      color: #fff; text-align: center;
      padding: .6rem; font-size: .85rem;
      transform: translateY(100%); transition: transform .3s;
    }
    .gallery-item:hover .gallery-label { transform: translateY(0); }

    /* ===================== KONTAKT ===================== */
    .kontakt-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: start;
    }
    .kontakt-info h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 1rem; }
    .kontakt-info p  { line-height: 1.8; color: #555; margin-bottom: 1.5rem; }
    .kontakt-list { display: flex; flex-direction: column; gap: .8rem; }
    .kontakt-list li { display: flex; align-items: center; gap: .8rem; font-size: .95rem; }
    .kontakt-list li .ikon { font-size: 1.3rem; }
    .radno-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: .5rem; margin-top: 1.5rem;
      background: var(--krem); padding: 1rem; border-radius: 10px;
    }
    .radno-grid span:nth-child(even) { text-align: right; font-weight: 700; color: var(--smedja); }

    /* ===================== FOOTER ===================== */
    footer {
      background: var(--tamna); color: rgba(255,255,255,.6);
      text-align: center; padding: 2rem 1.5rem; font-size: .88rem;
    }
    footer strong { color: var(--roza); }

    /* ===================== TOAST ===================== */
    #toast {
      position: fixed; bottom: 2rem; right: 2rem;
      background: var(--tamna); color: #fff;
      padding: 1rem 1.8rem; border-radius: 12px;
      box-shadow: 0 6px 24px rgba(0,0,0,.3);
      font-size: .95rem; z-index: 999; display: none;
    }
    #toast.roza { border-left: 4px solid var(--roza); }

    /* ===================== BACK TO TOP ===================== */
    #back-top {
      position: fixed; bottom: 2rem; left: 2rem;
      background: var(--roza); color: var(--tamna);
      width: 44px; height: 44px; border-radius: 50%;
      display: none; align-items: center; justify-content: center;
      font-size: 1.2rem; cursor: pointer;
      box-shadow: 0 4px 14px rgba(0,0,0,.2);
      transition: transform .2s;
    }
    #back-top:hover { transform: scale(1.15); }

    /* ===================== RESPONZIVNOST ===================== */
    @media (max-width: 768px) {
      .nav-links {
        display: none; flex-direction: column;
        position: absolute; top: 100%; left: 0; right: 0;
        background: var(--tamna); padding: 1.5rem 2rem; gap: 1rem;
      }
      .nav-links.mobile-open { display: flex; }
      #hamburger { display: flex; }
      .about-flex { flex-direction: column; gap: 2rem; }
      .order-grid, .kontakt-grid { grid-template-columns: 1fr; }
      .hero h1 { font-size: 2.2rem; }
      .floaty { width: 50px; height: 50px; }
    }

    /* ===================== PRINT ===================== */
    @media print {
      header, #hamburger, .hero-btns, #toast, #back-top,
      .btn, footer .btn { display: none !important; }

      body { background: #fff; color: #000; font-size: 12pt; }
      .hero { min-height: auto; padding: 2rem 0; background: #fff !important; }
      .hero-bg, .hero-overlay { display: none !important; }
      .hero::before, .hero::after, .floaty { display: none !important; }
      .hero h1, .hero-desc, .hero-eyebrow { color: #000; }
      .hero h1 em { color: var(--smedja); }

      section { padding: 1.5rem 0; page-break-inside: avoid; }
      .section-tamna { background: #f5f5f5 !important; color: #000 !important; }
      .section-tamna h2, .section-tamna .eyebrow { color: #000 !important; }

      .menu-grid { grid-template-columns: repeat(3, 1fr); }
      .menu-card { box-shadow: none; border: 1px solid #ccc; }
      .menu-card-img { height: 120px; }

      .about-img { height: 250px; }
      .gallery-img { height: 140px; }
      .gallery-label { transform: translateY(0) !important; }

      a { text-decoration: none; color: inherit; }
      a[href]::after { content: " (" attr(href) ")"; font-size: 9pt; color: #555; }
      nav a[href]::after, .btn::after { content: ''; }
      h1, h2, h3 { page-break-after: avoid; }
    }