* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f7f8fc;
  color: #222;
  line-height: 1.6;
}

.site-header {
  background: linear-gradient(135deg, #1f2937, #334155);
  color: white;
}

.nav {
  max-width: 1100px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-size: 24px;
  font-weight: 700;
}

.order-link {
  color: white;
  text-decoration: none;
  background: #f59e0b;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
}

.hero {
  max-width: 1100px;
  margin: auto;
  padding: 80px 20px;
}

.tagline {
  color: #fbbf24;
  font-weight: 700;
  margin-bottom: 10px;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(34px, 6vw, 60px);
  line-height: 1.1;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 520px;
  color: #e5e7eb;
  margin-bottom: 26px;
}

.btn {
  display: inline-block;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.btn:hover {
  background: #1d4ed8;
}

.section {
  max-width: 1100px;
  margin: auto;
  padding: 60px 20px;
}

.section h2 {
  font-size: 34px;
  margin-bottom: 8px;
}

.section-text {
  color: #555;
  margin-bottom: 28px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.product-card {
  background: white;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 14px;
  cursor: pointer;
  background: #e5e7eb;
}

.product-card h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.product-card p {
  color: #555;
  margin-bottom: 12px;
}

.price {
  color: #16a34a;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 14px;
}

.order-btn {
  width: 100%;
  background: #f59e0b;
}

.order-btn:hover {
  background: #d97706;
}

.order-section {
  max-width: 800px;
}

.order-form {
  background: white;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: grid;
  gap: 18px;
}

.order-form label {
  display: grid;
  gap: 8px;
  font-weight: 700;
}

.order-form input,
.order-form textarea,
.order-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font: inherit;
}

.order-form textarea {
  min-height: 90px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
}

.form-status {
  font-weight: 700;
  text-align: center;
}

.form-status.success {
  color: #16a34a;
}

.form-status.error {
  color: #dc2626;
}

.footer {
  text-align: center;
  padding: 24px 20px;
  background: #111827;
  color: white;
}

@media (max-width: 600px) {
  .nav {
    gap: 12px;
    flex-direction: column;
  }

  .hero {
    padding: 55px 20px;
    text-align: center;
  }

  .order-form {
    padding: 20px;
  }
}


.logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}


.image-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.image-modal.active {
  display: flex;
}

.image-modal img {
  max-width: 92%;
  max-height: 86vh;
  border-radius: 18px;
  background: white;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.close-modal {
  position: absolute;
  top: 24px;
  right: 34px;
  color: white;
  font-size: 44px;
  font-weight: bold;
  cursor: pointer;
}
