    :root {
      /* Barve približane embalaži */
      --pink-soft: #ffd0df;
      --pink-main: #ff8fb1;
      --pink-deep: #ff6b9c;
      --mint: #7ddbd3;
      --blue-berry: #5aa8e8;
      --green-straw: #7ed36a;
      --cream: #ffe9c7;
      --navy-pajs: #123a63;
      --white: #ffffff;
      --text-main: #3c3140;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: 'Nunito', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text-main);
      background: radial-gradient(circle at top left, #ffe5f0 0%, #ffeef7 40%, #fff7fb 100%);
      line-height: 1.6;
    }

    img {
      max-width: 100%;
      display: block;
    }

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

    /* --- LAYOUT --- */

    .page-wrap {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(18px);
      background: linear-gradient(to right,
        rgba(255, 221, 234, 0.95),
        rgba(224, 252, 247, 0.95));
      border-bottom: 1px solid rgba(255, 182, 206, 0.4);
    }

    .container {
      width: 100%;
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

.nav {
  height: 68px;                 /* fiksna, realna višina */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  overflow: visible;   /* dovoljen vizualni izstop *//* ❗️brez dodatnega pasu */
}

/* logo + tekst skupaj */
.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.25rem;                 /* bistveno bližje kot prej */
  line-height: 1;
  transform: scale(1.05);
  transform-origin: left center;
}

/* logo slika */
.logo-img {
  height: 72px;                 /* lepo sede v 68px header */
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

/* KEPICE */
.logo-text {
  font-family: 'Baloo 2', cursive;
  font-size: 2.05rem;            /* malenkost bolj uravnoteženo */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;       /* prej 0.05em → preveč lufta */
  color: var(--navy-pajs);
  line-height: 1;
  margin-left: -2px;            /* subtilno “zlepi” k logotu */
}


/* Staro odstrani ali pusti, ne bo več uporabljeno */
.logo-badge {
  display: none;
}


   
    
    

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.95rem;
      font-weight: 600;
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.2rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--pink-deep), var(--blue-berry));
      transition: width 0.2s ease-out;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      padding: 0.45rem 1rem;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--pink-deep), var(--mint));
      color: var(--white);
      font-weight: 700;
      font-size: 0.9rem;
      box-shadow: 0 8px 20px rgba(255, 107, 156, 0.28);
      border: none;
      cursor: pointer;
      transition: transform 0.15s ease-out, box-shadow 0.15s ease-out;
    }

    .nav-cta:hover {
      transform: translateY(-1px);
      box-shadow: 0 12px 26px rgba(255, 107, 156, 0.35);
    }

    /* --- HERO --- */

    .hero {
      padding: 3.5rem 0 3rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
      gap: 2.5rem;
      align-items: center;
    }

    .tagline {
      font-family: 'Dancing Script', cursive;
      font-size: 2.5rem;
      color: var(--pink-deep);
      margin-bottom: 0.35rem;
    }

    .hero-title {
      font-family: 'Baloo 2', cursive;
      font-size: clamp(2.4rem, 3.1vw + 1.7rem, 3.4rem);
      line-height: 1.05;
      color: var(--navy-pajs);
      margin-bottom: 0.7rem;
    }

    .hero-title span {
      background: linear-gradient(90deg, var(--pink-deep), var(--blue-berry));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero-text {
      font-size: 1rem;
      max-width: 26rem;
      color: #5a4d60;
      margin-bottom: 1.4rem;
    }

    .hero-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 0.9rem;
      margin-bottom: 1.4rem;
    }

    .btn-primary {
      padding: 0.75rem 1.6rem;
      border-radius: 999px;
      background: linear-gradient(110deg, var(--pink-main), var(--pink-deep));
      color: var(--white);
      font-weight: 700;
      border: none;
      cursor: pointer;
      font-size: 0.98rem;
      box-shadow: 0 12px 30px rgba(255, 140, 177, 0.5);
      transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
    }

    .btn-primary:hover {
      transform: translateY(-1px);
      box-shadow: 0 18px 40px rgba(255, 140, 177, 0.6);
    }

    .btn-ghost {
      padding: 0.75rem 1.35rem;
      border-radius: 999px;
      border: 1px dashed rgba(255, 140, 177, 0.8);
      background: rgba(255, 255, 255, 0.75);
      font-weight: 600;
      font-size: 0.95rem;
      cursor: pointer;
      color: var(--pink-deep);
      transition: background 0.12s ease-out, transform 0.12s ease-out;
    }

    .btn-ghost:hover {
      background: rgba(255, 255, 255, 1);
      transform: translateY(-1px);
    }

    .hero-badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 0.8rem;
    }

    .pill {
      padding: 0.24rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.9);
      border: 1px solid rgba(255, 188, 211, 0.9);
      color: #6a596e;
      font-weight: 600;
    }

    .hero-image-wrap {
      position: relative;
      display: flex;
      justify-content: center;
    }

    .hero-bag {
      width: min(320px, 100%);
      border-radius: 24px;
      box-shadow: 0 18px 40px rgba(255, 140, 177, 0.55);
      transform: translateY(0);
      transition: transform 0.2s ease-out;
    }

    .hero-image-wrap::before {
      content: "";
      position: absolute;
      inset: auto 15% -12%;
      height: 55px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0, 0, 0, 0.12), transparent 60%);
      opacity: 0.7;
      z-index: -1;
    }

    .hero-image-wrap:hover .hero-bag {
      transform: translateY(-4px);
    }

    .float-berry {
      position: absolute;
      width: 60px;
      height: 60px;
      border-radius: 999px;
      background: radial-gradient(circle at 30% 20%, #ffebf2 0%, var(--pink-deep) 60%, #ff3d82 100%);
      box-shadow: 0 10px 25px rgba(255, 107, 156, 0.45);
      opacity: 0.95;
    }

    .float-berry.one {
      top: -18px;
      left: 5%;
    }

    .float-berry.two {
      bottom: 15px;
      right: 2%;
      background: radial-gradient(circle at 30% 20%, #e7f2ff 0%, var(--blue-berry) 60%, #317ad8 100%);
    }

    .float-heart {
      position: absolute;
      width: 24px;
      height: 24px;
      background: var(--pink-deep);
      transform: rotate(-45deg);
      border-radius: 6px;
      opacity: 0.7;
    }

    .float-heart::before,
    .float-heart::after {
      content: "";
      position: absolute;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: var(--pink-deep);
    }

    .float-heart::before {
      top: -12px;
      left: 0;
    }

    .float-heart::after {
      left: 12px;
      top: 0;
    }

    .float-heart {
      top: 18%;
      right: 20%;
    }
    
/* ===========================
   MOBILE OVERRIDES — HERO
   =========================== */
@media (max-width: 768px) {

  .hero{
    padding: 1.6rem 0 1.8rem;
  }

  .hero-grid{
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .tagline{
    font-size: 2rem;
    margin-bottom: 0.25rem;
  }

  .hero-title{
    font-size: 2.35rem;
    line-height: 1.05;
    margin-bottom: 0.55rem;
  }

  .hero-title span{
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
    color: var(--pink-deep);
  }

  .hero-text{
    font-size: 0.98rem;
    max-width: 100%;
    margin-bottom: 1.1rem;
  }

  .hero-buttons{
    gap: 0.7rem;
    margin-bottom: 1.1rem;
  }

  .btn-primary,
  .btn-ghost{
    width: 100%;
    text-align: center;
  }

  .btn-primary{
    padding: 0.9rem 1rem;
    font-size: 1.02rem;
  }

  .btn-ghost{
    padding: 0.85rem 1rem;
    font-size: 0.98rem;
    border-style: solid;
    background: rgba(255,255,255,0.85);
  }

  .hero-badge-row{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
    font-size: 0.78rem;
  }

  .pill{
    padding: 0.35rem 0.55rem;
    text-align: center;
  }

  .hero-image-wrap{
    margin-top: 0.2rem;
  }

  .hero-bag{
    width: min(260px, 92%);
    border-radius: 22px;
  }

  .hero-image-wrap::before{
    inset: auto 18% -14%;
    height: 45px;
    opacity: 0.55;
  }

  .float-berry{
    width: 46px;
    height: 46px;
    opacity: 0.88;
  }

  .float-berry.one{
    top: -12px;
    left: 2%;
  }

  .float-berry.two{
    bottom: 10px;
    right: 0%;
  }

  .float-heart{
    transform: rotate(-45deg) scale(0.85);
    right: 10%;
  }
}


    /* --- SECTION GENERIC --- */

    section {
      padding: 3rem 0;
    }

    .section-title {
      text-align: center;
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      color: var(--navy-pajs);
      margin-bottom: 0.4rem;
    }

    .section-subtitle {
      text-align: center;
      max-width: 540px;
      margin: 0 auto 2rem;
      font-size: 0.98rem;
      color: #6a596e;
    }

    /* --- FLAVORS --- */

   /* Flavors section – bolj oddaljena od hero sekcije */
.flavors {
  padding: 4.5rem 0 3rem; /* top je bil prenizek → dodatno 4.5rem */
}

    .flavor-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.8rem;
    }

    .flavor-card {
      border-radius: 24px;
      padding: 1.5rem 1.3rem 1.4rem;
      background: rgba(255, 255, 255, 0.92);
      box-shadow: 0 10px 30px rgba(255, 170, 199, 0.25);
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
      transition: transform 0.18s ease-out, box-shadow 0.18s ease-out;
    }

    .flavor-card::before {
      content: "";
      position: absolute;
      inset: -40px;
      opacity: 0.12;
      background: radial-gradient(circle at top left, var(--pink-main), transparent 60%);
      pointer-events: none;
    }

    .flavor-card:nth-child(2)::before {
      background: radial-gradient(circle at top left, var(--blue-berry), transparent 60%);
    }

    .flavor-card:nth-child(3)::before {
      background: radial-gradient(circle at top left, var(--green-straw), transparent 60%);
    }

    .flavor-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 16px 40px rgba(255, 160, 205, 0.3);
    }

    .flavor-label {
      font-family: 'Dancing Script', cursive;
      font-size: 2rem;
      color: var(--text-main);
      position: relative;
      margin-bottom: 0.1rem;   /* ali 0 */
      line-height: 1;
    }

    .flavor-name {
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--navy-pajs);
      position: relative;
      margin-top: 0;
      line-height: 1;
    }

    .flavor-chip-row {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      font-size: 0.78rem;
      position: relative;
    }

    .chip {
      padding: 0.15rem 0.6rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 197, 214, 0.9);
      font-weight: 600;
    }

    .flavor-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0.5rem;
      position: relative;
    }

    .price {
      font-weight: 900;
      font-size: 1.4rem;
      color: var(--navy-pajs);
    }

    .mini-cta {
      padding: 0.45rem 0.95rem;
      border-radius: 999px;
      font-size: 0.8rem;
      border: none;
      cursor: pointer;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.98);
      color: var(--pink-deep);
      border: 1px solid rgba(255, 176, 206, 0.9);
      transition: background 0.12s ease-out, transform 0.12s ease-out;
    }

    .mini-cta:hover {
      background: var(--pink-soft);
      transform: translateY(-1px);
    }

    /* --- HOW IT WORKS --- */

    .how-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.6rem;
    }

    .how-card {
      text-align: center;
      border-radius: 24px;
      padding: 1.6rem 1.2rem;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 229, 242, 0.96));
      box-shadow: 0 12px 30px rgba(255, 176, 206, 0.22);
    }

    .how-icon {
      width: 52px;
      height: 52px;
      border-radius: 18px;
      margin: 0 auto 0.8rem;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.4rem;
      background: radial-gradient(circle at top left, var(--pink-main), var(--pink-deep));
      color: var(--white);
    }

    .how-title {
      font-weight: 700;
      margin-bottom: 0.4rem;
      color: var(--navy-pajs);
    }

    .how-text {
      font-size: 0.9rem;
      color: #6a596e;
    }

    /* --- WHY --- */

    .why-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr;
      gap: 2.2rem;
      align-items: center;
    }

    .badge-list {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.8rem;
    }

    .badge-item {
      display: flex;
      align-items: center;
      gap: 0.6rem;
      padding: 0.65rem 0.7rem;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid rgba(255, 188, 211, 0.7);
      font-size: 0.85rem;
      font-weight: 600;
      color: #5a4d60;
    }

    .badge-dot {
      width: 16px;
      height: 16px;
      border-radius: 999px;
      background: radial-gradient(circle at top left, var(--cream), var(--pink-main));
    }

    .why-note {
      font-size: 0.9rem;
      color: #7a6a80;
      margin-top: 0.7rem;
    }

    .why-card {
      border-radius: 26px;
      padding: 1.6rem 1.3rem;
      background: linear-gradient(180deg, var(--cream), #fff5e5);
      box-shadow: 0 15px 30px rgba(255, 207, 133, 0.35);
    }

    .why-card h3 {
      font-family: 'Baloo 2', cursive;
      margin-bottom: 0.4rem;
      color: var(--navy-pajs);
    }

    .why-card p {
      font-size: 0.9rem;
      color: #6a596e;
    }

    /* --- WAYS TO ENJOY --- */

    .ways-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.1rem;
    }

    .way {
      border-radius: 20px;
      padding: 1rem 0.8rem;
      text-align: center;
      background: rgba(255, 255, 255, 0.96);
      border: 1px dashed rgba(255, 188, 211, 0.9);
      font-size: 0.85rem;
      display: flex;
      flex-direction: column;
      gap: 0.35rem;
      justify-content: center;
      align-items: center;
    }

    .way-icon {
      font-size: 1.3rem;
    }

    /* --- STORY --- */

    .story {
      background: linear-gradient(120deg, rgba(255, 208, 223, 0.95), rgba(197, 241, 234, 0.95));
    }

    .story-inner {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 2.2rem;
      align-items: center;
    }

    .story-badge {
      font-size: 0.9rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.08em;
      color: var(--navy-pajs);
      margin-bottom: 0.4rem;
    }

    .story h2 {
      font-family: 'Baloo 2', cursive;
      font-size: 2rem;
      color: var(--navy-pajs);
      margin-bottom: 0.7rem;
    }

    .story p {
      font-size: 0.96rem;
      color: #4d3d52;
      margin-bottom: 0.7rem;
    }

    .story-note {
      font-size: 0.86rem;
      color: #6e5c75;
    }

    .story-card {
      border-radius: 22px;
      padding: 1.4rem 1.2rem;
      background: rgba(255, 255, 255, 0.95);
      box-shadow: 0 15px 34px rgba(200, 119, 163, 0.35);
    }

    .story-card h3 {
      font-family: 'Baloo 2', cursive;
      margin-bottom: 0.5rem;
      font-size: 1.2rem;
      color: var(--navy-pajs);
    }

    .story-card ul {
      list-style: none;
      font-size: 0.9rem;
      color: #5a4d60;
    }

    .story-card li {
      margin-bottom: 0.3rem;
      position: relative;
      padding-left: 1.1rem;
    }

    .story-card li::before {
      content: "❤";
      position: absolute;
      left: 0;
      top: 0;
      font-size: 0.8rem;
      color: var(--pink-deep);
    }

    /* --- FAQ --- */

    .faq-grid {
      max-width: 680px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 0.7rem;
    }

    details {
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.95);
      border: 1px solid rgba(255, 188, 211, 0.9);
      padding: 0.7rem 0.9rem;
      font-size: 0.9rem;
    }

    summary {
      cursor: pointer;
      list-style: none;
      font-weight: 700;
      color: var(--navy-pajs);
    }

    summary::-webkit-details-marker {
      display: none;
    }

    details[open] {
      box-shadow: 0 10px 26px rgba(255, 176, 206, 0.28);
    }

    details p {
      margin-top: 0.4rem;
      color: #6a596e;
    }

   /* =========================
   FOOTER (PAJS old) -> BITE look
   ========================= */

footer{
  border-top: none;
  padding: 2.2rem 1rem 2rem;
  margin-top: 2rem;
  text-align: center;

  background:
    radial-gradient(circle at 20% 35%, #ffd1e6 0%, transparent 45%),
    radial-gradient(circle at 55% 45%, #ffb3d9 0%, transparent 50%),
    radial-gradient(circle at 85% 65%, #ffe6f1 0%, transparent 55%),
    #fff7fb;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;

  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.07);
  color: #333;
  overflow: hidden;
  font-size: 0.9rem; /* poravnano z BITE */
}

/* grid: pri BITE ni 3-col layout, zato ga “centiramo” */
.footer-grid{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}

/* naslovi (če jih še uporabljaš) */
.footer-title{
  color: #333;
  font-weight: 700;
  margin-bottom: 0.4rem;
}

/* linki: naj se obnašajo kot BITE footer-nav */
.footer-links{
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-links a{
  font-weight: 600;
  color: #333;
  text-decoration: none;
  opacity: 1;
  transition: opacity .2s ease;
  }

.footer-links a:hover{
  opacity: 0.7;
}

/* social row: enako kot BITE */
.social-row{
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

/* social pill -> BITE circle */
.social-pill{
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  transition: transform 0.2s ease;

  border: 3px solid #0a4f7d;   /* BITE obroba */
  color: #0061a8;              /* ikona barva */
  font-size: 0;                /* prepreči “navaden text” */
}

/* če imaš znotraj <i> */
.social-pill i{
  font-size: 26px;
  color: #0061a8;
}

/* hover kot BITE */
.social-pill:hover{
  transform: translateY(-4px);
}

/* bottom copy */
.footer-bottom{
  margin-top: 0.4rem;
  text-align: center;
  opacity: 0.75;
  font-size: 0.9rem;
}

/* responsive: tvoj stari footer-grid breakpoint lahko ostane */
@media (max-width: 900px){
  .footer-links{ gap: 1.1rem; }
}

@media (max-width: 640px){
  footer{ padding: 2rem 1rem 1.6rem; }
  .social-pill{ width: 44px; height: 44px; border-width: 2px; }
  .social-pill i{ font-size: 22px; }
}

/* --- NAV ACTIONS & CART ICON --- */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cart-icon {
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(255, 188, 211, 0.9);
  background: rgba(255, 255, 255, 0.85);
  padding: 0.4rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  cursor: pointer;
  box-shadow: 0 6px 14px rgba(255, 170, 199, 0.35);
  transition: transform 0.12s ease-out, box-shadow 0.12s ease-out;
}

.cart-icon:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(255, 170, 199, 0.45);
}

.cart-emoji {
  font-size: 1rem;
}

.cart-count {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--pink-deep), var(--blue-berry));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* --- CART PANEL --- */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.18);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease-out;
  z-index: 90;
}

.cart-panel {
  position: fixed;
  top: 0;
  right: 0;
  width: min(360px, 100%);
  height: 100vh;
  background: #fff9fe;
  box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
  transform: translateX(100%);
  transition: transform 0.22s ease-out;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.cart-panel.open {
  transform: translateX(0);
}

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

.cart-header {
  padding: 1rem 1.2rem;
  border-bottom: 1px solid rgba(255, 188, 211, 0.8);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 1.4rem;
  color: var(--navy-pajs);
}

.cart-close {
  border: none;
  background: transparent;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: #7a6a80;
}

.cart-body {
  padding: 0.7rem 1.2rem 0.9rem;
  flex: 1;
  overflow-y: auto;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 0.6rem;
  align-items: center;
  padding: 0.6rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 188, 211, 0.8);
}

.cart-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-pajs);
}

.cart-item-meta {
  font-size: 0.8rem;
  color: #7a6a80;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.3rem;
}

.qty-btn {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: none;
  background: var(--pink-soft);
  cursor: pointer;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-pajs);
}

.cart-item-qty {
  min-width: 22px;
  text-align: center;
  font-size: 0.82rem;
}

.cart-item-price {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-pajs);
}

.cart-item-remove {
  border: none;
  background: transparent;
  color: #b07c8c;
  font-size: 0.8rem;
  cursor: pointer;
}

.cart-empty {
  margin-top: 0.6rem;
  font-size: 0.86rem;
  color: #7a6a80;
}

.cart-footer {
  padding: 0.8rem 1.2rem 1.2rem;
  border-top: 1px solid rgba(255, 188, 211, 0.8);
}

.cart-summary-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 0.7rem;
  color: var(--navy-pajs);
}

.cart-total-amount {
  font-size: 1.1rem;
}

.cart-checkout-btn {
  width: 100%;
  border-radius: 999px;
  padding: 0.7rem 1rem;
  border: none;
  cursor: pointer;
  background: linear-gradient(110deg, var(--pink-main), var(--pink-deep));
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 12px 28px rgba(255, 140, 177, 0.65);
  margin-bottom: 0.35rem;
}

.cart-note {
  font-size: 0.78rem;
  color: #7a6a80;
}

/* mobile: nav-actions stack */
@media (max-width: 640px) {
  .nav-actions {
    gap: 0.5rem;
  }
  .nav-cta {
    padding-inline: 0.9rem;
  }
}


.field-row {
  display: flex;
  flex-direction: column;
  margin-bottom: 0.8rem;
}

.field-row-half {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.8rem;
}

.field-row label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #6a596e;
  margin-bottom: 0.2rem;
}

.field-row input,
.field-row textarea {
  border-radius: 12px;
  border: 1px solid rgba(255, 188, 211, 0.9);
  padding: 0.5rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
  background: rgba(255, 255, 255, 0.95);
}

.field-row input:focus,
.field-row textarea:focus {
  border-color: var(--pink-deep);
  box-shadow: 0 0 0 2px rgba(255, 140, 177, 0.25);
}


.checkout-error {
  color: #c5334d;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  display: none;
}

.checkout-success {
  margin-top: 0.7rem;
  font-size: 0.86rem;
  color: #2e8b57;
  display: none;
}


/* --- ANIMATIONS --- */
@keyframes floatSoft {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes heartFloat {
  0%   { transform: translateY(0) rotate(-45deg); opacity: 0.7; }
  50%  { transform: translateY(-4px) rotate(-45deg); opacity: 1; }
  100% { transform: translateY(0) rotate(-45deg); opacity: 0.7; }
}

.float-berry.one,
.float-berry.two {
  animation: floatSoft 4.8s ease-in-out infinite;
}

.float-heart {
  animation: heartFloat 5.6s ease-in-out infinite;
}

.fade-section {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-section.visible {
  opacity: 1;
  transform: translateY(0);
}
/* --- PRODUCT DETAIL --- */

.product-detail-section {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.2fr);
  gap: 2.4rem;
  align-items: center;
}

.product-detail-image img {
  border-radius: 26px;
  box-shadow: 0 18px 42px rgba(255, 140, 177, 0.5);
}

.product-detail-text h2 {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  color: var(--navy-pajs);
  margin-bottom: 0.3rem;
}

.product-detail-tagline {
  font-size: 1rem;
  font-weight: 600;
  color: var(--pink-deep);
  margin-bottom: 0.7rem;
}

.product-detail-text p {
  font-size: 0.96rem;
  color: #5a4d60;
  margin-bottom: 0.6rem;
}

.product-detail-text ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0.8rem;
  font-size: 0.9rem;
  color: #5a4d60;
}

.product-detail-text li {
  margin-bottom: 0.3rem;
  position: relative;
  padding-left: 1.2rem;
}

.product-detail-text li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--pink-deep);
}

.product-detail-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

.product-detail-price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy-pajs);
}

/* mobile */
@media (max-width: 900px) {
  .product-detail-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
.mini-cta-ghost {
  background: transparent;
   color: #ffffff;                          /* 👈 BELA PISAVA */
  border: 1.5px solid #ffffff; 
}
/* ---- FLAVOR PHOTO CARD ---- */

.flavor-card {
  display: flex;
  flex-direction: column;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 46px rgba(255, 160, 189, 0.28);
  padding: 1.2rem;
  text-align: left;
  transition: transform .2s ease, box-shadow .2s ease;
}

.flavor-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(255, 150, 187, 0.35);
}

.flavor-photo {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 22px;
  margin-bottom: 1rem;
}

.flavor-info {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.flavor-buttons {
  display: flex;
  gap: 0.4rem;
}

.flavor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.6rem;
}
/* === FLAVOR BACKGROUNDS === */

.flavor-card {
  position: relative;
  overflow: hidden;
}

/* MALINOVE – pink/rose */
.flavor-malina {
  background: linear-gradient(
    145deg,
    rgba(255, 180, 200, 0.55),
    rgba(255, 140, 170, 0.60)
  );
}

/* BOROVNIČEVE – blue/teal */
.flavor-borovnica {
  background: linear-gradient(
    145deg,
    rgba(140, 190, 255, 0.55),
    rgba(110, 170, 240, 0.60)
  );
}

/* JAGODNE – green/pink mix */
.flavor-jagoda {
  background: linear-gradient(
    145deg,
    rgba(180, 255, 180, 0.55),
    rgba(255, 150, 180, 0.50)
  );
}

/* optional: white glossy overlay */
.flavor-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top left,
    rgba(255,255,255,0.35),
    transparent 60%
  );
  pointer-events: none;
}
.flavor-card {
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255,255,255,0.6);
}
/* === HERO TEME PO OKUSIH === */

.hero {
  background: linear-gradient(135deg, #ffd6e6 0%, #ffe7f1 40%, #fff7fb 100%);
  transition: background 0.4s ease;
}

/* malina – rožnato */
.hero-malina {
  background: radial-gradient(circle at top left, #ffd1e2 0%, #ff9cbc 42%, #ffe6f0 100%);
}

/* borovnica – modro / teal */
.hero-borovnica {
  background: radial-gradient(circle at top left, #d4ebff 0%, #7ec5ff 42%, #e9f8ff 100%);
}

/* jagoda – zeleno / rožnato */
.hero-jagoda {
  background: radial-gradient(circle at top left, #e7ffe0 0%, #9de47d 40%, #ffe2eb 100%);
}

/* lebdeče sadje po temah */
.hero-malina .float-berry.one,
.hero-malina .float-berry.two {
  background: radial-gradient(circle at 30% 20%, #ffeaf3 0%, #ff6b9c 60%, #ff3d82 100%);
  box-shadow: 0 10px 25px rgba(255, 107, 156, 0.45);
}

.hero-borovnica .float-berry.one,
.hero-borovnica .float-berry.two {
  background: radial-gradient(circle at 30% 20%, #e7f2ff 0%, #5aa8e8 60%, #317ad8 100%);
  box-shadow: 0 10px 25px rgba(90, 168, 232, 0.45);
}

.hero-jagoda .float-berry.one,
.hero-jagoda .float-berry.two {
  background: radial-gradient(circle at 30% 20%, #f1ffe8 0%, #7ed36a 55%, #48b34a 100%);
  box-shadow: 0 10px 25px rgba(126, 211, 106, 0.45);
}

/* srček rahlo obarvamo z glavnim tonalitetom */
.hero-borovnica .float-heart,
.hero-borovnica .float-heart::before,
.hero-borovnica .float-heart::after {
  background: #5aa8e8;
}

.hero-jagoda .float-heart,
.hero-jagoda .float-heart::before,
.hero-jagoda .float-heart::after {
  background: #ff7f9c;
}

/* AKTIVNA FLAVOR KARTICA – harmonizacija */
.flavor-card {
  border: 1px solid rgba(255, 255, 255, 0.7);
  transform: translateY(0);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.flavor-card.flavor-active {
  box-shadow: 0 22px 56px rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.95);
  transform: translateY(-6px);
}
@keyframes fruitFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0); }
}

.hero-image-wrap {
  position: relative;
}
/* animacija */
@keyframes fruitFloat {
  0%   { transform: translateY(0); }
  50%  { transform: translateY(-12px); }
  100% { transform: translateY(0); }
}

/* VSE lebdeče sadje */
.float-fruit {
  position: absolute;
  width: 150px;
  height: 150px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  animation: fruitFloat 5s ease-in-out infinite;
  z-index: 3;
}

/* 🍓 JAGODA */
.float-fruit.strawberry {
  background-image: url("../img/floating_strawberry.png");
  top: -60px;
  right: 15px;
  animation-duration: 4s;
}

/* 🫐 BOROVNICA */
.float-fruit.blueberry {
  background-image: url("../img/floating_blueberry.png");
  bottom: -15px;
  left: -10px;
  animation-duration: 6.1s;
}

/* 🍇 MALINA */
.float-fruit.raspberry {
  background-image: url("../img/floating_raspberry.png");
  top: 60%;
  right: -30px;
  animation-duration: 8.7s;
}

/* ========= TEME PO OKUSIH ========= */
/* dodaš razred na <body> ali na <footer> (glej spodaj) */

:root {
  --pajs-primary:   #ff6fa8;
  --pajs-accent:    #ff9fbf;
  --pajs-footer-bg: #fff5f9;
}

/* malina (default) */
body.theme-malina {
  --pajs-primary:   #ff6fa8;
  --pajs-accent:    #ff9fbf;
  --pajs-footer-bg: #fff5f9;
}

/* borovnica */
body.theme-borovnica {
  --pajs-primary:   #3f7fff;
  --pajs-accent:    #7fb2ff;
  --pajs-footer-bg: #f3f6ff;
}

/* jagoda */
body.theme-jagoda {
  --pajs-primary:   #ff6f6f;
  --pajs-accent:    #ff9c7f;
  --pajs-footer-bg: #fff4f1;
}

/* responsive footer */
@media (max-width: 768px) {
  .pajs-footer .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .logo-text {
    font-size: 1.5rem;   /* enako kot na desktopu */
    letter-spacing: 0.05em;
  }

  .footer-right {
    align-items: center;
  }

  .footer-contact {
    text-align: center;
  }
}
/* === PAJS Circle Footer (minimalist agency style) === */

.pajs-footer-circle {
  background: #fff;
  padding: 40px 20px 30px;
  text-align: center;
  border-top: 1px solid #eee;
}

/* Social circles */

.footer-social-circles {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 22px;
}

.footer-social-circles a {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  border: 3px solid #ff8fb7; /* PAJS pastel roza */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8fb7;
  font-size: 24px;
  transition: 0.25s ease;
}

.footer-social-circles a:hover {
  transform: translateY(-5px);
  border-color: #ff5c9e;
  color: #ff5c9e;
}

/* Navigation links */

.footer-nav-circles {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-nav-circles a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #444;
  font-weight: 600;
  transition: 0.25s ease;
}

.footer-nav-circles a:hover {
  color: #ff5c9e; /* pastelnejši PAJS accent */
}

/* Copyright */

.footer-copy {
  font-size: 0.75rem;
  letter-spacing: 0.2px;
  color: #777;
}

/* Mobile */

@media (max-width: 600px) {
  .footer-social-circles a {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .footer-nav-circles a {
    font-size: 16px;
  }
}
/* FORCE agency style circles */
.pajs-footer-circle .footer-social-circles a {
  background: transparent !important;
  border: 3px solid #ff8fb7 !important;
  color: #ff8fb7 !important;
  box-shadow: none !important;
}
/* === PAJS Circle Footer (minimal agency style) === */

.pajs-footer-circle {
  background: #ffffff;
  padding: 40px 20px 28px;
  text-align: center;
  border-top: 1px solid #eeeeee;
  display: block; /* prepiše generic footer{display:flex} */
}

.footer-social-circles {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-bottom: 22px;
}

.footer-social-circles a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 3px solid #ff8fb7;         /* PAJS roza */
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ff8fb7;
  font-size: 24px;
  transition: transform 0.25s ease,
              border-color 0.25s ease,
              color 0.25s ease;
}

.footer-social-circles a:hover {
  transform: translateY(-4px);
  border-color: #ff5c9e;
  color: #ff5c9e;
}

.footer-nav-circles {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.footer-nav-circles a {
  text-decoration: none;
  font-size: 18px;
  color: #444444;
  font-weight: 600;
  transition: color 0.25s ease;
}

.footer-nav-circles a:hover {
  color: #ff5c9e;
}

.footer-copy {
  font-size: 15px;
  color: #777777;
}

/* mobile tweaks */
@media (max-width: 600px) {
  .pajs-footer-circle {
    padding: 30px 14px 22px;
  }

  .footer-social-circles a {
    width: 50px;
    height: 50px;
    font-size: 21px;
  }

  .footer-nav-circles {
    gap: 18px;
  }

  .footer-nav-circles a {
    font-size: 16px;
  }
}
/* === PAJS Circle Footer (minimal agency style) === */
.terms-section .terms-box {
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  box-shadow: 0 10px 30px rgba(255, 120, 160, 0.18);
  margin: 0.8rem 0 1.6rem;
  line-height: 1.6;
}
/* ===== POGOJI UPORABE – FIX SPACING ===== */
.terms-section {
  padding: 2rem 0 2.6rem !important;
  max-width: 900px;
  margin: 0 auto;
}

.terms-section h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 2rem;
  color: var(--navy-pajs);
  margin-bottom: 0.6rem;
}

.terms-section .subtitle {
  color: #6a596e;
  font-size: 1rem;
  margin-bottom: 1.8rem;
  line-height: 1.55;
}

.terms-section h2 {
  margin-top: 1.8rem;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy-pajs);
}

.terms-section p {
  margin-bottom: 0.9rem;
  font-size: 0.97rem;
  line-height: 1.55;
  color: #4f4455;
}

.terms-section .terms-box {
  margin: 1rem 0 1.4rem;
}
/* ====== LEGAL PAGES (clean style) ====== */
.legal-page {
  max-width: 850px;
  padding: 2.5rem 0 3rem;
}

.legal-page h1 {
  font-family: 'Baloo 2', cursive;
  font-size: 2.2rem;
  margin-bottom: 0.4rem;
  color: #2A2340;
}

.legal-page .intro {
  font-size: 1.05rem;
  color: #6f5f73;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.legal-page h2 {
  margin-top: 2rem;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #2A2340;
}

.legal-page p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: #4e4455;
}

.legal-page .legal-box {
  background: rgba(255, 255, 255, 0.75);
  border-left: 4px solid #ff8fb7;
  padding: 1.2rem 1.5rem;
  border-radius: 12px;
  line-height: 1.6;
  color: #3a3240;
  box-shadow: 0 6px 20px rgba(255, 143, 183, 0.18);
}

.legal-page .updated {
  margin-top: 2.5rem;
  font-size: 0.9rem;
  color: #888;
}
.legal-list {
  margin: 0.4rem 0 1.2rem 1.2rem;
  padding: 0;
}

.legal-list li {
  margin-bottom: 0.4rem;
  color: #4e4455;
  line-height: 1.55;
}
/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: 92%;
  max-width: 420px;
  background: #ffe3ed;
  padding: 18px 22px;
  border-radius: 22px;
  box-shadow: 0 10px 35px rgba(255, 128, 160, 0.28);
  z-index: 99999;
  display: none;
  animation: cookieFade 0.45s ease;
}

@keyframes cookieFade {
  from { opacity: 0; transform: translateX(-50%) translateY(20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

.cookie-inner {
  text-align: center;
}

.cookie-text {
  font-size: 0.95rem;
  color: #4a3c4f;
  margin-bottom: 14px;
  line-height: 1.45;
}

.cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-bottom: 8px;
}

.cookie-btn {
  padding: 8px 18px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  transition: 0.25s ease;
}

.cookie-btn.accept {
  background: #ff6399;
  color: #fff;
}

.cookie-btn.accept:hover {
  background: #ff4c88;
}

.cookie-btn.decline {
  background: #fff;
  color: #444;
  border: 2px solid #ff6399;
}

.cookie-btn.decline:hover {
  background: #ffe6f0;
}

.cookie-link {
  font-size: 0.8rem;
  color: #915aab;
  text-decoration: underline;
  opacity: 0.8;
}

.cookie-link:hover {
  opacity: 1;
}
.hero .tagline {
  text-shadow: 0 2px 6px rgba(255, 255, 255, 0.55);
  color: #d94e87;

}
@media (max-width: 600px) {

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 0.75rem;
    max-width: 320px;
    margin-inline: auto;   /* centriraj cel blok gumbov */
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-ghost {
    width: 100%;
    display: flex;         /* da deluje justify-content */
    justify-content: center;
    text-align: center;
    margin: 0;             /* odstrani morebitne leve margine */
  }
}

@media (max-width: 600px) {
  .hero-text {
    text-align: center;       /* ali center, če ti je ljubše */
  }
}
@media (max-width: 600px) {

  .hero-badge-row {
    display: flex;
    flex-direction: column;      /* en pod drugim */
    align-items: center;         /* centrirano */
    gap: 0.6rem;                 /* enakomeren razmik */
    margin-top: 1.2rem;
  }

  .hero-badge-row .pill {
    width: auto;                 /* naj ostanejo naravne širine */
    text-align: center;
  }
}
.lang-switch {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  margin-left: 1rem;
}

.lang-switch a {
  font-size: 0.9rem;
  text-decoration: none;
  opacity: 0.7;
}

.lang-switch a:hover {
  opacity: 1;
}

.lang-switch .active-lang {
  font-weight: 700;
  opacity: 1;
}

.size-selector {
  display: inline-flex;
  gap: 10px;
}

/* ============================
   PAJS size selector – JASEN izbor
   ============================ */

.size-selector {
  display: inline-flex;
  gap: 10px;
}

/* osnovni gumb */
.size-btn {
  appearance: none;
  background: rgba(255,255,255,0.85);
  border: 2px solid rgba(12,46,88,0.25);
  color: #0c2e58;
  padding: 7px 14px;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.12s ease;
}

/* hover – samo malo feedbacka */
.size-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(12,46,88,0.12);
}

/* ============================
   AKTIVEN / IZBRAN PAKET
   ============================ */
.size-btn.active {
  background: #0c2e58;          /* TEMNO – jasen kontrast */
  color: #fff;
  border-color: #0c2e58;

  font-weight: 800;             /* 👈 jasno bold */
  letter-spacing: 0.03em;

  box-shadow:
    0 10px 24px rgba(12,46,88,0.35),
    inset 0 0 0 2px rgba(255,255,255,0.25);
}

/* dodatni signal: pika */
.size-btn.active::after {
  content: "✓";
  margin-left: 6px;
  font-size: 0.8em;
}

/* neaktivni so malo "umaknjeni" */
.size-btn:not(.active) {
  opacity: 0.65;
}


/* HERO crossfade overlay */
#hero {
  position: relative;
  overflow: hidden;
}

#hero::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;

  /* overlay barva je stalna (ne spreminjamo background pri togglu) */
  background: rgba(0,0,0,0.10);
  backdrop-filter: blur(2px);


  opacity:0;
  transition: opacity 700ms ease;
  z-index: 2;
}


/* ko menjamo okus - na kratko "zagrnemo" */
#hero.hero-fade::after{
  opacity: 1;
}


/* poskrbi da vsebina ostane nad overlayem */
#hero .container,
#hero .hero-grid {
  position: relative;
  z-index: 3;
}

/* =========================
   FREE SHIPPING PROGRESS
   (PAJS / BITE style)
========================= */

/* box – tam kjer je prej bil tekst "košarica je prazna" */
.free-box{
  margin-top: .6rem;
  padding: .75rem;
  border-radius: 16px;
  background: rgba(255,255,255,0.75);
  border: 1px solid rgba(12,46,88,0.10);
}

/* notranji layout */
.free-progress{
  display: flex;
  flex-direction: column;
  gap: .45rem;
}

/* siva podlaga */
.free-bar{
  height: 10px;
  width: 100%;
  background: rgba(12,46,88,0.12);
  border-radius: 999px;
  overflow: hidden;
}

.free-bar-fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;

  /* fallback, če --bite-primary/--bite-accent nista definirana v PAJS */
  background: linear-gradient(
    90deg,
    var(--bite-primary, #2f6fed),
    var(--bite-accent, #3fd0c9)
  );

  transition: width 280ms ease;
}

/* tekst */
.free-msg{
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  opacity: 0.9;
}

/* rahlo manj na zelo majhnih ekranih */
@media (max-width: 380px){
  .free-msg{
    font-size: 0.88rem;
  }
}
/* FORCE green when threshold reached */
#cart-free-bar-fill.is-complete{
  background: linear-gradient(90deg, #22c55e, #16a34a) !important;
}
.flavor-title-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 0.4rem;
}

/* ============================
   CHECKOUT: Payment method (TRR / Mollie)
   ============================ */

.pay-methods{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top: 6px;
}

.pay-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1.5px solid rgba(12,46,88,0.18);
  background: rgba(255,255,255,0.9);
  cursor:pointer;
  font-weight:700;
}

.pay-pill input{
  accent-color: #0c2e58;
}

.pay-box{
  margin-top:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(12,46,88,0.12);
  background: rgba(255,255,255,0.75);
}

.pay-box-title{ font-weight:800; margin-bottom:4px; }
.pay-box-text{ opacity:0.9; line-height:1.35; }

.spinner{
  display:inline-block;
  width:14px;height:14px;
  border:2px solid rgba(0,0,0,.2);
  border-top-color: rgba(0,0,0,.65);
  border-radius:50%;
  animation: spin .8s linear infinite;
  vertical-align: -2px;
}
@keyframes spin{ to{ transform: rotate(360deg); } }



.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px 16px;
}
.form-grid .field-full{ grid-column:1 / -1; }

.checkout-spacer{ height: 10px; }

.pay-card{
  margin-top: 6px;
  background: #fff;
  border-color: rgba(12,46,88,0.12);
  color: inherit;
}

.pay-option{
  display:flex;
  align-items:center;
  gap:14px;
  border:2px solid rgba(12,46,88,0.12);
  border-radius:16px;
  padding:14px 14px;
  cursor:pointer;
  margin-bottom:12px;
  background:#fff;
}
.pay-option input{ display:none; }

.pay-option.active{
  border-color:#1d5bf3;
  background: rgba(29,91,243,0.06);
}

.pay-text{ flex:1; }

.pay-title{
  font-weight:800;
  color: rgba(12,46,88,0.95);
}
.pay-sub{
  margin-top:4px;
  color: rgba(12,46,88,0.65);
  font-size: 0.85rem;
}

.pay-badge{
  background:#1d5bf3;
  color:#fff;
  padding:5px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:0.78rem;
  white-space:nowrap;
}
.pay-badge.soft{
  background: rgba(29,91,243,0.12);
  color:#1d5bf3;
}


/* =========================
   FREE SHIPPING – unified (cart + checkout)
   uses: .free-box .free-bar .free-bar-fill .free-msg
========================= */

/* brez okvirja / ozadja */
.free-box{
  margin: 12px 0 6px;
  padding: 0;
  border: none;
  background: transparent;
  box-shadow: none;
}

/* track */
.free-bar{
  height: 8px;
  border-radius: 999px;
  background: rgba(12,46,88,0.12);
  overflow: hidden;
}

/* fill – DEFAULT: ORANGE (pred 50€) */
.free-bar-fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb923c, #f97316);
  transition: width .25s ease;
}

/* fill – COMPLETE: GREEN */
.free-bar-fill.is-complete{
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

/* message – DEFAULT: ORANGE */
.free-msg{
  margin-top: 8px;
  text-align: center;
  font-weight: 700;
  font-size: .95rem;
  color: #f97316;
}

/* message – COMPLETE: GREEN */
.free-msg.is-complete{
  color: #15803d;
}

/* optional: shipping value when free */
.shipping-free{
  color:#15803d;
  font-weight:800;
}
/* COMPAT: če checkout še uporablja stare klase */
.free-progress-bar{ 
  height: 8px;
  border-radius: 999px;
  background: rgba(12,46,88,0.12);
  overflow: hidden;
}
.free-progress-fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb923c, #f97316);
  transition: width .25s ease;
}
.free-progress-fill.is-complete{
  background: linear-gradient(90deg, #22c55e, #16a34a);
}
/* =========================
   FREE SHIPPING – unified sizing
   ========================= */

/* wrapper brez okvirjev */
.free-box{
  padding: 0;
  border: none;
  background: transparent;
  margin: 10px 0 6px;
}

/* track */
.free-bar{
  height: 7px;
  border-radius: 999px;
  background: rgba(12,46,88,0.12);
  overflow: hidden;
}

/* fill (ostane tvoja logika: oranžno/zelena prek .is-complete) */
.free-bar-fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width .25s ease;
}

/* manjši tekst + center */
.free-msg{
  margin-top: 6px;
  text-align: center;
  font-weight: 700;
  font-size: 0.90rem;   /* <- malo manjše */
  line-height: 1.15;
}
/* checkout varianta: naj se obnaša isto kot cart */
.free-progress-bar{ 
  height: 7px;
  border-radius: 999px;
  background: rgba(12,46,88,0.12);
  overflow:hidden;
}
.free-progress-fill{
  height: 100%;
  width: 0%;
  border-radius: 999px;
  transition: width .25s ease;
}

/* WOW: pulse + glow ko je free shipping dosežen (cart + checkout) */
.free-bar-fill.wow,
.free-progress-fill.wow{
  animation: wowPulse 650ms ease-out;
  box-shadow: 0 0 0 rgba(34,197,94,0.0);
}

.free-msg.wow{
  animation: wowPop 650ms ease-out;
}

@keyframes wowPulse{
  0%   { transform: scaleY(1);    box-shadow: 0 0 0 rgba(34,197,94,0.0); }
  45%  { transform: scaleY(1.35); box-shadow: 0 10px 28px rgba(34,197,94,0.35); }
  100% { transform: scaleY(1);    box-shadow: 0 0 0 rgba(34,197,94,0.0); }
}

@keyframes wowPop{
  0%   { transform: scale(1); }
  45%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}
.free-bar-fill.wow,
.free-progress-fill.wow{
  animation: wowPulse 650ms ease-out;
}

.free-msg.wow{
  animation: wowPop 650ms ease-out;
}

/* =========================
   CHECKOUT – SUBMIT BUTTON (single source of truth)
========================= */
.checkout-submit-btn{
  background: linear-gradient(90deg, #ff5aa5, #ff7aa8);
  color: #fff;
  font-weight: 900;
  letter-spacing: .2px;
  box-shadow: 0 8px 20px rgba(255, 90, 165, 0.35);
  width:100%;
  border:0;
  border-radius:16px;
  padding:14px 16px;
  font: 900 1.05rem/1.1 inherit;
  cursor:pointer;
  position:relative;
  overflow:hidden;
  opacity:1;
  transform:none;
  transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease;
}

/* enabled */
.checkout-submit-btn:not(:disabled):not(.is-disabled):not([aria-disabled="true"]){
  opacity:1;
}
.checkout-submit-btn:not(:disabled):not(.is-disabled):not([aria-disabled="true"]):hover{
  transform: translateY(-1px);
}

/* hover */
.checkout-submit-btn:not(:disabled):hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(255, 90, 165, 0.45);
}

/* disabled (ostane mehko siva) */
.checkout-submit-btn:disabled{
  background: #f2f2f2;
  color: #9ca3af;
  box-shadow: none;
  opacity: 1; /* da ne izgleda "pokvarjeno" */
}
/* disabled */
.checkout-submit-btn:disabled,
.checkout-submit-btn.is-disabled,
.checkout-submit-btn[aria-disabled="true"]{
  opacity:.35;
  cursor:not-allowed;
  box-shadow:none;
  transform:none;
}

/* themes */
.checkout-submit-btn.is-trr{
  background: linear-gradient(180deg, #1d5bf3, #164ad6);
  color:#fff;
}
.checkout-submit-btn.is-mollie{
  background: linear-gradient(90deg, #ff5aa5, #ff7aa8);
  color:#fff;
}

/* swipe highlight (optional) */
.checkout-submit-btn::after{
  content:"";
  position:absolute; top:-20%; left:-60%;
  width:50%; height:140%;
  transform: skewX(-18deg);
  background: rgba(255,255,255,.28);
  opacity:0; pointer-events:none;
}
.checkout-submit-btn.btn-swipe::after{
  opacity:1;
  animation: btnSwipe 520ms ease-out;
}
@keyframes btnSwipe{
  0%{left:-60%;opacity:0}
  15%{opacity:1}
  100%{left:130%;opacity:0}
}
/* CTA: Zaključi naročilo (PAJS) */
#checkout-submit-btn.checkout-submit-btn{
    margin-top: 18px;   /* prilagodi: 12–24 */
  height: 56px;
  padding: 16px 18px;
  border-radius: 18px;

  font-size: 1.1rem;     /* večji tekst */
  font-weight: 800;
  letter-spacing: .2px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: linear-gradient(90deg, #ff5aa5, #ff7aa8);
  color: #fff;
  box-shadow: 0 10px 24px rgba(255, 90, 165, .35);
}

#checkout-submit-btn.checkout-submit-btn:not(:disabled):hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(255, 90, 165, .45);
}

#checkout-submit-btn.checkout-submit-btn:not(:disabled):active{
  transform: translateY(0px);
  box-shadow: 0 8px 18px rgba(255, 90, 165, .30);
}

/* disabled naj bo “mehko” in berljivo */
#checkout-submit-btn.checkout-submit-btn:disabled{
  background: #f2f2f2;
  color: #9ca3af;
  box-shadow: none;
  opacity: 1;
}
/* CART qty controls – compact */
.cart-qty-controls,
.summary-item-qty-controls,
.qty-controls{
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ===== Minimal qty controls (like reference) ===== */
.cart-qty-controls,
.summary-item-qty-controls,
.qty-controls{
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* - / + */
.cart-qty-btn,
.summary-qty-btn,
.qty-btn{
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: none;
  background: #eef2f7;
  color: #64748b;

  font-size: 13px;
  font-weight: 700;
  line-height: 1;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  transition: background .12s ease, color .12s ease;
}

.cart-qty-btn:hover,
.summary-qty-btn:hover,
.qty-btn:hover{
  background: #e5e7eb;
  color: #334155;
}

/* number */
.cart-qty-value,
.summary-qty-value,
.qty-value{
  min-width: 18px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  color: #111827;
}

/* Unified qty spacing in CART + CHECKOUT */
#cart-items .qty-controls,
#cart-items .cart-qty-controls,
#cart-items .summary-item-qty-controls,
#checkout-items .qty-controls,
#checkout-items .cart-qty-controls,
#checkout-items .summary-item-qty-controls{
  display: inline-flex;
  align-items: center;
  gap: 8px; /* ⬅️ tukaj nastaviš razmak */
}
/* Fallback spacing: - [number] + */
#cart-items button + span,
#cart-items span + button,
#checkout-items button + span,
#checkout-items span + button{
  margin-left: 8px; /* ⬅️ tukaj nastaviš */
}

/* Checkout: reuse cart panel styles, but embedded */
.cart-panel.is-embedded{
  position: static;
  transform: none;
  width: 100%;
  height: auto;
  box-shadow: none;
}

.cart-panel.is-embedded .cart-header,
.cart-panel.is-embedded .cart-footer{
  display: none; /* ali prilagodiš */
}

/* === CHECKOUT ITEM ROW (FINAL, CLEAN) === */
.checkout-item-row{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}

/* LEFT BLOCK */
.checkout-item-left{
  flex: 1;
  min-width: 0;
}

/* NAME */
.checkout-item-name{
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy-pajs);
  line-height: 1.15;
}

/* META (60 g, 20 g, ipd.) */
.checkout-item-meta{
  font-size: 0.88rem;
  color: #5a4d60;
  margin-top: 2px;
}

/* ACTIONS: - qty + odstrani */
.checkout-item-actions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

/* PRICE RIGHT */
.checkout-item-price{
  margin-left: auto;
  text-align: right;
  white-space: nowrap;
  font-size: 0.95rem;
  font-weight: 500;
  color: #5a4d60;
}

/* TOTAL emphasis – bold, not color */
.checkout-total-strong{
  font-weight: 800;
}

.checkout-total-strong span,
.checkout-total-strong strong{
  font-weight: 800;
  font-size: 1.05rem;
  color: #111827; /* ostane nevtralna */
}

/* ===== Checkout cart readability tweaks ===== */

/* več zraka med itemi */
#checkout-items .checkout-item-row{
  padding: 10px 0;
}
#checkout-items .checkout-item-row + .checkout-item-row{
  border-top: 1px solid rgba(17,24,39,.06);
}

/* poravnava: ime + cena v isti "baseline" */
#checkout-items .checkout-item-row{
  align-items: flex-start;
}
#checkout-items .checkout-item-name{
  margin-top: 1px;
}

/* meta manjša + mehkejša */
#checkout-items .checkout-item-meta{
  font-size: 0.82rem;
  color: rgba(17,24,39,.55);
  margin-top: 3px;
  line-height: 1.2;
}

/* qty controls naj bodo pod meta, z jasnim razmikom */
#checkout-items .checkout-item-actions{
  margin-top: 8px;
  gap: 10px;              /* razmak med - qty + */
}

/* številka količine malo bolj čista */
#checkout-items .cart-item-qty{
  min-width: 18px;
  text-align: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(17,24,39,.75);
}

/* cena desno – malo bolj “mirna” */
#checkout-items .checkout-item-price{
  font-size: 0.95rem;
  color: rgba(17,24,39,.75);
}

/* DDV note = same style as meta */
.checkout-note{
  font-size: 0.82rem;              /* isto kot meta */
  color: rgba(17,24,39,.55);       /* ista svetla siva */
  line-height: 1;
  margin-top: 6px;
}

/* ======================================================
   FINAL OPTIMIZED CHECKOUT (Vrhunska poravnava)
   ====================================================== */

/* 1. Omejitev širine in centriranje cele sekcije */
#checkout-section .container {
    max-width: 1100px !important; /* Da ni raztegnjeno čez cel zaslon */
    margin: 0 auto !important;
    padding: 40px 20px !important;
    display: block !important;
}

/* 2. Glavni Layout: LEVO (obrazec) | DESNO (ožja košarica) */
#checkout-section .checkout-layout {
    display: grid !important;
    /* 1.2fr za podatke, 380px fiksno za košarico (da ni preširoka) */
    grid-template-columns: 1.2fr 380px !important; 
    gap: 40px !important;
    align-items: start !important; /* KLJUČNO: Poravna oba vrha v isto linijo */
    height: auto !important;      /* Odstrani morebitno fiksno višino */
}

/* 3. Popravek za levi in desni stolpec */
.checkout-left, .checkout-right {
    display: flex !important;
    flex-direction: column !important;
    justify-content: flex-start !important; /* Prisili vsebino na vrh */
    height: auto !important;
}

/* 4. Odstranitev odmika pri naslovih (da sta vrha dejansko v isti liniji) */
.checkout-left h2:first-child,
.checkout-right .mini-title:first-child,
#checkout-section .mini-title {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* 5. Prilagoditev kartic */
.checkout-card {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    border: 1px solid rgba(12, 46, 88, 0.05);
}

/* 6. Mobilna verzija (da se na telefonu ne stisne) */
@media (max-width: 991px) {
    #checkout-section .checkout-layout {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }
    #checkout-section .container {
        padding: 20px 15px !important;
    }
}
/* Poravnava v košarici: Besedilo levo, znesek desno */
.checkout-total-row {
  display: flex !important;
  justify-content: space-between !important; /* To potisne znesek na desno */
  align-items: center !important;
  width: 100% !important;
  padding: 8px 0 !important;
}

/* Skupni znesek naj bo še bolj poudarjen na desni */
.checkout-total-strong {
  border-top: 2px solid rgba(0,0,0,0.05);
  margin-top: 10px;
  padding-top: 15px !important;
  font-weight: 800;
  font-size: 1.1rem;
}

/* Desna poravnava za cene v košarici */
#checkout-shipping, 
#checkout-total {
  text-align: right !important;
  min-width: 80px; /* Zagotovi prostor za ceno */
}
/* MOBILE: cart first */
@media (max-width: 980px){
  #checkout-section .checkout-layout{
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  #checkout-section .checkout-right{
    order: 1;
    position: static; /* da sticky ne nagaja */
  }

  #checkout-section .checkout-left{
    order: 2;
  }
}
.checkout-block + .checkout-block {
  margin-top: 2.6rem;
}
.mini-title {
  font-family: 'Baloo 2', cursive;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--navy-pajs, #16233b);
  margin-bottom: 1.1rem;
}

.pajs-footer-circle{
  overflow: hidden; /* da gradient/ozadje ne štrli čez robove */
}

/* ----- FOOTER THEME FIX: malina mora biti vidna ----- */

/* 1) default/malina (če je malina "default") */
body.theme-malina footer,
body:not(.theme-borovnica):not(.theme-jagoda) footer {
  background:
    radial-gradient(circle at 20% 35%, rgba(255, 111, 168, 0.32) 0%, transparent 46%),
    radial-gradient(circle at 58% 40%, rgba(255, 159, 191, 0.26) 0%, transparent 52%),
    radial-gradient(circle at 88% 70%, rgba(255, 111, 168, 0.16) 0%, transparent 58%),
    #fff4f8 !important;
}

/* 2) borovnica */
body.theme-borovnica footer{
  background:
    radial-gradient(circle at 20% 35%, rgba(63, 127, 255, 0.24) 0%, transparent 46%),
    radial-gradient(circle at 58% 40%, rgba(127, 178, 255, 0.22) 0%, transparent 52%),
    radial-gradient(circle at 88% 70%, rgba(63, 127, 255, 0.12) 0%, transparent 58%),
    #f3f6ff !important;
}

/* === JAGODA → ZELENA (listki vibe) === */
body.theme-jagoda footer{
  background:
    radial-gradient(circle at 18% 35%, rgba(120, 210, 140, 0.30) 0%, transparent 46%),
    radial-gradient(circle at 55% 40%, rgba(170, 235, 190, 0.26) 0%, transparent 52%),
    radial-gradient(circle at 88% 70%, rgba(110, 200, 135, 0.18) 0%, transparent 58%),
    #f3fff7 !important;
}


/* =========================
   FOOTER — FINAL OVERRIDE (place at very end of style.css)
   ========================= */

.pajs-footer-circle{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem; /* GLAVNI razmak med sekcijami (prej manj) */
  padding: 2.6rem 1.2rem 2.2rem; /* prej manj */
  border-top-left-radius: 40px;
  border-top-right-radius: 40px;
   overflow: hidden;
}

/* manjše social ikone */
.pajs-footer-circle .footer-social-circles{
  gap: 1.1rem;
  margin-bottom: 0.6rem;
  }

.pajs-footer-circle .footer-social-circles a{
  width: 48px;     /* prej cca 40 */
  height: 48px;
  font-size: 1.25rem;
  border-width: 2px;
  }

/* manjši footer meni */
.pajs-footer-circle .footer-nav-circles{
  gap: 2rem;
  margin-bottom: 8px;
}

.pajs-footer-circle .footer-nav-circles a{
   font-size: 0.95rem;
  font-weight: 600;
 }

/* manjši copyright */
.pajs-footer-circle .footer-copy{
  font-size: 0.9rem;
}
/* MOBILE: skrij header menu naslove */
@media (max-width: 768px) {
  .navbar-nav,
  .nav-links,
  .header-links {
    display: none !important;
  }
}
.pay-badge{
  display:inline-block;
  padding:6px 10px;
  border-radius:999px;
  font-weight:700;
  font-size:0.8rem;
  border:1px solid #ddd;
  background:#fafafa;
}
.pay-apple{ background:#000; color:#fff; border-color:#000; }

.pay-trr{ background:#f1fff6; border-color:#25d07f; color:#0b6b3a; }


/* payment badge */
.pay-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:6px 10px;
  border-radius:999px;
  font-weight:800;
  font-size:0.82rem;
  line-height:1;
  border:1px solid #ddd;
  background:#fafafa;
  white-space:nowrap;
}

.pay-trr{
  background:#f1fff6;
  border-color:#25d07f;
  color:#0b6b3a;
}


.pay-apple{
  background:#111;
  border-color:#111;
  color:#fff;
}

.pay-online{
  background:#f5f5f5;
  border-color:#e0e0e0;
  color:#333;
}
/* MOBILE: shrink CTA "Naroči zdaj" */
@media (max-width: 520px) {
  .nav-cta, 
  #nav-cta, 
  .btn-order {                 /* uporabi tisti selector, ki ga imaš dejansko */
    font-size: 0.95rem;
    padding: 8px 12px;
    border-radius: 999px;
    line-height: 1;
    min-height: 36px;
    max-width: 120px;          /* po želji: 110–140 */
    white-space: nowrap;
  }

  /* če je CTA v flex vrstici in se razteza */
  .nav-actions .nav-cta,
  .nav-actions #nav-cta,
  .nav-actions .btn-order {
    flex: 0 0 auto;            /* ne dovoli stretch */
  }
}
.checkout-submit-btn i,
.checkout-submit-btn .icon{
  margin-right: 10px;
}
.checkout-submit-btn svg{
  margin-right: 10px;
}




