/* ========== POSTER PAGE ========== */
.poster-page {
  background: #f5f5f5;
}

/* ========== HERO SECTION ========== */
.poster-hero {
  text-align: center;
  padding: 40px 0 60px;
  background: #f5f5f5;
}

.poster-hero__title {
  font-size: 48px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
  letter-spacing: -0.5px;
}

.poster-hero__subtitle {
  font-size: 18px;
  color: #555;
  margin: 0 0 40px;
  font-weight: 400;
}

.poster-hero__btn {
  display: inline-block;
  margin-top: 40px;
  padding: 16px 40px;
  background: #2563eb;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.2s;
}

.poster-hero__btn:hover {
  background: #1d4ed8;
  color: #fff;
  text-decoration: none;
}

/* ========== MARQUEE GALLERY ========== */
.poster-marquee {
  position: relative;
  padding: 0;
  overflow: hidden;
}

.poster-marquee__row {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
}

.poster-marquee__row + .poster-marquee__row {
  margin-top: 20px;
}

.poster-marquee__track {
  display: inline-flex;
  gap: 20px;
  will-change: transform;
}

/* Row 1 — scroll left (120s = 3x slower than original 40s) */
.poster-marquee__row--left .poster-marquee__track {
  animation: marqueeLeft 120s linear infinite;
}

/* Row 2 — scroll right */
.poster-marquee__row--right .poster-marquee__track {
  animation: marqueeRight 120s linear infinite;
}

.poster-marquee__track img {
  height: 280px;
  width: auto;
  border-radius: 4px;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

@keyframes marqueeLeft {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes marqueeRight {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Pause on hover */
.poster-marquee__row:hover .poster-marquee__track {
  animation-play-state: paused;
}

/* ========== SIDE BLUR OVERLAYS ========== */
.poster-marquee__blur {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 180px;
  z-index: 5;
  pointer-events: none;
}

.poster-marquee__blur--left {
  left: 0;
  background: linear-gradient(to right, #f5f5f5 0%, rgba(245,245,245,0) 100%);
}

.poster-marquee__blur--right {
  right: 0;
  background: linear-gradient(to left, #f5f5f5 0%, rgba(245,245,245,0) 100%);
}

/* ========== CTA SECTION ========== */
.poster-cta {
  background: #fff;
  padding: 80px 0;
}

.poster-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.poster-cta__image {
  flex: 0 0 50%;
  max-width: 50%;
}

.poster-cta__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

.poster-cta__content {
  flex: 1;
}

.poster-cta__title {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  line-height: 1.3;
  margin: 0 0 20px;
}

.poster-cta__text {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 0 0 32px;
}

.poster-cta .poster-hero__btn {
  margin-top: 0;
}

/* ========== SPECIFICATIONS ========== */
.poster-specs {
  background: #fff;
  padding: 80px 0;
}

.poster-specs__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.poster-specs__heading {
  font-size: 32px;
  font-weight: 600;
  color: #111;
  margin: 0 0 32px;
}

.poster-specs__list {
  border-top: 1px solid #e5e5e5;
}

.poster-specs__row {
  display: flex;
  padding: 20px 0;
  border-bottom: 1px solid #e5e5e5;
}

.poster-specs__label {
  flex: 0 0 180px;
  font-size: 15px;
  font-weight: 600;
  color: #111;
}

.poster-specs__value {
  flex: 1;
  font-size: 15px;
  line-height: 1.6;
  color: #555;
}

/* ========== FRAME OPTIONS ========== */
.poster-frames {
  background: #f5f5f5;
  padding: 80px 0;
  text-align: center;
}

.poster-frames__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.poster-frames__title {
  font-size: 40px;
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
}

.poster-frames__subtitle {
  font-size: 17px;
  color: #555;
  margin: 0 0 48px;
  font-weight: 400;
  font-style: italic;
}

.poster-frames__grid {
  display: flex;
  justify-content: center;
  gap: 48px;
}

.poster-frames__item {
  flex: 0 1 480px;
}

.poster-frames__img {
  overflow: hidden;
  border-radius: 4px;
}

.poster-frames__img img {
  width: 100%;
  height: auto;
  display: block;
}

.poster-frames__label {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  font-weight: 400;
  color: #111;
}

/* ========== MAT OPTIONS ========== */
.poster-mats {
  background: #fff;
}

.poster-mats .poster-hero__btn {
  margin-top: 48px;
}

/* ========== FAQ ========== */
.poster-faq {
  background: #fff;
  padding: 80px 0;
}

.poster-faq__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.poster-faq__heading {
  font-size: 28px;
  font-weight: 700;
  color: #111;
  margin: 0 0 24px;
}

.poster-faq__list {
  border-top: 1px solid #e5e5e5;
}

.poster-faq__item {
  border-bottom: 1px solid #e5e5e5;
}

.poster-faq__question {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 0;
  font-size: 16px;
  font-weight: 600;
  color: #111;
  cursor: pointer;
  list-style: none;
}

.poster-faq__question::-webkit-details-marker {
  display: none;
}

.poster-faq__question::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='%23111' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: transform 0.2s ease;
}

.poster-faq__item[open] .poster-faq__question::before {
  transform: rotate(180deg);
}

.poster-faq__answer {
  padding: 0 0 20px 32px;
}

.poster-faq__answer p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: #555;
}

/* ========== SEO TEXT ========== */
.poster-seo {
  padding: 40px 20px;
}

.poster-seo__inner {
  max-width: 1200px;
  margin: 0 auto;
  font-size: 11px;
  line-height: 1.45;
  color: #6e6e73;
}

.poster-seo__inner h2 {
  font-size: 11px;
  font-weight: 600;
  color: #6e6e73;
  margin: 0;
  display: inline;
}

.poster-seo__inner h2::after {
  content: " ";
}

.poster-seo__inner p {
  display: inline;
  margin: 0;
}

.poster-seo__inner p + p::before {
  content: "\A\A";
  white-space: pre;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 768px) {
  .poster-hero {
    padding: 24px 0 40px;
  }

  .poster-hero__title {
    font-size: 30px;
    padding: 0 16px;
  }

  .poster-hero__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
    padding: 0 16px;
  }

  .poster-marquee__track img {
    height: 180px;
  }

  .poster-marquee__row + .poster-marquee__row {
    margin-top: 12px;
  }

  .poster-marquee__track {
    gap: 12px;
  }

  .poster-marquee__row--left .poster-marquee__track {
    animation-duration: 90s;
  }

  .poster-marquee__row--right .poster-marquee__track {
    animation-duration: 90s;
  }

  .poster-marquee__blur {
    width: 60px;
  }

  .poster-hero__btn {
    margin-top: 28px;
    padding: 14px 32px;
    font-size: 15px;
  }

  .poster-cta {
    padding: 48px 0;
  }

  .poster-cta__inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 32px;
  }

  .poster-cta__image {
    flex: none;
    max-width: 100%;
  }

  .poster-cta__title {
    font-size: 24px;
  }

  .poster-cta__text {
    font-size: 14px;
  }

  .poster-specs {
    padding: 48px 0;
  }

  .poster-specs__inner {
    padding: 0 20px;
  }

  .poster-specs__heading {
    font-size: 24px;
    margin-bottom: 24px;
  }

  .poster-specs__row {
    flex-direction: column;
    gap: 4px;
    padding: 16px 0;
  }

  .poster-specs__label {
    flex: none;
  }

  .poster-specs__value {
    font-size: 14px;
  }

  .poster-frames {
    padding: 48px 0;
  }

  .poster-frames__inner {
    padding: 0 20px;
  }

  .poster-frames__title {
    font-size: 28px;
  }

  .poster-frames__subtitle {
    font-size: 15px;
    margin-bottom: 32px;
  }

  .poster-frames__grid {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .poster-frames__item {
    flex: none;
    width: 100%;
    max-width: 400px;
  }

  .poster-faq {
    padding: 48px 0;
  }

  .poster-faq__inner {
    padding: 0 20px;
  }

  .poster-faq__heading {
    font-size: 22px;
  }

  .poster-faq__question {
    font-size: 15px;
    padding: 16px 0;
  }

  .poster-faq__answer {
    padding: 0 0 16px 32px;
  }

  .poster-faq__answer p {
    font-size: 14px;
  }

  .poster-mats .poster-hero__btn {
    margin-top: 36px;
  }
}

@media (max-width: 480px) {
  .poster-hero__title {
    font-size: 22px;
    padding: 0 12px;
  }

  .poster-hero__subtitle {
    font-size: 14px;
    padding: 0 12px;
  }

  .poster-marquee__track img {
    height: 140px;
  }

  .poster-marquee__blur {
    width: 40px;
  }

  .poster-hero__btn {
    padding: 14px 28px;
    font-size: 14px;
  }

  .poster-cta__title {
    font-size: 20px;
  }

  .poster-specs__heading {
    font-size: 22px;
  }

  .poster-specs__label {
    font-size: 14px;
  }

  .poster-specs__value {
    font-size: 13px;
  }

  .poster-frames__title {
    font-size: 24px;
  }

  .poster-frames__subtitle {
    font-size: 14px;
    margin-bottom: 24px;
  }

  .poster-frames__grid {
    gap: 24px;
  }

  .poster-frames__item {
    max-width: 100%;
  }

  .poster-faq__heading {
    font-size: 20px;
  }

  .poster-faq__question {
    font-size: 14px;
    gap: 10px;
  }

  .poster-faq__answer {
    padding: 0 0 14px 30px;
  }

  .poster-faq__answer p {
    font-size: 13px;
  }
}
