.body-milllet {
  background: var(--light-milllet);
  color: var(--dark-milllet);
}

#millet-points-milllet {
  list-style: none;
  padding-left: 0;
}

#millet-points-milllet li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}

#millet-points-milllet li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #b7201e;
  font-weight: bold;
}


/* HERO */

.hero-btn-milllet {
  background: linear-gradient(135deg, #b7201e, #8f1715);
  color: #ffffff;
  padding: 14px 30px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  letter-spacing: 0.4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: none;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(183, 32, 30, 0.35);
  transition: 
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.hero-btn-milllet:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(183, 32, 30, 0.45);
  background: linear-gradient(135deg, #c92a28, #a11c1a);
}

.hero-btn-milllet:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(183, 32, 30, 0.35);
}


/* SECTIONS */
.section-milllet {
  padding: 80px 10%;
}

.section-title-milllet {
  text-align: center;
  font-size: 2.2rem;
}

.section-desc-milllet {
  text-align: center;
  margin: 1rem auto 3rem;
  max-width: 700px;
}

/* ABOUT */
.about-grid-milllet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
  gap: 2rem;
  align-items: center;
}

.about-image-milllet img {
  width: 100%;
  border-radius: 10px;
}

/* PRODUCTS */

.product-image-wrapper-milllet {
  width: 340px;
  height: 220px;
  overflow: hidden;
  border-radius: 10px;
}

.product-image-wrapper-milllet img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* 👈 key line */
  object-position: center;
  display: block;
}

.products-grid-milllet {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
  gap: 2rem;
}

.product-card-milllet {
  background: var(--secondary-milllet);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform .3s, box-shadow .3s;
}

.product-card-milllet:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,.15);
}

/* FAQ */
.faq-item-milllet {
  max-width: 800px;
  margin: 1rem auto;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.faq-question-milllet {
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-icon-milllet {
  font-size: 22px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-answer-milllet {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.faq-item-milllet.active-milllet .faq-answer-milllet {
  max-height: 1000px; /* important */
  opacity: 1;
  margin-top: 0.5rem;
}

.faq-item-milllet.active-milllet .faq-icon-milllet {
  transform: rotate(45deg);
}


/* FOOTER */
.footer-milllet {
  background: var(--dark-milllet);
  color: #fff;
  text-align: center;
  padding: 2rem;
}


/* MODAL */
.spec-modal-milllet {
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.6);
  display:none;
  align-items:center;
  justify-content:center;
}

.spec-modal-content-milllet {
  background:#fff;
  width:90%;
  max-width:900px;
  padding:2rem;
  border-radius:12px;
  max-height:90vh;
  overflow:auto;
}

.spec-table-milllet {
  width:100%;
  border-collapse:collapse;
}

.spec-table-milllet th,
.spec-table-milllet td {
  border:1px solid #ddd;
  padding:12px;
}

.spec-close-milllet {
  position: absolute;
  top: 16px;
  right: 20px;
  font-size: 30px;
  font-weight: bold;
  color: #333;
  cursor: pointer;
  line-height: 1;
}

.spec-close-milllet:hover {
  color: #b7201e;
}



.spec-table-milllet th {
  background:#e8f3ec;
  width:35%;
}

.spec-section-milllet {
  margin-top: 2rem;
}

.spec-section-milllet h3 {
  margin-bottom: 0.8rem;
  color: #2f5d3b;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero-title-milllet {
    font-size: 2.2rem;
  }
}