/* =========================================================
   AIO VEND — MICRO MARKET + COFFEE PRO 1.0
   Clean • Enterprise • Compact • Conversion Focused
========================================================= */

/* =========================================================
   SECTION BASE
========================================================= */

.micro-pro,
.coffee-pro {
  padding: clamp(6rem, 8vw, 9rem) 1.5rem;
  position: relative;
}

/* Soft gradient separation */

.micro-pro {
  background:
    linear-gradient(
      180deg,
      var(--body-bg-color) 0%,
      rgba(16,185,129,0.05) 50%,
      var(--body-bg-color) 100%
    );
    margin-bottom: -8rem;
}

.coffee-pro {
  background:
    linear-gradient(
      180deg,
      var(--body-bg-color) 0%,
      rgba(37,99,235,0.05) 50%,
      var(--body-bg-color) 100%
    );
    margin-bottom: -8rem;
}

/* =========================================================
   GRID LAYOUT
========================================================= */

.micro-pro__grid,
.coffee-pro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 5vw, 6rem);
  align-items: center;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

.micro-pro h2,
.coffee-pro h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.micro-pro__lead,
.coffee-pro__lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.micro-pro__summary,
.coffee-pro__summary {
  font-size: 0.98rem;
  line-height: 1.7;
  margin-top: 2rem;
  opacity: 0.85;
}

/* =========================================================
   FEATURE POINTS
========================================================= */

.micro-pro__points,
.coffee-pro__points {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.micro-point,
.coffee-point {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 14px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  border: 1px solid var(--clr-border);
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

:root[data-theme="dark"] .micro-point,
:root[data-theme="dark"] .coffee-point {
  background: rgba(15,23,42,0.7);
}

.micro-point i,
.coffee-point i {
  color: var(--clr-primary);
  font-size: 1rem;
}

.micro-point:hover,
.coffee-point:hover {
  transform: translateX(6px);
  box-shadow: 0 15px 35px rgba(37,99,235,0.15);
}

/* =========================================================
   IMAGES
========================================================= */

.micro-pro__visual,
.coffee-pro__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow:
    0 25px 60px rgba(0,0,0,0.15),
    0 8px 25px rgba(0,0,0,0.08);
}

.micro-pro__visual img,
.coffee-pro__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

@media (hover: hover) and (pointer: fine) {
  .micro-pro__visual:hover img,
  .coffee-pro__visual:hover img {
    transform: scale(1.05);
  }
}

/* =========================================================
   ANIMATION
========================================================= */

.micro-pro,
.coffee-pro {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.micro-pro.visible,
.coffee-pro.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 900px) {

  .micro-pro__grid,
  .coffee-pro__grid {
    grid-template-columns: 1fr;
  }

  .coffee-pro__visual {
    order: -1;
  }

}
