.cc-poster {
  margin-top: 16px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  background: #eee;
  min-height: 620px;
}
@media (min-width: 768px) {
  #js-product-list-header {
    max-width: 100% !important;
  }
}
@media (max-width: 767px) {
  .cc-poster__bg {
    position: absolute;
    inset: 0;
    background-image: url("/img/cms/cover.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    transform: scale(1.00);
  }
}
@media (min-width: 768px) {
  .cc-poster__bg {
    position: absolute;
    inset: 0;
    background-image: url("/img/cms/cover_last.jpg");
    background-size: cover;
    background-position: bottom;
    background-repeat: no-repeat;
    transform: scale(1.00);
  }
}
.cc-poster__content {
  position: relative;
  z-index: 2;
  padding: 34px 22px 26px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.cc-poster__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 0 0 10px;
  font-size: clamp(28px, 4vw, 50px);
  color: #111;
  text-shadow: 0 1px 0 rgba(255,255,255,.35);
}
.cc-poster__sub {
  margin: 0 0 18px;
  font-size: 15px;
  font-weight: 600;
  color: rgba(0,0,0,.70);
}
.cc-poster__sizes {
  margin-top: 280px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.cc-size {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(255,255,255,.88);
  font-weight: 800;
  text-decoration: none;
  color: #111;
  min-width: 108px;
  box-shadow: 0 10px 22px rgba(0,0,0,.08);
  backdrop-filter: blur(6px);
  transition: transform .12s ease, box-shadow .12s ease;
}
.cc-size:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0,0,0,.10);
  text-decoration: none;
  color: #111;
}
.cc-size--popular {
  background: rgba(185,149,85,.92);
  color: #fff;
  border-color: rgba(185,149,85,.95);
}
.cc-size--popular:hover {
  color: #fff;
}
.cc-badge {
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 800;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.72);
  color: #fff;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(0,0,0,.12);
}
.cc-poster__ctaWrap {
  margin-top: 58px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.cc-poster__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 28px;
  border-radius: 999px;
  background: rgba(185,149,85,.95);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  min-width: 280px;
  box-shadow: 0 16px 30px rgba(0,0,0,.12);
  transition: transform .12s ease, filter .12s ease;
}
.cc-poster__cta:hover {
  transform: translateY(-2px);
  filter: brightness(.98);
  text-decoration: none;
  color: #fff;
}
.cc-poster__note {
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.55);
}
@media (max-width: 768px) {
  .cc-poster {
    min-height: 540px;
    width: 98%;
    justify-self: center;
  }
  .cc-poster__content {
    padding: 28px 16px 22px;
  }
  .cc-poster__sizes {
    gap: 8px;
    margin-top: 360px;
  }
  .cc-poster__ctaWrap {
    margin-top: 29px;
  }
  .cc-size {
    min-width: 0;
    flex: 1 1 calc(50% - 10px);
  }
  .cc-poster__cta {
    width: 100%;
    min-width: 0;
  }
}
@media (max-width: 460px) {
  .cc-poster__sizes {
    margin-top: 65%;
  }
}