body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    text-align: center;
}
h1 {
    color: rgb(128, 0, 51);
}
:root {
  --line: #e5e7eb;
  --brand: #2563eb;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, Segoe UI, Roboto, Arial;
  background: #67a3cb;
  color: #111827;
}


header {
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  position: sticky;
  top: 0;
}

.wrap {
  max-width: 980px;
  margin: 0 auto;
  padding: 14px 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

nav {
  margin-left: auto;
  display: flex;
  gap: 10px;
}

nav a {
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  color: #111827;
}

nav a:hover {
  background: var(--line);
}

nav a.active {
  background: var(--brand);
  color: white;
}


main {
  background: blueviolet;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 20px;
  margin: 30px auto;
}


label {
  display: block;
  margin: 10px 0 6px;
}

input, textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

textarea {
  min-height: 120px;
}

.btn {
  padding: 10px 12px;
  background: var(--brand);
  border: 0;
  color: #ffffff;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 14px;
}


.row {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 8px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}


.card {
  background: rgb(0, 217, 255);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px;
}

.card img {
  width: 70%;
  height: auto;
  border-radius: 4px;
  border: 1px solid var(--line);
}


.login-main {
  max-width: 420px;
}

.hint {
  font-size: 13px;
  color: #6b7280;
  margin-top: 8px;
}


.contact-main {
  max-width: 680px;
}

.contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.order-main {
  max-width: 980px;
  padding: 0 16px;
  margin: 24px auto;
  background: brown;
  border: none;
}

input[type=number] {
  width: 80px;
  padding: 8px;
}

.total {
  margin-top: 18px;
  font-weight: 700;
}
footer{
  max-width:980px;
  margin:36px auto 28px;
  padding:0 16px;
  color:var(--muted);
  font-size:14px
}

    :root {
      --line: #e5e7eb;
      --brand: #2563eb;
      --success: #10b981;
      --warning: #f59e0b;
      --danger: #ef4444;
      --light-bg: #f7fafc;
      --dark-text: #111827;
      --card-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      --transition: all 0.3s ease;
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body {
      font-family: system-ui, Segoe UI, Roboto, Arial, sans-serif;
      background: var(--light-bg);
      color: var(--dark-text);
      line-height: 1.6;
    }
    
    header {
      border-bottom: 1px solid var(--line);
      background: #fff;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .wrap {
      max-width: 1200px;
      margin: 0 auto;
      padding: 14px 16px;
      display: flex;
      gap: 14px;
      align-items: center;
    }
    
    .brand {
      font-weight: bold;
      font-size: 1.5rem;
      color: var(--brand);
    }
    
    nav {
      margin-left: auto;
      display: flex;
      gap: 10px;
    }
    
    nav a {
      padding: 8px 12px;
      border-radius: 999px;
      text-decoration: none;
      color: var(--dark-text);
      transition: var(--transition);
    }
    
    nav a:hover, nav a.active {
      background: var(--line);
    }
    
    .cart-icon {
      position: relative;
      cursor: pointer;
    }
    
    .cart-count {
      position: absolute;
      top: -8px;
      right: -8px;
      background: var(--brand);
      color: white;
      border-radius: 50%;
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 12px;
      font-weight: bold;
    }
    
    main {
      max-width: 1200px;
      margin: 24px auto;
      padding: 0 16px;
    }
    
    .page-title {
      margin-bottom: 24px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--line);
    }
    
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
      gap: 24px;
    }
    
    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 16px;
      transition: var(--transition);
      box-shadow: var(--card-shadow);
    }
    
    .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
    }
    
    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
      border-radius: 8px;
      border: 1px solid var(--line);
      margin-bottom: 12px;
    }
    
    .card h3 {
      margin-bottom: 8px;
      font-size: 1.2rem;
    }
    
    .price {
      color: var(--brand);
      font-weight: bold;
      font-size: 1.1rem;
      margin-bottom: 12px;
    }
    
    .row {
      display: flex;
      gap: 8px;
      align-items: center;
      margin-top: 8px;
    }
    
    input[type=number] {
      width: 80px;
      padding: 8px;
      border: 1px solid var(--line);
      border-radius: 8px;
      text-align: center;
    }
    
    .btn {
      padding: 10px 16px;
      background: var(--brand);
      color: white;
      border: 0;
      border-radius: 8px;
      cursor: pointer;
      transition: var(--transition);
      font-weight: 500;
    }
    
    .btn:hover {
      background: #1d4ed8;
      transform: translateY(-2px);
    }
    
    .btn-success {
      background: var(--success);
    }
    
    .btn-success:hover {
      background: #059669;
    }
    
    .btn-danger {
      background: var(--danger);
    }
    
    .btn-danger:hover {
      background: #dc2626;
    }
    
    .total-container {
      background: white;
      padding: 20px;
      border-radius: 12px;
      margin-top: 30px;
      box-shadow: var(--card-shadow);
      position: sticky;
      bottom: 20px;
      border: 1px solid var(--line);
    }
    
    .total {
      font-weight: 700;
      font-size: 1.5rem;
      margin-bottom: 16px;
    }
    
    .checkout-btn {
      width: 100%;
      padding: 16px;
      font-size: 1.1rem;
    }
    
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1000;
      align-items: center;
      justify-content: center;
    }
    
    .modal-content {
      background: white;
      padding: 30px;
      border-radius: 12px;
      width: 90%;
      max-width: 500px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    }
    
    .modal-title {
      margin-bottom: 20px;
      text-align: center;
    }
    
    .form-group {
      margin-bottom: 16px;
    }
    
    .form-group label {
      display: block;
      margin-bottom: 8px;
      font-weight: 500;
    }
    
    .form-group input {
      width: 100%;
      padding: 12px;
      border: 1px solid var(--line);
      border-radius: 8px;
    }
    
    .order-summary {
      background: #f9fafb;
      padding: 16px;
      border-radius: 8px;
      margin: 20px 0;
    }
    
    .order-item {
      display: flex;
      justify-content: space-between;
      margin-bottom: 8px;
    }
    
    .notification {
      position: fixed;
      top: 20px;
      right: 20px;
      padding: 16px;
      background: var(--success);
      color: white;
      border-radius: 8px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      display: none;
      z-index: 1100;
    }
    
    .order-progress {
      display: flex;
      justify-content: space-between;
      margin: 30px 0;
      position: relative;
    }
    
    .order-progress::before {
      content: '';
      position: absolute;
      top: 20px;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--line);
      z-index: 1;
    }
    
    .progress-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      z-index: 2;
    }
    
    .step-number {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: white;
      border: 4px solid var(--line);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: bold;
      margin-bottom: 8px;
      transition: var(--transition);
    }
    
    .step-active .step-number {
      border-color: var(--brand);
      background: var(--brand);
      color: white;
    }
    
    .step-complete .step-number {
      border-color: var(--success);
      background: var(--success);
      color: white;
    }
    
    .step-text {
      font-size: 0.9rem;
      font-weight: 500;
    }
    
    .confirmation-screen {
      text-align: center;
      padding: 40px 20px;
      display: none;
    }
    
    .confirmation-icon {
      font-size: 4rem;
      color: var(--success);
      margin-bottom: 20px;
    }
    
    @media (max-width: 768px) {
      .grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 16px;
      }
      
      nav {
        display: none;
      }
      
      .mobile-menu-btn {
        display: block;
        margin-left: auto;
        background: none;
        border: none;
        font-size: 1.5rem;
        cursor: pointer;
      }
      
      .order-progress {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
      }
      
      .order-progress::before {
        display: none;
      }
      
      .progress-step {
        flex-direction: row;
        gap: 15px;
      }
    }
  