 :root {
      --bg: #fdf7f1;
      --text-dark: #1e2456;
      --muted: #6b7280;
      --primary: #eab308;
      --input-bg: #f4eadf;
      --radius: 12px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    }

    body {
      min-height: 100vh;
      background: var(--bg);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }

    .container {
      max-width: 1100px;
      width: 100%;
      text-align: center;
    }

    h1 {
      font-size: clamp(2rem, 4vw, 3.2rem);
      color: var(--text-dark);
      margin-bottom: 8px;
      font-weight: 700;
    }

    h2 {
      font-size: clamp(1.5rem, 3vw, 2.6rem);
      color: var(--text-dark);
      letter-spacing: 1px;
      margin-bottom: 40px;
      font-weight: 700;
    }

    .products {
      display: flex;
      justify-content: center;
      margin-bottom: 40px;
    }

    .products img {
      max-width: 100%;
      height: auto;
      width: 520px;
    }

    .notify-text {
      font-size: 1.2rem;
      color: var(--text-dark);
      margin-bottom: 16px;
      font-weight: 500;
    }

    .form {
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .form input {
      padding: 14px 16px;
      width: 260px;
      border-radius: var(--radius);
      border: none;
      background: var(--input-bg);
      font-size: 1rem;
      outline: none;
    }

    .form button {
      padding: 14px 22px;
      border-radius: var(--radius);
      border: none;
      background: var(--primary);
      color: #fff;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      transition: transform 0.15s ease, box-shadow 0.15s ease;
    }

    .form button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
    }

    /* ---------- Mobile tweaks ---------- */
    @media (max-width: 600px) {
      .products img {
        width: 90%;
      }

      .form input {
        width: 100%;
        max-width: 320px;
      }

      .form button {
        width: 100%;
        max-width: 320px;
      }
    }