/* CORE */
.c-productAllInOne {
  position: relative;
  background: #000;
  color: #fff;
  overflow: hidden;
  padding: 100px 0 120px;
}

/* PARALLAX */
.parallax-bg {
  position: absolute;
  inset: -10% 0 0 0;
  z-index: 0;
  will-change: transform;
}

.parallax-bg img {
  width: 100%;
  height: 120%;
  object-fit: cover;
}

.parallax-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 60% at 20% 20%, rgba(0,0,0,.35), transparent),
    linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.9));
}

/* CONTENT */
.c-productAllInOne_container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: auto;
  padding: 0 70px;
}

/* HERO */
.product-heroGrid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 80px;
  margin-bottom: 96px;
}

.product-heroContent h1 {
  font-size: 80px;
  line-height: 1.1;
  margin-bottom: 24px;
}

.product-heroContent p {
  font-size: 18px;
  color: #ffffff;
}

/* META */
.product-meta {
  border-left: 1px solid rgba(255,255,255,.15);
  padding-left: 40px;
}

/* LOGO SCROLL */
.product-logos {
  overflow: hidden;
  padding-top: 20px;
}

.logo-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.logo-track img {
  height: 30px;
  opacity: .75;
  transition: .3s ease;
}

@keyframes logoScroll {
  to { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 992px) {
  .product-heroGrid {
    grid-template-columns: 1fr;
  }

  .product-heroContent h1 {
    font-size: 48px;
  }

  .parallax-bg {
    transform: none !important;
  }
}
.product-meta span {
  display: block;
  font-size: 16px;      /* label size */
  font-weight: 800;
  margin-bottom: 20px;
}

.product-meta ul {
  padding-left: 18px;
  margin: 0;
}

.product-meta ul li {
  
  font-size: 15px;      /* list text size */
  line-height: 2;     /* line spacing */
  margin-bottom: 10px;  /* space between items */
}
.product-meta span {
  padding-top: 70px;
  color: #b0afaf;
}

.product-meta ul li {
  color: #ffffff;
}
.product-breadcrumb{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;      /* 👈 font size */
  line-height: 5;     /* 👈 line spacing */
}

.product-breadcrumb a,
.product-breadcrumb p,
.product-breadcrumb span{
  margin: 0;
  padding: 0;
}
