/* ==========================================================================
   bluray-disc.com – site styles
   --------------------------------------------------------------------------
   Site-specific styles (header, nav, ticker, footer, hero, news, sidebar
   widgets, movie detail page). Design tokens, reset, base typography,
   utilities and reusable components live in framework.css and must be
   loaded BEFORE this file.
   ========================================================================== */

/* —— Header (original-style: light/blue-grey with white logo) —— */
.top-bar {
  background: linear-gradient(180deg, var(--header-bg), var(--header-bg-2));
  color: #fff;
  border-bottom: 1px solid var(--nav-bg-2);
}
.top-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}
.brand:hover { text-decoration: none; }
.brand-logo {
  height: 44px;
  width: auto;
  color: #fff;
  display: block;
}
.brand-tagline {
  display: none;
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
@media (min-width: 1024px) {
  .brand-tagline { display: inline-block; }
}

.search-form {
  display: flex;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 6px;
  overflow: hidden;
  max-width: 560px;
  width: 100%;
  margin: 0 auto;
}
.search-form input {
  flex: 1;
  border: none;
  background: transparent;
  color: var(--text);
  padding: 11px 18px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.search-form input::placeholder {
  color: var(--text-soft);
  font-style: italic;
}
.search-form button {
  border: none;
  background: transparent;
  color: var(--text-muted);
  padding: 0 16px;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.search-form button:hover {
  color: var(--accent);
}

.top-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.social {
  display: flex;
  gap: 4px;
}
.social a {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.85);
  border-radius: var(--radius-sm);
}
.social a:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  text-decoration: none;
}
.lang-select {
  appearance: none;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0,0,0,0.15);
  color: var(--text);
  padding: 6px 26px 6px 10px;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 12px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' fill='%231f2630' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10l-5 5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
}
.btn-login {
  padding: 7px 14px;
  background: rgba(0,0,0,0.18);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.btn-login:hover {
  background: rgba(0,0,0,0.3);
  text-decoration: none;
}

/* —— Main nav (dark teal with gold underline indicator) —— */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--nav-bg);
  border-bottom: 2px solid var(--nav-bg-2);
}
.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 12px;
  display: flex;
  align-items: stretch;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 10px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  cursor: pointer;
  margin: 8px;
  align-self: center;
}
.nav-toggle span {
  width: 20px;
  height: 2px;
  background: #fff;
}
.nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  background: transparent;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
  text-decoration: none;
  position: relative;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}
.nav-link:hover,
.nav-item.is-open > .nav-link,
.nav-item.is-active > .nav-link {
  color: var(--gold);
  background: var(--nav-bg-2);
  text-decoration: none;
  border-bottom-color: var(--gold);
}
.nav-chevron {
  width: 9px;
  height: 9px;
  opacity: 0.7;
}

.mega {
  display: none;
  position: absolute;
  left: 0;
  top: 100%;
  min-width: 280px;
  max-width: min(92vw, 720px);
  max-height: 70vh;
  overflow-y: auto;
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  padding: 18px;
  z-index: 50;
}
.nav-item.is-open .mega { display: block; }
.mega-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 4px 24px;
}
.mega-col h4 {
  margin: 0 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
  font-weight: 700;
}
.mega-col ul { list-style: none; margin: 0; padding: 0; }
.mega-col a {
  display: block;
  padding: 6px 0;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
}
.mega-col a:hover { color: var(--accent); }

/* —— Newsticker (yellow, original-style) —— */
.ticker {
  background: linear-gradient(180deg, #fdc52e, #f3a712);
  border-bottom: 1px solid #c98604;
  overflow: hidden;
}
.ticker-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 20px;
  font-size: 13px;
  color: #1d1d1d;
  font-weight: 500;
}
.ticker-label {
  flex-shrink: 0;
  font-weight: 800;
  font-size: 11px;
  letter-spacing: 0.12em;
  background: #1d1d1d;
  color: var(--gold);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
}
.ticker-track {
  flex: 1;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.ticker-content {
  display: inline-block;
  white-space: nowrap;
  animation: ticker 50s linear infinite;
}
.ticker-content:hover { animation-play-state: paused; }
.ticker-content a { color: #1d1d1d; font-weight: 700; }
.ticker-content a:hover { color: var(--accent-strong); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* —— Promo banner —— */
.promo-banner {
  max-width: var(--max);
  margin: 18px auto 0;
  padding: 0 20px;
}
.promo-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  background: linear-gradient(95deg, #18233b 0%, #0c1428 60%, #b5061f 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 18px 24px;
  position: relative;
  overflow: hidden;
}
.promo-inner h3 {
  margin: 0;
  font-size: clamp(18px, 2.2vw, 26px);
  letter-spacing: 0.02em;
}
.promo-inner h3 strong { color: #ff5773; font-weight: 800; }
.promo-inner p { margin: 4px 0 0; font-style: italic; opacity: 0.85; font-size: 14px; }
.promo-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1d1d1d;
  color: #fff;
  font-weight: 800;
  text-transform: uppercase;
  font-size: 13px;
  padding: 12px 18px;
  border-radius: var(--radius);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.promo-cta:hover { background: #2d2d2d; text-decoration: none; }
.promo-badge {
  position: absolute;
  right: 160px;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  background: var(--tipp);
  color: #fff;
  padding: 8px 12px;
  font-weight: 800;
  font-size: 12px;
  text-align: center;
  line-height: 1.1;
  box-shadow: var(--shadow);
}
.promo-badge strong { display: block; font-size: 18px; }
@media (max-width: 720px) {
  .promo-inner { grid-template-columns: 1fr; text-align: center; }
  .promo-badge { display: none; }
}

/* —— Main two-column layout (left main, right sidebar) —— */
.layout {
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 20px 64px;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 18px;
  align-items: start;
}
@media (max-width: 1024px) {
  .layout { grid-template-columns: 1fr; }
}

.surface-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* —— Hero —— */
.hero {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: #000;
  aspect-ratio: 16 / 9;
  border: 1px solid var(--border);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.1) 55%, transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px 24px;
}
.hero-overlay h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(1rem, 1.9vw, 1.4rem);
  line-height: 1.3;
  max-width: 760px;
}
.hero-overlay .label {
  display: inline-block;
  background: rgba(0,0,0,0.5);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  width: fit-content;
}
.hero-overlay p {
  margin: 6px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  max-width: 600px;
}
.hero-prev,
.hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 44px;
  height: 64px;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  cursor: pointer;
  display: grid;
  place-items: center;
}
.hero-prev:hover, .hero-next:hover { background: rgba(0, 0, 0, 0.75); }
.hero-prev { left: 0; }
.hero-next { right: 0; }
.hero-dots {
  position: absolute;
  bottom: 12px;
  right: 16px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
}
.hero-dot.is-active {
  background: var(--gold);
  transform: scale(1.15);
}

/* —— News list (vertical, image-left) —— */
.news-list {
  display: flex;
  flex-direction: column;
  margin-top: 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface);
}
.news-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.news-row:last-child { border-bottom: none; }
.news-row:hover { background: var(--surface-2); }
.news-thumb {
  aspect-ratio: 4 / 3;
  background: var(--surface-3);
  overflow: hidden;
  border-radius: var(--radius-sm);
}
.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  margin-bottom: 6px;
  font-size: 11px;
}
.tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 3px 7px;
  border-radius: var(--radius-sm);
  background: var(--accent-soft);
  color: var(--accent);
}
.tag.movies { background: #e2ecf5; color: var(--accent); }
.tag.deals { background: #ddf3e1; color: var(--success); }
.tag.top { background: var(--gold); color: var(--gold-ink); }
.tag.short { background: #fde4dd; color: #b3401b; }
.news-date { font-size: 11px; color: var(--text-muted); margin-left: auto; }
.news-row h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  line-height: 1.3;
  color: var(--accent-strong);
  font-weight: 700;
}
.news-row h3 a { color: inherit; }
.news-row p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}
.news-row .read-more {
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
}
@media (max-width: 480px) {
  .news-row { grid-template-columns: 1fr; }
}

/* —— Section heads (sidebar + main) —— */
.section { margin-top: 24px; }
.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.section-head h2 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}
.section-head h2::before {
  content: "";
  width: 4px;
  height: 22px;
  background: var(--gold);
}
.link-all {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.link-all:hover { text-decoration: underline; }

/* —— Reviews —— */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-radius: var(--radius);
}
.review-card .img-wrap {
  aspect-ratio: 2/3;
  background: var(--surface-3);
  overflow: hidden;
}
.review-card .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.review-score {
  font-size: 13px;
  font-weight: 800;
  color: var(--accent);
}
.review-card h4 {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
}

/* —— Newsletter —— */
.newsletter-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 22px;
  margin-top: 24px;
  border-radius: var(--radius);
}
.newsletter-box h3 { margin: 0 0 6px; }
.newsletter-box p { margin: 0 0 14px; color: var(--text-muted); font-size: 14px; }
.nl-form {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.nl-form input[type="email"] {
  flex: 1;
  min-width: 200px;
  padding: 10px 12px;
  border: 1px solid var(--border-strong);
  background: #fff;
  color: var(--text);
  font-family: inherit;
  border-radius: var(--radius);
}
.nl-form label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
  width: 100%;
}
.btn-primary {
  padding: 10px 18px;
  border-radius: var(--radius);
  background: var(--accent);
  color: #fff;
  border: none;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 13px;
}
.btn-primary:hover { background: var(--accent-strong); }

/* —— Two col panels —— */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 720px) {
  .two-col { grid-template-columns: 1fr; }
}
.list-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
}
.list-panel h3 {
  margin: 0 0 12px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.list-panel ol { margin: 0; padding: 0 0 0 20px; }
.list-panel li { margin-bottom: 8px; padding-left: 4px; }
.list-panel li span { color: var(--text-muted); font-size: 13px; }

/* —— Deals strip / actions —— */
.deals-strip {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 10px;
}
.deal-row {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  align-items: flex-start;
  border-radius: var(--radius);
}
.deal-row img { width: 56px; height: 56px; object-fit: cover; }
.deal-row .meta { font-size: 12px; color: var(--text-muted); }
.deal-row h4 { margin: 4px 0; font-size: 14px; }

.actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}
.action-card {
  padding: 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-radius: var(--radius);
}
.action-card .shop {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.action-card p { margin: 0; font-size: 14px; }

/* —— Sidebar (right) —— */
.sidebar { display: flex; flex-direction: column; gap: 18px; }
.side-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.side-card .head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  background: var(--accent);
  color: #fff;
}
.side-card .head h3 {
  margin: 0;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;
  color: #fff;
}
.side-card .head .link-all {
  color: #fff;
  background: rgba(255,255,255,0.18);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 11px;
}
.side-card .head .link-all:hover { background: rgba(255,255,255,0.3); text-decoration: none; }

.offer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 540px;
  overflow-y: auto;
}
.offer-list li {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border);
  position: relative;
}
.offer-list li:last-child { border-bottom: none; }
.offer-list li:hover { background: var(--surface-2); }
.offer-list img {
  width: 60px;
  height: 80px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.offer-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--tipp);
  padding: 2px 6px;
  margin-bottom: 4px;
  border-radius: var(--radius-sm);
}
.offer-badge.preorder { background: var(--accent); }
.offer-badge.neww { background: var(--success); }
.offer-tipp {
  position: absolute;
  top: 8px;
  right: 8px;
  background: var(--tipp);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
}
.offer-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 4px;
  color: var(--text);
}
.offer-price {
  font-size: 14px;
  font-weight: 800;
  color: var(--accent);
}

/* —— Price tabs / list —— */
.price-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
}
.price-tabs button {
  padding: 7px 12px;
  border: 1px solid transparent;
  background: transparent;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border-radius: var(--radius-sm);
  font-family: inherit;
}
.price-tabs button:hover { color: var(--text); border-color: var(--border); }
.price-tabs button.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 460px;
  overflow-y: auto;
}
.price-list li {
  display: grid;
  grid-template-columns: 50px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.price-list li:last-child { border-bottom: none; }
.price-list li:hover { background: var(--surface-2); }
.price-list img {
  width: 50px;
  height: 70px;
  object-fit: cover;
  border: 1px solid var(--border);
}
.price-list .title { font-weight: 600; line-height: 1.25; }
.price-list .sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.price-list .pct {
  font-weight: 800;
  color: var(--success);
  font-size: 13px;
}
.price-foot {
  padding: 10px 14px;
  font-size: 12px;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  background: var(--surface-2);
}

/* —— Info grid (blog, db, forum) —— */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
}
.info-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: var(--radius);
}
.info-panel h3 { margin: 0 0 12px; font-size: 14px; text-transform: uppercase; letter-spacing: 0.04em; display:flex; align-items:center; justify-content:space-between; }
.info-panel ul { list-style: none; margin: 0; padding: 0; }
.info-panel li {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.info-panel li:last-child { border-bottom: none; }
.info-panel time { color: var(--text-muted); font-size: 12px; }

.alpha {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 8px;
}
.alpha a {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}
.alpha a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  text-decoration: none;
}

.popular-list { display: flex; flex-direction: column; gap: 8px; }
.popular-list a {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
}
.popular-list a:hover { background: var(--accent-soft); text-decoration: none; }
.popular-list img { width: 40px; height: 56px; object-fit: cover; border: 1px solid var(--border); }

/* —— FAQ teaser —— */
.faq-teaser {
  margin-top: 24px;
  padding: 24px;
  border: 1px solid var(--border);
  border-left: 6px solid var(--accent);
  background: var(--surface);
  border-radius: var(--radius);
  text-align: center;
}
.faq-teaser h2 { margin: 0 0 8px; }
.faq-teaser p { margin: 0 0 16px; color: var(--text-muted); }

/* —— Privat+ promo (red sidebar banner) —— */
.privat-promo {
  background: linear-gradient(135deg, #c01818 0%, #7a0a0a 100%);
  color: #fff;
  padding: 18px 16px;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.privat-promo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(255,255,255,0.18), transparent 60%);
  pointer-events: none;
}
.privat-promo .eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.privat-promo h3 {
  margin: 4px 0 6px;
  font-size: 30px;
  letter-spacing: 0.04em;
  font-weight: 800;
}
.privat-promo h3 strong {
  color: var(--gold);
  font-weight: 800;
}
.privat-promo .free {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 800;
  font-size: 11px;
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  margin: 6px 0 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.privat-promo .cta {
  display: inline-block;
  background: #fff;
  color: var(--accent-strong);
  font-weight: 800;
  font-size: 12px;
  padding: 8px 14px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.privat-promo .cta:hover { background: var(--gold); color: var(--gold-ink); }

/* —— Sidebar text list (top news compact) —— */
.side-news {
  list-style: none;
  margin: 0;
  padding: 0;
}
.side-news li {
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.4;
}
.side-news li:last-child { border-bottom: none; }
.side-news a {
  color: var(--accent-strong);
  font-weight: 600;
}
.side-news .meta {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

/* —— Forum widget —— */
.forum-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.forum-list li {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.forum-list li:last-child { border-bottom: none; }
.forum-list .avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
}
.forum-list .topic {
  color: var(--accent-strong);
  font-weight: 600;
  font-size: 13px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.forum-list .meta { color: var(--text-muted); font-size: 11px; margin-top: 2px; }

/* —— Sidebar headline (smaller variant) —— */
.side-card .body {
  padding: 12px 14px;
}
.side-card .body p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

/* —— Datenschutz status —— */
.privacy-status {
  list-style: none;
  margin: 0;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.privacy-status li {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  font-size: 13px;
  align-items: center;
}
.icon-x {
  width: 22px;
  height: 22px;
  background: var(--danger);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
}
.icon-check {
  width: 22px;
  height: 22px;
  background: var(--success);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 12px;
}
.privacy-status .row-title { font-weight: 700; font-size: 13px; }
.privacy-status .row-sub { font-size: 11px; color: var(--text-muted); }
.privacy-status footer {
  border-top: 1px solid var(--border);
  padding-top: 10px;
  margin-top: 4px;
  font-size: 11px;
  color: var(--text-muted);
}

/* —— Empfohlene poster carousel —— */
.poster-carousel {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 16px 16px 18px;
}
.poster-carousel-inner {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  padding-bottom: 6px;
}
.poster-carousel-inner::-webkit-scrollbar {
  height: 6px;
}
.poster-carousel-inner::-webkit-scrollbar-track {
  background: var(--surface-3);
}
.poster-carousel-inner::-webkit-scrollbar-thumb {
  background: var(--border-strong);
  border-radius: 3px;
}
.mini-poster {
  flex: 0 0 124px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.mini-poster img {
  width: 100%;
  aspect-ratio: 2/3;
  object-fit: cover;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
}
.mini-poster .t {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text);
}
.mini-poster .p {
  font-size: 12px;
  font-weight: 800;
  color: var(--accent);
}
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid var(--border-strong);
  color: var(--text);
  cursor: pointer;
  display: grid;
  place-items: center;
  z-index: 2;
  box-shadow: var(--shadow);
}
.carousel-arrow:hover { color: var(--accent); border-color: var(--accent); }
.carousel-arrow.prev { left: -12px; }
.carousel-arrow.next { right: -12px; }

/* —— Future Looks Blue CTA —— */
.future-cta {
  margin-top: 24px;
  background: linear-gradient(120deg, #0a2540 0%, #103e6b 60%, #1a4f7a 100%);
  color: #fff;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px 28px;
  position: relative;
  overflow: hidden;
}
.future-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.12), transparent 50%);
  pointer-events: none;
}
.future-cta-logo {
  width: 110px;
  height: 56px;
  background: #fff;
  border-radius: 6px;
  display: grid;
  place-items: center;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.future-cta-logo small { font-size: 9px; font-weight: 700; opacity: 0.8; display: block; }
.future-cta h2 {
  margin: 0;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 1;
}
.future-cta h2 small {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-top: 6px;
  opacity: 0.85;
}
.future-cta a.cta {
  display: inline-block;
  background: var(--gold);
  color: var(--gold-ink);
  font-weight: 800;
  padding: 11px 18px;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 13px;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.future-cta a.cta:hover { filter: brightness(0.95); }
@media (max-width: 720px) {
  .future-cta { grid-template-columns: 1fr; text-align: center; }
}

/* —— Footer —— */
.site-footer {
  border-top: 4px solid var(--gold);
  background: var(--nav-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 36px 20px 20px;
  margin-top: 40px;
}
.footer-inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
}
.site-footer h4 {
  margin: 0 0 12px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 8px; }
.site-footer a { color: rgba(255, 255, 255, 0.85); font-size: 14px; }
.site-footer a:hover { color: var(--gold); }
.footer-bottom {
  max-width: var(--max);
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid var(--nav-bg-2);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
}

/* —— Breadcrumb —— */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 20px 0;
  font-size: 12px;
  color: var(--text-muted);
}
.breadcrumb ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.breadcrumb a { color: var(--accent); font-weight: 600; }
.breadcrumb li::after {
  content: "›";
  margin-left: 6px;
  color: var(--text-soft);
}
.breadcrumb li:last-child::after { content: ""; }
.breadcrumb li:last-child { color: var(--text); font-weight: 600; }

/* —— Movie hero (detail page) —— */
.movie-hero {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 24px 28px;
  align-items: start;
}
@media (max-width: 600px) {
  .movie-hero { grid-template-columns: 1fr; }
}

.movie-cover-col {
  position: sticky;
  top: 80px;
  z-index: 1;
  align-self: start;
}
.movie-cover-wrap {
  height: 100%;
  align-self: stretch;
}
@media (max-width: 900px) {
  .movie-cover-col {
    position: static;
  }
}
.movie-cover {
  position: relative;
  border: 1px solid var(--border);
  background: var(--surface-3);
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 635 / 800;
  box-shadow: var(--shadow);
}
.movie-cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.movie-cover .badge-uhd {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(0,0,0,0.85);
  padding: 5px 8px;
  border-radius: var(--radius-sm);
}
.movie-cover .badge-uhd img { width: 60px; height: auto; display: block; }

.movie-list-actions {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.movie-list-actions a {
  display: block;
  text-align: center;
  padding: 7px 8px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.movie-list-actions a:hover {
  background: var(--accent-soft);
  color: var(--accent);
  text-decoration: none;
}

.movie-info h1 {
  margin: 0 0 4px;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.2;
  color: var(--accent-strong);
}
.movie-info .subtitle {
  margin: 0 0 14px;
  font-style: italic;
  color: var(--text-muted);
  font-size: 14px;
}
.disc-info {
  background: var(--surface-2);
  border-left: 3px solid var(--accent);
  padding: 10px 12px;
  margin: 0 0 14px;
  font-size: 13px;
  color: var(--text);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.disc-info b { color: var(--accent-strong); }
.disc-info .uncut { color: var(--danger); font-weight: 700; }
.disc-info .label { font-size: 11px; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); display:block; margin-bottom: 4px; }

.movie-meta {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 18px;
  font-size: 13px;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.movie-meta dt {
  font-weight: 700;
  color: var(--text-muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding-top: 2px;
}
.movie-meta dd {
  margin: 0;
  color: var(--text);
  line-height: 1.5;
}
.movie-meta dd a { color: var(--accent); }
.movie-meta dd .mainactor { font-weight: 700; }
@media (max-width: 720px) {
  .movie-meta { grid-template-columns: 1fr; gap: 2px; }
  .movie-meta dt { padding-top: 8px; }
  .movie-meta dd { padding-bottom: 4px; border-bottom: 1px dashed var(--border); }
}

/* —— Two-column meta inside the info column to spread evenly —— */
.movie-info .meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 24px;
}
@media (max-width: 900px) {
  .movie-info .meta-grid { grid-template-columns: 1fr; }
}

/* —— Buy stack (full width row below hero) —— */
.buy-stack {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 8px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
  position: relative;
  z-index: 5;
  background: var(--surface);
}
.buy-heading {
  grid-column: 1 / -1;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin: 4px 0 2px;
}
.btn-shop {
  display: grid;
  grid-template-columns: 1fr 100px;
  align-items: center;
  gap: 10px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 12px;
  text-decoration: none;
  color: var(--text);
  transition: background 0.15s, border-color 0.15s;
  min-height: 56px;
}
.btn-shop:hover { background: var(--accent-soft); border-color: var(--accent); text-decoration: none; }
.btn-shop .price { display: block; font-size: 15px; font-weight: 800; color: var(--accent-strong); }
.btn-shop .shipping { display: block; font-size: 11px; color: var(--text-muted); }
.btn-shop .stream { font-size: 13px; font-weight: 700; color: var(--accent-strong); }
.btn-shop .logo { display: grid; place-items: center; min-height: 36px; }
.btn-shop .logo img { max-width: 100%; max-height: 36px; width: auto; height: auto; object-fit: contain; }
.btn-shop.amazon .logo, .btn-shop.amazon-de .logo { background: #ffffff; padding: 4px 8px; border-radius: var(--radius-sm); }
.btn-shop.amazon .logo img { max-height: 24px; }
.btn-shop.media-dealer .logo { background: #cc0000; padding: 4px 8px; border-radius: var(--radius-sm); }
.btn-shop.mediamarkt .logo { background: #df0000; padding: 4px 8px; border-radius: var(--radius-sm); }
.btn-shop.saturn .logo { background: #000; padding: 4px 8px; border-radius: var(--radius-sm); }
.btn-shop.preorder { background: #fff7e0; border-color: #f3c84d; }
.btn-shop.preorder .logo img { max-height: 32px; }
.btn-shop.prime .logo { background: #00a8e1; padding: 4px 8px; border-radius: var(--radius-sm); }
.btn-shop.prime .logo img { max-height: 22px; }
.btn-shop .reminder { font-size: 13px; font-weight: 700; color: #b06b00; line-height: 1.15; }
.btn-shop .reminder small { display: block; font-weight: 500; font-size: 11px; opacity: 0.8; }

/* —— Tabs (movie page) —— */
.movie-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 18px;
  border-bottom: 2px solid var(--accent);
}
.movie-tabs a {
  display: inline-block;
  padding: 10px 16px;
  background: var(--surface-2);
  color: var(--text-muted);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
  text-decoration: none;
}
.movie-tabs a:hover { background: var(--accent-soft); color: var(--accent); text-decoration: none; }
.movie-tabs a.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.movie-tabs a span { font-weight: 500; opacity: 0.85; margin-left: 4px; }

/* —— Review section —— */
.review-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  padding: 22px;
  border-radius: 0 0 var(--radius) var(--radius);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 24px;
  align-items: start;
}
@media (max-width: 800px) {
  .review-wrap { grid-template-columns: 1fr; }
}

.rating-card {
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px;
  position: sticky;
  top: 80px;
}
.rating-card h4 {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
}
.rating-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  align-items: center;
  margin-bottom: 8px;
  font-size: 13px;
}
.rating-row .label {
  display: block;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 4px;
}
.rating-bar {
  position: relative;
  background: var(--surface-3);
  height: 8px;
  border-radius: 4px;
  overflow: hidden;
}
.rating-bar > span {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--gold-2), var(--gold));
  border-radius: 4px;
}
.rating-row .val {
  font-weight: 800;
  color: var(--accent);
  font-size: 15px;
  min-width: 36px;
  text-align: right;
}
.rating-total {
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.rating-total .row-total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.rating-total .row-total .lab {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.rating-total .row-total .num {
  font-size: 32px;
  font-weight: 800;
  color: var(--accent-strong);
}
.rating-total .row-total .num small { font-size: 14px; color: var(--text-muted); font-weight: 600; }
.rating-note {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 6px;
  font-style: italic;
}

.review-body {
  font-size: 14px;
  line-height: 1.65;
  color: var(--text);
}
.review-intro {
  font-size: 15px;
  color: var(--text);
  margin: 0 0 22px;
  padding: 14px 16px;
  background: var(--surface-2);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.review-block {
  margin-top: 26px;
  clear: both;
}
.review-block h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--accent-strong);
  padding-left: 12px;
  border-left: 4px solid var(--gold);
}
.review-block p { margin: 0 0 12px; }
.review-block ul { padding-left: 22px; margin: 0 0 12px; }
.review-block li { margin-bottom: 4px; }

.review-img {
  width: 46%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  display: block;
  overflow: hidden;
  background: var(--surface-3);
}
.review-img.right { float: right; margin: 4px 0 14px 18px; }
.review-img.left { float: left; margin: 4px 18px 14px 0; }
.review-img img { width: 100%; height: auto; display: block; }
@media (max-width: 700px) {
  .review-img { width: 100%; float: none !important; margin: 12px 0 !important; }
}

.review-author {
  margin-top: 18px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
  font-style: italic;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}
.review-author a { font-style: normal; }

/* —— Price comparison table —— */
.price-table {
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.price-table > h2 {
  margin: 0;
  padding: 14px 18px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  background: var(--accent);
  color: #fff;
}
.price-row {
  display: grid;
  grid-template-columns: 110px 1fr 130px 100px;
  gap: 14px;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.price-row:last-child { border-bottom: none; }
.price-row:hover { background: var(--surface-2); }
.price-row .shop-logo {
  height: 36px;
  display: grid;
  place-items: center;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px 6px;
}
.price-row .shop-logo img { max-height: 28px; max-width: 100%; width: auto; }
.price-row .shop-logo.amazon { background: #ffffff; }
.price-row .shop-logo.amazon img { max-height: 18px; }
.price-row .shop-logo.media-dealer { background: #cc0000; }
.price-row .shop-logo.mediamarkt { background: #df0000; }
.price-row .shop-logo.saturn { background: #000; }
.price-row .desc a { color: var(--text); font-weight: 600; }
.price-row .desc a:hover { color: var(--accent); }
.price-row .pricing strong { font-size: 15px; color: var(--accent-strong); display: block; }
.price-row .pricing small { color: var(--text-muted); font-size: 11px; }
.price-row .order {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  letter-spacing: 0.04em;
}
.price-row .order:hover { background: var(--accent-strong); text-decoration: none; }
.price-row .order img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.price-table .legal {
  margin: 0px;
  padding: 12px 18px;
  font-size: 11px;
  color: var(--text-muted);
  background: var(--surface-2);
  border-top: 1px solid var(--border);
}
@media (max-width: 720px) {
  .price-row { grid-template-columns: 1fr 1fr; }
  .price-row .desc { grid-column: 1 / -1; order: 2; }
  .price-row .order { width: 100%; }
}

/* —— Sidebar film search/preisvergleich —— */
.side-search {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.side-search input,
.side-search select {
  width: 100%;
  padding: 9px 10px;
  font-size: 13px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fff;
  font-family: inherit;
  color: var(--text);
}
.side-search button {
  padding: 9px 12px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-weight: 800;
  text-transform: uppercase;
  font-size: 12px;
  cursor: pointer;
  letter-spacing: 0.04em;
}
.side-search button:hover { background: var(--accent-strong); }
.side-search .more {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
}
.side-search .more a { color: var(--accent); font-weight: 700; }

/* —— Sidebar price compact —— */
.shop-mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 540px;
  overflow-y: auto;
}
.shop-mini-list li {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 10px 14px;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.shop-mini-list li:last-child { border-bottom: none; }
.shop-mini-list li:hover { background: var(--surface-2); }
.shop-mini-list .shop-thumb {
  width: 64px;
  height: 32px;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  padding: 2px 4px;
}
.shop-mini-list .shop-thumb.amazon { background: #ffffff; }
.shop-mini-list .shop-thumb.media-dealer { background: #cc0000; }
.shop-mini-list .shop-thumb.mediamarkt { background: #df0000; }
.shop-mini-list .shop-thumb.saturn { background: #000; }
.shop-mini-list .shop-thumb img { max-width: 100%; max-height: 22px; }
.shop-mini-list .shop-name { font-weight: 700; font-size: 12px; color: var(--text); }
.shop-mini-list .shop-price { font-weight: 800; font-size: 13px; color: var(--accent); }
.shop-mini-list .shop-trend {
  display: inline-block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
  padding: 2px 5px;
  border-radius: var(--radius-sm);
  margin-top: 2px;
}
.shop-mini-list .shop-trend.up { background: #ddf3e1; color: var(--success); }
.shop-mini-list .shop-trend.down { background: #fde4dd; color: var(--danger); }
.shop-mini-list .shop-trend.flat { background: var(--surface-3); color: var(--text-muted); }

.shop-toggle {
  display: block;
  width: 100%;
  text-align: center;
  padding: 10px;
  background: var(--surface-2);
  border-top: 1px solid var(--border);
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  cursor: pointer;
  border-bottom: none;
  border-left: none;
  border-right: none;
  font-family: inherit;
}
.shop-toggle:hover { background: var(--accent-soft); }

/* —— Mobile nav —— */
@media (max-width: 900px) {
  .top-inner {
    grid-template-columns: 1fr auto;
    gap: 12px;
  }
  .search-form {
    grid-column: 1 / -1;
    order: 10;
  }
  .nav-toggle { display: flex; }
  .nav-list {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: var(--nav-bg);
    border-bottom: 1px solid var(--nav-bg-2);
    flex-direction: column;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    padding: 4px 0;
  }
  .nav-wrap.is-open .nav-list { display: flex; }
  .nav-item { width: 100%; }
  .nav-link {
    width: 100%;
    justify-content: space-between;
    border-bottom: none;
    margin-bottom: 0;
  }
  .mega {
    position: static;
    box-shadow: none;
    border: none;
    border-top: 1px solid var(--nav-bg-2);
    background: var(--nav-bg-2);
    color: #fff;
    display: none;
    padding: 12px 18px;
  }
  .mega-col h4 { color: rgba(255, 255, 255, 0.6); }
  .mega-col a { color: #fff; }
  .nav-item.is-open .mega { display: block; }
}
