  :root {
    --orange: #FF6B35;
    --orange-dark: #E85A24;
    --orange-light: #FFE0B2;
    --brown: #5D4037;
    --brown-dark: #3E2723;
    --cream: #FFFBF5;
    --gold: #FFD166;
    --green: #06D6A0;
    --radius: 24px;
  }

  * { margin:0; padding:0; box-sizing:border-box }
  html { scroll-behavior:smooth }
  body { font-family:'Nunito',sans-serif; background:var(--cream); color:#2D2D2D; overflow-x:hidden }

  /* ===== NAV ===== */
  nav {
    background:rgba(255,255,255,.95);
    backdrop-filter:blur(12px);
    border-bottom:2px solid var(--orange-light);
    padding:.9rem 2.5rem;
    display:flex;
    justify-content:space-between;
    align-items:center;
    position:sticky;
    top:0;
    z-index:200;
    box-shadow:0 2px 20px rgba(255,107,53,.08);
  }
  .nav-logo { font-family:'Pacifico',cursive; font-size:1.4rem; color:var(--orange) }
  .nav-links { display:flex; gap:1.5rem; list-style:none }
  .nav-links a { text-decoration:none; font-size:.9rem; font-weight:700; color:var(--brown); transition:color .2s }
  .nav-links a:hover { color:var(--orange) }
  .nav-cta {
    background:var(--orange);
    color:#fff;
    border:none;
    padding:10px 22px;
    border-radius:50px;
    font-size:.9rem;
    font-weight:800;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    transition:transform .2s, box-shadow .2s;
  }
  .nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(255,107,53,.4) }

  /* ===== HERO ===== */
  .hero {
    background:linear-gradient(135deg,#FFF3E0 0%,#FFE0B2 50%,#FFCCBC 100%);
    padding:0;
    position:relative;
    overflow:hidden;
  }
  .hero::before {
    content:'';
    position:absolute;
    width:600px; height:600px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(255,107,53,.12), transparent 70%);
    top:-200px; right:-200px;
    pointer-events:none;
  }
  .hero-inner {
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:4rem 2.5rem 2rem;
    gap:2rem;
    max-width:1100px;
    margin:0 auto;
  }
  .hero-badge {
    display:inline-block;
    background:var(--orange);
    color:#fff;
    font-size:11px;
    font-weight:700;
    letter-spacing:1.5px;
    padding:7px 16px;
    border-radius:20px;
    text-transform:uppercase;
    margin-bottom:1.2rem;
    animation:fadeDown .6s ease-out;
  }
  @keyframes fadeDown { from{opacity:0;transform:translateY(-10px)} to{opacity:1;transform:translateY(0)} }
  .hero h1 {
    font-family:'Pacifico',cursive;
    font-size:3rem;
    line-height:1.15;
    color:#BF360C;
    margin-bottom:.85rem;
    animation:fadeUp .7s ease-out .1s both;
  }
  .hero h1 span { color:var(--orange) }
  @keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
  .hero-sub { font-size:1.05rem; color:var(--brown); line-height:1.75; margin-bottom:1.75rem; font-weight:600; animation:fadeUp .7s ease-out .2s both }
  .hero-btns { display:flex; gap:.75rem; flex-wrap:wrap; animation:fadeUp .7s ease-out .3s both }
  .btn-primary {
    background:var(--orange);
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:50px;
    font-size:1rem;
    font-weight:800;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    text-decoration:none;
    display:inline-block;
    transition:transform .2s,box-shadow .2s;
  }
  .btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(255,107,53,.4) }
  .btn-outline {
    background:transparent;
    color:var(--orange);
    border:2.5px solid var(--orange);
    padding:12px 26px;
    border-radius:50px;
    font-size:1rem;
    font-weight:700;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    transition:background .2s,color .2s;
  }
  .btn-outline:hover { background:var(--orange); color:#fff }

  .hero-img-wrap {
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
    height:320px;
    animation:fadeUp .8s ease-out .2s both;
  }
  /* Real product photo in hero */
  .hero-product-img {
    width:280px;
    height:280px;
    border-radius:50%;
    object-fit:cover;
    box-shadow:0 20px 60px rgba(255,107,53,.4);
    animation:float 3.5s ease-in-out infinite;
    border:6px solid #fff;
  }
  @keyframes float{0%,100%{transform:translateY(0)}50%{transform:translateY(-14px)}}
  .bubble {
    position:absolute;
    background:#fff;
    border-radius:16px;
    padding:9px 16px;
    font-size:12px;
    font-weight:800;
    box-shadow:0 6px 20px rgba(0,0,0,.12);
    animation:popIn .6s ease-out both;
    white-space:nowrap;
  }
  @keyframes popIn{from{transform:scale(0);opacity:0}to{transform:scale(1);opacity:1}}
  .bubble.b1{top:20px;right:10px;color:var(--orange);animation-delay:.5s}
  .bubble.b2{bottom:40px;left:0;color:var(--green);animation-delay:.7s}
  .bubble.b3{top:110px;left:-10px;color:#118AB2;animation-delay:.9s}

  .wave { width:100%; height:70px; overflow:hidden }
  .wave svg { display:block }

  /* ===== TRUST BAR ===== */
  .trust-bar {
    background:#fff;
    border-top:2px solid var(--orange-light);
    border-bottom:2px solid var(--orange-light);
    padding:1.4rem 2.5rem;
    display:flex;
    justify-content:space-around;
    align-items:center;
    flex-wrap:wrap;
    gap:1rem;
  }
  .trust-item { display:flex; align-items:center; gap:.6rem; font-size:.9rem; font-weight:800; color:var(--brown) }
  .trust-icon { font-size:1.6rem }

  /* ===== SECTIONS ===== */
  .section { padding:3.5rem 2.5rem; max-width:1100px; margin:0 auto }
  .section-wrap { padding:3.5rem 0 }
  .section-title { font-family:'Pacifico',cursive; font-size:2rem; text-align:center; color:#BF360C; margin-bottom:.5rem }
  .section-sub { text-align:center; color:#795548; font-size:1rem; margin-bottom:2.5rem; font-weight:600 }

  /* ===== FEATURES ===== */
  .features { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
  .feat-card {
    background:#fff;
    border-radius:var(--radius);
    padding:2rem 1.5rem;
    text-align:center;
    border:2px solid var(--orange-light);
    transition:transform .25s,box-shadow .25s;
  }
  .feat-card:hover { transform:translateY(-6px); box-shadow:0 12px 32px rgba(255,107,53,.18) }
  .feat-icon { font-size:3rem; margin-bottom:1rem }
  .feat-card h3 { font-size:1.05rem; font-weight:900; color:#BF360C; margin-bottom:.5rem }
  .feat-card p { font-size:.88rem; color:#795548; line-height:1.7 }

  /* ===== PHOTO GALLERY ===== */
  .gallery-bg { background:linear-gradient(180deg,#FFF9F0,#FFF3E0) }
  .gallery-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    grid-template-rows:auto auto;
    gap:1rem;
  }
  .gallery-item {
    border-radius:20px;
    overflow:hidden;
    cursor:pointer;
    position:relative;
    border:3px solid #fff;
    box-shadow:0 4px 20px rgba(0,0,0,.1);
    transition:transform .3s, box-shadow .3s;
  }
  .gallery-item:hover { transform:scale(1.03); box-shadow:0 12px 40px rgba(255,107,53,.25) }
  .gallery-item.featured {
    grid-column:1 / 3;
    grid-row:1 / 2;
  }
  .gallery-item img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    transition:transform .4s;
  }
  .gallery-item:hover img { transform:scale(1.06) }
  .gallery-item .overlay {
    position:absolute;
    inset:0;
    background:linear-gradient(to top, rgba(191,54,12,.7) 0%, transparent 60%);
    opacity:0;
    transition:opacity .3s;
    display:flex;
    align-items:flex-end;
    padding:1.2rem;
  }
  .gallery-item:hover .overlay { opacity:1 }
  .overlay-label {
    color:#fff;
    font-weight:800;
    font-size:.95rem;
    display:flex;
    align-items:center;
    gap:.5rem;
  }
  .gallery-item.featured { height:300px }
  .gallery-item:not(.featured) { height:200px }
  .gallery-item.tall { grid-row:1 / 3; height:100% }

  /* Lightbox */
  .lightbox {
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.9);
    z-index:1000;
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:1rem;
    padding:2rem;
  }
  .lightbox.active { display:flex }
  .lightbox img {
    max-width:90vw;
    max-height:75vh;
    border-radius:16px;
    object-fit:contain;
    box-shadow:0 20px 60px rgba(0,0,0,.5);
  }
  .lightbox-caption {
    color:#fff;
    font-weight:700;
    font-size:1.1rem;
    text-align:center;
  }
  .lightbox-close {
    position:absolute;
    top:1.5rem;
    right:2rem;
    background:rgba(255,255,255,.15);
    border:2px solid rgba(255,255,255,.3);
    color:#fff;
    width:44px;
    height:44px;
    border-radius:50%;
    font-size:1.3rem;
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
    font-family:'Nunito',sans-serif;
    font-weight:900;
    transition:background .2s;
  }
  .lightbox-close:hover { background:rgba(255,107,53,.6) }

  /* ===== PRODUCTS ===== */
  .products-bg { background:linear-gradient(180deg,#FFF3E0,#FFF9F5) }
  .products { display:grid; grid-template-columns:repeat(3,1fr); gap:1.5rem }
  @media(max-width:900px){ .products { grid-template-columns:repeat(2,1fr) } }
  .prod-card {
    background:#fff;
    border-radius:var(--radius);
    overflow:hidden;
    border:2px solid var(--orange-light);
    position:relative;
    transition:transform .25s,box-shadow .25s;
  }
  .prod-card:hover { transform:translateY(-6px); box-shadow:0 16px 40px rgba(0,0,0,.12) }
  .prod-badge {
    position:absolute;
    top:14px;
    right:14px;
    background:var(--orange);
    color:#fff;
    font-size:10px;
    font-weight:800;
    padding:5px 12px;
    border-radius:20px;
    letter-spacing:.5px;
    z-index:2;
  }
  .prod-img-wrap {
    width:100%;
    aspect-ratio:1 / 1;
    overflow:hidden;
    position:relative;
  }
  .prod-img-wrap img {
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .4s;
  }
  .prod-card:hover .prod-img-wrap img { transform:scale(1.08) }
  .prod-img-fallback {
    height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:4rem;
  }
  .prod-info { padding:1.25rem }
  .prod-info h3 { font-weight:900; font-size:1rem; color:#4E342E; margin-bottom:.35rem }
  .prod-info p { font-size:.85rem; color:#8D6E63; margin-bottom:.85rem; line-height:1.6 }
  .prod-footer { display:flex; justify-content:space-between; align-items:center }
  .prod-price { font-family:'Pacifico',cursive; color:var(--orange); font-size:1.25rem }
  .prod-price-old { font-family:'Nunito',sans-serif; font-size:.78rem; color:#BDBDBD; text-decoration:line-through; margin-left:6px }
  .btn-buy {
    background:var(--orange);
    color:#fff;
    border:none;
    padding:8px 16px;
    border-radius:20px;
    font-size:.8rem;
    font-weight:800;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    transition:transform .2s;
  }
  .btn-buy:hover { transform:scale(1.05) }

  /* ===== TAB CARA BELI ===== */
  .tab-wrap {
    display:flex;
    justify-content:center;
    gap:.75rem;
    margin-bottom:2rem;
    flex-wrap:wrap;
  }
  .tab-btn {
    padding:12px 28px;
    border-radius:50px;
    font-size:1rem;
    font-weight:800;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    border:2.5px solid var(--orange);
    background:transparent;
    color:var(--orange);
    transition:background .2s, color .2s, box-shadow .2s, transform .2s;
  }
  .tab-btn.active {
    background:var(--orange);
    color:#fff;
    box-shadow:0 6px 20px rgba(255,107,53,.35);
    transform:translateY(-2px);
  }
  .tab-btn:not(.active):hover {
    background:var(--orange-light);
  }

  /* ===== STEPS ===== */
  .steps-bg { background:#FFF3E0 }
  .steps { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem }
  .step-card {
    background:#fff;
    border-radius:20px;
    padding:1.5rem 1.2rem;
    text-align:center;
    border:2px solid var(--orange-light);
    transition:transform .25s;
  }
  .step-card:hover { transform:translateY(-4px) }
  .step-num {
    width:40px; height:40px;
    background:var(--orange);
    color:#fff;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:1.1rem;
    font-weight:900;
    margin:0 auto 1rem;
  }
  .step-icon { font-size:2rem; margin-bottom:.6rem }
  .step-card h4 { font-size:.9rem; font-weight:900; color:#BF360C; margin-bottom:.35rem }
  .step-card p { font-size:.8rem; color:#795548; line-height:1.6 }

  /* ===== TESTIMONIALS ===== */
  .testimonials { display:grid; grid-template-columns:repeat(2,1fr); gap:1.5rem }
  .testi-card {
    background:#fff;
    border-radius:var(--radius);
    padding:1.75rem;
    border:2px solid var(--orange-light);
    transition:transform .25s, box-shadow .25s;
  }
  .testi-card:hover { transform:translateY(-3px); box-shadow:0 12px 30px rgba(255,107,53,.1) }
  .testi-stars { color:#FFD166; font-size:1.1rem; letter-spacing:2px; margin-bottom:.6rem }
  .testi-text { font-size:.92rem; color:var(--brown); line-height:1.75; font-style:italic; margin-bottom:1.1rem }
  .testi-author { display:flex; align-items:center; gap:.85rem }
  .avatar {
    width:44px; height:44px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:.85rem;
    font-weight:900;
    flex-shrink:0;
  }
  .testi-name { font-weight:800; font-size:.92rem; color:#4E342E }
  .testi-loc { font-size:.8rem; color:#A1887F; margin-top:2px }

  /* ===== STATS ===== */
  .stats-bg { background:linear-gradient(135deg,var(--orange),#FF8F00) }
  .stats { display:grid; grid-template-columns:repeat(4,1fr); gap:1rem }
  .stat-card { text-align:center; padding:2rem 1rem }
  .stat-num { font-family:'Pacifico',cursive; font-size:2.4rem; color:#fff; margin-bottom:.3rem }
  .stat-label { font-size:.85rem; color:rgba(255,255,255,.85); font-weight:700 }

  /* ===== CTA ===== */
  .cta-section {
    background:linear-gradient(135deg,#BF360C,var(--orange));
    padding:5rem 2.5rem;
    text-align:center;
    color:#fff;
    position:relative;
    overflow:hidden;
  }
  .cta-section::before{content:'🍜';position:absolute;font-size:10rem;opacity:.06;top:-30px;left:-30px;transform:rotate(-20deg)}
  .cta-section::after{content:'🍜';position:absolute;font-size:10rem;opacity:.06;bottom:-30px;right:-30px;transform:rotate(20deg)}
  .cta-section h2 { font-family:'Pacifico',cursive; font-size:2.4rem; margin-bottom:.85rem }
  .cta-section p { font-size:1rem; opacity:.9; margin-bottom:2rem; line-height:1.7 }
  .btn-white {
    background:#fff;
    color:var(--orange);
    border:none;
    padding:16px 40px;
    border-radius:50px;
    font-size:1.05rem;
    font-weight:900;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    transition:transform .2s, box-shadow .2s;
  }
  .btn-white:hover { transform:scale(1.05); box-shadow:0 12px 30px rgba(0,0,0,.2) }

  .btn-shopee {
    background:#EE4D2D;
    color:#fff;
    border:none;
    padding:14px 30px;
    border-radius:50px;
    font-size:1rem;
    font-weight:800;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    text-decoration:none;
    display:inline-block;
    transition:transform .2s,box-shadow .2s;
  }
  .btn-shopee:hover { transform:translateY(-2px); box-shadow:0 8px 20px rgba(238,77,45,.4) }
  .btn-buy-wa {
    background:#25D366 !important;
  }
  .btn-buy-wa:hover { background:#1db954 !important }
  .btn-shopee-cta {
    display:inline-block;
    background:rgba(255,255,255,.15);
    color:#fff;
    border:2.5px solid rgba(255,255,255,.6);
    padding:14px 32px;
    border-radius:50px;
    font-size:1rem;
    font-weight:800;
    cursor:pointer;
    font-family:'Nunito',sans-serif;
    transition:background .2s, border-color .2s;
  }
  .btn-shopee-cta:hover { background:rgba(255,255,255,.25); border-color:#fff }

  /* ===== FOOTER ===== */
  footer {
    background:var(--brown-dark);
    color:#D7CCC8;
    text-align:center;
    padding:2.5rem 2.5rem;
    font-size:.88rem;
    line-height:1.8;
  }
  footer strong { color:var(--gold) }
  .footer-links { display:flex; justify-content:center; gap:2rem; margin:1rem 0; flex-wrap:wrap }
  .footer-links a { color:#BCAAA4; text-decoration:none; font-size:.85rem; font-weight:600 }
  .footer-links a:hover { color:var(--gold) }

  /* ===== RESPONSIVE ===== */
  @media(max-width:768px){
    .hero-inner{grid-template-columns:1fr;text-align:center}
    .hero-img-wrap{height:240px;order:-1}
    .hero-product-img{width:200px;height:200px}
    .hero h1{font-size:2.1rem}
    .features,.products,.steps,.testimonials,.stats{grid-template-columns:1fr}
    nav .nav-links{display:none}
    .hero-btns{justify-content:center}
    .gallery-grid{grid-template-columns:1fr 1fr}
    .gallery-item.featured{grid-column:1 / 3}
    .gallery-item.tall{grid-row:auto;height:180px}
    .gallery-item:not(.featured){height:150px}
  }
  @media(max-width:480px){
    .gallery-grid{grid-template-columns:1fr}
    .gallery-item.featured,.gallery-item,.gallery-item.tall{grid-column:auto;height:200px}
  }
