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

body {
  font-family: 'Rubik', sans-serif;
  color: #522611;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
}

/* =====================
   HEADER
===================== */
.header {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header nav a {
  margin: 0 16px;
  text-decoration: none;
  color: #522611;
  font-weight: 500;
}

.header nav a:hover {
  color: #7a9340;
}

.logo {
  font-family: 'Cairo', sans-serif;
  font-size: 28px;
}

.logo span {
  color: #7a9340;
}

.icons img {
  margin-left: 16px;
  cursor: pointer;
}

/* =====================
   HERO
===================== */
.hero {
  text-align: center;
  padding: 80px 24px;
  max-width: 700px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 24px;
}

.hero button {
  background: #7a9340;
  color: white;
  border: none;
  padding: 16px 36px;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hero button:hover {
  background: #6a8236;
  transform: translateY(-2px);
}

/* =====================
   FEATURE SECTIONS
===================== */
.feature {
  max-width: 1200px;
  margin: 80px auto;
  padding: 0 24px;
  display: flex;
  gap: 48px;
  align-items: center;
}

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

.feature h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.feature ul {
  margin-top: 12px;
}

/* =====================
   PRODUCTS
===================== */
.products {
  text-align: center;
  padding: 80px 24px;
}

.product-grid {
  max-width: 1200px;
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
}

.product {
  background: #f5f5f5;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
}

.product h3 {
  margin-top: 16px;
}

.product span {
  display: block;
  margin-top: 8px;
  font-weight: 600;
}

/* =====================
   FOOTER
===================== */
.footer {
  background: #522611;
  color: white;
  padding: 64px 24px;
  text-align: center;
}

/* =====================
   RESPONSIVE
===================== */
@media (max-width: 768px) {
  .feature {
    flex-direction: column;
    text-align: center;
  }

  .hero h1 {
    font-size: 32px;
  }
}
