/* ===== PAGE MOBILITÉ ===== */
.mob-page {
  font-family: "Gantari", "Lato", Arial, sans-serif;
  color: #333;
}

.mob-hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border);
}

/* Intro */
.mob-intro {
  display: flex;
  gap: 32px;
  margin: 40px 0;
  align-items: flex-start;
}
.mob-intro-img {
  flex: 0 0 280px;
}
.mob-intro-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border);
}
.mob-intro-text h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 14px;
  line-height: 1.45;
}
.mob-intro-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--neutral-700);
  margin: 0 0 10px;
  text-align: justify;
}

/* Stories */
.mob-story {
  display: flex;
  gap: 32px;
  margin: 0 0 36px;
  align-items: flex-start;
}
.mob-story-img {
  flex: 0 0 280px;
}
.mob-story-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--border);
}
.mob-story-text h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin: 0 0 10px;
}
.mob-story-text h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--black-soft);
  margin: 14px 0 6px;
}
.mob-story-text p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--neutral-700);
  margin: 0 0 10px;
  text-align: justify;
}

/* Section heading */
.mob-section-title {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: var(--black-soft);
  margin: 40px 0 20px;
}

/* Product table */
.mob-products {
  margin: 0 0 40px;
}
.mob-product-row {
  display: flex;
  margin-bottom: 16px;
  box-shadow: var(--box-shadow);
  border-radius: var(--border);
  overflow: hidden;
  min-height: 160px;
}
.mob-product-left {
  flex: 0 0 240px;
  display: flex;
  flex-direction: column;
}
.mob-product-label {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 14px;
  text-align: center;
  height: 64px;
}
.mob-product-img-wrap {
  flex: 1;
  background: var(--primary-200);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.mob-product-img-wrap img {
  max-width: 100%;
  max-height: 120px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.mob-product-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mob-product-heading {
  background: var(--primary);
  padding: 12px 20px;
  height: 64px;
}
.mob-product-heading h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.mob-product-body {
  flex: 1;
  background: var(--primary-100);
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
}
.mob-product-body p {
  font-size: 14px;
  line-height: 1.65;
  color: var(--neutral-700);
  margin: 0 0 10px;
}
.mob-product-body ul {
  margin: 0 0 12px 18px;
  padding: 0;
}
.mob-product-body ul li {
  font-size: 15px;
  color: var(--neutral-700);
  line-height: 1.6;
  margin-bottom: 3px;
}
.mob-product-links {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  padding-top: 10px;
}
.mob-product-links a {
  font-size: 14px;
  color: var(--black-soft);
  font-weight: 600;
  text-decoration: none;
}
.mob-product-links a:hover {
  text-decoration: underline;
}

/* Contact */
.mob-contact {
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--black-soft);
  margin: 32px 0;
}
.mob-contact a {
  color: var(--black-soft);
}

/* Footer */
.mob-footer {
  text-align: center;
  margin: 40px 0 20px;
}
.mob-footer img {
  max-width: 200px;
  height: auto;
  border-radius: 0 !important;
}

/* Responsive */
@media (max-width: 768px) {
  .mob-intro,
  .mob-story {
    flex-direction: column;
  }
  .mob-intro-img,
  .mob-story-img {
    flex: none;
    width: 100%;
  }
  .mob-product-row {
    flex-direction: column;
  }
  .mob-product-left {
    flex: none;
  }
  .mob-product-links {
    flex-direction: column;
    gap: 6px;
  }
  .mob-product-heading {
    height: 82px;
  }
}
