/* =========================
   OEM Page — base
========================= */

/* Design tokens */
:root {
  --oem-green:      #004035;
  --oem-teal:       #489286;
  --oem-teal-light: #eaf0ef;
  --oem-pink:       #9c1d52;
  --oem-pink-light: #fff9fa;
}


/* =========================
   FV
========================= */

.oem-fv {
  position: relative;
  height: 720px;
  background-image: url('../assets/oem/oem-fv.webp');
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.oem-fv-inner {
  padding: 40px 60px;
}

.oem-fv-title {
  font-size: 24px;
  font-weight: bold;
  color: #161616;
  margin: 0;
  white-space: nowrap;
}

.oem-fv-title-sp {
  display: none;
}


/* =========================
   Achievement Slider
========================= */

.oem-achv {
  background: #fff;
  padding: 20px;
  overflow: hidden;
}

/* ===== slider shared ===== */

.top-scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding-bottom: 16px;
  -webkit-overflow-scrolling: touch;
}

.top-scroll::-webkit-scrollbar { display: none; }

.top-card {
  flex: 0 0 auto;
  width: 250px;
  text-align: center;
}

.top-image-wrap {
  position: relative;
  width: 250px;
  height: 250px;
  margin-bottom: 12px;
  border-radius: 20px;
  /* background: #f7f7f7; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image {
  width: 250px;
  height: 250px;
  object-fit: contain;
  display: block;
}


/* =========================
   Container
========================= */

.oem-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}


/* =========================
   Intro
========================= */

.oem-intro {
  background: var(--oem-pink-light);
  padding: 30px 20px;
}

.oem-intro-inner {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.oem-intro-text {
  flex: 1;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
  color: #000;
}

.oem-intro-text p { margin: 0 0 16px; }
.oem-intro-text p:last-child { margin-bottom: 0; }

.oem-conditions-card {
  flex: 1;
  background: #fff;
  border-radius: 20px;
  padding: 36px 40px;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.7;
}

.oem-conditions-title {
  margin: 0 0 8px;
}

.oem-conditions-card ul {
  margin: 0;
  padding-left: 24px;
  list-style: disc;
}

.oem-conditions-card li {
  margin-bottom: 4px;
}


/* =========================
   Type selector
========================= */

.oem-types {
  background: #fff;
  padding: 24px 20px;
  text-align: center;
}

.oem-types-label {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin: 0 0 30px;
}

.oem-types-btns {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}

.oem-type-btn {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 108px;
  padding: 22px 40px 22px 21px;
  border-radius: 74px;
  text-decoration: none;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  line-height: 1.2;
}

.oem-type-btn--green {
  background: var(--oem-green);
  min-width: 345px;
}

.oem-type-btn--pink {
  background: var(--oem-pink);
  min-width: 345px;
}

.oem-type-btn-img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  flex-shrink: 0;
}


/* =========================
   Type sections (colored bg wrapper)
========================= */

.oem-type-section {
  width: 100%;
  background: #fff;
  padding: 50px 20px;
  box-sizing: border-box;
}

.oem-type-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 50px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
}

.oem-type-section--teal .oem-type-inner { background: var(--oem-teal-light); }
.oem-type-section--pink  .oem-type-inner { background: var(--oem-pink-light); }


/* =========================
   Subblock (product views)
========================= */

.oem-subblock {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 46px;
  width: 100%;
  max-width: 1200px;
  padding: 36px 40px;
  box-sizing: border-box;
}

.oem-subblock-header {
  width: 100%;
  min-height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  padding: 16px 20px;
  box-sizing: border-box;
}

.oem-subblock-header--green { background: var(--oem-green); }
.oem-subblock-header--pink  { background: var(--oem-pink); }


/* =========================
   Product views (TOP / Side / Image)
========================= */

.oem-views {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.oem-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 293px;
}

.oem-view-label {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  margin: 0;
  text-align: center;
}

/* Tin views — cropped from tin-size.webp */
.oem-view-img--tin {
  width: 293px;
  height: 293px;
  background-image: url('../assets/oem/tin-size.webp');
  background-size: auto 100%;
  background-repeat: no-repeat;
  border-radius: 4px;
  overflow: hidden;
}

.oem-view-img--top  { background-position: 0% center; }
.oem-view-img--side { background-position: 50% center; }

.oem-view-img--aura {
  width: 293px;
  height: 293px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 4px;
}

.oem-view-img--aura img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Bag views */
.oem-views--bag {
  gap: 19px;
}

.oem-view--bag {
  width: auto;
}

.oem-view-img--bag {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}

.oem-view-img--bag-front {
  width: 468px;
  height: 468px;
  background: #dde0e7;
}

.oem-view-img--bag-front img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oem-view-img--bag-back {
  width: 460px;
  height: 468px;
}

.oem-view-img--bag-back img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oem-view-img-label {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: bold;
  color: var(--oem-pink);
  margin: 0;
}


/* =========================
   Badges
========================= */

.oem-badges {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

.oem-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 66px;
  padding: 0 20px;
  width: 363px;
  border-radius: 80px;
  border-width: 3px;
  border-style: solid;
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
  background: #fff;
  box-sizing: border-box;
}

.oem-badge-br {
  display: none;
}

.oem-badge--green {
  border-color: var(--oem-teal);
  color: #0a0b0f;
}

.oem-badge--pink {
  border-color: var(--oem-pink);
  color: var(--oem-pink);
}


/* =========================
   Template selector A-F
========================= */

.oem-templates {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}

.oem-templates-desc {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-align: left;
  line-height: 1.4;
  margin: 0;
  width: 100%;
}

.oem-templates-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.oem-tmpl-card {
  position: relative;
  width: 328px;
  height: 328px;
  overflow: hidden;
  border-radius: 4px;
  flex-shrink: 0;
}

.oem-tmpl-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oem-tmpl-badge {
  position: absolute;
  top: 15px;
  left: 11px;
  width: 85px;
  height: 85px;
  background: var(--oem-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  color: #fff;
}


/* =========================
   Customize (logo/name)
========================= */

.oem-customize {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.oem-customize-title {
  font-size: 16px;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-align: center;
}

.oem-customize-images {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.oem-customize-img {
  width: 356px;
  height: 349px;
  overflow: hidden;
  border-radius: 4px;
}

.oem-customize-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.oem-customize-note {
  font-size: 14px;
  font-weight: bold;
  color: #000;
  margin: 0;
  text-align: center;
}

.oem-back-label {
  width: 100%;
  max-width: 982px;
  overflow: hidden;
  border-radius: 4px;
}

.oem-back-label img {
  width: 100%;
  height: auto;
  display: block;
}

.oem-back-label--full {
  max-width: 100%;
}


/* =========================
   CONTACT button
========================= */

.oem-contact-wrap {
  /* padding: 40px 0; */
  display: flex;
  justify-content: center;
}

.oem-contact-btn {
  display: flex;
  align-items: center;
  gap: 74px;
  height: 76px;
  padding: 10px 13px;
  border-radius: 70.5px;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.02em;
  width: 381px;
  background: #fff;
  border-width: 2px;
  border-style: solid;
  box-sizing: border-box;
}

.oem-contact-btn--green {
  border-color: var(--oem-green);
  color: var(--oem-green);
}

.oem-contact-btn--pink {
  border-color: var(--oem-pink);
  color: var(--oem-pink);
}

.oem-contact-icon {
  width: 54px;
  height: 54px;
  border-radius: 27.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.oem-contact-icon--green { background: var(--oem-green); }
.oem-contact-icon--pink  { background: var(--oem-pink); }

.oem-contact-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}


/* =========================
   Template spec (Tin)
========================= */

.oem-spec {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.oem-spec-img-wrap {
  width: 100%;
}

.oem-spec-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

.oem-spec-note {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  text-align: center;
  margin: 0;
}

.oem-spec-diagram {
  position: relative;
  width: 100%;
}

.oem-spec-diagram--tin {
  border: 1.5px solid var(--oem-pink);
  padding: 20px;
  box-sizing: border-box;
  min-height: 100px;
}

.oem-spec-outer {
  position: relative;
  border: 1.5px dashed var(--oem-pink);
  border-right: none;
  height: 80px;
  display: flex;
  align-items: center;
}

.oem-spec-overlap {
  position: absolute;
  right: -40px;
  top: 0;
  bottom: 0;
  width: 40px;
  background: var(--oem-teal);
  border: 1.5px dashed var(--oem-pink);
}

.oem-spec-overlap-label {
  position: absolute;
  right: -120px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  white-space: nowrap;
  background: var(--oem-teal);
  padding: 4px 8px;
}

.oem-spec-size-label {
  font-size: 24px;
  font-weight: 600;
  color: var(--oem-pink);
  text-align: center;
  padding: 12px 0 0;
}

.oem-spec-bleed {
  font-size: 14px;
  color: #000;
  line-height: 1.4;
  padding-top: 8px;
}

.oem-spec-bleed-mark {
  font-size: 11px;
  font-weight: 600;
  color: #000;
}

.oem-spec-instructions {
  font-size: 16px;
  color: #000;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: left;
}

.oem-spec-instructions p { margin: 0 0 4px; }


/* =========================
   Template spec (Bag)
========================= */

.oem-spec-bag-layout {
  display: flex;
  gap: 66px;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 939px;
}

.oem-spec-bag-diagram {
  flex-shrink: 0;
  width: 319px;
}

.oem-spec-bag-outer {
  position: relative;
  border: 2px solid var(--oem-teal);
  height: 440px;
  box-sizing: border-box;
}

.oem-spec-bag-inner {
  position: absolute;
  top: 15px; left: 10px;
  right: 10px; bottom: 15px;
  border: 2px dashed var(--oem-teal);
}

.oem-spec-bag-size {
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 20px;
  font-weight: 600;
  color: var(--oem-green);
  white-space: nowrap;
}

.oem-spec-bag-bleed-mark {
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 600;
  color: #000;
}

.oem-spec-bag-notes {
  margin-top: 40px;
  font-size: 14px;
  color: #000;
  line-height: 1.4;
}

.oem-spec-bag-text {
  flex: 1;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 64px;
  justify-content: center;
}

.oem-spec-bag-info {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

.oem-spec-bag-info p { margin: 0 0 8px; }

.oem-spec-bag-info ul {
  margin: 0 0 8px;
  padding-left: 24px;
  list-style: disc;
}

.oem-spec-bag-info li { margin-bottom: 4px; }


/* =========================
   Download template button
========================= */

.oem-download-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 10px;
  width: 100%;
  max-width: 1120px;
  box-sizing: border-box;
}

.oem-download-box--green {
  border: 3px solid var(--oem-teal);
}

.oem-download-box--pink {
  border: 3px solid var(--oem-pink);
}

.oem-download-box p {
  font-size: 14px;
  font-weight: 400;
  color: #000;
  text-align: center;
  margin: 0 0 10px;
  line-height: 1.4;
}

.oem-download-btn {
  display: grid;
  grid-template-columns: 57px 1fr 57px;
  align-items: center;
  height: 79px;
  padding: 11px 23px 11px 28px;
  border-radius: 70px;
  background: linear-gradient(to right, #7a1848, #064334);
  text-decoration: none;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  width: 410px;
  box-sizing: border-box;
}

.oem-download-icon {
  width: 27px;
  height: 27px;
  filter: brightness(0) invert(1);
}

.oem-download-btn span:not(.oem-ai-badge) {
  text-align: center;
}

.oem-ai-badge {
  width: 57px;
  height: 57px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.oem-ai-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* =========================
   Check list
========================= */

.oem-checklist {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 771px;
  width: 100%;
  margin: 0 auto;
  padding: 0px 0 !important;
}

.oem-checklist-title {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  text-align: center;
  margin: 0;
}

.oem-checklist-card {
  background: #fff;
  border-radius: 14px;
  /* box-shadow: 0 1px 4px rgba(0, 0, 0, 0.25); */
  padding: 64px;
  width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.oem-checklist-items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.oem-checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 7px;
  border: 2px solid #e2e2e2;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 400;
  color: #000;
  line-height: 1.4;
}

.oem-checklist-items li img {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  margin-top: 2px;
}

.oem-checklist-note {
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  line-height: 1.4;
  margin: 0;
}

.oem-checklist-note--pink  { color: var(--oem-pink); }
.oem-checklist-note--green { color: var(--oem-green); }


/* =========================
   Responsive
========================= */

@media (max-width: 1024px) {
  .oem-tmpl-card {
    width: calc(33.333% - 6px);
    height: 0;
    padding-bottom: calc(33.333% - 6px);
  }

  .oem-tmpl-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .oem-templates-grid {
    width: 100%;
  }

  .oem-view-img--bag-front,
  .oem-view-img--bag-back {
    width: 100%;
    max-width: 468px;
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 768px) {
  .oem-fv {
    height: 390px;
    align-items: flex-end;
    justify-content: center;
  }

  .oem-fv-inner {
    display: none;
  }

  .oem-fv-title-sp {
    display: block;
    font-size: 20px;
    font-weight: bold;
    color: #161616;
    text-align: center;
    padding: 20px 20px 0;
    margin: 0;
  }

  .oem-intro-inner {
    flex-direction: column;
    gap: 24px;
  }

  .oem-types-btns {
    flex-direction: column;
    align-items: center;
  }

  .oem-type-btn {
    width: 100%;
    min-width: unset;
    font-size: 16px;
    height: 78px;
    padding: 12px 16px 12px 16px;
    position: relative;
    justify-content: center;
  }

  .oem-type-btn-img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    position: absolute;
    left: 16px;
  }

  .oem-type-btn > span,
  .oem-type-btn > div {
    text-align: center;
  }

  .oem-type-section {
    padding: 20px 16px;
  }

  .oem-type-inner {
    padding: 24px 8px;
    gap: 28px;
  }

  .oem-subblock-header {
    font-size: 16px;
    min-height: auto;
    padding: 16px;
    white-space: normal;
    text-align: center;
  }

  .oem-views {
    gap: 20px;
  }

  .oem-view {
    width: calc(50% - 10px);
  }

  .oem-view-img--tin {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
    background-size: auto 100%;
  }

  .oem-view-img--aura {
    width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;
  }

  .oem-view-img--aura img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .oem-templates-desc {
    font-size: 14px;
    text-align: left;
  }

  .oem-tmpl-card {
    width: calc(50% - 4px);
    aspect-ratio: 1 / 1;
    height: auto;
    position: relative;
  }

  .oem-tmpl-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .oem-customize-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .oem-customize-img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .oem-badges {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    width: 100%;
  }

  .oem-badge {
    width: 100%;
    height: auto;
    padding: 10px 8px;
    font-size: 12px;
    white-space: normal;
    text-align: center;
    line-height: 1.4;
  }

  .oem-badge-br {
    display: inline;
  }

  .oem-contact-btn {
    gap: 20px;
    width: auto;
    height: 56px;
    font-size: 16px;
    padding: 8px 52px 8px 8px;
  }

  .oem-contact-icon {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    padding: 10px;
  }

  .oem-checklist-card {
    padding: 24px 10px;
  }

  .oem-checklist-items li {
    white-space: normal;
  }

  .oem-pblock-wrap--teal > *,
  .oem-pblock-wrap--pink  > * {
    padding: 24px 16px;
  }

  .oem-spec-bag-layout {
    flex-direction: column;
    gap: 30px;
  }

  .oem-spec-bag-diagram {
    width: 100%;
    max-width: 319px;
  }

  .oem-spec-bag-text {
    gap: 30px;
  }

  .oem-download-btn {
    width: 100%;
    max-width: 390px;
    grid-template-columns: 32px 1fr 40px;
    font-size: 13px;
    padding: 11px 14px 11px 14px;
    height: auto;
    min-height: 64px;
  }

  .oem-download-icon {
    width: 22px;
    height: 22px;
  }

  .oem-ai-badge {
    width: 40px;
    height: 40px;
  }

  .oem-views--bag {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    gap: 8px;
  }

  .oem-view--bag {
    flex: 1 1 0;
    min-width: 0;
  }

  .oem-view-img--bag-front,
  .oem-view-img--bag-back {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .oem-conditions-card {
    padding: 24px 20px;
  }
}

/* =============================================
   Ingredient Labeling
   ============================================= */

.oem-ingredient-section {
  background: #fff;
  padding: 40px 10px;
}

.oem-ingredient-box {
  max-width: 1200px;
  margin: 0 auto;
  background: #f1f1f1;
  padding: 36px 40px;
  box-sizing: border-box;
}

.oem-ingredient-content {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 46px;
}

.oem-ingredient-header {
  background: #4c4c4c;
  height: 94px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  width: 100%;
}

.oem-ingredient-rows {
  max-width: 943px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.oem-ingredient-row {
  display: flex;
  gap: 17px;
  align-items: stretch;
}

.oem-ingredient-photo {
  flex: 0 0 calc(50% - 8.5px);
  overflow: hidden;
}

.oem-ingredient-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.oem-ingredient-card {
  flex: 0 0 calc(50% - 8.5px);
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 43px 26px 52px;
  box-sizing: border-box;
}

.oem-ingredient-card-title {
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 26px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  width: 100%;
  box-sizing: border-box;
}

.oem-ingredient-card-title--green {
  background: #004035;
}

.oem-ingredient-card-title--pink {
  background: #9c1d52;
}

.oem-ingredient-card-body img {
  width: 100%;
  height: auto;
  display: block;
}

.oem-ingredient-multilang {
  max-width: 943px;
  width: 100%;
  margin: 0 auto;
  border: 2px solid #7a7a7a;
  padding: 34px 40px 37px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.oem-ingredient-multilang-text {
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  margin: 0;
}

.oem-ingredient-screenshots {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.oem-ingredient-screenshot {
  background: #fff;
  border: 1.5px solid #d6d6d6;
  border-radius: 15px;
  overflow: hidden;
  flex: 0 0 calc(50% - 6px);
  max-width: 342px;
}

.oem-ingredient-screenshot img {
  width: 100%;
  height: auto;
  display: block;
  padding: 10px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .oem-ingredient-box {
    padding: 24px 16px;
  }

  .oem-ingredient-content {
    gap: 30px;
  }

  .oem-ingredient-header {
    height: 60px;
    font-size: 18px;
  }

  .oem-ingredient-row {
    flex-direction: column;
    gap: 12px;
  }

  .oem-ingredient-photo {
    flex: none;
    width: 100%;
  }

  .oem-ingredient-card {
    flex: none;
    width: 100%;
    padding: 24px 16px 32px;
    gap: 16px;
  }

  .oem-ingredient-card-title {
    font-size: 15px;
    height: auto;
    padding: 14px 16px;
  }

  .oem-ingredient-multilang {
    padding: 24px 16px;
    gap: 16px;
  }

  .oem-ingredient-multilang-text {
    font-size: 14px;
  }

  .oem-ingredient-screenshot {
    flex: 0 0 100%;
    max-width: 100%;
  }
}
