    :root {
      --cream:     #fdf6ec;
      --warm:      #f5e8d0;
      --blush:     #f2d4c0;
      --rose:      #c97d5e;
      --choco:     #3d1a0a;
      --dark:      #2a1206;
      --gold:      #c8943a;
      --muted:     #9a7058;
      --light-txt: #7a5a42;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; font-size: 16px; }
    body {
      font-family: 'Nunito', sans-serif;
      background: var(--cream);
      color: var(--choco);
      overflow-x: hidden;
    }

    /* ─── NAV ─── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 200;
      display: flex; justify-content: space-between; align-items: center;
      padding: 0.9rem 3rem;
      background: rgba(253,246,236,0.92);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid rgba(200,148,58,0.2);
      transition: box-shadow 0.3s;
    }
    nav.scrolled { box-shadow: 0 2px 20px rgba(61,26,10,0.1); }

    .logo {
      display: flex; align-items: center; gap: 0.5rem;
      text-decoration: none;
    }
    .logo-text {
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: 1.7rem; font-weight: 700;
      color: var(--choco);
      line-height: 1;
    }
    .logo-text span { color: var(--rose); }
    .logo-icon { font-size: 1.4rem; }

    .nav-links { display: flex; gap: 2rem; list-style: none; }
    .nav-links a {
      text-decoration: none;
      font-size: 0.82rem; font-weight: 600;
      letter-spacing: 0.08em; text-transform: uppercase;
      color: var(--muted);
      transition: color 0.3s;
      position: relative;
    }
    .nav-links a::after {
      content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
      height: 2px; background: var(--rose);
      transform: scaleX(0); transition: transform 0.3s;
    }
    .nav-links a:hover { color: var(--rose); }
    .nav-links a:hover::after { transform: scaleX(1); }

    .nav-order {
      background: var(--rose); color: white;
      padding: 0.55rem 1.4rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.8rem; font-weight: 600;
      letter-spacing: 0.06em;
      transition: background 0.3s, transform 0.2s;
    }
    .nav-order:hover { background: var(--choco); transform: translateY(-1px); }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      padding: 4px;
    }
    .hamburger span {
      display: block; width: 24px; height: 2px;
      background: var(--choco); border-radius: 2px;
      transition: all 0.3s;
    }

    /* ─── HERO ─── */
    .hero {
      min-height: 100vh;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      padding-top: 64px;
      overflow: hidden;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 5rem 4rem 5rem 5rem;
      background: var(--cream);
      position: relative;
      z-index: 1;
    }

    .hero-left::after {
      content: '';
      position: absolute;
      right: -40px; top: 0; bottom: 0;
      width: 80px;
      background: var(--cream);
      transform: skewX(-3deg);
      z-index: 2;
    }

    .hero-eyebrow {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--rose);
      font-weight: 600;
      margin-bottom: 1.2rem;
      opacity: 0;
      animation: slideIn 0.8s 0.2s ease both;
    }

    .hero-title {
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: clamp(2.8rem, 5vw, 4.5rem);
      font-weight: 700;
      color: var(--choco);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      opacity: 0;
      animation: slideIn 0.8s 0.4s ease both;
    }
    .hero-title .accent { color: var(--rose); }

    .hero-bio {
      font-size: 1.05rem;
      color: var(--light-txt);
      line-height: 1.85;
      font-weight: 400;
      margin-bottom: 2.5rem;
      max-width: 420px;
      opacity: 0;
      animation: slideIn 0.8s 0.6s ease both;
    }

    .hero-cta {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: var(--rose);
      color: white;
      padding: 1rem 2.2rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.95rem;
      font-weight: 600;
      box-shadow: 0 8px 30px rgba(201,125,94,0.35);
      transition: transform 0.3s, box-shadow 0.3s, background 0.3s;
      opacity: 0;
      animation: slideIn 0.8s 0.8s ease both;
      align-self: flex-start;
    }
    .hero-cta:hover {
      transform: translateY(-3px);
      box-shadow: 0 14px 40px rgba(201,125,94,0.45);
      background: var(--choco);
    }

    .hero-right {
      position: relative;
      overflow: hidden;
    }

    .hero-img {
      width: 100%; height: 100%;
      object-fit: cover;
      object-position: center top;
      transform: scale(1.08);
      transition: transform 0.1s linear;
    }

    .hero-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to right, var(--cream) 0%, transparent 20%);
    }

    /* ─── SECTION COMMON ─── */
    .section-label {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--rose);
      font-weight: 600;
      margin-bottom: 0.6rem;
    }

    .section-title {
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 700;
      color: var(--choco);
      line-height: 1.2;
      margin-bottom: 0.8rem;
    }

    .section-sub {
      font-size: 0.95rem;
      color: var(--light-txt);
      line-height: 1.8;
      max-width: 520px;
    }

    /* ─── PARALLAX STRIP ─── */
    .parallax-strip {
      height: 380px;
      position: relative;
      overflow: hidden;
    }

    .parallax-img {
      position: absolute;
      width: 100%; height: 140%;
      top: -20%;
      object-fit: cover;
      will-change: transform;
    }

    .parallax-overlay {
      position: absolute; inset: 0;
      background: rgba(61,26,10,0.45);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .parallax-text {
      text-align: center;
      color: white;
    }

    .parallax-text h2 {
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: clamp(2.2rem, 5vw, 4rem);
      font-weight: 700;
      line-height: 1.15;
      text-shadow: 0 2px 20px rgba(0,0,0,0.4);
      margin-bottom: 0.5rem;
    }

    .parallax-text p {
      font-size: 1rem;
      opacity: 0.85;
      letter-spacing: 0.06em;
    }

    /* ─── QUALITY STRIP ─── */
    .quality-strip {
      padding: 5rem 2rem;
      background: var(--warm);
      text-align: center;
    }

    .quality-header {
      margin-bottom: 3rem;
    }

    .quality-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 1.5rem;
      max-width: 1000px;
      margin: 0 auto;
    }

    .quality-badge {
      background: white;
      border-radius: 16px;
      padding: 2rem 1.2rem;
      box-shadow: 0 4px 16px rgba(61,26,10,0.06);
      transition: transform 0.3s;
    }
    .quality-badge:hover { transform: translateY(-4px); }

    .quality-icon { font-size: 2.4rem; margin-bottom: 0.8rem; }
    .quality-title {
      font-weight: 700;
      font-size: 0.92rem;
      color: var(--choco);
      margin-bottom: 0.3rem;
    }
    .quality-sub {
      font-size: 0.8rem;
      color: var(--muted);
    }

    /* ─── ABOUT ─── */
    .about-section {
      padding: 6rem 2rem;
      background: var(--cream);
    }

    .about-layout {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1.2fr 1fr;
      gap: 4rem;
      align-items: center;
    }

    .about-bio {
      font-size: 1rem;
      color: var(--light-txt);
      line-height: 1.85;
      margin-bottom: 1.2rem;
    }

    .about-img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
      aspect-ratio: 4/5;
      box-shadow: 0 12px 40px rgba(61,26,10,0.12);
    }

    /* ─── ASORTIMAN ─── */
    #asortiman {
      padding: 6rem 2rem;
      background: var(--cream);
    }

    .asortiman-header {
      text-align: center;
      margin-bottom: 4rem;
    }

    .products-grid {
      display: flex;
      justify-content: center;
      gap: 1.5rem;
      max-width: 1200px;
      margin: 0 auto;
      flex-wrap: wrap;
    }

    .product-card {
      background: white;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(61,26,10,0.07);
      transition: transform 0.4s ease, box-shadow 0.4s ease;
      cursor: default;
      width: calc(25% - 1.2rem);
      display: flex;
      flex-direction: column;
    }
    .product-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 16px 48px rgba(61,26,10,0.14);
    }

    .product-img {
      width: 100%; height: 200px;
      object-fit: cover;
      object-position: center;
      display: block;
    }

    .product-body {
      padding: 1.4rem;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .product-desc {
      flex: 1;
    }

    .product-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }

    .product-name {
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--choco);
      margin-bottom: 0.5rem;
    }

    .product-desc {
      font-size: 0.85rem;
      color: var(--light-txt);
      line-height: 1.7;
    }

    .product-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-top: 0.8rem;
    }

    .tag {
      display: inline-block;
      padding: 0.25rem 0.7rem;
      border-radius: 50px;
      font-size: 0.7rem;
      font-weight: 600;
      letter-spacing: 0.02em;
    }

    .tag-posni {
      background: rgba(201,125,94,0.12);
      color: var(--rose);
    }

    .tag-gluten {
      background: rgba(154,112,88,0.1);
      color: var(--muted);
    }

    .tag-no-gluten {
      background: rgba(76,153,96,0.12);
      color: #3d8b4f;
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      padding: 5rem 2rem;
      background: linear-gradient(135deg, var(--choco) 0%, #6b2d14 100%);
      text-align: center;
      position: relative;
      overflow: hidden;
    }

    .cta-banner::before {
      content: '🍪';
      position: absolute;
      font-size: 12rem;
      opacity: 0.04;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
    }

    .cta-banner-label {
      font-size: 0.72rem;
      letter-spacing: 0.25em;
      text-transform: uppercase;
      color: var(--blush);
      font-weight: 600;
      margin-bottom: 1rem;
    }

    .cta-banner h2 {
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: clamp(2.2rem, 5vw, 3.8rem);
      font-weight: 700;
      color: var(--cream);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .cta-banner p {
      color: var(--blush);
      font-size: 1rem;
      margin-bottom: 2.5rem;
      max-width: 480px;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.7;
    }

    .cta-btn {
      display: inline-flex;
      align-items: center; gap: 0.6rem;
      background: var(--rose);
      color: white;
      padding: 1.1rem 2.8rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 1rem; font-weight: 700;
      box-shadow: 0 8px 30px rgba(201,125,94,0.4);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .cta-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 48px rgba(201,125,94,0.5);
    }

    /* ─── TESTIMONIALS ─── */
    #misljenja {
      padding: 6rem 0;
      background: var(--warm);
      overflow: hidden;
    }

    .testimonials-header {
      text-align: center;
      margin-bottom: 4rem;
      padding: 0 2rem;
    }

    .stars { font-size: 1rem; color: var(--gold); margin-bottom: 0.4rem; letter-spacing: 2px; }

    .carousel-outer {
      position: relative;
    }

    .carousel-outer::before,
    .carousel-outer::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 100px;
      z-index: 3;
      pointer-events: none;
    }
    .carousel-outer::before {
      left: 0;
      background: linear-gradient(to right, var(--warm), transparent);
    }
    .carousel-outer::after {
      right: 0;
      background: linear-gradient(to left, var(--warm), transparent);
    }

    .carousel-wrapper {
      overflow: visible;
      padding: 20px 0;
    }

    .carousel-track {
      display: flex;
      gap: 1.5rem;
      width: max-content;
      animation: marquee 40s linear infinite;
      cursor: grab;
      user-select: none;
    }

    @keyframes marquee {
      0%   { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .testimonial-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 4px 20px rgba(61,26,10,0.07);
      position: relative;
      width: 340px;
      flex-shrink: 0;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .testimonial-card:hover {
      transform: scale(1.06);
      box-shadow: 0 16px 48px rgba(61,26,10,0.16);
      z-index: 3;
    }

    .testimonial-card::before {
      content: '"';
      position: absolute;
      top: 1rem; right: 1.5rem;
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: 5rem;
      color: var(--blush);
      line-height: 1;
    }

    .testimonial-text {
      font-size: 0.95rem;
      color: var(--light-txt);
      line-height: 1.8;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex; align-items: center; gap: 0.8rem;
    }

    .author-avatar {
      width: 42px; height: 42px;
      border-radius: 50%;
      background: var(--blush);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
      flex-shrink: 0;
    }

    .author-name { font-weight: 700; font-size: 0.9rem; color: var(--choco); }
    .author-detail { font-size: 0.75rem; color: var(--muted); }

    /* ─── INSTAGRAM ─── */
    #instagram {
      padding: 5rem 2rem;
      background: var(--cream);
      text-align: center;
    }

    .ig-handle {
      display: inline-flex;
      align-items: center; gap: 0.5rem;
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: 2rem;
      font-weight: 700;
      text-decoration: none;
      margin-bottom: 0.5rem;
      display: block;
    }

    .ig-sub {
      font-size: 0.85rem;
      color: var(--muted);
      margin-bottom: 2.5rem;
    }

    .ig-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0.5rem;
      max-width: 700px;
      margin: 0 auto 2.5rem;
    }

    .ig-tile {
      aspect-ratio: 1;
      overflow: hidden;
      border-radius: 8px;
      position: relative;
    }

    .ig-tile img {
      width: 100%; height: 100%;
      object-fit: cover;
      transition: transform 0.4s;
    }
    .ig-tile:hover img { transform: scale(1.08); }

    .ig-tile-overlay {
      position: absolute; inset: 0;
      background: rgba(61,26,10,0.3);
      opacity: 0;
      transition: opacity 0.3s;
      display: flex; align-items: center; justify-content: center;
      color: white; font-size: 1.5rem;
    }
    .ig-tile:hover .ig-tile-overlay { opacity: 1; }

    .ig-follow-btn {
      display: inline-flex;
      align-items: center; gap: 0.6rem;
      border: 2px solid;
      border-image: linear-gradient(45deg, #f09433, #dc2743, #bc1888) 1;
      padding: 0.8rem 2rem;
      font-size: 0.9rem; font-weight: 600;
      color: var(--choco);
      text-decoration: none;
      transition: all 0.3s;
      border-radius: 50px;
      border-image: none;
      border-color: #dc2743;
    }
    .ig-follow-btn:hover {
      background: linear-gradient(45deg, #f09433, #dc2743);
      color: white;
      border-color: transparent;
    }

    /* ─── CONTACT/ORDER ─── */
    #kontakt {
      padding: 6rem 2rem;
      background: var(--choco);
    }

    .contact-layout {
      max-width: 1000px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 1fr 1.4fr;
      gap: 5rem;
      align-items: start;
    }

    .contact-left { color: var(--cream); }
    .contact-left .section-label { color: var(--rose); }
    .contact-left .section-title { color: var(--cream); }
    .contact-left .section-sub { color: var(--blush); max-width: 320px; margin-bottom: 2rem; }

    .contact-info {
      display: flex; flex-direction: column; gap: 1rem;
    }

    .contact-item {
      display: flex; align-items: center; gap: 0.8rem;
      font-size: 0.92rem; color: var(--blush);
    }

    .contact-item a {
      color: var(--blush); text-decoration: none;
      transition: color 0.3s;
    }
    .contact-item a:hover { color: var(--rose); }

    .contact-item-icon {
      width: 36px; height: 36px;
      border: 1px solid rgba(201,125,94,0.3);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.9rem; flex-shrink: 0;
    }

    .order-form {
      background: white;
      border-radius: 24px;
      padding: 2.5rem;
      box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    }

    .form-title {
      font-family: 'Dancing Script', 'Georgia', serif;
      font-size: 1.8rem; font-weight: 700;
      color: var(--choco);
      margin-bottom: 1.5rem;
    }

    .field { margin-bottom: 1rem; }

    .field label {
      display: block;
      font-size: 0.72rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--muted);
      font-weight: 600;
      margin-bottom: 0.35rem;
    }

    .field input,
    .field textarea,
    .field select {
      width: 100%;
      border: 1.5px solid var(--blush);
      border-radius: 10px;
      padding: 0.75rem 1rem;
      font-family: 'Nunito', sans-serif;
      font-size: 0.92rem;
      color: var(--choco);
      outline: none;
      background: var(--cream);
      transition: border-color 0.3s;
      appearance: none;
    }
    .field input:focus,
    .field textarea:focus,
    .field select:focus {
      border-color: var(--rose);
    }
    .field textarea { min-height: 90px; resize: vertical; }

    .field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .submit-btn {
      width: 100%;
      background: var(--rose);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 1rem;
      font-family: 'Nunito', sans-serif;
      font-size: 0.95rem;
      font-weight: 700;
      cursor: pointer;
      transition: background 0.3s, transform 0.2s;
      margin-top: 0.5rem;
    }
    .submit-btn:hover {
      background: var(--choco);
      transform: translateY(-2px);
    }

    .success-msg {
      display: none;
      text-align: center;
      color: var(--rose);
      font-weight: 600;
      margin-top: 1rem;
      font-size: 0.9rem;
    }

    .date-error {
      display: none;
      color: #c0392b;
      font-size: 0.78rem;
      margin-top: 0.3rem;
      font-weight: 600;
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      padding: 2rem 3rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 1rem;
    }

    .footer-logo { font-family: 'Dancing Script', 'Georgia', serif; font-size: 1.5rem; color: var(--cream); }
    .footer-logo span { color: var(--rose); }
    .footer-copy { font-size: 0.75rem; color: var(--muted); }

    /* ─── ANIMATIONS ─── */
    @keyframes slideIn {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* stagger children */
    .stagger > * {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }
    .stagger.visible > * { opacity: 1; transform: translateY(0); }
    .stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
    .stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
    .stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
    .stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }

    /* Floating decorative dots */
    .dots-bg {
      position: absolute; inset: 0; pointer-events: none; overflow: hidden;
    }
    .dot {
      position: absolute;
      border-radius: 50%;
      background: var(--blush);
      opacity: 0.25;
      animation: float linear infinite;
    }
    @keyframes float {
      0%   { transform: translateY(0) rotate(0deg); }
      100% { transform: translateY(-100vh) rotate(360deg); }
    }

    /* ─── FAQ ─── */
    #faq {
      padding: 6rem 2rem;
      background: var(--cream);
    }

    .faq-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .faq-list {
      max-width: 700px;
      margin: 0 auto;
    }

    .faq-item {
      border-bottom: 1px solid var(--blush);
    }

    .faq-question {
      width: 100%;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1.3rem 0;
      background: none;
      border: none;
      cursor: pointer;
      font-family: 'Nunito', sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--choco);
      text-align: left;
      transition: color 0.3s;
    }
    .faq-question:hover { color: var(--rose); }

    .faq-toggle {
      font-size: 1.4rem;
      font-weight: 300;
      color: var(--rose);
      transition: transform 0.3s;
      flex-shrink: 0;
      margin-left: 1rem;
    }

    .faq-item.open .faq-toggle { transform: rotate(45deg); }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.35s ease;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
    }

    .faq-answer p {
      padding: 0 0 1.3rem;
      font-size: 0.92rem;
      color: var(--light-txt);
      line-height: 1.8;
    }

    /* ─── WHATSAPP ─── */
    .wa-order-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      background: #25D366;
      color: white;
      padding: 0.8rem 1.6rem;
      border-radius: 50px;
      text-decoration: none;
      font-size: 0.88rem;
      font-weight: 600;
      margin-top: 0.8rem;
      transition: background 0.3s, transform 0.2s;
    }
    .wa-order-btn:hover {
      background: #1da851;
      transform: translateY(-2px);
    }
    .wa-icon { flex-shrink: 0; }

    .floating-wa {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      width: 56px;
      height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 4px 20px rgba(37,211,102,0.4);
      z-index: 100;
      transition: transform 0.3s, box-shadow 0.3s;
      animation: fadeInUp 0.6s 1s ease both;
    }
    .floating-wa:hover {
      transform: scale(1.1);
      box-shadow: 0 6px 28px rgba(37,211,102,0.5);
    }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(20px); }
      to   { opacity: 1; transform: translateY(0); }
    }

    /* ─── MOBILE CTA ─── */
    .mobile-cta {
      display: none;
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1024px) {
      .product-card { width: calc(50% - 0.75rem); }
      .ig-grid { grid-template-columns: repeat(3, 1fr); }
      .quality-grid { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      nav { padding: 0.9rem 1.2rem; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex; flex-direction: column;
        position: fixed; top: 56px; left: 0; right: 0;
        background: rgba(253,246,236,0.98);
        padding: 1.5rem 2rem;
        gap: 1.2rem;
        border-bottom: 1px solid var(--blush);
      }
      .hamburger { display: flex; }
      .nav-order { font-size: 0.72rem; padding: 0.45rem 1rem; }

      .hero {
        grid-template-columns: 1fr;
        min-height: auto;
      }
      .hero-left {
        padding: 4rem 1.5rem 2.5rem;
        order: 2;
      }
      .hero-left::after { display: none; }
      .hero-right {
        order: 1;
        height: 55vw;
        min-height: 240px;
      }

      .contact-layout {
        grid-template-columns: 1fr;
        gap: 2.5rem;
      }
      .product-card { width: calc(50% - 0.75rem); }
      .quality-grid { grid-template-columns: repeat(2, 1fr); }
      .testimonial-card { width: 280px; }
      .ig-grid { grid-template-columns: repeat(2, 1fr); }
      .field-row { grid-template-columns: 1fr; }
      footer { flex-direction: column; text-align: center; padding: 1.5rem; }
      .about-layout { grid-template-columns: 1fr; gap: 2rem; }
      .about-image { order: -1; }

      .mobile-cta {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 90;
        padding: 0.8rem 1rem;
        background: rgba(253,246,236,0.95);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(200,148,58,0.2);
        transform: translateY(100%);
        transition: transform 0.4s ease;
      }
      .mobile-cta.visible {
        display: block;
        transform: translateY(0);
      }
      .mobile-cta-btn {
        display: block;
        background: var(--rose);
        color: white;
        text-align: center;
        padding: 0.9rem;
        border-radius: 50px;
        text-decoration: none;
        font-size: 0.95rem;
        font-weight: 700;
        box-shadow: 0 4px 16px rgba(201,125,94,0.3);
      }
      .floating-wa {
        bottom: 5.5rem;
      }
    }

    @media (max-width: 480px) {
      .product-card { width: 100%; }
      .parallax-strip { height: 260px; }
      .quality-grid { grid-template-columns: 1fr; }
    }
