* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  color: #010003;
  background: #ffffff;
  line-height: 1.6;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #e5e7eb;
}

.logo {
  font-size: 28px;
  color: #111827;
}

/* TOP BANNER */
.banner-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 20px 20px 10px;
}

.top-banner {
  width: min(90%, 420px);
  height: auto;
  display: block;
  transition: opacity 0.2s linear;
}

/* HERO */
.hero {
  min-height: 80vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 60px 8%;
}

.hero.small {
  min-height: 32vh;
  justify-content: center;
  text-align: center;
  padding: 120px 8% 60px;
}

.hero-text {
  flex: 1;
  max-width: 520px;
}

.hero-text h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: #444;
}

.hero-img {
  flex: 1;
  max-width: 520px;
  display: flex;
  justify-content: center;
}

.hero-img img {
  width: 100%;
  max-width: 500px;
  height: 420px;
  object-fit: cover;
  border-radius: 14px;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

/* SECTIONS */
.section {
  display: flex;
  align-items: center;
  gap: 50px;
  padding: 80px 8%;
}

.section.reverse {
  flex-direction: row-reverse;
}

.text-box {
  flex: 1;
}

.text-box h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.text-box p {
  font-size: 1rem;
  color: #444;
  margin-bottom: 18px;
}

.image-box {
  flex: 1;
  min-height: 320px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.image-box.small {
  min-height: 180px;
}

/* CARDS */
.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 60px 8% 80px;
}

.card {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 14px;
  color: #111827;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.card p {
  color: #d1d5db;
}

/* SHOP */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 8% 80px;
}

.product {
  background: #f8f8f8;
  padding: 20px;
  border-radius: 14px;
  color: #111827;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  border: 1px solid #eeeeee;
}

.product h3 {
  margin: 18px 0 10px;
  font-size: 1.25rem;
}

.product p {
  color: #000000;
  margin-bottom: 18px;
}

.buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* BUTTONS */
.btn {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 22px;
  background: #3b82f6;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover {
  background: #2563eb;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #3b82f6;
  color: #3b82f6;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 24px;
  color: #666;
}

/* ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .hero,
  .section,
  .section.reverse {
    flex-direction: column;
    padding: 50px 6%;
  }

  .hero.small {
    padding: 110px 6% 40px;
  }

  .hero-text,
  .text-box,
  .hero-img,
  .image-box {
    max-width: 100%;
    width: 100%;
  }

  .hero-img img {
    height: 320px;
  }

  .cards,
  .product-grid {
    grid-template-columns: 1fr;
    padding: 40px 6% 60px;
  }

  .image-box {
    min-height: 260px;
  }

  .image-box.small {
    min-height: 220px;
  }
}