/* Top Picks — cinema strip v6 */
#pk-top-picks.pk-best-overall-v2 {
  --pk-blue: #2075d2;
  --pk-dark: #15223b;
  --pk-muted: #64748b;
  --pk-line: #e2e8f0;
  --pk-soft: #f5f8fc;
  box-sizing: border-box;
  width: 100%;
  max-width: 100%;
  padding: 40px 20px 52px;
  overflow: hidden;
}

#pk-top-picks *,
#pk-top-picks *::before,
#pk-top-picks *::after {
  box-sizing: border-box;
}

/* —— Section hat —— */
#pk-top-picks .pk-top-picks-hat {
  max-width: 620px;
  margin: 0 auto 24px;
  text-align: center;
  padding: 0 4px;
}

#pk-top-picks .pk-top-picks-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pk-blue);
  font-family: Montserrat, "Open Sans", sans-serif;
}

#pk-top-picks .pk-top-picks-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pk-blue);
  flex-shrink: 0;
}

#pk-top-picks .pk-top-picks-title {
  margin: 0 0 10px !important;
  font-size: clamp(26px, 4vw, 38px) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  line-height: 1.12 !important;
  color: var(--pk-dark) !important;
  font-family: Montserrat, sans-serif;
}

#pk-top-picks .pk-top-picks-dek {
  margin: 0 auto;
  max-width: 480px;
  font-size: 16px;
  line-height: 1.55;
  color: var(--pk-muted);
}

/* —— Card —— */
#pk-top-picks .pk-best-container {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  border: 1px solid rgba(21, 34, 59, 0.06);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.07);
  overflow: hidden;
}

#pk-top-picks .pk-best-visual {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: #fff;
}

#pk-top-picks .pk-image-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #1e293b;
  overflow: hidden;
}

#pk-top-picks .pk-image-wrap img,
#pk-top-picks .pk-top-pick-img {
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  display: block !important;
  transition: opacity 0.28s ease;
}

#pk-top-picks .pk-badge-floating {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(15, 23, 42, 0.72);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

/* Film strip under hero: smaller thumbs + nav */
#pk-top-picks .pk-pick-film {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px 16px 14px;
  background: var(--pk-soft);
  border-bottom: 1px solid var(--pk-line);
}

#pk-top-picks .pk-pick-thumbs {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  margin: 0 !important;
  padding: 0 !important;
  width: 100%;
  overflow: visible;
  background: transparent;
}

#pk-top-picks .pk-pick-thumb {
  position: relative;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 4 / 3;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  background: #e2e8f0;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

#pk-top-picks .pk-pick-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

#pk-top-picks .pk-pick-thumb:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

#pk-top-picks .pk-pick-thumb.is-active {
  opacity: 1;
  border-color: var(--pk-blue);
  box-shadow: 0 0 0 2px rgba(32, 117, 210, 0.22);
}

#pk-top-picks .pk-pick-thumb:focus-visible {
  outline: 2px solid var(--pk-blue);
  outline-offset: 2px;
}

/* Nav directly under thumbs / photo */
#pk-top-picks .pk-pick-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
}

#pk-top-picks .pk-pick-arrow {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid #dbe3ee;
  background: #fff;
  color: var(--pk-dark);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  padding: 0;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

#pk-top-picks .pk-pick-arrow:hover {
  border-color: var(--pk-blue);
  color: var(--pk-blue);
  background: #eef5ff;
}

#pk-top-picks .pk-pick-arrow:focus-visible,
#pk-top-picks .pk-pick-dot:focus-visible {
  outline: 2px solid var(--pk-blue);
  outline-offset: 2px;
}

#pk-top-picks .pk-pick-dots {
  display: flex;
  gap: 7px;
  align-items: center;
  margin: 0 2px;
}

#pk-top-picks .pk-pick-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: #cbd5e1;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

#pk-top-picks .pk-pick-dot.is-active {
  background: var(--pk-blue);
  transform: scale(1.25);
}

#pk-top-picks .pk-pick-count {
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  min-width: 2.6em;
  letter-spacing: 0.02em;
}

/* —— Product info: full width under film —— */
#pk-top-picks .pk-best-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px 28px;
  align-items: end;
  width: 100%;
  padding: 26px 28px 28px;
  background: #fff;
  min-width: 0;
}

#pk-top-picks .pk-pick-copy {
  min-width: 0;
  max-width: none;
}

#pk-top-picks .pk-pick-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
}

#pk-top-picks .pk-editor-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 6px 11px;
  border-radius: 999px;
  background: #fff6df;
  border: 1px solid #f0d48a;
  color: #8a5a00 !important;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

#pk-top-picks .pk-editor-label::before {
  content: "★";
  color: #d4a017;
  font-size: 11px;
  line-height: 1;
}

#pk-top-picks .pk-pick-meta-sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}

#pk-top-picks .pk-pick-category {
  display: inline-flex;
  align-items: center;
  margin: 0 !important;
  padding: 6px 11px;
  border-radius: 999px;
  background: #eef5ff;
  border: 1px solid #c5dbf7;
  color: var(--pk-blue) !important;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  line-height: 1.2;
  white-space: nowrap;
}

#pk-top-picks .pk-year-tag {
  display: block;
  margin: 0 0 8px !important;
  padding: 0 0 0 12px;
  border: none !important;
  background: none !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pk-blue) !important;
  position: relative;
  line-height: 1.35;
  font-family: Montserrat, "Open Sans", sans-serif;
}

#pk-top-picks .pk-year-tag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pk-blue);
}

#pk-top-picks .pk-product-title {
  margin: 0 0 10px !important;
  font-size: clamp(26px, 3.4vw, 36px) !important;
  font-weight: 800 !important;
  line-height: 1.12 !important;
  color: var(--pk-dark) !important;
  letter-spacing: -0.03em;
  word-break: break-word;
  font-family: Montserrat, sans-serif;
}

#pk-top-picks .pk-pick-blurb {
  margin: 0 0 14px !important;
  max-width: 42em;
  font-size: 15px;
  line-height: 1.55;
  color: var(--pk-muted);
  font-weight: 500;
}

#pk-top-picks .pk-check-list {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
}

#pk-top-picks .pk-check-list li {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  color: #475569;
  letter-spacing: -0.01em;
}

#pk-top-picks .pk-check-list span {
  color: var(--pk-blue);
  margin-right: 5px;
  font-weight: 800;
}

#pk-top-picks .pk-pick-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: stretch;
  min-width: 220px;
}

#pk-top-picks .pk-btn-blue,
#pk-top-picks .pk-btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 22px;
  border-radius: 12px;
  text-decoration: none !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

#pk-top-picks .pk-btn-blue {
  background: var(--pk-blue);
  color: #fff !important;
  border: none;
}

#pk-top-picks .pk-btn-blue:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(32, 117, 210, 0.28);
}

#pk-top-picks .pk-btn-ghost {
  background: #fff;
  color: var(--pk-dark) !important;
  border: 1.5px solid var(--pk-line);
}

#pk-top-picks .pk-btn-ghost:hover {
  border-color: var(--pk-blue);
  color: var(--pk-blue) !important;
}

#pk-top-picks.is-loading .pk-best-content {
  opacity: 0.75;
}

/* —— Tablet —— */
@media (max-width: 900px) {
  #pk-top-picks.pk-best-overall-v2 {
    padding: 32px 16px 40px;
  }

  #pk-top-picks .pk-best-container {
    max-width: 720px;
    border-radius: 20px;
  }

  #pk-top-picks .pk-image-wrap {
    aspect-ratio: 16 / 10;
  }

  #pk-top-picks .pk-pick-film {
    padding: 10px 14px 12px;
    gap: 10px;
  }

  #pk-top-picks .pk-pick-thumb {
    aspect-ratio: 4 / 3;
    border-radius: 8px;
  }

  #pk-top-picks .pk-top-picks-hat {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  #pk-top-picks .pk-top-picks-eyebrow {
    justify-content: center;
    width: 100%;
  }

  #pk-top-picks .pk-top-picks-dek {
    margin-left: auto;
    margin-right: auto;
  }

  #pk-top-picks .pk-best-content {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 22px 20px 24px;
    align-items: stretch;
  }

  #pk-top-picks .pk-pick-actions {
    flex-direction: row;
    min-width: 0;
    width: 100%;
  }

  #pk-top-picks .pk-btn-blue,
  #pk-top-picks .pk-btn-ghost {
    flex: 1 1 auto;
  }
}

/* —— Phone —— */
@media (max-width: 640px) {
  #pk-top-picks.pk-best-overall-v2 {
    padding: 24px 12px 32px;
  }

  #pk-top-picks .pk-top-picks-hat {
    text-align: center;
    margin-bottom: 14px;
    max-width: none;
  }

  #pk-top-picks .pk-top-picks-eyebrow {
    justify-content: center;
    width: 100%;
    font-size: 11px;
    margin-bottom: 8px;
  }

  #pk-top-picks .pk-top-picks-title {
    font-size: 22px !important;
    text-align: center;
  }

  #pk-top-picks .pk-top-picks-dek {
    font-size: 14px;
    max-width: 28em;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #pk-top-picks .pk-best-container {
    border-radius: 16px;
  }

  #pk-top-picks .pk-image-wrap {
    aspect-ratio: 4 / 3;
  }

  #pk-top-picks .pk-badge-floating {
    left: 10px;
    bottom: 10px;
    font-size: 11px;
    padding: 6px 10px;
  }

  #pk-top-picks .pk-pick-film {
    padding: 10px 10px 12px;
    gap: 10px;
  }

  #pk-top-picks .pk-pick-thumbs {
    gap: 6px;
  }

  #pk-top-picks .pk-pick-thumb {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
  }

  #pk-top-picks .pk-pick-nav {
    justify-content: space-between;
  }

  #pk-top-picks .pk-pick-dots {
    flex: 1;
    justify-content: center;
  }

  #pk-top-picks .pk-pick-count {
    display: none;
  }

  #pk-top-picks .pk-pick-arrow {
    width: 40px;
    height: 40px;
  }

  #pk-top-picks .pk-best-content {
    padding: 18px 14px 20px;
    gap: 16px;
  }

  #pk-top-picks .pk-editor-label,
  #pk-top-picks .pk-pick-category {
    font-size: 10px;
    padding: 5px 9px;
  }

  #pk-top-picks .pk-pick-meta-sep {
    display: none;
  }

  #pk-top-picks .pk-product-title {
    font-size: 22px !important;
    margin-bottom: 8px !important;
  }

  #pk-top-picks .pk-pick-blurb {
    font-size: 14px;
    margin-bottom: 12px !important;
  }

  #pk-top-picks .pk-check-list {
    flex-direction: column;
    gap: 6px;
  }

  #pk-top-picks .pk-check-list li {
    font-size: 13px;
  }

  #pk-top-picks .pk-pick-actions {
    flex-direction: column;
  }

  #pk-top-picks .pk-btn-blue,
  #pk-top-picks .pk-btn-ghost {
    width: 100%;
    flex: none;
    padding: 14px 16px;
  }
}
