/* WMMJTV — Internet & TV | Nextbit-inspired theme */
:root {
  --red: #e30613;
  --red-dark: #c10510;
  --navy: #0c0f2d;
  --navy-2: #000b29;
  --navy-3: #151938;
  --white: #ffffff;
  --off: #f7f7f9;
  --gray: #666666;
  --muted: #8a8a8a;
  --line: #eeeeee;
  --text: #1a1d2e;
  --shadow: 0 10px 30px rgba(12, 15, 45, 0.08);
  --radius: 4px;
  --container: 1200px;
}

*,
*::before,
*::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--gray);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: .25s; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", sans-serif;
  color: var(--navy);
  font-weight: 700;
  line-height: 1.25;
}

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--red);
  color: #fff;
  border: 2px solid var(--red);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: .4px;
  text-transform: capitalize;
  cursor: pointer;
  transition: .25s;
}
.btn:hover { background: var(--red-dark); border-color: var(--red-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline:hover { background: #fff; color: var(--navy); }
.btn-navy { background: var(--navy); border-color: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--red); border-color: var(--red); }
.btn-ghost { background: transparent; color: var(--red); border-color: var(--red); }
.btn-ghost:hover { background: var(--red); color: #fff; }
.btn-block { width: 100%; }

.section { padding: 90px 0; }
.section-head { text-align: center; margin-bottom: 50px; }
.section-head .kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
  position: relative;
}
.section-head .kicker::before,
.section-head .kicker::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 2px;
  background: var(--red);
  vertical-align: middle;
  margin: 0 10px;
}
.section-head h2 { font-size: 36px; margin-bottom: 12px; }
.section-head p { max-width: 640px; margin: 0 auto; }

.red-line {
  width: 50px;
  height: 3px;
  background: var(--red);
  margin: 0 0 16px;
}

/* ===== TOP BAR ===== */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: 13px;
  height: 44px;
}
.topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}
.topbar-left { display: flex; align-items: center; gap: 18px; opacity: .9; }
.topbar-left i { color: var(--red); margin-right: 6px; }
.topbar-social { display: flex; }
.topbar-social a {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
}
.topbar-social a:hover { background: var(--red); }

/* ===== HEADER ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(12,15,45,.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 20px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.logo img, .logo svg { height: 42px; width: auto; }
.logo-mark {
  width: 38px;
  height: 38px;
  background: var(--red);
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 14px;
}
.logo-text {
  font-family: "Roboto", sans-serif;
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -.5px;
  color: var(--navy);
  line-height: 1;
}
.logo-text span { color: var(--red); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav > li { position: relative; }
.nav > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 12px 14px;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
}
.nav > li > a:hover,
.nav > li.active > a { color: var(--red); }
.nav .caret { font-size: 10px; opacity: .7; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #fff;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--red);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s;
  z-index: 20;
}
.nav > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.dropdown a {
  display: block;
  padding: 11px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--navy);
}
.dropdown a:hover { color: var(--red); padding-left: 24px; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.icon-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--navy);
  font-size: 16px;
  position: relative;
  background: none;
  border: 0;
  cursor: pointer;
}
.icon-btn:hover { color: var(--red); }
.cart-count {
  position: absolute;
  top: 4px;
  right: 2px;
  background: var(--red);
  color: #fff;
  font-size: 10px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
}
.menu-toggle { display: none; }

/* Search overlay */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(12,15,45,.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.search-overlay.open { display: flex; }
.search-overlay form { width: min(640px, 100%); position: relative; }
.search-overlay input {
  width: 100%;
  height: 64px;
  border: 0;
  border-radius: 4px;
  padding: 0 70px 0 24px;
  font-size: 18px;
}
.search-overlay button {
  position: absolute;
  right: 8px;
  top: 8px;
  height: 48px;
  padding: 0 22px;
}
.search-close {
  position: absolute;
  top: 24px;
  right: 24px;
  color: #fff;
  font-size: 28px;
  background: none;
  border: 0;
  cursor: pointer;
}

/* ===== PAGE HERO ===== */
.page-hero {
  min-height: 280px;
  background: var(--navy) center/cover no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: #fff;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(12,15,45,.82) 0%, rgba(12,15,45,.55) 100%);
}
.page-hero .container { position: relative; z-index: 1; padding: 70px 16px; }
.page-hero h1 { color: #fff; font-size: 52px; margin-bottom: 10px; }
.breadcrumb { font-size: 13px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.breadcrumb a { color: var(--red); }
.breadcrumb span { color: #fff; }

/* ===== HOME HERO ===== */
.home-hero {
  position: relative;
  min-height: 640px;
  background: var(--navy) center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.home-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(100deg, rgba(12,15,45,.92) 0%, rgba(12,15,45,.55) 55%, rgba(227,6,19,.25) 100%);
}
.home-hero .geo {
  position: absolute;
  right: -80px;
  top: -40px;
  width: 55%;
  height: 130%;
  background: linear-gradient(135deg, rgba(227,6,19,.55), rgba(12,15,45,.1));
  clip-path: polygon(28% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}
.home-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 40px;
  align-items: center;
  padding-block: 80px;
}
.hero-copy .tag {
  color: #fff;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
  display: block;
}
.hero-copy h1 {
  color: #fff;
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero-copy p { color: #d5d7e2; max-width: 520px; margin-bottom: 28px; }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual { position: relative; }
.hero-visual img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 20px 50px rgba(0,0,0,.35);
}
.hero-chip {
  position: absolute;
  right: -20px;
  bottom: 30px;
  width: 220px;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-chip img { height: 110px; width: 100%; object-fit: cover; }
.hero-chip span {
  display: block;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
}

/* Availability bar */
.avail-bar {
  background: var(--navy-2) url("data:image/svg+xml,%3Csvg width='20' height='20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='%23e30613' fill-opacity='.18'/%3E%3C/svg%3E");
  padding: 36px 0;
  color: #fff;
}
.avail-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.avail-bar h3 { color: #fff; font-size: 24px; max-width: 420px; }
.avail-form {
  display: flex;
  flex: 1;
  max-width: 620px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
}
.avail-form input {
  flex: 1;
  border: 0;
  padding: 0 20px;
  height: 58px;
  outline: none;
  font-size: 15px;
}
.avail-form .btn { border-radius: 0; height: 58px; }

/* Feature cards */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feat-card {
  background: #fff;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: .3s;
  border: 1px solid transparent;
}
.feat-card:hover { transform: translateY(-6px); border-color: var(--red); }
.feat-icon {
  width: 64px;
  height: 64px;
  border: 1px solid #f1c5c7;
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 26px;
  margin-bottom: 18px;
}
.feat-card h4 { margin-bottom: 10px; font-size: 20px; }

/* Split promo */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.split-img { position: relative; }
.split-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 80px 8px 80px 8px;
}
.split-img .inset {
  position: absolute;
  left: -30px;
  bottom: -20px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  object-fit: cover;
  border: 8px solid #fff;
  box-shadow: var(--shadow);
}
.check-list { margin: 22px 0 28px; }
.check-list li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.check-list i {
  color: var(--red);
  margin-top: 5px;
  flex-shrink: 0;
}
.check-list strong { display: block; color: var(--navy); }

/* Pricing cards */
.pricing-wrap {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.pricing-wrap::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(227,6,19,.35), transparent 70%);
  right: -80px;
  top: -80px;
}
.pricing-wrap .section-head h2,
.pricing-wrap .section-head p,
.pricing-wrap .kicker { color: #fff; }
.price-card {
  background: #fff;
  padding: 36px 28px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}
.price-card .pi {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  border: 2px solid #f3d0d2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 26px;
}
.price-card h4 { font-size: 18px; margin-bottom: 8px; }
.price-card .price {
  color: var(--red);
  font-size: 32px;
  font-weight: 800;
  font-family: "Roboto", sans-serif;
  margin-bottom: 18px;
}
.price-card .price small { font-size: 14px; color: var(--gray); font-weight: 500; }
.price-card ul { text-align: left; margin-bottom: 22px; }
.price-card ul li {
  padding: 7px 0 7px 24px;
  position: relative;
  font-size: 14px;
}
.price-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--red);
  position: absolute;
  left: 0;
}

/* Horizontal plan rows */
.plan-row {
  display: grid;
  grid-template-columns: 1.2fr .8fr 1.2fr .9fr;
  gap: 16px;
  align-items: center;
  background: #fff;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 22px;
  position: relative;
}
.plan-row.featured { border-left: 8px solid var(--red); }
.plan-type {
  display: inline-block;
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 10px;
  margin-bottom: 8px;
}
.plan-icons { display: flex; gap: 12px; justify-content: center; }
.plan-icons span {
  width: 54px;
  height: 54px;
  border: 1px solid #f0d0d2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--red);
  font-size: 20px;
}
.plan-feats li {
  font-size: 14px;
  padding: 4px 0 4px 22px;
  position: relative;
}
.plan-feats li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--red);
  position: absolute;
  left: 0;
  font-size: 12px;
}
.plan-cost { text-align: right; }
.plan-cost .amt {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  font-family: "Roboto", sans-serif;
  display: block;
  margin-bottom: 10px;
}

/* Why choose */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.mini-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.mini-card {
  background: #fff;
  padding: 24px;
  box-shadow: var(--shadow);
}
.mini-card i { color: var(--red); font-size: 28px; margin-bottom: 10px; display: block; }
.mini-card h5 { margin-bottom: 6px; }
.why-photo {
  position: relative;
  min-height: 480px;
}
.why-photo .shape {
  position: absolute;
  inset: 40px 0 0 60px;
  background: var(--navy);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
}
.why-photo img {
  position: relative;
  z-index: 1;
  height: 500px;
  width: 100%;
  object-fit: cover;
  object-position: top;
}

/* Testimonials */
.t-card {
  background: #fff;
  padding: 32px 28px 24px;
  box-shadow: var(--shadow);
  position: relative;
}
.t-card p { font-style: italic; margin-bottom: 22px; }
.t-user { display: flex; align-items: center; gap: 14px; }
.t-user img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--red);
}
.t-user h5 { margin: 0; font-size: 16px; }
.t-user span { font-size: 13px; color: var(--red); }
.t-card.accent { background: var(--red); color: #fff; }
.t-card.accent p, .t-card.accent h5 { color: #fff; }
.t-card.accent .t-user span { color: #ffd7d9; }

.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 50px;
}
.partner {
  width: 140px;
  height: 70px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: var(--navy);
  background: #fff;
  font-size: 13px;
  letter-spacing: .5px;
}

/* Shows */
.shows-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.show-card { position: relative; overflow: hidden; border-radius: 4px; }
.show-card img { width: 100%; height: 260px; object-fit: cover; transition: .4s; }
.show-card:hover img { transform: scale(1.06); }
.show-card figcaption {
  position: absolute;
  inset: auto 0 0 0;
  background: linear-gradient(transparent, rgba(12,15,45,.9));
  color: #fff;
  padding: 36px 12px 14px;
}
.show-card h6 { color: #fff; font-size: 15px; }
.show-card span { font-size: 12px; color: #ccc; }
.show-card .play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 46px;
  height: 46px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  opacity: 0;
  transition: .3s;
}
.show-card:hover .play { opacity: 1; }

/* Products */
.product-card { text-align: center; }
.product-thumb {
  background: #f4f4f6;
  height: 240px;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.product-thumb img { height: 200px; width: auto; max-width: 90%; object-fit: contain; }
.product-card h4 { font-size: 16px; margin-bottom: 4px; }
.product-card .p-price { font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.product-card .p-price s { color: var(--muted); margin-right: 8px; font-weight: 500; }
.product-card .p-price em { color: var(--red); font-style: normal; }
.p-actions { display: flex; justify-content: center; gap: 8px; }
.p-actions .btn { padding: 10px 16px; font-size: 13px; }
.icon-mini {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--navy);
  background: #fff;
  cursor: pointer;
}
.icon-mini:hover { background: var(--red); color: #fff; border-color: var(--red); }

.toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 28px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 14px;
}
.toolbar select {
  border: 1px solid var(--line);
  padding: 8px 12px;
  background: #fff;
}

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
}
.pagination .current, .pagination a:hover {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

/* Product detail */
.pd-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
}
.pd-gallery { display: grid; grid-template-columns: 80px 1fr; gap: 12px; }
.pd-thumbs img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid transparent;
  background: #f4f4f6;
}
.pd-thumbs img.active { border-color: var(--red); }
.pd-main {
  background: #f4f4f6;
  display: grid;
  place-items: center;
  min-height: 420px;
}
.pd-main img { max-height: 380px; object-fit: contain; }
.stars { color: var(--red); margin: 8px 0; font-size: 14px; }
.stars span { color: var(--gray); margin-left: 8px; }
.pd-price { font-size: 28px; font-weight: 800; color: var(--red); margin: 10px 0 16px; }
.pd-price s { color: var(--muted); font-size: 18px; margin-right: 8px; }
.pd-opts { display: flex; gap: 12px; margin: 18px 0; }
.pd-opts select, .pd-opts input {
  border: 1px solid var(--line);
  height: 48px;
  padding: 0 12px;
}
.tabs { display: flex; gap: 28px; border-bottom: 1px solid var(--line); margin: 40px 0 20px; }
.tabs button {
  background: none;
  border: 0;
  padding: 12px 0;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  border-bottom: 2px solid transparent;
}
.tabs button.active { color: var(--red); border-color: var(--red); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }

/* Cart */
.cart-table { width: 100%; border-collapse: collapse; }
.cart-table th {
  text-align: left;
  padding: 14px 10px;
  border-bottom: 2px solid var(--line);
  color: var(--navy);
  font-size: 14px;
}
.cart-table td {
  padding: 18px 10px;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.cart-item { display: flex; align-items: center; gap: 14px; }
.cart-item img { width: 80px; height: 80px; object-fit: cover; background: #f4f4f6; }
.qty-input { width: 70px; height: 40px; border: 1px solid var(--line); text-align: center; }
.remove-item { color: var(--red); background: none; border: 0; cursor: pointer; font-size: 18px; }
.cart-actions { display: flex; gap: 10px; flex-wrap: wrap; margin: 22px 0 40px; }
.cart-actions input { height: 48px; border: 1px solid var(--line); padding: 0 14px; }
.cart-totals {
  max-width: 420px;
  border: 1px solid var(--line);
  padding: 24px;
}
.cart-totals h3 { margin-bottom: 16px; }
.cart-totals .row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.cart-totals .row.total { font-weight: 800; color: var(--navy); font-size: 18px; border: 0; }

/* Checkout */
.checkout-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  gap: 40px;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-row { margin-bottom: 16px; }
.form-row.full { grid-column: 1 / -1; }
.form-row label { display: block; margin-bottom: 6px; color: var(--navy); font-weight: 600; font-size: 14px; }
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  border: 1px solid var(--line);
  height: 48px;
  padding: 0 14px;
  outline: none;
  background: #fff;
}
.form-row textarea { height: 120px; padding: 12px 14px; resize: vertical; }
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus { border-color: var(--red); }
.field-error { color: var(--red); font-size: 12px; margin-top: 4px; display: none; }
.form-row.error input,
.form-row.error textarea,
.form-row.error select { border-color: var(--red); }
.form-row.error .field-error { display: block; }
.order-box { border: 1px solid var(--line); padding: 24px; }
.pay-opt { margin: 12px 0; }
.pay-opt label { font-weight: 600; color: var(--navy); cursor: pointer; }
.pay-note { background: #f7f7f9; padding: 12px; font-size: 13px; margin: 8px 0 0 22px; }
.success-box {
  text-align: center;
  padding: 60px 24px;
  background: #fff;
  box-shadow: var(--shadow);
  max-width: 640px;
  margin: 0 auto;
}
.success-box i { font-size: 56px; color: var(--red); margin-bottom: 16px; }

/* Newsletter */
.newsletter {
  background: var(--red);
  padding: 42px 0;
  position: relative;
  overflow: hidden;
}
.newsletter::after {
  content: "";
  position: absolute;
  right: -40px;
  top: -30px;
  width: 280px;
  height: 180px;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.newsletter .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
  z-index: 1;
}
.newsletter h3 { color: #fff; font-size: 30px; margin-bottom: 4px; }
.newsletter p { color: #ffd7d9; }
.news-form { display: flex; background: #fff; max-width: 480px; flex: 1; }
.news-form input {
  flex: 1;
  border: 0;
  height: 56px;
  padding: 0 18px;
  outline: none;
}
.news-form .btn { border-radius: 0; height: 56px; }

/* Footer */
.footer {
  background: var(--navy-2);
  color: #b7b9c7;
  padding: 70px 0 0;
  position: relative;
  overflow: hidden;
}
.footer::before,
.footer::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background-image: radial-gradient(var(--red) 1.2px, transparent 1.2px);
  background-size: 14px 14px;
  opacity: .35;
  bottom: 40px;
}
.footer::before { left: -40px; }
.footer::after { right: -40px; }
.footer-logo { text-align: center; margin-bottom: 36px; }
.footer-logo .logo-text { color: #fff; font-size: 34px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  position: relative;
  z-index: 1;
  padding-bottom: 40px;
}
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 18px; }
.footer p { font-size: 14px; }
.footer-links li { margin-bottom: 8px; }
.footer-links a:hover { color: var(--red); }
.socials { display: flex; gap: 10px; flex-wrap: wrap; }
.socials a {
  width: 40px;
  height: 40px;
  background: var(--red);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.socials a:hover { background: #fff; color: var(--red); }
.copyright {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 18px 0;
  font-size: 13px;
  position: relative;
  z-index: 1;
}
.copyright .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.copyright a:hover { color: var(--red); }
.legal-links { display: flex; gap: 18px; flex-wrap: wrap; }

/* Services */
.service-card {
  background: #fff;
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: .3s;
}
.service-card:hover { transform: translateY(-6px); }
.service-card i { font-size: 36px; color: var(--red); margin-bottom: 14px; }
.service-card h3 { margin-bottom: 10px; }
.service-card a { color: var(--red); font-weight: 700; font-size: 14px; }

.layout-2 {
  display: grid;
  grid-template-columns: 1.7fr .8fr;
  gap: 36px;
}
.sidebar .widget {
  background: #fff;
  box-shadow: var(--shadow);
  padding: 24px;
  margin-bottom: 24px;
}
.sidebar h4 { margin-bottom: 14px; }
.side-links a {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
}
.side-links a.active, .side-links a:hover { color: var(--red); }
.callout {
  border-left: 4px solid var(--red);
  background: #f7f7f9;
  padding: 18px 20px;
  margin: 22px 0;
}

.accordion .acc-item { border: 1px solid var(--line); margin-bottom: 10px; }
.acc-head {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 0;
  padding: 16px 18px;
  font-weight: 700;
  color: var(--navy);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
}
.acc-item.open .acc-head { color: var(--red); }
.acc-body { display: none; padding: 0 18px 16px; }
.acc-item.open .acc-body { display: block; }

.bundle-promo {
  background: var(--navy);
  color: #fff;
  overflow: hidden;
}
.bundle-promo .split { align-items: center; }
.bundle-promo h2, .bundle-promo p { color: #fff; }
.bundle-promo .price-tag { color: var(--red); font-size: 32px; font-weight: 800; margin: 12px 0 20px; }
.play-wrap { position: relative; }
.play-wrap img { width: 100%; height: 380px; object-fit: cover; }
.play-wrap .play-big {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 28px;
}
.play-wrap .play-big span {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Team */
.team-card { position: relative; overflow: hidden; }
.team-card img { width: 100%; height: 380px; object-fit: cover; }
.team-info {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  text-align: center;
}
.team-info span { color: var(--red); font-size: 13px; }

/* Blog */
.blog-card { margin-bottom: 40px; }
.blog-card img { width: 100%; height: 360px; object-fit: cover; margin-bottom: 16px; }
.blog-meta { font-size: 13px; color: var(--muted); margin-bottom: 8px; display: flex; gap: 16px; }
.blog-card h3 { margin-bottom: 10px; font-size: 26px; }
.blog-card h3 a:hover { color: var(--red); }
.latest-post { display: flex; gap: 12px; margin-bottom: 14px; }
.latest-post img { width: 70px; height: 70px; object-fit: cover; flex-shrink: 0; }
.latest-post h5 { font-size: 14px; margin-bottom: 4px; }
.latest-post h5 a:hover { color: var(--red); }
.latest-post span { font-size: 12px; color: var(--muted); }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tags a {
  border: 1px solid var(--line);
  padding: 6px 12px;
  font-size: 13px;
  color: var(--navy);
}
.tags a:hover { background: var(--red); color: #fff; border-color: var(--red); }
.quote {
  border-left: 4px solid var(--red);
  background: #f7f7f9;
  padding: 20px 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--navy);
}
.img-duo { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 24px 0; }
.img-duo img { height: 220px; width: 100%; object-fit: cover; }
.comments .comment {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.comments img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; }
.comments .reply { color: var(--red); font-weight: 700; font-size: 13px; }

.legal { max-width: 900px; }
.legal h2 { margin: 32px 0 12px; font-size: 24px; }
.legal h3 { margin: 22px 0 8px; font-size: 18px; }
.legal p, .legal li { margin-bottom: 12px; }
.legal ul, .legal ol { padding-left: 22px; }
.legal ul { list-style: disc; }
.legal ol { list-style: decimal; }

.dots { display: flex; justify-content: center; gap: 8px; margin-top: 24px; }
.dots span { width: 10px; height: 10px; border-radius: 50%; background: #ddd; }
.dots span.active { background: var(--red); }

.bg-soft { background: var(--off); }
.bg-grid {
  background-color: #fff;
  background-image:
    linear-gradient(rgba(12,15,45,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(12,15,45,.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.msg {
  padding: 12px 16px;
  border-radius: var(--radius);
  margin-bottom: 16px;
  display: none;
}
.msg.show { display: block; }
.msg.ok { background: #e8f8ee; color: #146c2e; }
.msg.err { background: #fde8ea; color: var(--red); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0 0 0 auto;
  width: min(320px, 86vw);
  background: #fff;
  z-index: 1500;
  padding: 24px;
  box-shadow: -10px 0 30px rgba(0,0,0,.15);
  overflow: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  font-weight: 600;
}
.overlay-bg {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(12,15,45,.45);
  z-index: 1400;
}
.overlay-bg.open { display: block; }

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
}

@media (max-width: 1100px) {
  .nav { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .menu-toggle { display: grid; }
  .home-hero .container,
  .split, .why-grid, .pd-wrap, .checkout-grid, .layout-2, .avail-bar .container,
  .newsletter .container, .footer-grid, .plan-row {
    grid-template-columns: 1fr;
  }
  .plan-cost, .avail-bar h3 { text-align: left; }
  .home-hero { min-height: auto; }
  .hero-copy h1 { font-size: 40px; }
  .page-hero h1 { font-size: 36px; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .shows-grid { grid-template-columns: repeat(3, 1fr); }
  .pd-gallery { grid-template-columns: 1fr; }
  .pd-thumbs { display: flex; gap: 8px; }
}

@media (max-width: 700px) {
  .grid-3, .grid-4, .mini-cards, .form-grid { grid-template-columns: 1fr; }
  .shows-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-copy h1 { font-size: 32px; }
  .section { padding: 60px 0; }
  .copyright .container { flex-direction: column; }
  .topbar { display: none; }
  .cart-table thead { display: none; }
  .cart-table, .cart-table tbody, .cart-table tr, .cart-table td { display: block; width: 100%; }
  .split-img .inset { display: none; }
  .img-duo { grid-template-columns: 1fr; }
  .avail-bar .container, .newsletter .container, .avail-form, .news-form {
    flex-direction: column;
    max-width: 100%;
  }
  .avail-form .btn, .news-form .btn { width: 100%; }
}
