/* ===== Global Font Settings ===== */
body {
  font-family: 'Poppins', 'Roboto', Arial, sans-serif;
  background-color: #f7f7f7;
  color: #333;
}

/* ===== Headings ===== */
h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: #111827;
}

/* ===== Buttons (Add to Cart / Checkout) ===== */
button,
.btn,
.add-to-cart,
.checkout-btn {
  background-color: #111827;
  color: #ffffff;
  border-radius: 10px;
  padding: 12px 18px;
  font-weight: 600;
  transition: all 0.3s ease;
}

button:hover,
.btn:hover,
.add-to-cart:hover,
.checkout-btn:hover {
  background-color: #1f2937;
  transform: translateY(-1px);
}

/* ===== Product Cards ===== */
.product-card,
.product-item {
  border-radius: 16px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  overflow: hidden;
  background: #ffffff;
}

/* ===== Product Price ===== */
.price,
.product-price {
  font-size: 18px;
  font-weight: 600;
  color: #0f172a;
}

/* ===== Customization Options ===== */
.product-options select,
.product-options input[type="text"],
.product-options input[type="file"] {
  border-radius: 8px;
  border: 1px solid #d1d5db;
  padding: 10px;
  width: 100%;
}

/* ===== Cart Page ===== */
.cart-page,
.cart-container {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

/* ===== Checkout Page ===== */
.checkout-page {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
}

/* ===== Trust Badges Text ===== */
.trust-text {
  font-size: 14px;
  color: #374151;
  margin-top: 10px;
}

/* ===== Footer ===== */
footer {
  background-color: #111827;
  color: #d1d5db;
  padding: 30px 20px;
}

footer a {
  color: #d1d5db;
  text-decoration: none;
}

footer a:hover {
  color: #ffffff;
}

/* ===== Mobile Optimization ===== */
@media (max-width: 768px) {
  h1 { font-size: 26px; }
  h2 { font-size: 20px; }
  .price { font-size: 16px; }
}
