    * { box-sizing: border-box; }

    body {
      margin: 0;
      font-family: Arial, Helvetica, sans-serif;
      background: #120c08;
      color: white;
    }

    html { scroll-behavior: smooth; }

    .hero {
      min-height: 90vh;
      background:
        linear-gradient(rgba(0,0,0,.65), rgba(0,0,0,.85)),
        url("https://images.unsplash.com/photo-1529006557810-274b9b2fc783?auto=format&fit=crop&w=1600&q=80");
      background-size: cover;
      background-position: center;
      display: flex;
      align-items: center;
      padding: 40px 20px;
    }

    .container {
      width: min(1200px, 94%);
      margin: auto;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.2fr .8fr;
      gap: 40px;
      align-items: center;
    }

    .badge {
      display: inline-block;
      background: #ff9f1c;
      color: #1b1208;
      padding: 8px 16px;
      border-radius: 999px;
      font-weight: bold;
      margin-bottom: 20px;
    }

    h1 {
      font-size: clamp(44px, 8vw, 86px);
      line-height: .95;
      margin: 0;
      font-weight: 900;
    }

    h1 span { color: #ffb703; }

    .hero p {
      font-size: 20px;
      line-height: 1.6;
      max-width: 650px;
      color: #f3f3f3;
    }

    .buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-top: 26px;
    }

    .btn {
      border: none;
      cursor: pointer;
      text-decoration: none;
      font-weight: bold;
      padding: 14px 22px;
      border-radius: 14px;
      display: inline-block;
    }

    .btn-primary {
      background: #ffb703;
      color: #120c08;
    }

    .btn-secondary {
      background: rgba(255,255,255,.15);
      color: white;
      border: 1px solid rgba(255,255,255,.3);
    }

    .qr-card {
      background: rgba(255,255,255,.95);
      color: #111;
      border-radius: 28px;
      padding: 26px;
      text-align: center;
      box-shadow: 0 25px 60px rgba(0,0,0,.35);
    }

    .qr-card img {
      width: 220px;
      max-width: 100%;
      background: white;
      padding: 12px;
      border-radius: 16px;
    }

    .section {
      padding: 70px 20px;
      background:
        linear-gradient(rgba(18,12,8,.88), rgba(18,12,8,.94)),
        url("https://images.unsplash.com/photo-1559847844-5315695dadae?auto=format&fit=crop&w=1600&q=80");
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
    }

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

    .section-title h2 {
      font-size: clamp(34px, 5vw, 56px);
      margin: 0;
    }

    .section-title p {
      color: #ddd;
      max-width: 720px;
      margin: 12px auto;
      line-height: 1.6;
    }

    .toolbar {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 14px;
      margin-bottom: 24px;
      align-items: center;
    }

    input {
      width: 100%;
      padding: 15px 18px;
      border-radius: 14px;
      border: none;
      font-size: 16px;
      outline: none;
    }

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

    .filter {
      background: rgba(255,255,255,.12);
      color: white;
      border: 1px solid rgba(255,255,255,.2);
      padding: 12px 16px;
      border-radius: 999px;
      cursor: pointer;
      font-weight: bold;
    }

    .filter.active {
      background: #ffb703;
      color: #111;
    }

    .menu-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .product {
      background: rgba(255,255,255,.95);
      color: #111;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 15px 35px rgba(0,0,0,.25);
      transition: transform .2s;
    }

    .product:hover {
      transform: translateY(-5px);
    }

    .product img {
      width: 100%;
      height: 170px;
      object-fit: cover;
    }

    .product-content {
      padding: 20px;
    }

    .product-top {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      align-items: start;
    }

    .product h3 {
      margin: 0;
      font-size: 21px;
    }

    .price {
      color: #c46d00;
      font-weight: 900;
      white-space: nowrap;
    }

    .product p {
      color: #555;
      line-height: 1.5;
      min-height: 48px;
    }

    .tag {
      display: inline-block;
      background: #111;
      color: white;
      padding: 7px 11px;
      border-radius: 999px;
      font-size: 12px;
      font-weight: bold;
      margin-bottom: 12px;
    }

    .add-btn {
      width: 100%;
      padding: 12px;
      border: none;
      border-radius: 12px;
      background: #ffb703;
      font-weight: bold;
      cursor: pointer;
    }

    .cart {
      position: fixed;
      right: 20px;
      bottom: 20px;
      width: 340px;
      max-width: calc(100% - 40px);
      background: #fff;
      color: #111;
      border-radius: 24px;
      padding: 20px;
      box-shadow: 0 20px 60px rgba(0,0,0,.4);
      z-index: 20;
    }

    .cart h3 {
      margin-top: 0;
    }

    .cart-items {
      max-height: 210px;
      overflow-y: auto;
      margin-bottom: 12px;
    }

    .cart-item {
      display: flex;
      justify-content: space-between;
      gap: 10px;
      border-bottom: 1px solid #eee;
      padding: 8px 0;
      font-size: 14px;
    }

    .cart-total {
      font-size: 22px;
      font-weight: 900;
      margin: 14px 0;
      display: flex;
      justify-content: space-between;
    }

    .whatsapp {
      display: block;
      text-align: center;
      background: #25d366;
      color: white;
      padding: 13px;
      border-radius: 14px;
      text-decoration: none;
      font-weight: bold;
    }

    .clear-btn {
      background: #111;
      color: white;
      border: none;
      padding: 10px;
      border-radius: 12px;
      width: 100%;
      margin-top: 10px;
      cursor: pointer;
    }

    .features {
      background: #1b1208;
      padding: 60px 20px;
    }

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

    .feature {
      background: rgba(255,255,255,.08);
      border: 1px solid rgba(255,255,255,.12);
      padding: 24px;
      border-radius: 22px;
      text-align: center;
    }

    .feature strong {
      display: block;
      font-size: 32px;
      color: #ffb703;
      margin-bottom: 8px;
    }

    footer {
      background: #000;
      color: #aaa;
      text-align: center;
      padding: 28px;
    }

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

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

      .cart {
        position: static;
        width: auto;
        margin: 30px 20px;
      }
    }