/* ============================================
   1. ROOT & RESET VARIABLE
   ============================================ */
   *, *::before, *::after { 
    box-sizing: border-box; 
    margin: 0; 
    padding: 0; 
  }
  
  :root {
    --primary:        #F5A623;
    --primary-dark:   #D4881A;
    --dark:           #2C1A0E;
    --dark-2:         #3D2410;
    --cream:          #FFF8EE;
    --white:          #FFFFFF;
    --text:           #2C1A0E;
    --text-muted:     #7A5C3A;
    --border:         #EDD9B8;
    --shadow:         rgba(44, 26, 14, 0.08);
    --font-head:      'Playfair Display', Georgia, serif;
    --font-body:      'Plus Jakarta Sans', sans-serif;
    --radius:         16px;
    --radius-sm:      10px;
    --nav-h:          72px;
  }
  
  html { 
    scroll-behavior: smooth; 
  }
  
  body {
    font-family: var(--font-body);
    background: var(--cream);
    color: var(--text);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  /* ============================================
     2. GLOBAL LAYOUT & PAGE HEADER
     ============================================ */
  .main-content {
    flex: 1;
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 40px 24px;
    margin-top: var(--nav-h);
  }
  
  .section {
    display: none;
  }
  
  .section.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .page-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-label {
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary-dark);
    text-transform: uppercase;
    margin-bottom: 8px;
  }
  
  .section-title {
    font-family: var(--font-head);
    font-size: 2.5rem;
    color: var(--dark);
    font-weight: 900;
    margin-bottom: 12px;
  }
  
  .section-desc {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
  }
  
  /* ============================================
     3. NAVBAR COMPONENT
     ============================================ */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(44, 26, 14, 0.06);
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
  }
  
  .nav-container {
    max-width: 1200px;
    height: 100%;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
  }
  
  .brand-icon {
    font-size: 1.8rem;
  }
  
  .brand-name {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--dark);
  }
  
  .nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
  }
  
  .nav-item {
    text-decoration: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    padding: 8px 0;
    position: relative;
  }
  
  .nav-item:hover, .nav-item.active {
    color: var(--dark);
  }
  
  .nav-item::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
  }
  
  .nav-item:hover::after, .nav-item.active::after {
    width: 100%;
  }
  
  .btn-pesan {
    background: var(--dark);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-pesan:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 136, 26, 0.3);
  }
  
  .hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--dark);
    cursor: pointer;
  }
  
  /* ============================================
     4. HOME / PROFIL USAHA SECTION
     ============================================ */
  .hero {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
    background: var(--white);
    padding: 60px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(44, 26, 14, 0.03);
    margin-bottom: 40px;
  }
  
  .hero-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-dark);
    letter-spacing: 2px;
    margin-bottom: 12px;
  }
  
  .hero h1 {
    font-family: var(--font-head);
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.1;
    margin-bottom: 16px;
  }
  
  .hero-tagline {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
  }
  
  .hero-desc {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 32px;
  }
  
  .btn-hero {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 14px 32px;
    font-weight: 700;
    font-size: 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .btn-hero:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
  }
  
  .hero-banner-img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
  }
  
  /* MARQUEE TEXT RUNNING */
  .flavor-banner-container {
    background: var(--dark);
    color: var(--white);
    padding: 16px 0;
    border-radius: 14px;
    margin-bottom: 50px;
    overflow: hidden;
  }
  
  .flavor-banner-title {
    text-align: center;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
  }
  
  .flavor-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
  }
  
  .flavor-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
  }
  
  .flavor-item {
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0 30px;
  }
  
  @keyframes marquee {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-50%); }
  }
  
  /* CARDS PROFIL */
  .profil-section {
    margin-bottom: 60px;
  }
  
  .profil-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
  }
  
  .profil-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(44,26,14,0.04);
  }
  
  .profil-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .profil-card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--dark);
  }
  
  .profil-card p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
  }
  
  /* MENU SLIDER */
  .menu-slider-wrap {
    position: relative;
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .menu-slider-viewport {
    overflow: hidden;
    flex: 1;
  }
  .menu-grid {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(.4,0,.2,1);
    will-change: transform;
  }
  .menu-slider-btn {
    flex-shrink: 0;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: none;
    background: var(--primary, #D4881A);
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(212,136,26,0.3);
    transition: background 0.2s, transform 0.2s;
    display: flex; align-items: center; justify-content: center;
  }
  .menu-slider-btn:hover { background: #b8720e; transform: scale(1.08); }
  .menu-slider-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 18px;
  }
  .menu-slider-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: rgba(44,26,14,0.2); border: none; cursor: pointer;
    transition: all 0.3s;
  }
  .menu-slider-dot.active {
    background: #D4881A; width: 24px; border-radius: 8px;
  }
  
  .menu-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(44,26,14,0.04);
    flex: 0 0 260px;
    width: 260px;
  }
  
  .menu-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(44, 26, 14, 0.08);
  }
  
  .menu-card-img-wrap {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #fdfaf6;
  }
  
  .menu-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .menu-img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    background: linear-gradient(135deg, #fdf3e3, #f9e4c0);
    transition: transform 0.5s ease;
  }
  
  .menu-card:hover .menu-img {
    transform: scale(1.06);
  }
  
  .menu-card-body {
    padding: 20px;
  }
  
  .menu-card-name {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
  }
  
  .menu-card-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 16px;
    height: 38px;
    overflow: hidden;
  }
  
  .menu-card-prices {
    display: flex;
    gap: 10px;
  }
  
  .price-tag {
    flex: 1;
    background: var(--cream);
    padding: 6px;
    border-radius: 8px;
    text-align: center;
  }
  
  .price-tag.besar {
    background: #FFF3DC;
  }
  
  .price-tag .size {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
  }
  
  .price-tag .price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--dark);
  }
  
  /* ============================================
     5. PEMESANAN SECTION
     ============================================ */
  .order-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: start;
  }
  
  .order-form-wrap, .order-list-wrap {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius);
    box-shadow: 0 4px 25px rgba(0,0,0,0.02);
    border: 1px solid rgba(44,26,14,0.04);
  }
  
  .order-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  
  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  
  .form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark);
  }
  
  .form-group input, .form-group textarea, .form-group select {
    font-family: var(--font-body);
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: #FCF9F5;
    color: var(--dark);
    outline: none;
    transition: border-color 0.3s;
  }
  
  .form-group input:focus, .form-group textarea:focus, .form-group select:focus {
    border-color: var(--primary-dark);
  }
  
  .order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px dashed var(--border);
    margin-top: 10px;
  }
  
  .order-total span {
    font-weight: 700;
    color: var(--text-muted);
  }
  
  .order-total .total-price {
    font-size: 1.4rem;
    color: var(--primary-dark);
  }
  
  .btn-submit {
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 14px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .btn-submit:hover {
    background: var(--primary-dark);
    color: var(--white);
  }
  
  /* REALTIME FEED ANTREAN */
  .order-list-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--dark);
  }
  
  .order-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-height: 480px;
    overflow-y: auto;
    padding-right: 6px;
  }
  
  .order-item {
    background: var(--cream);
    padding: 16px;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--primary-dark);
  }
  
  /* ============================================
     6. TOKO KAMI (KONTAK) SECTION
     ============================================ */
  .kontak-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
  
  .kontak-card {
    background: var(--white);
    padding: 32px 24px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.02);
    border: 1px solid rgba(44,26,14,0.04);
  }
  
  .kontak-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
  }
  
  .kontak-card h3 {
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 8px;
  }
  
  .kontak-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 20px;
  }
  
  .btn-kontak {
    display: inline-block;
    text-decoration: none;
    background: var(--dark);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 20px;
    transition: all 0.3s;
  }
  
  .btn-kontak:hover {
    background: var(--primary);
    color: var(--dark);
  }
  
  /* ============================================
     7. DATA PENJUALAN SECTION (MODERN DASHBOARD)
     ============================================ */
  .stats-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
  }
  
  .stat-card {
    background: var(--white);
    border: 1px solid rgba(44, 26, 14, 0.06);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(44, 26, 14, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(44, 26, 14, 0.08);
  }
  
  .stat-card.revenue {
    background: linear-gradient(135deg, #FFFDF7 0%, #FFF5E1 100%);
    border-color: var(--border);
  }
  
  .stat-card.beller {
    background: linear-gradient(135deg, #FFF8EE 0%, #FFEED4 100%);
    border-color: var(--primary);
  }
  
  .stat-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
  }
  
  .stat-icon-wrap {
    font-size: 1.4rem;
    background: var(--cream);
    padding: 6px 10px;
    border-radius: 10px;
  }
  
  .stat-card.revenue .stat-icon-wrap { 
    background: #FFF3DC; 
  }
  
  .stat-label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-muted);
  }
  
  .stat-value {
    font-family: var(--font-head);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 6px;
  }
  
  .stat-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    background: #F4ECE1;
    padding: 3px 8px;
    border-radius: 6px;
  }
  
  .stat-badge.plus { color: #D4881A; background: #FFF3DC; }
  .stat-badge.premium { color: var(--dark); background: #EDD9B8; }
  
  /* TABEL MODERN BER-HEADER GELAP */
  .penjualan-table-wrap {
    background: var(--white);
    padding: 32px;
    border-radius: 20px;
    border: 1px solid rgba(44, 26, 14, 0.06);
    box-shadow: 0 10px 30px rgba(44, 26, 14, 0.02);
  }
  
  .table-header-flex {
    margin-bottom: 24px;
  }
  
  .table-title {
    font-family: var(--font-head);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
  }
  
  .table-subtitle {
    font-size: 0.85rem;
    color: var(--text-muted);
  }
  
  .penjualan-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
  }
  
  .penjualan-table th {
    background: var(--dark);
    color: var(--white);
    font-weight: 600;
    padding: 16px;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
  }
  
  .penjualan-table th:first-child { border-top-left-radius: 10px; border-bottom-left-radius: 10px; }
  .penjualan-table th:last-child { border-top-right-radius: 10px; border-bottom-right-radius: 10px; }
  
  .penjualan-table td {
    padding: 16px;
    border-bottom: 1px solid rgba(44, 26, 14, 0.06);
    color: var(--text);
    font-size: 0.92rem;
  }
  
  .penjualan-table tr:hover td {
    background-color: var(--cream);
  }
  
  /* Badge Varian Rasa di Tabel */
  .badge-rasa {
    background: var(--cream);
    border: 1px solid var(--border);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
  }
  
  /* Alignment Helpers */
  .text-center { text-align: center; }
  .text-right { text-align: right; font-weight: 700; color: var(--dark); }
  
  /* Empty State / Box */
  .empty-box {
    padding: 40px 0;
    text-align: center;
  }
  .empty-box span {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 12px;
  }
  .empty-box p {
    color: var(--text-muted);
    font-size: 0.95rem;
  }
  
  /* ============================================
     8. DETAIL MODAL DIALOG POP-UP
     ============================================ */
  .flavor-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(44, 26, 14, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  
  .flavor-modal.show {
    opacity: 1;
    pointer-events: auto;
  }
  
  .modal-content {
    background: var(--white);
    width: 90%;
    max-width: 680px;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
  }
  
  .flavor-modal.show .modal-content {
    transform: scale(1);
  }
  
  .modal-close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
  }
  
  .modal-body-layout {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 28px;
    align-items: center;
    margin-top: 10px;
  }
  
  .modal-media img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 12px;
  }
  
  .modal-info h2 {
    font-family: var(--font-head);
    font-size: 1.8rem;
    color: var(--dark);
    margin-bottom: 12px;
  }
  
  .modal-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 20px;
  }
  
  .modal-price-box h4 {
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 8px;
  }
  
  .modal-prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
  }
  
  .m-price {
    display: flex;
    justify-content: space-between;
    background: var(--cream);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
  }
  
  .m-price.highlight {
    background: #FFF3DC;
  }
  
  .btn-modal-order {
    width: 100%;
    background: var(--primary);
    color: var(--dark);
    border: none;
    padding: 12px;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 8px;
    cursor: pointer;
  }
  
  /* ============================================
     9. GLOBAL FOOTER
     ============================================ */
  .footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 24px 20px;
    margin-top: 60px;
  }
  
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    padding-bottom: 40px;
  }
  
  .footer-brand .brand-name {
    color: var(--white);
    font-size: 1.6rem;
    display: block;
    margin-bottom: 12px;
  }
  
  .footer-brand p {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.5;
  }
  
  .footer-links, .footer-kontak {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  
  .footer-links strong, .footer-kontak strong {
    color: var(--primary);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 4px;
  }
  
  .footer-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 0.92rem;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: var(--white);
  }
  
  .footer-kontak span {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
  }
  
  .footer-copy {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0 0;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.35);
  }
  
  /* ============================================
     10. RESPONSIVE LAYER
     ============================================ */
  @media (max-width: 1024px) {
    .menu-slider-btn { width:34px; height:34px; font-size:1.2rem; }
    .kontak-grid { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 900px) {
    .hero { grid-template-columns: 1fr; padding: 40px; }
    .hero-image { display: flex; width: 100%; }
    .hero-banner-img { max-width: 100%; margin-top: 10px; }
    .profil-cards { grid-template-columns: 1fr; }
    .order-layout { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; gap: 30px; }
    .stats-cards { grid-template-columns: repeat(2, 1fr); }
  }
  
  @media (max-width: 640px) {
    .nav-links, .btn-pesan { display: none; }
    .hamburger { display: block; }
    
    .nav-links.open {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: var(--nav-h);
      left: 0; right: 0;
      background: var(--white);
      padding: 20px;
      gap: 16px;
      border-bottom: 1px solid rgba(44,26,14,0.1);
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    }
    
    .hero h1 { font-size: 2.8rem; }
    .menu-card { flex: 0 0 220px; width: 220px; }
    .kontak-grid { grid-template-columns: 1fr; }
    .stats-cards { grid-template-columns: 1fr; }
    .modal-body-layout { grid-template-columns: 1fr; }
    .penjualan-table-wrap { padding: 16px; overflow-x: auto; }
  }
  /* ==================================================
   DESAIN LAYOUT MODAL & FORM PEMESANAN BARU (PREMIUM)
   ================================================== */
.order-card-modern {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(44, 26, 14, 0.05);
  box-shadow: 0 15px 40px rgba(44, 26, 14, 0.04);
}

.form-step-section {
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px dashed rgba(44, 26, 14, 0.08);
}

.step-badge-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.step-number {
  background: var(--dark);
  color: var(--white);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.95rem;
}

.step-badge-title h3 {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--dark);
}

/* Pilihan Rasa Kartu Visual Grid */
.flavor-selector-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.flavor-option-card {
  background: #FCF9F5;
  border: 2px solid rgba(44, 26, 14, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.flavor-option-card:hover {
  transform: translateY(-3px);
  background: #FFFDFB;
  border-color: var(--border);
}

.flavor-option-card.selected {
  background: #FFF8EE;
  border-color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(214, 136, 26, 0.1);
}

.flavor-emoji {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.flavor-image {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 14px;
  margin: 0 auto 10px;
  display: block;
  border: 1px solid rgba(44, 26, 14, 0.08);
}

.flavor-option-card h4 {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.flavor-status-tag {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--text-muted);
  background: rgba(44, 26, 14, 0.05);
  padding: 2px 8px;
  border-radius: 20px;
}

.flavor-option-card.selected .flavor-status-tag {
  background: var(--primary);
  color: var(--dark);
}

/* Stepper Quantity Counter Box */
.qty-modern-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.qty-modern-box {
  background: #FCF9F5;
  border: 1px solid rgba(44, 26, 14, 0.05);
  padding: 20px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.qty-modern-box.highlighted {
  background: #FFFBEF;
  border-color: rgba(245, 166, 35, 0.25);
}

.qty-info-meta .size-badge {
  font-size: 0.72rem;
  font-weight: 700;
  background: #E8DFD3;
  padding: 2px 8px;
  border-radius: 4px;
  text-transform: uppercase;
}

.qty-info-meta .size-badge.premium {
  background: var(--primary);
  color: var(--dark);
}

.qty-info-meta h4 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--dark);
  margin: 6px 0 2px;
}

.qty-info-meta h4 small {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.qty-info-meta p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Komponen Plus Minus Input */
.qty-stepper {
  display: flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}

.btn-step {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark);
  transition: background 0.2s;
}

.btn-step:hover {
  background: var(--cream);
}

.qty-stepper input {
  width: 50px;
  height: 40px;
  border: none;
  text-align: center;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  background: none;
}

/* Pengiriman Form Area */
.input-modern-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.input-field-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input-field-wrap label {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--dark);
}

.input-field-wrap input, .input-field-wrap textarea {
  font-family: var(--font-body);
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #FCF9F5;
  font-size: 0.95rem;
  outline: none;
  color: var(--dark);
  transition: all 0.3s;
}

.input-field-wrap input:focus, .input-field-wrap textarea:focus {
  border-color: var(--dark);
  background: var(--white);
  box-shadow: 0 4px 15px rgba(44,14,26,0.02);
}

/* Kotak Struk Ringkasan Belanja */
.invoice-summary-box {
  background: var(--dark);
  color: var(--white);
  border-radius: 18px;
  padding: 28px;
  margin-top: 20px;
}

.invoice-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.7);
}

.invoice-row.total-row {
  border-top: 1px dashed rgba(255,255,255,0.15);
  margin-top: 16px;
  padding-top: 16px;
  margin-bottom: 24px;
}

.inv-label-total {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
}

.inv-value-total {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--primary);
}

.btn-submit-modern {
  width: 100%;
  background: var(--primary);
  color: var(--dark);
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.05rem;
  font-weight: 800;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.3s;
}

.btn-submit-modern:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Pilihan Metode Pembayaran */
.payment-method-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.payment-option {
  cursor: pointer;
  display: block;
}

.payment-option input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option-card {
  background: #FCF9F5;
  border: 2px solid rgba(44, 26, 14, 0.05);
  border-radius: 16px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  height: 100%;
}

.payment-option-card:hover {
  transform: translateY(-3px);
  background: #FFFDFB;
  border-color: var(--border);
}

.payment-option input:checked + .payment-option-card {
  background: #FFF8EE;
  border-color: var(--primary-dark);
  box-shadow: 0 8px 20px rgba(214, 136, 26, 0.1);
}

.payment-icon {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.payment-option-card h4 {
  font-size: 0.95rem;
  color: var(--dark);
  font-weight: 700;
  margin-bottom: 6px;
}

.payment-option-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .payment-method-grid { grid-template-columns: 1fr; }
}

/* Responsif untuk Mobile Sizing Form */
@media (max-width: 768px) {
  .flavor-selector-grid { grid-template-columns: repeat(2, 1fr); }
  .qty-modern-container { grid-template-columns: 1fr; }
  .input-modern-group { grid-template-columns: 1fr; }
  .order-card-modern { padding: 24px; }
}
.hero-with-bg {
  /* Pastikan path gambar benar */
  background-image: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url('images/herti.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  grid-template-columns: 1fr; /* Agar teks berada di tengah jika diinginkan */
  padding: 100px 60px;        /* Sesuaikan padding agar terlihat luas */
  min-height: 500px;
}