body.edibrico-mm-page, .edibrico-mm {
  --red: #d71920;
  --red-dark: #b91319;
  --ink: #333333;
  --muted: #555555;
  --line: #eeeeee;
  --paper: #ffffff;
  --page: #f9f9f9;
}

.edibrico-mm, .edibrico-mm * {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.edibrico-mm-page {
  margin: 0;
  padding: 0;
  background: var(--page);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

.edibrico-mm a {
  color: inherit;
}

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

.edibrico-mm button,
.edibrico-mm audio,
.edibrico-mm video {
  font: inherit;
}

.edibrico-mm :focus-visible {
  outline: 3px solid rgba(211, 47, 47, 0.42);
  outline-offset: 4px;
}

.edibrico-mm .hero-header {
  position: relative;
  min-height: 245px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 3.7rem 1rem 5.2rem;
  background: var(--red);
  color: var(--paper);
  text-align: center;
}

.edibrico-mm .hero-site-link {
  position: absolute;
  top: 12px;
  right: max(1.25rem, calc((100% - 1000px) / 2));
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 4px 0;
  color: var(--paper);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.edibrico-mm .hero-site-link:hover {
  text-decoration-thickness: 2px;
}

.edibrico-mm .hero-site-link:focus-visible {
  outline: 2px solid var(--paper);
  outline-offset: 4px;
}

.edibrico-mm .hero-logo {
  width: min(350px, 74vw);
  height: auto;
}

.edibrico-mm .hero-header p {
  margin: 0;
  font-size: clamp(1.05rem, 2vw, 1.5rem);
  font-weight: 300;
}

.edibrico-mm .main-container {
  position: relative;
  width: min(1000px, calc(100% - 32px));
  margin: -3rem auto 3rem;
  padding: 3rem;
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.edibrico-mm .intro-copy {
  max-width: 850px;
  margin: 0 auto 3rem;
  color: var(--muted);
  font-size: 1.2rem;
  text-align: center;
}

.edibrico-mm .intro-copy p {
  margin: 0;
}

.edibrico-mm .section-title {
  margin: 2rem 0 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
  color: var(--red);
  font-size: 2rem;
  line-height: 1.25;
}

.edibrico-mm .products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.edibrico-mm .product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid #eaeaea;
  border-top: 4px solid var(--red);
  border-radius: 8px;
  background: var(--paper);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.edibrico-mm .product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.edibrico-mm .product-card > img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.edibrico-mm .product-card-copy {
  padding: 1.5rem;
}

.edibrico-mm .tag {
  display: inline-block;
  margin-bottom: 10px;
  padding: 3px 8px;
  border: 1px solid #f1b9bc;
  border-radius: 4px;
  background: #fff1f2;
  color: var(--red-dark);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1.4;
  text-transform: uppercase;
}

.edibrico-mm .product-card h2,
.edibrico-mm .media-box h2 {
  margin: 10px 0 16px;
  color: #222222;
  font-size: 1.35rem;
  line-height: 1.25;
}

.edibrico-mm .product-card p {
  margin: 0;
  font-size: 0.96rem;
  line-height: 1.62;
}

.edibrico-mm .slider-section {
  margin-top: 4rem;
}

.edibrico-mm .dealer-actions {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.edibrico-mm .dealer-link {
  max-width: 100%;
  text-align: center;
}

.edibrico-mm .slider-container {
  position: relative;
  max-width: 100%;
  margin: 1rem auto;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #f5f5f5;
}

.edibrico-mm .slide {
  position: relative;
  min-width: 100%;
}

.edibrico-mm .slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  opacity: 1;
}

.edibrico-mm .slide-caption {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 15px;
  border-top: 1px solid #e7e7e7;
  background: rgba(255, 255, 255, 0.95);
  color: var(--ink);
  font-size: 1.08rem;
  text-align: center;
}

.edibrico-mm .slider-nav {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.edibrico-mm .slider-nav button {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  margin: 0 15px;
  padding: 0 0 2px;
  border: 0;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.88);
  color: var(--paper);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  pointer-events: auto;
  transition: background 0.3s ease, transform 0.2s ease;
}

.edibrico-mm .slider-nav button:hover {
  background: var(--red);
  transform: scale(1.05);
}

.edibrico-mm .media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

.edibrico-mm .media-box {
  min-width: 0;
  padding: 2rem;
  border-radius: 8px;
  background: #f4f4f4;
  text-align: center;
}

.edibrico-mm .media-box h2 {
  margin-top: 0;
}

.edibrico-mm .media-box p {
  min-height: 52px;
  margin: 0 0 1rem;
}

.edibrico-mm .media-cover,
.edibrico-mm .media-box video {
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 4px;
  object-fit: cover;
}

.edibrico-mm .media-box audio,
.edibrico-mm .media-box video {
  width: 100%;
  margin-top: 1rem;
  outline: none;
}

.edibrico-mm .media-box video {
  background: #eeeeee;
}

.edibrico-mm .cta-section {
  margin-top: 4rem;
  padding: 3rem;
  border: 1px solid #f1c3c5;
  border-radius: 8px;
  background: #fff5f5;
  color: var(--ink);
  text-align: center;
}

.edibrico-mm .cta-section h2 {
  margin: 0;
  color: var(--red);
  font-size: 2rem;
}

.edibrico-mm .cta-section p {
  margin: 1.7rem 0 0;
}

.edibrico-mm .cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 0;
}

.edibrico-mm .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 54px;
  margin: 0;
  padding: 14px 28px;
  border: 2px solid var(--red);
  border-radius: 30px;
  background: var(--red);
  color: var(--paper);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease;
}

.edibrico-mm .btn:hover {
  border-color: var(--red-dark);
  background: var(--red-dark);
  transform: scale(1.04);
}

.edibrico-mm .btn-outline {
  border-color: var(--paper);
  background: transparent;
}

.edibrico-mm .btn-outline:hover {
  border-color: var(--paper);
  background: var(--paper);
  color: #222222;
}

@media (max-width: 920px) {
  .edibrico-mm .products-grid {
    grid-template-columns: 1fr;
  }

  .edibrico-mm .product-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.85fr) 1.15fr;
  }

  .edibrico-mm .product-card > img {
    height: 100%;
    min-height: 300px;
  }
}

@media (max-width: 768px) {
  .edibrico-mm .hero-header {
    min-height: 220px;
    padding: 4.8rem 1rem 4.7rem;
  }

  .edibrico-mm .main-container {
    width: min(100% - 22px, 1000px);
    padding: 2rem 1.25rem;
  }

  .edibrico-mm .intro-copy {
    margin-bottom: 2.4rem;
    font-size: 1.05rem;
  }

  .edibrico-mm .section-title,
  .edibrico-mm .cta-section h2 {
    font-size: 1.65rem;
  }

  .edibrico-mm .product-card {
    display: block;
  }

  .edibrico-mm .product-card > img {
    height: 260px;
    min-height: 0;
  }

  .edibrico-mm .slide img {
    height: min(62vw, 430px);
    min-height: 330px;
  }

  .edibrico-mm .media-grid {
    grid-template-columns: 1fr;
  }

  .edibrico-mm .media-box p {
    min-height: 0;
  }

  .edibrico-mm .cta-section {
    padding: 2.25rem 1.2rem;
  }

  .edibrico-mm .cta-actions {
    align-items: stretch;
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .edibrico-mm .hero-header p {
    max-width: 330px;
    font-size: 1rem;
  }

  .edibrico-mm .main-container {
    margin-top: -2.25rem;
  }

  .edibrico-mm .product-card > img {
    height: 220px;
  }

  .edibrico-mm .slide img {
    height: 390px;
    min-height: 0;
  }

  .edibrico-mm .slide-caption {
    padding: 12px 54px;
    font-size: 0.88rem;
  }

  .edibrico-mm .slider-nav button {
    width: 42px;
    height: 42px;
    margin: 0 10px;
  }

  .edibrico-mm .media-box {
    padding: 1.35rem;
  }

  .edibrico-mm .btn {
    width: 100%;
    padding-inline: 18px;
    font-size: 0.94rem;
  }
}

body.edibrico-mm-page {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
}

.edibrico-mm {
  width: 100%;
  max-width: none;
  overflow-x: clip;
}

.edibrico-mm .slider-nav button:focus-visible,
.edibrico-mm .btn:focus-visible,
.edibrico-mm audio:focus-visible,
.edibrico-mm video:focus-visible {
  outline: 3px solid #e3232b;
  outline-offset: 4px;
}
