body {
  margin: 0;
  background: #0f172a;
  color: #e5e7eb;
  font-family: Arial;
}

header {
  background: #020617;
  padding: 16px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav a {
  color: #e5e7eb;
  margin-left: 16px;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
}

nav a:hover {
  background: #1e293b;
}

.products {
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 60px 20px;
}

.card {
  background: #020617;
  width: 260px;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 25px rgba(56,189,248,0.4);
}

.card img {
  width: 100%;
  height: 150px;
  object-fit: contain;
}

.card button {
  width: 100%;
  margin-top: 12px;
  padding: 10px;
  background: #38bdf8;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

.cart, .form-page, .contact {
  padding: 60px;
  text-align: center;
}

.whatsapp {
  display: inline-block;
  background: #22c55e;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
}

footer {
  text-align: center;
  padding: 18px;
  background: #020617;
  font-size: 13px;
  opacity: 0.6;
}

.cart-items {
  max-width: 700px;
  margin: 30px auto;
}

.cart-item {
  display: flex;
  align-items: center;
  background: #020617;
  border-radius: 10px;
  padding: 12px;
  margin-bottom: 12px;
  gap: 14px;
}

.cart-item img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.cart-item-info {
  flex: 1;
}

.cart-item button {
  background: #ef4444;
  border: none;
  color: #fff;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
}

.cart-summary {
  text-align: center;
  margin-top: 30px;
}

.checkout-btn {
  margin-top: 10px;
  padding: 12px 20px;
  background: #38bdf8;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}




/* =========================
   Payment Buttons (Apple / Google Pay)
========================= */

.payment-container {
  max-width: 500px;
  margin: 80px auto;
  background: #0b1220;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0, 120, 255, 0.25);
  color: #fff;
  text-align: center;
}

.payment-container h1 {
  margin-bottom: 30px;
  font-size: 24px;
}

.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pay-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  height: 55px;
  width: 100%;

  border-radius: 10px;
  cursor: pointer;
  transition: all 0.25s ease;
  font-size: 16px;
  font-weight: 500;
}

/* Apple Pay */
.pay-apple {
  background: #000;
  color: #fff;
}

.pay-apple:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.25);
}

/* Google Pay */
.pay-google {
  background: #fff;
  color: #000;
}

.pay-google:hover {
  transform: scale(1.02);
  box-shadow: 0 0 18px rgba(66, 133, 244, 0.35);
}

.pay-option img {
  height: 28px;
  object-fit: contain;
}