/* =========================================================
   ANDEA ART - zajednički CSS za index.php i katalog.php
   Izvučeno iz inline <style> blokova radi bržeg i čišćeg održavanja.
   ========================================================= */

/* =========================
   ZAJEDNIČKI / INDEX
========================= */
  :root {
    --color-1: rgb(88,93,71);
    --color-2: rgb(145,150,130);
    --color-3: rgb(197,164,145);
    --color-4: rgb(236,207,199);
    --color-5: rgb(235,224,220);

    --text: var(--color-1);
    --soft-text: rgba(88,93,71,0.78);
    --heading: var(--color-1);
    --accent: var(--color-3);
    --accent-soft: var(--color-4);
    --surface: rgba(255,255,255,0.72);
    --card-1: rgba(235,224,220,0.94);
    --card-2: rgba(236,207,199,0.88);
    --line: rgba(88,93,71,0.12);
    --line-strong: rgba(88,93,71,0.18);
    --white: rgba(255,255,255,0.86);
    --shadow: 0 18px 38px rgba(88,93,71,0.12);
    --shadow-soft: 0 10px 24px rgba(88,93,71,0.08);
    --radius: 26px;
  }

  * { box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    margin: 0;
    font-family: 'Quicksand', sans-serif;
    background:
      radial-gradient(circle at top left, rgba(255,255,255,0.65) 0, rgba(255,255,255,0) 34%),
      radial-gradient(circle at bottom right, rgba(255,255,255,0.35) 0, rgba(255,255,255,0) 28%),
      linear-gradient(180deg, rgb(197,164,145) 0%, rgb(236,207,199) 45%, rgb(235,224,220) 100%);
    color: var(--text);
    overflow-x: hidden;
  }

  body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
      linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.12) 32%, transparent 54%),
      radial-gradient(circle at 82% 18%, rgba(255,255,255,0.24), transparent 22%),
      radial-gradient(circle at 14% 72%, rgba(255,255,255,0.18), transparent 24%);
    opacity: 0.78;
  }

  body::after {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.12;
    background-image:
      radial-gradient(rgba(88,93,71,0.14) 0.7px, transparent 0.7px);
    background-size: 18px 18px;
  }

  .cursor-glow {
    position: fixed;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0;
    transform: translate(-50%, -50%);
    background:
      radial-gradient(circle, rgba(255,255,255,0.42) 0%, rgba(236,207,199,0.24) 34%, rgba(197,164,145,0.10) 58%, transparent 72%);
    filter: blur(4px);
    mix-blend-mode: soft-light;
    transition: opacity 0.25s ease;
  }

  .site-content {
    position: relative;
    z-index: 2;
  }

  .floating {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
  }

  .bubble {
    position: absolute;
    width: 220px;
    height: 220px;
    filter: blur(2px);
    opacity: 0.28;
    background:
      radial-gradient(circle at 50% 18%, var(--flower-color) 0 22%, transparent 23%),
      radial-gradient(circle at 82% 38%, var(--flower-color) 0 22%, transparent 23%),
      radial-gradient(circle at 70% 78%, var(--flower-color) 0 22%, transparent 23%),
      radial-gradient(circle at 30% 78%, var(--flower-color) 0 22%, transparent 23%),
      radial-gradient(circle at 18% 38%, var(--flower-color) 0 22%, transparent 23%),
      radial-gradient(circle at 50% 50%, rgba(255,255,255,0.28) 0 12%, transparent 13%);
  }

  .bubble.one {
    --flower-color: rgba(236,207,199,0.95);
    width: 220px;
    height: 220px;
    top: 80px;
    left: -60px;
    animation: flowerFloatOne 12s ease-in-out infinite;
  }

  .bubble.two {
    --flower-color: rgba(145,150,130,0.35);
    width: 280px;
    height: 280px;
    top: 520px;
    right: -100px;
    animation: flowerFloatTwo 15s ease-in-out infinite;
  }

  .bubble.three {
    --flower-color: rgba(197,164,145,0.60);
    width: 160px;
    height: 160px;
    bottom: 140px;
    left: 8%;
    animation: flowerFloatThree 13s ease-in-out infinite;
  }

  .petal-layer {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
  }

  .petal {
    position: absolute;
    top: -60px;
    left: var(--left);
    width: var(--w);
    height: var(--h);
    border-radius: 65% 35% 70% 30%;
    background:
      radial-gradient(circle at 35% 25%, rgba(255,255,255,0.82), rgba(255,255,255,0.32) 38%, rgba(236,207,199,0.18) 68%, transparent 100%);
    box-shadow:
      0 0 16px rgba(255,255,255,0.18),
      0 0 28px rgba(236,207,199,0.12);
    opacity: 0;
    filter: blur(0.15px);
    animation: petalFall var(--duration) linear infinite;
    animation-delay: var(--delay);
  }

  .petal.sparkle {
    width: var(--w);
    height: var(--w);
    border-radius: 50%;
    background: rgba(255,255,255,0.72);
    box-shadow:
      0 0 10px rgba(255,255,255,0.55),
      0 0 24px rgba(236,207,199,0.32);
  }

  .petal.sparkle::after {
    content: "";
    position: absolute;
    inset: -5px;
    background:
      linear-gradient(90deg, transparent 42%, rgba(255,255,255,0.75) 50%, transparent 58%),
      linear-gradient(0deg, transparent 42%, rgba(255,255,255,0.75) 50%, transparent 58%);
    opacity: 0.55;
  }

  header {
    position: sticky;
    top: 0;
    z-index: 10;
    backdrop-filter: blur(20px) saturate(135%);
    background:
      linear-gradient(135deg, rgba(255,255,255,0.42), rgba(235,224,220,0.72));
    border-bottom: 1px solid var(--line);
    box-shadow: 0 8px 20px rgba(88,93,71,0.05);
    transition: 0.28s ease;
  }

  header.scrolled {
    background: rgba(235,224,220,0.88);
    box-shadow: 0 14px 28px rgba(88,93,71,0.10);
  }

  .nav {
    max-width: 1200px;
    margin: auto;
    padding: 16px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: 0.28s ease;
  }

  header.scrolled .nav {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .logo {
    font-family: 'Marck Script', cursive;
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--color-1);
    position: relative;
    display: inline-block;
    text-shadow: 0 0 10px rgba(255,255,255,0.18), 0 0 22px rgba(255,255,255,0.10);
    transition: 0.28s ease;
  }

  header.scrolled .logo {
    font-size: 1.72rem;
  }

  .logo::after {
    content: '';
    position: absolute;
    top: -18%;
    left: -8%;
    width: 42%;
    height: 136%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.34) 45%, rgba(255,255,255,0.60) 50%, rgba(255,255,255,0.24) 55%, transparent 100%);
    transform: translateX(-180%) skewX(-18deg);
    pointer-events: none;
    animation: logoShine 7s ease-in-out infinite;
    filter: blur(0.4px);
  }

  .logo span { color: var(--color-3); }

  nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
  }

  nav a {
    text-decoration: none;
    color: var(--text);
    font-weight: 700;
    font-size: 0.96rem;
    letter-spacing: 0.25px;
    transition: 0.2s ease;
    position: relative;
    padding-bottom: 6px;
  }

  nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--color-3), var(--color-1));
    transform: translateX(-50%);
    transition: width 0.28s ease;
  }

  nav a:hover {
    color: var(--color-3);
  }

  nav a:hover::after {
    width: 100%;
  }

  .btn {
    display: inline-block;
    padding: 13px 22px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 0.2px;
    transition: transform 0.28s ease, box-shadow 0.28s ease, background-position 0.45s ease, filter 0.28s ease;
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }

  .btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.10) 35%, rgba(255,255,255,0.35) 50%, rgba(255,255,255,0.10) 65%, transparent 100%);
    transform: translateX(-130%);
    transition: transform 0.65s ease;
    z-index: -1;
  }

  .btn:hover::before {
    transform: translateX(130%);
  }

  .btn:active {
    transform: translateY(1px) scale(0.985);
  }

  .btn-main {
    background: linear-gradient(135deg, var(--color-1), var(--color-2), var(--color-1));
    background-size: 200% 200%;
    color: #fff;
    box-shadow: 0 14px 28px rgba(88,93,71,0.24);
  }

  .btn-main:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 36px rgba(88,93,71,0.30);
    background-position: 100% 50%;
    filter: brightness(1.04);
  }

  .btn-main:focus-visible,
  .btn-soft:focus-visible {
    outline: none;
    box-shadow: 0 0 0 4px rgba(255,255,255,0.42), 0 0 0 8px rgba(88,93,71,0.18);
  }

  .btn-soft {
    background: rgba(255,255,255,0.78);
    color: var(--text);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

  .btn-soft:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 30px rgba(88,93,71,0.14);
    background: rgba(255,255,255,0.92);
  }

  .hero {
    max-width: 1200px;
    margin: auto;
    padding: 80px 22px 55px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 42px;
    position: relative;
    z-index: 1;
  }

  .hero-text {
    order: 2;
    animation: heroTextIn 0.9s ease both;
  }

  .hero-visual {
    position: relative;
    order: 1;
    animation: heroVisualIn 1s ease 0.15s both;
  }

  .badge {
    display: inline-block;
    padding: 9px 15px;
    border-radius: 999px;
    background: rgba(255,255,255,0.74);
    border: 1px solid rgba(88,93,71,0.10);
    color: var(--color-1);
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 18px;
    box-shadow: 0 8px 18px rgba(88,93,71,0.05);
    position: relative;
    overflow: hidden;
    animation: badgePulse 4.8s ease-in-out infinite;
  }

  .badge::after {
    content: '';
    position: absolute;
    inset: -20%;
    background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.55) 50%, transparent 70%);
    transform: translateX(-140%) rotate(8deg);
    animation: softShine 9s ease-in-out infinite;
    pointer-events: none;
  }

  h1, h2, h3 {
    font-family: 'Marck Script', cursive;
    margin-top: 0;
    line-height: 1.18;
    font-weight: 400;
    letter-spacing: 0.2px;
    color: var(--heading);
  }

  h1 {
    font-size: clamp(2.4rem, 5vw, 4.9rem);
    line-height: 1.04;
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
    text-shadow: 0 0 18px rgba(255,255,255,0.18);
  }

  h1::after,
  .section-title h2::after {
    content: '';
    position: absolute;
    left: -4%;
    top: 0;
    width: 42%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.32) 45%, transparent 100%);
    transform: translateX(-180%) skewX(-18deg);
    pointer-events: none;
    animation: titleShine 8s ease-in-out infinite;
  }

  .hero p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: var(--soft-text);
    max-width: 620px;
    margin-bottom: 28px;
  }

  .hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 28px;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 1fr));
    gap: 14px;
    max-width: 420px;
  }

  .stat {
    background: linear-gradient(145deg, rgba(255,255,255,0.72), rgba(235,224,220,0.82));
    border-radius: 22px;
    padding: 18px;
    box-shadow: var(--shadow-soft);
    text-align: center;
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      opacity 0.75s ease,
      filter 0.75s ease;
    will-change: transform;
  }

  .stat::after,
  .order-box::after,
  .card::after,
  .testimonial::after {
    content: '';
    position: absolute;
    inset: -30%;
    background: linear-gradient(120deg, transparent 35%, rgba(255,255,255,0.28) 50%, transparent 65%);
    transform: translateX(-155%) rotate(10deg);
    pointer-events: none;
    opacity: 0;
  }

  .stat:hover::after,
  .order-box:hover::after,
  .card:hover::after,
  .testimonial:hover::after {
    animation: cardShine 1.15s ease forwards;
    opacity: 1;
  }

  .stat strong {
    display: block;
    font-size: 1.4rem;
    margin-bottom: 6px;
    color: var(--color-1);
  }

  .main-card {
    background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(235,224,220,0.82));
    border-radius: 34px;
    box-shadow: var(--shadow);
    padding: 24px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.62);
    animation: softFloat 6s ease-in-out infinite;
    will-change: transform;
  }

  .soap-photo {
    height: 480px;
    border-radius: 28px;
    background:
      linear-gradient(rgba(255,255,255,0.14), rgba(255,255,255,0.14)),
      url('../../slika1.2.webp') center/cover;
    position: relative;
    display: flex;
    align-items: end;
    padding: 24px;
    overflow: hidden;
    transition:
      transform 0.55s ease,
      filter 0.55s ease;
  }

  .soap-photo::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      radial-gradient(circle at 30% 18%, rgba(255,255,255,0.26), transparent 30%),
      linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.18) 45%, transparent 60%);
    opacity: 0.7;
    pointer-events: none;
  }

  .soap-photo::after {
    content: "";
    position: absolute;
    inset: -40%;
    background: linear-gradient(120deg, transparent 38%, rgba(255,255,255,0.26) 50%, transparent 62%);
    transform: translateX(-80%) rotate(12deg);
    animation: heroPhotoShine 8s ease-in-out infinite;
    pointer-events: none;
  }

  .soap-label {
    background: rgba(255,255,255,0.80);
    padding: 16px 18px;
    border-radius: 18px;
    max-width: 260px;
    box-shadow: 0 12px 22px rgba(88,93,71,0.10);
    border: 1px solid rgba(88,93,71,0.10);
    color: var(--text);
    position: relative;
    z-index: 2;
  }

  .float-note {
    position: absolute;
    background: rgba(255,255,255,0.84);
    border-radius: 18px;
    box-shadow: var(--shadow-soft);
    padding: 14px 16px;
    font-size: 0.95rem;
    font-weight: 700;
    border: 1px solid rgba(88,93,71,0.10);
    color: var(--text);
    animation: noteFloat 4.8s ease-in-out infinite;
  }

  .note1 {
    top: 24px;
    left: -24px;
    transform: rotate(-7deg);
    border: 1px solid rgba(145,150,130,0.28);
    box-shadow: 0 12px 26px rgba(145,150,130,0.18);
  }

  .note2 {
    right: -18px;
    bottom: 28px;
    transform: rotate(6deg);
    animation-delay: 1.2s;
  }

  section {
    max-width: 1200px;
    margin: auto;
    padding: 34px 22px 64px;
    position: relative;
    z-index: 1;
  }

  .section-title {
    text-align: center;
    margin-bottom: 18px;
  }

  .section-title h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
  }

  .section-title h2::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -12px;
    width: 90px;
    height: 3px;
    border-radius: 99px;
    background: linear-gradient(90deg, transparent, var(--color-3), var(--color-1), transparent);
    transform: translateX(-50%);
    opacity: 0.55;
  }

  .section-title p {
    max-width: 760px;
    margin: auto;
    color: var(--soft-text);
    line-height: 1.8;
  }

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

  .card {
    background: linear-gradient(145deg, rgba(235,224,220,0.88), rgba(236,207,199,0.78));
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88,93,71,0.10);
    position: relative;
    overflow: hidden;
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      opacity 0.75s ease,
      filter 0.75s ease;
    will-change: transform;
  }

  .icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 18px;
    margin-bottom: 16px;
    font-size: 1.5rem;
    background: linear-gradient(135deg, var(--color-4), var(--color-3));
  }

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

  .product {
    overflow: hidden;
    padding: 0;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    background: linear-gradient(180deg, rgba(255,255,255,0.80), rgba(235,224,220,0.82));
    position: relative;
  }

  .product:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 42px rgba(88,93,71,0.16);
  }

  .product-image {
    height: 230px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition:
      transform 0.55s ease,
      filter 0.55s ease;
  }

  .product-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(88,93,71,0.12));
  }

  .product-body {
    padding: 22px;
  }

  .price {
    display: inline-block;
    margin-top: 10px;
    font-weight: 800;
    color: var(--color-1);
    font-size: 1.05rem;
    background: linear-gradient(135deg, rgba(236,207,199,0.94), rgba(235,224,220,0.88));
    padding: 9px 13px;
    border-radius: 999px;
    box-shadow: inset 0 0 0 1px rgba(88,93,71,0.08);
  }

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

  .step {
    background: linear-gradient(145deg, rgba(255,255,255,0.74), rgba(235,224,220,0.84));
    border-radius: 24px;
    padding: 10px;
    box-shadow: 0 10px 22px rgba(88,93,71,0.10);
    position: relative;
    border: 1px solid rgba(88,93,71,0.10);
    overflow: hidden;
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      opacity 0.75s ease,
      filter 0.75s ease;
    will-change: transform;
  }

  .process .step:nth-child(2) {
    border: 1px solid rgba(145,150,130,0.26);
    box-shadow: 0 12px 26px rgba(145,150,130,0.16);
  }

  .step::before,
  .gallery-item:not(.watermark-item)::before,
  .product::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255,255,255,0.65), rgba(197,164,145,0.22), rgba(88,93,71,0.14));
    -webkit-mask:
      linear-gradient(#000 0 0) content-box,
      linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    z-index: 2;
  }

  .step img{
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    margin: 0;
    border-radius: 18px;
    transition:
      transform 0.55s ease,
      filter 0.55s ease;
  }

  .step:hover img {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.03);
  }

  .step p {
    margin: 12px 8px 6px;
    font-size: 0.96rem;
    line-height: 1.6;
    color: var(--soft-text);
    text-align: center;
  }

  .step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--color-1), var(--color-2));
    color: white;
    font-weight: 700;
    margin-bottom: 14px;
  }

  .order-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px;
    align-items: start;
    margin-top: 36px;
  }

  .order-box {
    background: linear-gradient(145deg, rgba(255,255,255,0.76), rgba(235,224,220,0.82));
    border-radius: 28px;
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(88,93,71,0.10);
    position: relative;
    overflow: hidden;
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      opacity 0.75s ease,
      filter 0.75s ease;
    will-change: transform;
  }

  .order-box ul {
    padding-left: 18px;
    color: var(--soft-text);
    line-height: 1.9;
  }

  form {
    display: grid;
    gap: 14px;
  }

  input, select, textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(88,93,71,0.14);
    font: inherit;
    background: rgba(255,255,255,0.88);
    color: var(--text);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
  }

  input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: rgba(145,150,130,0.50);
    box-shadow: 0 0 0 4px rgba(145,150,130,0.12);
  }

  textarea { min-height: 130px; resize: vertical; }

  .about-wrap {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 24px;
    margin-top: 34px;
    align-items: center;
  }

  .about-photo {
    min-height: 380px;
    border-radius: 30px;
    background:
      linear-gradient(rgba(255,255,255,0.10), rgba(255,255,255,0.10)),
      url('../../slika2.webp') center/cover;
    box-shadow: var(--shadow);
    transition:
      transform 0.55s ease,
      filter 0.55s ease;
  }

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

  .testimonial {
    background: linear-gradient(145deg, rgba(255,255,255,0.80), rgba(235,224,220,0.82));
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--shadow);
    font-style: italic;
    color: var(--soft-text);
    border: 1px solid rgba(88,93,71,0.10);
    position: relative;
    overflow: hidden;
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      opacity 0.75s ease,
      filter 0.75s ease;
    will-change: transform;
  }

  .testimonial-wrap .testimonial:nth-child(2) {
    background: linear-gradient(145deg, rgba(236,207,199,0.86), rgba(235,224,220,0.86));
    border: 1px solid rgba(197,164,145,0.28);
  }

  .testimonial strong {
    display: block;
    margin-top: 14px;
    color: var(--text);
    font-style: normal;
  }

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

  .gallery-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.80), rgba(235,224,220,0.82));
    border-radius: 24px;
    padding: 10px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(88,93,71,0.10);
    overflow: hidden;
    position: relative;
    transition:
      transform 0.32s ease,
      box-shadow 0.32s ease,
      border-color 0.32s ease,
      opacity 0.75s ease,
      filter 0.75s ease;
    will-change: transform;
  }

  .gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
    transition:
      transform 0.55s ease,
      filter 0.55s ease;
  }

  .gallery-item.tone-lavender {
    border: 1px solid rgba(145,150,130,0.24);
    box-shadow: 0 12px 26px rgba(145,150,130,0.16);
    background: linear-gradient(145deg, rgba(235,224,220,0.84), rgba(145,150,130,0.14));
  }

  .gallery-item.tone-warm {
    border: 1px solid rgba(197,164,145,0.26);
    background: linear-gradient(145deg, rgba(236,207,199,0.88), rgba(235,224,220,0.84));
  }

  .gallery-item.tone-cream {
    border: 1px solid rgba(235,224,220,0.80);
    box-shadow: 0 12px 24px rgba(197,164,145,0.14);
    background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(235,224,220,0.90));
  }

  .gallery-item.watermark-item {
    background: transparent;
    border: none;
    box-shadow: none;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
  }

  .gallery-item.watermark-item img {
    height: 220px;
    width: 100%;
    object-fit: contain;
    border-radius: 0;
    opacity: 0.42;
    filter: saturate(0.85) brightness(1.01);
  }

  .gallery-item:not(.watermark-item) {
    cursor: pointer;
  }

  .gallery-item:not(.watermark-item):hover img {
    transform: scale(1.055);
    filter: saturate(1.04) contrast(1.03);
  }

  .gallery-item:not(.watermark-item)::after {
    content: "Pogledaj";
    position: absolute;
    left: 50%;
    bottom: 22px;
    transform: translate(-50%, 18px);
    opacity: 0;
    background: rgba(255,255,255,0.88);
    color: var(--color-1);
    font-weight: 800;
    font-size: 0.88rem;
    padding: 9px 14px;
    border-radius: 999px;
    box-shadow: 0 10px 22px rgba(88,93,71,0.16);
    transition: 0.28s ease;
    pointer-events: none;
    z-index: 3;
  }

  .gallery-item:not(.watermark-item):hover::after {
    transform: translate(-50%, 0);
    opacity: 1;
  }

  .step:hover,
  .gallery-item:not(.watermark-item):hover,
  .testimonial:hover,
  .order-box:hover,
  .card:hover,
  .stat:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 48px rgba(88,93,71,0.18);
    border-color: rgba(255,255,255,0.55);
  }

  .lightbox {
    position: fixed;
    inset: 0;
    background: rgba(88,93,71,0.72);
    backdrop-filter: blur(6px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    z-index: 99999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease;
  }

  .lightbox.open {
    opacity: 1;
    pointer-events: auto;
  }

  .lightbox-content {
    position: relative;
    max-width: min(92vw, 980px);
    max-height: 88vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .lightbox.open .lightbox-content {
    animation: lightboxPop 0.28s ease both;
  }

  .lightbox img {
    max-width: 100%;
    max-height: 88vh;
    display: block;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(88,93,71,0.26);
    background: white;
    transform-origin: center;
  }

  .lightbox-close {
    position: absolute;
    top: -14px;
    right: -14px;
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: white;
    color: var(--text);
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(88,93,71,0.16);
  }

  footer {
    margin-top: 30px;
    background: linear-gradient(180deg, rgba(235,224,220,0.92), rgba(236,207,199,0.88));
    padding: 38px 22px;
    text-align: center;
    color: var(--soft-text);
    border-top: 1px solid rgba(88,93,71,0.10);
    position: relative;
    z-index: 1;
  }

  footer a {
    color: var(--color-1);
    text-decoration: none;
    font-weight: 700;
  }

  footer a:hover {
    color: var(--color-3);
  }

  .reveal {
    opacity: 0;
    transform: translateY(34px) scale(0.985);
    transition:
      opacity 0.75s ease,
      transform 0.75s ease,
      filter 0.75s ease;
    filter: blur(4px);
  }

  .reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }

  @keyframes petalFall {
    0% {
      transform:
        translate3d(0, -80px, 0)
        rotate(0deg)
        scale(var(--scale));
      opacity: 0;
    }

    10% {
      opacity: var(--opacity);
    }

    45% {
      opacity: calc(var(--opacity) * 0.9);
    }

    100% {
      transform:
        translate3d(var(--drift), 112vh, 0)
        rotate(var(--spin))
        scale(var(--scale));
      opacity: 0;
    }
  }

  @keyframes logoShine {
    0%, 76%, 100% { transform: translateX(-180%) skewX(-18deg); opacity: 0; }
    82% { opacity: 1; }
    100% { transform: translateX(320%) skewX(-18deg); opacity: 0; }
  }

  @keyframes softShine {
    0%, 82%, 100% { transform: translateX(-140%) rotate(8deg); opacity: 0; }
    88% { opacity: 0.6; }
    100% { transform: translateX(170%) rotate(8deg); opacity: 0; }
  }

  @keyframes titleShine {
    0%, 78%, 100% { transform: translateX(-180%) skewX(-18deg); opacity: 0; }
    84% { opacity: 1; }
    100% { transform: translateX(320%) skewX(-18deg); opacity: 0; }
  }

  @keyframes cardShine {
    0% { transform: translateX(-155%) rotate(10deg); opacity: 0; }
    20% { opacity: 1; }
    100% { transform: translateX(155%) rotate(10deg); opacity: 0; }
  }

  @keyframes heroTextIn {
    from {
      opacity: 0;
      transform: translateX(34px);
      filter: blur(5px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
      filter: blur(0);
    }
  }

  @keyframes heroVisualIn {
    from {
      opacity: 0;
      transform: translateX(-34px) scale(0.97);
      filter: blur(5px);
    }
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
      filter: blur(0);
    }
  }

  @keyframes softFloat {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-10px) rotate(-0.35deg);
    }
  }

  @keyframes noteFloat {
    0%, 100% {
      translate: 0 0;
    }
    50% {
      translate: 0 -10px;
    }
  }

  @keyframes heroPhotoShine {
    0%, 70%, 100% {
      transform: translateX(-80%) rotate(12deg);
      opacity: 0;
    }
    78% {
      opacity: 1;
    }
    100% {
      transform: translateX(80%) rotate(12deg);
      opacity: 0;
    }
  }

  @keyframes lightboxPop {
    from {
      opacity: 0;
      transform: scale(0.94) translateY(10px);
    }
    to {
      opacity: 1;
      transform: scale(1) translateY(0);
    }
  }

  @keyframes badgePulse {
    0%, 100% {
      box-shadow: 0 8px 18px rgba(88,93,71,0.05);
    }
    50% {
      box-shadow: 0 12px 26px rgba(197,164,145,0.18);
    }
  }

  @keyframes flowerFloatOne {
    0%, 100% {
      transform: translate3d(0,0,0) rotate(0deg);
    }
    50% {
      transform: translate3d(26px,34px,0) rotate(8deg);
    }
  }

  @keyframes flowerFloatTwo {
    0%, 100% {
      transform: translate3d(0,0,0) rotate(0deg);
    }
    50% {
      transform: translate3d(-34px,24px,0) rotate(-10deg);
    }
  }

  @keyframes flowerFloatThree {
    0%, 100% {
      transform: translate3d(0,0,0) rotate(0deg);
    }
    50% {
      transform: translate3d(18px,-28px,0) rotate(12deg);
    }
  }

  @media (max-width: 1024px) {
    .hero,
    .about-wrap,
    .order-section {
      grid-template-columns: 1fr;
    }

    .hero-visual {
      order: 1;
    }

    .hero-text {
      order: 2;
    }

    .grid-3,
    .products,
    .process,
    .testimonial-wrap,
    .gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 700px) {
    .cursor-glow {
      display: none;
    }

    .nav {
      flex-direction: column;
    }

    nav ul {
      gap: 14px;
    }

    .hero {
      padding-top: 50px;
    }

    .hero-stats,
    .grid-3,
    .products,
    .process,
    .testimonial-wrap,
    .gallery-grid {
      grid-template-columns: 1fr;
    }

    .soap-photo {
      height: 350px;
    }

    .note1, .note2 {
      position: static;
      transform: none;
      margin-top: 12px;
    }

    .main-card {
      animation: none;
    }

    .gallery-item:not(.watermark-item)::after {
      display: none;
    }

    .step:hover,
    .gallery-item:not(.watermark-item):hover,
    .testimonial:hover,
    .order-box:hover,
    .card:hover,
    .stat:hover {
      transform: translateY(-4px);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
    }

    .cursor-glow,
    .petal-layer {
      display: none;
    }
  }

/* =========================
   KATALOG
========================= */
    :root {
      --color-1: rgb(88,93,71);
      --color-2: rgb(145,150,130);
      --color-3: rgb(197,164,145);
      --color-4: rgb(236,207,199);
      --color-5: rgb(235,224,220);

      --text: var(--color-1);
      --soft-text: rgba(88,93,71,0.78);
      --heading: var(--color-1);
      --white: rgba(255,255,255,0.86);
      --surface: rgba(255,255,255,0.76);
      --border: rgba(88,93,71,0.12);
      --border-strong: rgba(88,93,71,0.18);
      --shadow: 0 18px 38px rgba(88,93,71,0.12);
      --shadow-soft: 0 10px 24px rgba(88,93,71,0.08);
      --radius: 28px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Quicksand', sans-serif;
      color: var(--text);
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.65) 0, rgba(255,255,255,0) 34%),
        radial-gradient(circle at bottom right, rgba(255,255,255,0.35) 0, rgba(255,255,255,0) 28%),
        linear-gradient(180deg, rgb(197,164,145) 0%, rgb(236,207,199) 45%, rgb(235,224,220) 100%);
      overflow-x: hidden;
    }

    .floating {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 0;
      overflow: hidden;
    }

    .bubble {
      position: absolute;
      width: 220px;
      height: 220px;
      filter: blur(2px);
      opacity: 0.28;
      background:
        radial-gradient(circle at 50% 18%, var(--flower-color) 0 22%, transparent 23%),
        radial-gradient(circle at 82% 38%, var(--flower-color) 0 22%, transparent 23%),
        radial-gradient(circle at 70% 78%, var(--flower-color) 0 22%, transparent 23%),
        radial-gradient(circle at 30% 78%, var(--flower-color) 0 22%, transparent 23%),
        radial-gradient(circle at 18% 38%, var(--flower-color) 0 22%, transparent 23%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.28) 0 12%, transparent 13%);
    }

    .bubble.one {
      --flower-color: rgba(236,207,199,0.95);
      width: 240px;
      height: 240px;
      top: 70px;
      left: -70px;
    }

    .bubble.two {
      --flower-color: rgba(145,150,130,0.35);
      width: 220px;
      height: 220px;
      right: -60px;
      top: 380px;
    }

    .bubble.three {
      --flower-color: rgba(197,164,145,0.60);
      width: 180px;
      height: 180px;
      left: 8%;
      bottom: 120px;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 20;
      backdrop-filter: blur(14px);
      background: rgba(235,224,220,0.72);
      border-bottom: 1px solid var(--border);
      box-shadow: 0 8px 20px rgba(88,93,71,0.05);
    }

    .nav {
      max-width: 1280px;
      margin: auto;
      padding: 18px 22px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .logo {
      font-family: 'Marck Script', cursive;
      font-size: 2rem;
      font-weight: 400;
      letter-spacing: 0.3px;
      color: var(--color-1);
    }

    .logo span { color: var(--color-3); }

    nav ul {
      list-style: none;
      display: flex;
      gap: 18px;
      padding: 0;
      margin: 0;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: var(--text);
      font-weight: 700;
      letter-spacing: 0.35px;
      font-size: 0.95rem;
      opacity: 0.95;
      transition: 0.2s ease;
    }

    nav a:hover {
      color: var(--color-3);
    }

    .btn {
      display: inline-block;
      text-decoration: none;
      border: none;
      border-radius: 999px;
      padding: 12px 20px;
      font: inherit;
      font-weight: 700;
      letter-spacing: 0.2px;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .btn-main {
      background: linear-gradient(135deg, var(--color-1), var(--color-2));
      color: #fff;
      box-shadow: 0 14px 28px rgba(88,93,71,0.24);
    }

    .btn-main:hover,
    .btn-soft:hover,
    .qty-btn:hover,
    .cart-toggle:hover,
    .modal-thumb:hover,
    .option-btn:hover,
    .modal-close:hover,
    .color-swatch:hover,
    .notice-btn:hover,
    .copy-link-btn:hover {
      transform: translateY(-2px);
    }

    .btn-soft {
      background: rgba(255,255,255,0.82);
      color: var(--text);
      border: 1px solid var(--border);
      box-shadow: var(--shadow-soft);
    }

    .hero {
      max-width: 1280px;
      margin: auto;
      padding: 58px 22px 26px;
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 26px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-card,
    .info-card,
    .filter-box,
    .product-card,
    .cart-box,
    .checkout-box,
    .empty-cart {
      background: var(--white);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      border: 1px solid rgba(255,255,255,0.75);
    }

    .hero-card {
      padding: 44px;
      background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(235,224,220,0.88));
      position: relative;
      overflow: hidden;
    }

    .hero-card::after {
      content: '';
      position: absolute;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      right: -40px;
      top: -40px;
      background: radial-gradient(circle, rgba(236,207,199,0.7), rgba(236,207,199,0));
      pointer-events: none;
    }

    .badge {
      display: inline-block;
      padding: 9px 15px;
      border-radius: 999px;
      background: rgba(255,255,255,0.80);
      border: 1px solid rgba(88,93,71,0.10);
      color: var(--color-1);
      font-weight: 700;
      font-size: 0.9rem;
      letter-spacing: 0.3px;
      margin-bottom: 18px;
      box-shadow: 0 8px 18px rgba(88,93,71,0.05);
    }

    h1, h2, h3 {
      font-family: 'Marck Script', cursive;
      margin-top: 0;
      line-height: 1.18;
      font-weight: 400;
      letter-spacing: 0.2px;
      color: var(--heading);
    }

    h1 {
      font-size: clamp(2.2rem, 4vw, 4.2rem);
      line-height: 1.06;
      margin-bottom: 16px;
    }

    .hero-card p,
    .info-card p,
    .product-card p,
    .checkout-box p,
    .empty-cart p {
      color: var(--soft-text);
      line-height: 1.8;
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .info-card {
      padding: 24px;
      display: grid;
      gap: 16px;
      background: linear-gradient(145deg, rgba(255,255,255,0.78), rgba(235,224,220,0.88));
    }

    .mini-stat {
      padding: 18px 18px;
      border-radius: 22px;
      background: linear-gradient(145deg, rgba(255,255,255,0.74), rgba(235,224,220,0.82));
      border: 1px solid rgba(88,93,71,0.10);
      font-weight: 600;
      box-shadow: 0 8px 18px rgba(88,93,71,0.04);
      color: var(--text);
    }

    .mini-stat strong {
      display: block;
      color: var(--color-1);
      font-size: 1.25rem;
      margin-bottom: 4px;
    }

    .main-section {
      max-width: 1280px;
      margin: auto;
      padding: 8px 22px 80px;
      display: grid;
      grid-template-columns: 290px 1fr 360px;
      gap: 22px;
      align-items: start;
      position: relative;
      z-index: 1;
    }

    .left-column,
    .middle-column,
    .right-column {
      display: grid;
      gap: 22px;
      align-self: start;
    }

    .filter-box,
    .cart-box,
    .checkout-box,
    .empty-cart {
      padding: 26px;
      background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(235,224,220,0.88));
    }

    .filter-box h3,
    .cart-box h3,
    .checkout-box h3 {
      margin-bottom: 14px;
    }

    .search-input,
    .filter-select,
    .checkout-box input,
    .checkout-box textarea {
      width: 100%;
      padding: 14px 16px;
      border-radius: 16px;
      border: 1px solid var(--border);
      font: inherit;
      background: rgba(255,255,255,0.88);
      color: var(--text);
      margin-bottom: 12px;
      transition: border-color 0.2s ease, box-shadow 0.2s ease;
    }

    .search-input:focus,
    .filter-select:focus,
    .checkout-box input:focus,
    .checkout-box textarea:focus {
      outline: none;
      border-color: rgba(145,150,130,0.50);
      box-shadow: 0 0 0 4px rgba(145,150,130,0.12);
    }

    .filter-group {
      margin-bottom: 12px;
    }

    .chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 8px;
    }

    .chip,
    .option-btn {
      border: 1px solid var(--border);
      background: rgba(255,255,255,0.82);
      color: var(--text);
      padding: 10px 14px;
      border-radius: 999px;
      cursor: pointer;
      font-weight: 600;
      transition: 0.2s ease;
    }

    .chip.active,
    .option-btn.active {
      background: linear-gradient(135deg, var(--color-1), var(--color-2));
      color: #fff;
      border-color: transparent;
    }

    .catalog-top {
      display: flex;
      justify-content: space-between;
      gap: 16px;
      align-items: center;
      flex-wrap: wrap;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 1px solid rgba(88,93,71,0.08);
    }

    .catalog-top p {
      margin: 0;
      color: var(--soft-text);
    }

    .products-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 22px;
    }

    .product-card {
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-height: 100%;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
      background: linear-gradient(180deg, rgba(255,255,255,0.84), rgba(235,224,220,0.88));
    }

    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 42px rgba(88,93,71,0.16);
      border-color: rgba(145,150,130,0.20);
    }

    .product-image {
      height: 260px;
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .product-image::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(88,93,71,0.12));
    }

    .product-tag {
      position: absolute;
      top: 16px;
      left: 16px;
      background: rgba(255,255,255,0.90);
      backdrop-filter: blur(8px);
      padding: 8px 13px;
      border-radius: 999px;
      font-size: 0.8rem;
      font-weight: 700;
      color: var(--color-1);
      z-index: 1;
      box-shadow: 0 10px 18px rgba(88,93,71,0.07);
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .product-body {
      padding: 24px;
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex: 1;
    }

    .meta-row {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      padding-bottom: 4px;
    }

    .price {
      font-size: 1.05rem;
      font-weight: 800;
      color: var(--color-1);
      background: linear-gradient(135deg, rgba(236,207,199,0.94), rgba(235,224,220,0.88));
      padding: 9px 13px;
      border-radius: 999px;
      box-shadow: inset 0 0 0 1px rgba(88,93,71,0.08);
    }

    .small-note {
      color: var(--soft-text);
      font-size: 0.9rem;
      opacity: 0.95;
    }

    .qty-row {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: auto;
      flex-wrap: wrap;
    }

    .qty-box {
      display: flex;
      align-items: center;
      background: rgba(255,255,255,0.84);
      border: 1px solid rgba(88,93,71,0.10);
      border-radius: 999px;
      padding: 6px;
      gap: 6px;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.65);
    }

    .qty-btn {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      border: none;
      background: linear-gradient(135deg, rgba(236,207,199,0.90), rgba(235,224,220,0.90));
      color: var(--text);
      font-size: 1.1rem;
      cursor: pointer;
      transition: 0.2s ease;
      box-shadow: inset 0 0 0 1px rgba(88,93,71,0.08);
    }

    .qty-value {
      min-width: 26px;
      text-align: center;
      font-weight: 700;
      color: var(--text);
    }

    .card-actions {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-top: 6px;
    }

    .add-btn {
      flex: 1;
      min-width: 160px;
    }

    .copy-link-btn {
      flex: 1;
      min-width: 140px;
      padding: 13px 16px;
      border: 1px solid var(--border);
      border-radius: 999px;
      background: rgba(255,255,255,0.82);
      color: var(--text);
      font: inherit;
      font-weight: 700;
      cursor: pointer;
      transition: 0.25s ease;
      box-shadow: var(--shadow-soft);
    }

    .cart-box {
      position: static;
      top: auto;
    }

    .cart-list {
      display: grid;
      gap: 12px;
      margin-top: 12px;
    }

    .cart-item {
      border: 1px solid rgba(88,93,71,0.10);
      border-radius: 20px;
      padding: 15px;
      background: linear-gradient(145deg, rgba(255,255,255,0.82), rgba(235,224,220,0.80));
    }

    .cart-item-top {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 8px;
      align-items: start;
    }

    .cart-item-name {
      font-weight: 700;
      font-size: 1.02rem;
      color: var(--text);
    }

    .cart-item-price,
    .checkout-total,
    .modal-total {
      font-size: 1.28rem;
      margin: 12px 0 18px;
      padding: 14px 16px;
      border-radius: 18px;
      background: linear-gradient(145deg, rgba(236,207,199,0.88), rgba(255,255,255,0.78));
      box-shadow: inset 0 0 0 1px rgba(88,93,71,0.08);
      color: var(--color-1);
    }

    .cart-summary {
      margin-top: 14px;
      display: grid;
      gap: 10px;
    }

    .cart-summary div {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      color: var(--soft-text);
      font-weight: 600;
    }

    .cart-summary strong {
      font-size: 1.1rem;
      color: var(--color-1);
      background: none;
      box-shadow: none;
      margin: 0;
      padding: 0;
      border-radius: 0;
    }

    .back-note {
      max-width: 1280px;
      margin: auto;
      padding: 0 22px 26px;
      position: relative;
      z-index: 1;
    }

    .back-note a {
      color: var(--color-1);
      font-weight: 700;
      text-decoration: none;
    }

    .back-note a:hover {
      color: var(--color-3);
    }

    .cart-toggle {
      display: none;
      position: fixed;
      right: 18px;
      bottom: 18px;
      z-index: 40;
      border: none;
      border-radius: 999px;
      padding: 14px 18px;
      font-weight: 800;
      box-shadow: 0 14px 30px rgba(88,93,71,0.22);
      background: linear-gradient(135deg, var(--color-1), var(--color-2));
      color: #fff;
      cursor: pointer;
    }

    .mobile-cart-panel {
      display: none;
    }

    footer {
      text-align: center;
      padding: 40px 22px;
      color: var(--soft-text);
      border-top: 1px solid rgba(88,93,71,0.10);
      background: linear-gradient(180deg, rgba(235,224,220,0.92), rgba(236,207,199,0.88));
      margin-top: 28px;
    }

    .remove-btn {
      margin-top: 10px;
      background: transparent;
      border: none;
      color: #8f2f2f;
      font-weight: 700;
      cursor: pointer;
      padding: 0;
    }

    .cart-item-actions {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .modal-overlay {
      position: fixed;
      inset: 0;
      background: rgba(88,93,71,0.38);
      backdrop-filter: blur(6px);
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      z-index: 9998;
    }

    .modal-overlay.open {
      display: flex;
    }

    .product-modal {
      width: 100%;
      max-width: 980px;
      max-height: 90vh;
      overflow: auto;
      background: linear-gradient(145deg, rgba(255,255,255,0.96), rgba(235,224,220,0.96));
      border-radius: 30px;
      box-shadow: 0 28px 60px rgba(88,93,71,0.24);
      border: 1px solid rgba(255,255,255,0.78);
      padding: 24px;
      position: relative;
    }

    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: none;
      cursor: pointer;
      font-size: 1.2rem;
      background: rgba(255,255,255,0.88);
      color: var(--text);
      box-shadow: var(--shadow-soft);
      transition: 0.2s ease;
    }

    .modal-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      align-items: start;
    }

    .modal-main-image {
      width: 100%;
      height: 420px;
      border-radius: 24px;
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(255,255,255,0.8);
    }

    .modal-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 10px;
      margin-top: 12px;
    }

    .modal-thumb {
      height: 94px;
      border-radius: 18px;
      background-size: cover;
      background-position: center;
      border: 2px solid transparent;
      cursor: pointer;
      transition: 0.2s ease;
      box-shadow: var(--shadow-soft);
    }

    .modal-thumb.active {
      border-color: var(--color-1);
    }

    .modal-info h2 {
      margin-bottom: 10px;
    }

    .option-group {
      margin-top: 18px;
    }

    .option-group strong {
      display: block;
      margin-bottom: 10px;
      color: var(--color-1);
    }

    .option-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .color-swatch {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 2px solid rgba(88,93,71,0.18);
      cursor: pointer;
      transition: 0.2s ease;
      box-shadow: 0 6px 14px rgba(88,93,71,0.10);
      position: relative;
      padding: 0;
      background: #ddd;
    }

    .color-swatch.active {
      outline: 3px solid var(--color-1);
      outline-offset: 3px;
      border-color: #fff;
    }

    .color-swatch-label {
      margin-top: 10px;
      font-size: 14px;
      color: var(--soft-text);
      font-weight: 700;
    }

    .modal-actions {
      display: flex;
      gap: 12px;
      align-items: center;
      flex-wrap: wrap;
      margin-top: 18px;
    }

    .modal-warning {
      margin-top: 10px;
      color: #8f2f2f;
      font-weight: 700;
      display: none;
    }

    .notice-overlay {
      position: fixed;
      inset: 0;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 20px;
      background: rgba(88,93,71,0.42);
      backdrop-filter: blur(7px);
      z-index: 10000;
    }

    .notice-overlay.open {
      display: flex;
    }

    .notice-box {
      width: 100%;
      max-width: 520px;
      background: linear-gradient(145deg, rgba(255,255,255,0.97), rgba(235,224,220,0.97));
      border-radius: 28px;
      padding: 28px 24px 24px;
      box-shadow: 0 28px 60px rgba(88,93,71,0.24);
      border: 1px solid rgba(255,255,255,0.85);
      text-align: center;
      position: relative;
    }

    .notice-icon {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      margin: 0 auto 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.9rem;
      font-weight: 700;
      color: #fff;
      box-shadow: 0 14px 28px rgba(88,93,71,0.16);
    }

    .notice-box.success .notice-icon {
      background: linear-gradient(135deg, #7f9b6a, #5f7650);
    }

    .notice-box.error .notice-icon {
      background: linear-gradient(135deg, #c96a6a, #a94c4c);
    }

    .notice-box.info .notice-icon {
      background: linear-gradient(135deg, #8c9b76, #6d7b59);
    }

    .notice-title {
      margin: 0 0 10px;
      font-family: 'Marck Script', cursive;
      font-size: 2.1rem;
      color: var(--color-1);
      line-height: 1.1;
    }

    .notice-message {
      margin: 0;
      color: var(--soft-text);
      line-height: 1.75;
      font-size: 1rem;
    }

    .notice-actions {
      margin-top: 22px;
      display: flex;
      justify-content: center;
    }

    .notice-btn {
      border: none;
      border-radius: 999px;
      padding: 12px 24px;
      font: inherit;
      font-weight: 700;
      cursor: pointer;
      color: #fff;
      background: linear-gradient(135deg, var(--color-1), var(--color-2));
      box-shadow: 0 14px 28px rgba(88,93,71,0.20);
      transition: 0.25s ease;
    }

    @media (max-width: 1180px) {
      .main-section {
        grid-template-columns: 260px 1fr;
      }

      .right-column {
        grid-column: 1 / -1;
      }

      .cart-box {
        position: static;
      }
    }

    @media (max-width: 900px) {
      .hero,
      .main-section,
      .modal-grid {
        grid-template-columns: 1fr;
      }

      .products-grid {
        grid-template-columns: 1fr;
      }

      .modal-main-image {
        height: 320px;
      }
    }

    @media (max-width: 680px) {
      .nav {
        justify-content: center;
      }

      .hero-card,
      .info-card,
      .filter-box,
      .product-card,
      .cart-box,
      .checkout-box,
      .empty-cart,
      .product-modal,
      .notice-box {
        border-radius: 22px;
      }

      .cart-toggle {
        display: inline-block;
      }

      .desktop-cart {
        display: none;
      }

      .mobile-cart-panel {
        display: block;
        position: fixed;
        left: 0;
        right: 0;
        bottom: -100%;
        z-index: 39;
        transition: 0.3s ease;
        padding: 14px;
      }

      .mobile-cart-panel.open {
        bottom: 0;
      }

      .mobile-cart-panel .cart-box {
        max-height: 82vh;
        overflow: auto;
      }

      .modal-thumbs {
        grid-template-columns: repeat(3, 1fr);
      }

      .modal-thumb {
        height: 74px;
      }

      .card-actions {
        flex-direction: column;
      }

      .add-btn,
      .copy-link-btn {
        width: 100%;
      }
    }
    
    /* =========================================================
   KATALOG - ŠIRI PRIKAZ PROIZVODA / UKLANJANJE PRAZNOG PROSTORA
   Dodati na sami kraj assets/css/andea-art.css
   ========================================================= */

.page-katalog .main-section {
  max-width: 1480px;
  margin: 0 auto;
  padding: 24px 32px 80px;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.page-katalog .left-column {
  width: 100%;
  min-width: 0;
}

.page-katalog .middle-column {
  width: 100%;
  min-width: 0;
}

.page-katalog .right-column.desktop-cart {
  display: none;
}

.page-katalog .catalog-top {
  width: 100%;
}

.page-katalog .products-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(235px, 1fr));
  gap: 24px;
  align-items: stretch;
}

.page-katalog .product-card {
  width: 100%;
}

.page-katalog .product-image {
  height: 250px;
}

/* Košarica kao plutajući gumb i panel na svim veličinama ekrana */
.page-katalog .cart-toggle {
  display: inline-block;
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
}

.page-katalog .mobile-cart-panel {
  display: block;
  position: fixed;
  right: 24px;
  left: auto;
  bottom: -120%;
  width: min(440px, calc(100vw - 32px));
  z-index: 49;
  transition: bottom 0.32s ease;
  padding: 0;
}

.page-katalog .mobile-cart-panel.open {
  bottom: 86px;
}

.page-katalog .mobile-cart-panel .cart-box {
  max-height: calc(100vh - 120px);
  overflow: auto;
  border-radius: 28px;
  box-shadow: 0 26px 60px rgba(88,93,71,0.22);
}

/* Ljepši prikaz kad ima puno proizvoda */
@media (min-width: 1500px) {
  .page-katalog .main-section {
    max-width: 1580px;
  }

  .page-katalog .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }

  .page-katalog .product-image {
    height: 270px;
  }
}

/* Laptop / manji desktop */
@media (max-width: 1280px) {
  .page-katalog .main-section {
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 22px;
    padding-left: 22px;
    padding-right: 22px;
  }

  .page-katalog .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* Tablet */
@media (max-width: 980px) {
  .page-katalog .main-section {
    grid-template-columns: 1fr;
    padding: 24px 18px 80px;
  }

  .page-katalog .left-column {
    order: 1;
  }

  .page-katalog .middle-column {
    order: 2;
  }

  .page-katalog .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  }
}

/* Mobitel */
@media (max-width: 680px) {
  .page-katalog .main-section {
    padding: 20px 14px 80px;
  }

  .page-katalog .products-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .page-katalog .product-image {
    height: 260px;
  }

  .page-katalog .cart-toggle {
    right: 18px;
    bottom: 18px;
  }

  .page-katalog .mobile-cart-panel {
    left: 0;
    right: 0;
    bottom: -120%;
    width: 100%;
    padding: 14px;
  }

  .page-katalog .mobile-cart-panel.open {
    bottom: 0;
  }

  .page-katalog .mobile-cart-panel .cart-box {
    max-height: 82vh;
    border-radius: 22px;
  }
}

/* =========================================================
   FIX - katalog artikli na mobitelu
   ========================================================= */

@media (max-width: 680px) {
  body.page-katalog .main-section {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 18px 14px 90px !important;
    overflow: visible !important;
  }

  body.page-katalog .left-column,
  body.page-katalog .middle-column {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow: visible !important;
  }

  body.page-katalog .left-column {
    margin-bottom: 22px !important;
  }

  body.page-katalog .products-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 18px !important;
    opacity: 1 !important;
    visibility: visible !important;
    overflow: visible !important;
  }

  body.page-katalog .product-card {
    display: flex !important;
    width: 100% !important;
    max-width: 100% !important;
    opacity: 1 !important;
    visibility: visible !important;
  }

  body.page-katalog .product-image {
    display: block !important;
    width: 100% !important;
    height: 260px !important;
  }

  body.page-katalog .catalog-top {
    display: flex !important;
    width: 100% !important;
    margin-bottom: 18px !important;
  }

  body.page-katalog .right-column.desktop-cart {
    display: none !important;
  }
}

/* Besplatna dostava Petrinja - jasniji prikaz */
.delivery-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 8px 0 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(235,224,220,0.92));
  border: 1px solid rgba(88,93,71,0.16);
  color: var(--text);
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(88,93,71,0.06);
}

.delivery-check input {
  width: 20px;
  height: 20px;
  min-width: 20px;
  margin: 3px 0 0;
  accent-color: var(--color-1);
  cursor: pointer;
}

.delivery-check span {
  display: block;
  font-weight: 800;
  line-height: 1.35;
}

.delivery-check span::after {
  content: "Označite ovu opciju ako je adresa dostave na području Petrinje.";
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  font-weight: 500;
  color: var(--soft-text);
  line-height: 1.45;
}
  


  /* Performance: donji dijelovi stranice ne renderiraju se dok nisu blizu ekrana */
  .gallery-section,
  .process-section,
  .testimonials-section,
  .order-section,
  .about-section,
  .contact-section {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
  }


/* =========================================================
   PERFORMANCE PATCH - lakša mobilna verzija
   Cilj: manje repaint/reflow troška na mobitelima bez promjene identiteta stranice.
   ========================================================= */

img {
  content-visibility: auto;
}

section {
  content-visibility: auto;
  contain-intrinsic-size: 1px 900px;
}

@media (max-width: 768px), (pointer: coarse) {
  html {
    scroll-behavior: auto;
  }

  body::before,
  body::after,
  .cursor-glow,
  .floating,
  .bubble {
    display: none !important;
  }

  * {
    -webkit-tap-highlight-color: transparent;
  }

  .hero-visual,
  .main-card,
  .soap-photo,
  .card,
  .step,
  .gallery-item,
  .testimonial,
  .order-box,
  .product-card,
  .hero-card,
  .info-card,
  .filter-box,
  .cart-box,
  .checkout-box,
  .product-modal,
  .notice-box {
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    filter: none !important;
    box-shadow: 0 8px 18px rgba(88,93,71,0.08) !important;
    will-change: auto !important;
  }

  .hero-text,
  .hero-visual,
  .float-note,
  .soap-photo,
  .logo,
  .btn,
  .card,
  .step,
  .gallery-item,
  .testimonial,
  .order-box,
  .product-card,
  .badge,
  .stat {
    animation: none !important;
  }

  .card::before,
  .step::before,
  .gallery-item::before,
  .product-card::before,
  .main-card::before,
  .soap-photo::before,
  .btn::before,
  .logo::before {
    display: none !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }

  .hero,
  section {
    padding-left: 16px;
    padding-right: 16px;
  }

  .soap-photo {
    min-height: 420px;
    transform: none !important;
  }

  .gallery-grid,
  .process {
    gap: 16px;
  }

  .gallery-item img,
  .step img,
  .product-image img {
    transform: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

/* Patch: boje s nazivom i korekcijom cijene */
.color-swatch.color-swatch-option {
  width: auto;
  min-height: 42px;
  height: auto;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px 7px 8px;
  background: rgba(255,255,255,0.84);
}

.color-swatch.color-swatch-option.active {
  outline: 3px solid var(--color-1);
  outline-offset: 3px;
  border-color: #fff;
}

.color-choice-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: inline-block;
  border: 1px solid rgba(88,93,71,0.18);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.6);
  flex: 0 0 auto;
}

.color-choice-text {
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

/* Patch: dodatne opcije proizvoda u Andea katalogu */
.modal-textarea,
.modal-file-input,
.personalization-name-fields input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 16px;
  border: 1px solid var(--border);
  font: inherit;
  background: rgba(255,255,255,0.88);
  color: var(--text);
}

.modal-textarea {
  min-height: 96px;
  resize: vertical;
}

.personalization-name-fields {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.option-group small {
  color: var(--soft-text);
  font-family: 'Quicksand', sans-serif;
  font-size: .82rem;
  font-weight: 600;
}

.option-btn.extra-option.active,
.option-btn.shape-option.active,
.option-btn.material-option.active {
  background: linear-gradient(135deg, var(--color-1), var(--color-2));
  color: #fff;
  border-color: transparent;
}


/* ObrtBoost 2026 - sidrena cijena */
.product-price-stack{display:flex;flex-direction:column;gap:3px;align-items:flex-end}.anchor-price{font-size:12px;font-weight:700;opacity:.78;line-height:1.25}.anchor-price small{font-weight:600}.anchor-note{font-style:italic}.modal-anchor-price{margin-top:8px;font-size:13px;font-weight:700;text-align:right;opacity:.82}.modal-anchor-price[hidden]{display:none!important}


/* ObrtBoost v5: referentne cijene na kartici i u modalu */
.reference-price,
.anchor-price{
  font-size:11px;
  font-weight:650;
  opacity:.82;
  line-height:1.35;
}
.anchor-note{font-style:italic}
.modal-reference-price,
.modal-anchor-price{
  margin-top:5px;
  font-size:12px;
  font-weight:700;
  line-height:1.35;
  text-align:right;
  opacity:.84;
}
.modal-reference-price[hidden],
.modal-anchor-price[hidden]{display:none!important}


/* GDPR / privatnost u završetku narudžbe */
.privacy-note {
  margin: 12px 0 14px;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(88,93,71,.14);
  background: rgba(255,255,255,.62);
  color: rgba(88,93,71,.86);
  font-size: .88rem;
  line-height: 1.6;
}
.privacy-note strong { display:block; color:var(--color-1); margin-bottom:3px; }
.privacy-note a { color:#74594c; font-weight:800; text-decoration:underline; text-underline-offset:3px; }
.footer-legal-links { text-align:center; padding:10px 16px 26px; line-height:1.8; }
.footer-legal-links a { color:inherit; text-decoration:underline; text-underline-offset:3px; }
