/**
 * Inscape SPA - Mobilier Professionnel Page
 * EXACT replica of https://inscape.lu/nos-services/mobilier-professionnel/
 * Uses Inscape Design System from inscape-style-guide.md
 * @package PCC_Woo
 * @since 1.3.0
 */

/* ==========================================
   VARIABLES - Inscape Design System
   ========================================== */
.mp-page {
  --mp-blue: #00aeef;
  --mp-blue-hover: #0077b6;
  --mp-blue-light: #e6f7ff;
  --mp-dark: #1a1a1a;
  --mp-dark-alt: #333333;
  --mp-text: #333333;
  --mp-text-light: #666666;
  --mp-text-muted: #888888;
  --mp-white: #ffffff;
  --mp-gray-bg: #f5f5f5;
  --mp-border: #e0e0e0;
  --mp-radius: 24px;
  --mp-radius-lg: 24px;
  --mp-radius-btn: 24px;
  --mp-radius-card: 20px;
}

/* ==========================================
   BASE - Inscape Design System
   ========================================== */
.mp-page {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--mp-white);
  color: var(--mp-text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  overflow-x: hidden;
}

.mp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* ==========================================
   BUTTONS - Inscape Design System
   ========================================== */
.mp-btn {
  display: inline-block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  padding: 12px 32px;
  text-decoration: none;
  border-radius: var(--mp-radius-btn);
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.mp-btn--blue {
  background: var(--mp-blue);
  color: var(--mp-white);
  border-radius: var(--mp-radius-btn);
}

.mp-btn--blue:hover {
  background: var(--mp-blue-hover);
}

/* Button with icon arrow */
.mp-btn--icon {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mp-btn--icon svg {
  width: 8px;
  height: 14px;
  fill: currentColor;
}

.mp-btn--white {
  background: var(--mp-white);
  color: var(--mp-blue);
  border-radius: var(--mp-radius-btn);
}

.mp-btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
}

.mp-btn--outline {
  background: transparent;
  color: var(--mp-white);
  border: 2px solid var(--mp-white);
  border-radius: var(--mp-radius-btn);
}

.mp-btn--outline:hover {
  background: var(--mp-white);
  color: var(--mp-blue);
}

/* Dark button variant */
.mp-btn--dark {
  background: var(--mp-dark);
  color: var(--mp-white);
  border-radius: var(--mp-radius-btn);
}

.mp-btn--dark:hover {
  background: var(--mp-dark-alt);
}

/* ==========================================
   HERO SECTION - Inscape Design System
   ========================================== */
.mp-hero {
  background-color: #00aeef;
  min-height: 500px;
  display: flex;
  align-items: center;
}

.mp-hero__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

.mp-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 48px;
  gap: 0;
  z-index: 3;
}

.mp-hero__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.2;
}

.mp-hero__tagline-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 24px;
}

.mp-hero__tagline-badge {
  display: inline;
  background-color: #fff;
  color: #00aeef;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2px;
  padding: 4px 8px;
  line-height: 1.4;
}

.mp-hero__subtitle {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  margin: 0 0 24px;
  max-width: 400px;
}

.mp-hero__subtitle a {
  color: #fff;
  text-decoration: underline;
}

.mp-btn--cta {
  background-color: transparent;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #fff;
  border-radius: var(--mp-radius-btn);
  padding: 12px 32px;
  text-decoration: none;
  display: inline-block;
  border: 2px solid #fff;
  transition: all 0.3s ease;
}

.mp-btn--cta:hover {
  background-color: #fff;
  color: #00aeef;
}

/* Hero Stats */
.mp-hero__stats {
  display: flex;
  gap: 32px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.mp-hero__stat {
  text-align: left;
}

.mp-hero__stat-value {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.mp-hero__stat-value span {
  font-size: 24px;
}

.mp-hero__stat-label {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 4px;
}

.mp-hero__visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  padding: 40px;
}

.mp-hero__illustration {
  width: 100%;
  height: 100%;
  min-height: 420px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

/* Hero decorative section below */
.mp-hero-deco {
  width: 100%;
  background-color: #fff;
}

.mp-hero-deco__bg {
  width: 100%;
  min-height: 300px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Mobile responsive hero */
@media (max-width: 1024px) {
  .mp-hero {
    min-height: auto;
    margin-top: 0;
  }

  .mp-hero__content {
    padding: 40px;
  }

  .mp-hero__title {
    font-size: 36px;
  }

  .mp-hero__tagline-badge {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .mp-hero__row {
    flex-direction: column;
  }

  .mp-hero__content {
    padding: 30px;
    align-items: flex-start;
  }

  .mp-hero__title {
    font-size: 30px;
    margin-bottom: 20px;
  }

  .mp-hero__tagline-wrap {
    margin-bottom: 20px;
  }

  .mp-hero__tagline-badge {
    font-size: 16px;
  }

  .mp-hero__subtitle {
    font-size: 16px;
    line-height: 20px;
  }

  .mp-hero__stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .mp-hero__stat-value {
    font-size: 24px;
  }

  .mp-hero__stat-value span {
    font-size: 18px;
  }

  .mp-hero__visual {
    min-height: 260px;
    order: -1;
  }

  .mp-hero__illustration {
    min-height: 260px;
  }

  .mp-hero-deco__bg {
    min-height: 350px;
  }
}

/* ==========================================
   SECTION BASE - Inscape Design System
   ========================================== */
.mp-section {
  padding: 60px 24px;
  background: var(--mp-white);
}

@media (min-width: 768px) {
  .mp-section {
    padding: 80px 48px;
  }
}

.mp-section__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: #00aeef;
  margin: 0 0 16px;
  text-align: center;
}

@media (min-width: 768px) {
  .mp-section__title {
    font-size: 36px;
    margin: 0 0 24px;
  }
}

.mp-section__intro {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  color: var(--mp-text-light);
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .mp-section__intro {
    font-size: 18px;
    margin: 0 auto 48px;
  }
}

/* ==========================================
   STEPS (Design & Build) - EXACT MATCH
   ========================================== */
#design-build {
  margin-bottom: 40px;
  padding: 5% 0 2%;
}

#design-build .mp-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

#design-build .mp-section__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.2;
  color: #00aeef;
  text-align: center;
  margin-bottom: 16px;
}

#design-build .mp-section__intro {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  letter-spacing: 0;
  color: #333333;
  text-align: center;
  max-width: 740px;
  margin: 0 auto 24px;
}

.mp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 20px;
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.mp-step {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px;
  background: #fff;
  transition: all 0.3s ease;
}

.mp-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Steps 1, 3, 5 have blue background (odd positions) */
.mp-step:nth-child(1),
.mp-step:nth-child(3),
.mp-step:nth-child(5) {
  background-color: #00aeef;
}

.mp-step:nth-child(1) .mp-step__num,
.mp-step:nth-child(3) .mp-step__num,
.mp-step:nth-child(5) .mp-step__num,
.mp-step:nth-child(1) .mp-step__title,
.mp-step:nth-child(3) .mp-step__title,
.mp-step:nth-child(5) .mp-step__title,
.mp-step:nth-child(1) .mp-step__desc,
.mp-step:nth-child(3) .mp-step__desc,
.mp-step:nth-child(5) .mp-step__desc {
  color: #fff;
}

.mp-step:nth-child(1) .mp-step__title a,
.mp-step:nth-child(3) .mp-step__title a,
.mp-step:nth-child(5) .mp-step__title a {
  color: #fff;
}

/* Steps 2, 4, 6 have white background with blue accent */
.mp-step:nth-child(2),
.mp-step:nth-child(4),
.mp-step:nth-child(6) {
  background-color: #fff;
  border-left: 4px solid #00aeef;
}

.mp-step:nth-child(2) .mp-step__num,
.mp-step:nth-child(4) .mp-step__num,
.mp-step:nth-child(6) .mp-step__num,
.mp-step:nth-child(2) .mp-step__title,
.mp-step:nth-child(4) .mp-step__title,
.mp-step:nth-child(6) .mp-step__title,
.mp-step:nth-child(2) .mp-step__desc,
.mp-step:nth-child(4) .mp-step__desc,
.mp-step:nth-child(6) .mp-step__desc {
  color: #333333;
}

.mp-step:nth-child(2) .mp-step__title a,
.mp-step:nth-child(4) .mp-step__title a,
.mp-step:nth-child(6) .mp-step__title a {
  color: #00aeef;
}

.mp-step__num {
  position: absolute;
  top: 24px;
  left: 16px;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
}

.mp-step__content {
  margin-left: 32px;
  flex: 1;
}

.mp-step__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
}

.mp-step__title a {
  text-decoration: none;
}

.mp-step__title a:hover {
  text-decoration: underline;
}

.mp-step__subtitle {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 8px;
}

.mp-step__desc {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}

/* Steps responsive */
@media (max-width: 1024px) {
  .mp-steps {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }

  #design-build .mp-section__title {
    font-size: 36px;
  }

  #design-build .mp-section__intro {
    font-size: 18px;
  }
}

@media (max-width: 767px) {
  #design-build {
    padding: 60px 20px 20px;
  }

  #design-build .mp-section__title {
    font-size: 40px;
    line-height: 48px;
    text-align: start;
  }

  #design-build .mp-section__intro {
    text-align: start;
  }

  .mp-steps {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .mp-step {
    padding: 30px;
    gap: 20px;
  }

  .mp-step__num {
    top: 26px;
    left: 22px;
    font-size: 36px;
  }

  .mp-step__title {
    font-size: 22px;
  }

  .mp-step__desc {
    font-size: 16px;
  }
}

/* ==========================================
   EXPERTISE (Blue Banner) - Inscape Design System
   ========================================== */
.mp-expertise {
  background: #00aeef;
  color: var(--mp-white);
  padding: 80px 48px;
  text-align: center;
}

.mp-expertise .mp-container {
  max-width: 1200px;
}

.mp-expertise__pretitle {
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.4;
  margin-bottom: 8px;
  color: #fff;
}

.mp-expertise__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 28px;
  font-weight: 400;
  font-style: italic;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #fff;
}

@media (min-width: 768px) {
  .mp-expertise__title {
    font-size: 36px;
  }
}

.mp-expertise__tagline {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 48px;
  letter-spacing: 1px;
  color: #fff;
}

@media (min-width: 768px) {
  .mp-expertise__tagline {
    font-size: 48px;
  }
}

/* Logo card with text beside it */
.mp-expertise__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  background: var(--mp-white);
  padding: 32px;
  max-width: 700px;
  margin: 0 auto;
  border-radius: var(--mp-radius-card);
}

@media (min-width: 768px) {
  .mp-expertise__card {
    flex-direction: row;
    gap: 32px;
    padding: 32px 40px;
  }
}

.mp-expertise__logo {
  max-width: 150px;
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.mp-expertise__card-content {
  text-align: center;
}

@media (min-width: 768px) {
  .mp-expertise__card-content {
    text-align: left;
  }
}

.mp-expertise__subtitle {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin: 0 0 20px;
  color: #333333;
}

.mp-expertise .mp-btn--dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a1a1a;
  color: var(--mp-white);
  padding: 12px 24px;
  border-radius: var(--mp-radius-btn);
}

.mp-expertise .mp-btn--dark::after {
  content: "›";
  font-size: 18px;
}

.mp-expertise .mp-btn--dark:hover {
  background: #333333;
}

/* ==========================================
   BUDGET (Light Section) - Inscape Design System
   ========================================== */
.mp-budget {
  background: #e6f7ff;
  color: #333333;
  padding: 80px 48px;
  text-align: center;
}

.mp-budget .mp-container {
  max-width: 900px;
}

.mp-budget__label {
  display: block;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  color: #333333;
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 24px;
}

.mp-budget__headline {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mp-budget__text {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.mp-budget__note {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #666666;
  margin: 0 0 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
}

/* Budget images grid (replaces cards) */
.mp-budget__images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 800px;
  margin: 0 auto 40px;
}

@media (min-width: 768px) {
  .mp-budget__images {
    grid-template-columns: 1fr 1fr;
  }
}

.mp-budget__image {
  overflow: hidden;
  border-radius: var(--mp-radius-card);
}

.mp-budget__image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

.mp-budget__image:hover img {
  transform: scale(1.03);
}

/* Legacy card styles (hidden but kept for compatibility) */
.mp-budget__cards {
  display: none;
}

.mp-budget__card {
  display: none;
}

.mp-budget .mp-btn--blue {
  background: var(--mp-blue);
  color: var(--mp-white);
}

/* ==========================================
   PARTNERS - Inscape Design System
   ========================================== */
.mp-partners {
  padding: 80px 48px;
  margin: 0;
  background: var(--mp-white);
}

.mp-partners .mp-container {
  max-width: 1200px;
}

.mp-partners__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  background: #f5f5f5;
  border-radius: var(--mp-radius-card);
  padding: 40px;
}

@media (min-width: 768px) {
  .mp-partners__grid {
    flex-direction: row;
    gap: 48px;
    padding: 48px 60px;
  }
}

.mp-partners__image-wrap {
  flex-shrink: 0;
}

.mp-partners__image {
  width: 100%;
  max-width: 300px;
  height: auto;
  border-radius: var(--mp-radius-card);
  object-fit: contain;
}

@media (min-width: 768px) {
  .mp-partners__image {
    max-width: 400px;
  }
}

.mp-partners__content {
  text-align: center;
  flex: 1;
}

@media (min-width: 768px) {
  .mp-partners__content {
    text-align: left;
  }
}

.mp-partners__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #333333;
}

.mp-partners__title a {
  color: #00aeef;
  text-decoration: none;
}

.mp-partners__title a:hover {
  text-decoration: underline;
}

.mp-partners__intro {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 24px;
}

.mp-partners .mp-btn--blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mp-partners .mp-btn--blue::after {
  content: "›";
  font-size: 18px;
}

/* ==========================================
   CATEGORIES - 6 column grid with background images
   ========================================== */
.mp-categories {
  padding: 0 0 40px;
  background: var(--mp-white);
}

.mp-categories__header {
  text-align: left;
  padding: 40px 0 24px;
}

.mp-categories__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #333333;
}

.mp-categories__title a {
  color: #00aeef;
  text-decoration: none;
}

.mp-categories__title a:hover {
  text-decoration: underline;
}

.mp-categories .mp-container {
  max-width: 1200px;
}

.mp-categories__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 600px) {
  .mp-categories__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .mp-categories__grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.mp-category {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  text-align: center;
  min-height: 200px;
  background-size: cover;
  background-position: center;
  border-radius: var(--mp-radius-card);
  overflow: hidden;
  position: relative;
  transition: all 0.3s ease;
}

.mp-category::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.6) 0%,
    rgba(0, 0, 0, 0) 60%
  );
}

.mp-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.mp-category__image {
  display: none;
}

.mp-category__title {
  position: relative;
  z-index: 1;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
  color: #fff;
  margin: 0;
  padding: 20px 10px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .mp-category__title {
    font-size: 15px;
  }
}

/* ==========================================
   SHOP - Inscape Design System
   ========================================== */
.mp-shop {
  padding: 80px 48px;
  background: var(--mp-white);
}

.mp-shop .mp-container {
  max-width: 1200px;
}

.mp-shop__grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  background: #f5f5f5;
  border-radius: var(--mp-radius-card);
  padding: 40px;
}

@media (min-width: 768px) {
  .mp-shop__grid {
    flex-direction: row;
    gap: 48px;
    padding: 48px 60px;
  }
}

.mp-shop__content {
  text-align: center;
  flex: 1;
}

@media (min-width: 768px) {
  .mp-shop__content {
    text-align: left;
  }
}

.mp-shop__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 16px;
  color: #333333;
}

.mp-shop__title a {
  color: #00aeef;
  text-decoration: none;
}

.mp-shop__title a:hover {
  text-decoration: underline;
}

.mp-shop__desc {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 24px;
}

.mp-shop .mp-btn--blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.mp-shop .mp-btn--blue::after {
  content: "›";
  font-size: 18px;
}

.mp-shop__images {
  flex-shrink: 0;
}

.mp-shop__img {
  border-radius: var(--mp-radius-card);
  object-fit: cover;
  max-width: 100%;
  height: auto;
}

.mp-shop__img--main {
  width: 100%;
  max-width: 350px;
}

.mp-shop__img--side {
  display: none;
}

/* ==========================================
   OTHER SERVICES - Inscape Design System
   ========================================== */
.mp-other {
  padding: 80px 48px;
  background: var(--mp-white);
}

.mp-other .mp-container {
  max-width: 1200px;
}

.mp-other__header {
  text-align: left;
  margin-bottom: 32px;
}

.mp-other__section-title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
  color: #333333;
}

.mp-other__section-title a {
  color: #00aeef;
  text-decoration: none;
}

.mp-other__section-title a:hover {
  text-decoration: underline;
}

.mp-other__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .mp-other__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

.mp-other__card {
  background: var(--mp-white);
  border-radius: 0;
  overflow: visible;
  box-shadow: none;
  transition: all 0.3s ease;
}

.mp-other__card:hover {
  transform: translateY(-4px);
}

.mp-other__image {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  margin-bottom: 16px;
}

.mp-other__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--mp-radius-card);
  transition: transform 0.3s ease;
}

.mp-other__card:hover .mp-other__image img {
  transform: scale(1.03);
}

.mp-other__content {
  padding: 0;
}

.mp-other__title {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 12px;
  color: #333333;
}

/* Divider line under title */
.mp-other__divider {
  width: 60px;
  height: 3px;
  background: #00aeef;
  margin: 0 0 12px;
}

.mp-other__desc {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: #333333;
  margin: 0 0 16px;
}

.mp-other .mp-btn--outline {
  background: #00aeef;
  color: #fff;
  border: none;
  border-radius: var(--mp-radius-btn);
}

/* ==========================================
   ERROR STATE
   ========================================== */
.mp-error {
  padding: 100px 20px;
  text-align: center;
}

.mp-error p {
  color: var(--mp-text-light);
  margin-bottom: 20px;
}
