/* =====================
   GLOBAL
===================== */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  color: #e5e7eb;
}

h1, h2, h3 {
  margin: 0 0 10px;
}

h2 {
  color: #ffffff; /* ✅ WHITE HEADINGS */
  font-size: 2rem;
}

p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* =====================
   HEADER
===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(10px);
  padding: 16px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-header h1 {
  color: #00ffe7;
}

.site-header nav a {
  color: #fff;
  text-decoration: none;
  margin-left: 20px;
  font-weight: 500;
}

.site-header nav a:hover {
  color: #00ffe7;
}

/* =====================
   HERO
===================== */
.hero {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
}

.hero h2 {
  color: #ffffff;
  font-size: clamp(2rem, 5vw, 3rem);
}

.hero p {
  max-width: 600px;
  margin-bottom: 30px;
}

/* =====================
   BUTTONS
===================== */
button {
  border: none;
  padding: 14px 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, #00ffe7, #00c6a7);
  color: #000;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0,255,231,0.3);
}

/* =====================
   ALERTS
===================== */
.alert {
  max-width: 600px;
  margin: 20px auto;
  padding: 16px;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

.success {
  background: #3cfb39d6;
  border: 1px solid #22c55e;
}

.error {
  background: #ff2d2dd6;
  border: 1px solid #ef4444;
}

/* =====================
   FEATURES
===================== */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  padding: 60px 20px;
}

.feature-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  transition: transform .25s ease, background .25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.12);
}

.feature-card h3 {
  color: #00ffe7;
}

/* =====================
   PRODUCTS
===================== */
.products {
  padding: 60px 20px;
}

.products h2 {
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 30px;
  align-items: stretch;
}

.product-card {
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(14px);
  padding: 24px;
  border-radius: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .25s ease, box-shadow .25s ease;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Image inside product */
.product-card img {
  max-width: 140px;
  margin: 0 auto 15px;
  object-fit: contain;
}

.product-card h3 {
  color: #ffffff;
}

/* Price */
.product-card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #22c55e;
  margin: 12px 0;
}

/* =====================
   MOBILE: SCROLLABLE PRODUCTS
===================== */
@media (max-width: 768px) {
  .product-grid {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .product-card {
    min-width: 260px;
    scroll-snap-align: start;
    flex-shrink: 0;
  }

  /* Hide ugly scrollbar (optional) */
  .product-grid::-webkit-scrollbar {
    display: none;
  }
}

/* =====================
   FORM (NOT UGLY ANYMORE)
===================== */
.order-form {
  max-width: 520px;
  margin: 60px auto 0;
  padding: 40px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(16px);
  border-radius: 24px;
  display: grid;
  gap: 16px;
}

.order-form input {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.05);
  color: #fff;
  font-size: 1rem;
}

.order-form input::placeholder {
  color: #94a3b8;
}

.order-form input:focus {
  outline: none;
  border-color: #00ffe7;
}

.order-form button {
  margin-top: 10px;
}

/* =====================
   FOOTER
===================== */
footer {
  text-align: center;
  padding: 40px 20px;
  color: #94a3b8;
  font-size: 0.9rem;
}

/* =====================
   MOBILE TWEAKS
===================== */
@media (max-width: 600px) {
  .site-header {
    flex-direction: column;
    gap: 10px;
  }

  .hero {
    min-height: auto;
  }
}