/* ===== ОСНОВА ===== */
.olaplex-grid {
  display: flex;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.olaplex-card {
  flex: 1;
  position: relative;
  height: 500px;
  overflow: hidden;
  background: #f5f5f5;
}

/* ===== MEDIA (відео/картинка) ===== */
.media-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

/* 🔥 ФІКС ВІДЕО (ГОЛОВНЕ) */
.media-bg video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 101%;
  height: 101%;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

/* Картинка */
.media-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ===== OVERLAY ===== */
.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.15);
  z-index: 2;
}

/* ===== ТЕКСТ ===== */
.olaplex-inner {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  color: #000;
}

/* текстовий блок зверху */
.text-card .olaplex-inner {
  top: 20px;
  bottom: auto;
}

/* білий текст на медіа */
.media-card .olaplex-inner {
  color: #fff;
}

/* центр для відео */
.olaplex-inner.center {
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

/* ===== ТИПОГРАФІКА ===== */
.olaplex-pre {
  font-size: 11px;
  text-transform: uppercase;
  opacity: 0.7;
}

.olaplex-inner h3 {
  font-size: 22px;
  margin: 10px 0;
}

.olaplex-inner p {
  font-size: 14px;
  margin-bottom: 10px;
}

.olaplex-link {
  font-size: 13px;
  border-bottom: 1px solid currentColor;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .olaplex-grid {
    flex-direction: column;
    gap: 10px;
  }

  .olaplex-card {
    width: 100%;
    max-width: 100%;
    height: 400px;
  }

}

/* ===== 💣 ФІНАЛЬНИЙ ФІКС ВІД ВИЛАЗАННЯ ===== */
html, body {
  overflow-x: hidden;
}

/* якщо Bootstrap ламає */
.row {
  margin-left: 0 !important;
  margin-right: 0 !important;
}