.ccpas,
.ccpas * {
  box-sizing: border-box;
}

.ccpas {
  --ccpas-navy: #06182d;
  --ccpas-navy-2: #0a2537;
  --ccpas-green: #22e66e;
  --ccpas-green-2: #8ff57f;
  --ccpas-text: #07182e;
  --ccpas-muted: #5e6e80;
  --ccpas-line: #dce6f0;
  --ccpas-soft: #f2f7fb;
  --ccpas-card: #ffffff;
  --ccpas-shadow: 0 22px 54px rgba(6, 24, 45, .12);
  font-family: inherit;
  color: var(--ccpas-text);
  background: linear-gradient(180deg, #eef5fb 0%, #ffffff 35%, #f7fbff 100%);
  margin: 0 calc(50% - 50vw);
  overflow: hidden;
}

.ccpas a {
  color: inherit;
  text-decoration: none;
}

.ccpas img,
.ccpas svg {
  display: block;
  max-width: 100%;
}

.ccpas-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.ccpas-hero {
  position: relative;
  min-height: 470px;
  padding: 60px 0 110px;
  background:
    radial-gradient(circle at 77% 42%, rgba(34, 230, 110, .28), transparent 34%),
    radial-gradient(circle at 38% 18%, rgba(92, 245, 165, .11), transparent 28%),
    linear-gradient(135deg, #041225 0%, #06182d 45%, #0a493c 100%);
  color: #ffffff;
}

.ccpas-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,.08));
  pointer-events: none;
}

.ccpas-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(330px, .96fr);
  gap: 34px;
  align-items: center;
}

.ccpas-eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 7px 13px;
  border: 1px solid rgba(34, 230, 110, .32);
  border-radius: 999px;
  color: var(--ccpas-green);
  background: rgba(34, 230, 110, .08);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ccpas-hero h1 {
  margin: 22px 0 14px;
  font-size: clamp(44px, 6vw, 82px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #ffffff;
}

.ccpas-hero h1 span,
.ccpas-hero h1 strong {
  display: block;
}

.ccpas-hero h1 strong {
  color: var(--ccpas-green-2);
  font-weight: 1000;
}

.ccpas-hero-copy > p {
  max-width: 760px;
  margin: 0;
  color: #dcecff;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.55;
  font-weight: 750;
}

.ccpas-hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.ccpas-hero-points div {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.ccpas-hero-points svg {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  fill: var(--ccpas-green);
}

.ccpas-hero-points b,
.ccpas-hero-points small {
  display: block;
}

.ccpas-hero-points b {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.15;
}

.ccpas-hero-points small {
  margin-top: 2px;
  color: #b8cbe0;
  font-size: 12px;
  line-height: 1.25;
}

.ccpas-hero-art {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ccpas-hero-art img {
  width: min(520px, 100%);
  filter: drop-shadow(0 32px 48px rgba(0,0,0,.35));
}

.ccpas-overlap {
  position: relative;
  z-index: 2;
  margin-top: -82px;
  padding-bottom: 48px;
}

.ccpas-card,
.ccpas-deals,
.ccpas-trust,
.ccpas-signup {
  border-radius: 24px;
  box-shadow: var(--ccpas-shadow);
}

.ccpas-card {
  padding: 28px;
  border: 1px solid var(--ccpas-line);
  background: var(--ccpas-card);
}

.ccpas-section-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.ccpas-section-head h2 {
  margin: 0;
  color: var(--ccpas-text);
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.05;
  letter-spacing: -.04em;
}

.ccpas-section-head p {
  margin: 7px 0 0;
  color: var(--ccpas-muted);
  font-size: 14px;
  line-height: 1.45;
}

.ccpas-section-head a {
  flex: 0 0 auto;
  color: #008239;
  font-weight: 950;
  font-size: 14px;
  white-space: nowrap;
}

.ccpas-category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 16px;
}

.ccpas-category {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 152px;
  padding: 12px 10px 14px;
  border: 1px solid transparent;
  border-radius: 22px;
  text-align: center;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease, background .18s ease;
}

.ccpas-category:hover,
.ccpas-category:focus-visible {
  transform: translateY(-3px);
  border-color: #cfdae7;
  background: #f8fbff;
  box-shadow: 0 15px 28px rgba(6, 24, 45, .1);
  outline: none;
}

.ccpas-category-img {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: linear-gradient(180deg, #f5f9fd, #eaf1f8);
  border: 1px solid #e6edf5;
}

.ccpas-category-img img {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

.ccpas-category strong {
  font-size: 13px;
  color: var(--ccpas-text);
  line-height: 1.2;
}

.ccpas-category small {
  margin-top: 5px;
  color: #647386;
  font-size: 12px;
  line-height: 1.2;
}

.ccpas-deals {
  margin-top: 38px;
  padding: 24px;
  border: 1px solid rgba(34, 230, 110, .22);
  background:
    radial-gradient(circle at 88% 15%, rgba(34, 230, 110, .18), transparent 32%),
    linear-gradient(135deg, #06182d 0%, #0a2a39 55%, #0b684f 100%);
}

.ccpas-section-head-dark h2,
.ccpas-section-head-dark p,
.ccpas-section-head-dark a {
  color: #ffffff;
}

.ccpas-section-head-dark h2 span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-left: 10px;
  padding: 4px 10px;
  border-radius: 999px;
  color: #08351e;
  background: var(--ccpas-green);
  font-size: 12px;
  letter-spacing: 0;
  vertical-align: middle;
}

.ccpas-section-head-dark p {
  color: #c5d8e9;
}

.ccpas-deal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ccpas-deal-card {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  gap: 16px;
  min-height: 178px;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 18px 30px rgba(0,0,0,.16);
  transition: transform .18s ease, box-shadow .18s ease;
}

.ccpas-deal-card:hover,
.ccpas-deal-card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 40px rgba(0,0,0,.24);
  outline: none;
}

.ccpas-deal-img,
.ccpas-product-img {
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: linear-gradient(180deg, #f8fbfe, #edf4f9);
  overflow: hidden;
}

.ccpas-deal-img img {
  width: 128px;
  height: 128px;
  object-fit: contain;
}

.ccpas-deal-body {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.ccpas-deal-body strong {
  color: #07182e;
  font-size: 15px;
  line-height: 1.25;
}

.ccpas-deal-body > small {
  margin-top: 3px;
  color: #536579;
  font-size: 12px;
}

.ccpas-stars {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 9px;
  min-height: 18px;
}

.ccpas-stars span {
  color: #ffc107;
  font-size: 13px;
  letter-spacing: -1px;
  white-space: nowrap;
}

.ccpas-stars em {
  color: #68778a;
  font-size: 11px;
  font-style: normal;
  line-height: 1.2;
}

.ccpas-price-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  padding-top: 13px;
}

.ccpas-price-row b {
  color: #06182d;
  font-size: 24px;
  line-height: 1;
  letter-spacing: -.04em;
}

.ccpas-price-row em,
.ccpas-badge {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 24px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #027c2f;
  background: #d7ffe2;
  border: 1px solid rgba(34,230,110,.42);
  font-size: 11px;
  font-weight: 1000;
  font-style: normal;
  line-height: 1;
  text-transform: capitalize;
}

.ccpas-was {
  display: block;
  margin-top: 5px;
  color: #798696;
  font-size: 12px;
  text-decoration: line-through;
}

.ccpas-source-row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
  color: #0b8a3c;
  font-size: 12px;
  font-weight: 900;
}

.ccpas-source {
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 23px;
  padding: 3px 8px;
  border-radius: 7px;
  color: #06182d;
  background: #f2f5f8;
  font-size: 12px;
  font-weight: 1000;
  line-height: 1;
}

.ccpas-source-amazon::first-letter {
  color: #ff9900;
}

.ccpas-source-ebay {
  color: #0b60c8;
}

.ccpas-products {
  margin-top: 42px;
}

.ccpas-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.ccpas-filter-row button {
  appearance: none;
  min-height: 42px;
  padding: 0 21px;
  border: 1px solid var(--ccpas-line);
  border-radius: 999px;
  color: #09233e;
  background: #ffffff;
  font: inherit;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
  transition: background .16s ease, color .16s ease, border-color .16s ease, transform .16s ease;
}

.ccpas-filter-row button:hover,
.ccpas-filter-row button:focus-visible {
  transform: translateY(-1px);
  border-color: #b9c9d8;
  outline: none;
}

.ccpas-filter-row button.is-active {
  color: #ffffff;
  background: var(--ccpas-navy);
  border-color: var(--ccpas-navy);
}

.ccpas-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ccpas-product {
  min-width: 0;
}

.ccpas-product[hidden] {
  display: none !important;
}

.ccpas-product a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 14px 16px 18px;
  border: 1px solid var(--ccpas-line);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(6,24,45,.06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.ccpas-product a:hover,
.ccpas-product a:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(34,230,110,.8);
  box-shadow: 0 24px 42px rgba(6,24,45,.13);
  outline: none;
}

.ccpas-badge {
  position: absolute;
  z-index: 1;
  top: 14px;
  left: 14px;
}

.ccpas-product-img {
  height: 178px;
  margin-bottom: 16px;
}

.ccpas-product-img img {
  width: 160px;
  height: 160px;
  object-fit: contain;
}

.ccpas-product strong {
  min-height: 46px;
  color: var(--ccpas-text);
  font-size: 18px;
  line-height: 1.28;
  letter-spacing: -.02em;
}

.ccpas-product-price {
  display: block;
  margin-top: auto;
  padding-top: 14px;
  color: #06182d;
  font-size: 27px;
  font-weight: 1000;
  line-height: 1;
  letter-spacing: -.05em;
}

.ccpas-product-source {
  display: block;
  margin-top: 9px;
}

.ccpas-product-cta {
  display: inline-flex;
  width: max-content;
  margin-top: 14px;
  color: #008c39;
  font-size: 15px;
  font-weight: 1000;
}

.ccpas-trust {
  display: grid;
  grid-template-columns: 1.15fr repeat(4, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 42px;
  padding: 24px 28px;
  border: 1px solid rgba(34,230,110,.22);
  background: linear-gradient(90deg, #e6ffef, #f3fff6);
  box-shadow: none;
}

.ccpas-trust h2 {
  margin: 0;
  color: #06182d;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.ccpas-trust div {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ccpas-trust svg {
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  fill: #0b7f3b;
}

.ccpas-trust b,
.ccpas-trust small {
  display: block;
}

.ccpas-trust b {
  color: #09213b;
  font-size: 13px;
  line-height: 1.15;
}

.ccpas-trust small {
  margin-top: 2px;
  color: #536579;
  font-size: 12px;
  line-height: 1.25;
}

.ccpas-signup {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 22px;
  align-items: center;
  margin-top: 34px;
  padding: 26px;
  color: #ffffff;
  background: linear-gradient(135deg, #06182d, #081c34);
}

.ccpas-signup h2 {
  margin: 0;
  color: #ffffff;
  font-size: 24px;
  line-height: 1.15;
}

.ccpas-signup p {
  margin: 6px 0 0;
  color: #c9d7e5;
  font-size: 14px;
}

.ccpas-signup form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 140px;
  gap: 14px;
}

.ccpas-signup input {
  width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 12px;
  color: #ffffff;
  background: rgba(255,255,255,.08);
  font: inherit;
  font-size: 15px;
}

.ccpas-signup input::placeholder {
  color: #aebccd;
}

.ccpas-signup button {
  appearance: none;
  min-height: 54px;
  border: 0;
  border-radius: 13px;
  color: #052013;
  background: linear-gradient(180deg, #52f889, #22d964);
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(34,230,110,.26);
}

.ccpas-disclosure {
  margin: 18px 0 0;
  color: #637386;
  font-size: 12px;
  line-height: 1.45;
  text-align: center;
}

@media (max-width: 1100px) {
  .ccpas-hero-grid {
    grid-template-columns: 1fr;
  }

  .ccpas-hero-art {
    justify-content: flex-start;
  }

  .ccpas-hero-art img {
    width: min(430px, 100%);
  }

  .ccpas-hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ccpas-category-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .ccpas-deal-grid,
  .ccpas-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ccpas-trust {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ccpas-trust h2 {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .ccpas-shell {
    width: min(100% - 28px, 1180px);
  }

  .ccpas-hero {
    min-height: 0;
    padding: 42px 0 96px;
  }

  .ccpas-hero h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .ccpas-hero-points,
  .ccpas-category-grid,
  .ccpas-deal-grid,
  .ccpas-product-grid,
  .ccpas-trust,
  .ccpas-signup {
    grid-template-columns: 1fr;
  }

  .ccpas-section-head {
    display: block;
  }

  .ccpas-section-head a {
    display: inline-flex;
    margin-top: 12px;
  }

  .ccpas-card,
  .ccpas-deals,
  .ccpas-trust,
  .ccpas-signup {
    border-radius: 18px;
  }

  .ccpas-card,
  .ccpas-deals {
    padding: 18px;
  }

  .ccpas-category-grid {
    gap: 10px;
  }

  .ccpas-category {
    min-height: 0;
    flex-direction: row;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
  }

  .ccpas-category-img {
    width: 62px;
    height: 62px;
    margin: 0;
  }

  .ccpas-category-img img {
    width: 50px;
    height: 50px;
  }

  .ccpas-deal-card {
    grid-template-columns: 110px minmax(0, 1fr);
  }

  .ccpas-deal-img img {
    width: 100px;
    height: 100px;
  }

  .ccpas-product a {
    min-height: 0;
  }

  .ccpas-signup form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 430px) {
  .ccpas-deal-card {
    grid-template-columns: 1fr;
  }

  .ccpas-deal-img {
    height: 150px;
  }
}

/* v1.1.0 database-backed source notes. No fake star ratings. */
.ccpas-stars span {
  color: #027c2f;
  background: #d7ffe2;
  border: 1px solid rgba(34,230,110,.42);
  border-radius: 999px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 1000;
  letter-spacing: .04em;
}

.ccpas-was {
  text-decoration: none;
}

/* Internal accessory product detail pages */
.ccpas-detail-wrap {
  padding: 72px 0 84px;
  min-height: 70vh;
}

.ccpas-breadcrumb {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0 0 18px;
  color: #4d6074;
  font-size: 14px;
  font-weight: 800;
}

.ccpas-breadcrumb a {
  color: #007c3a;
}

.ccpas-detail-card {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(0, 1.15fr);
  gap: 34px;
  padding: 34px;
  border: 1px solid var(--ccpas-line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--ccpas-shadow);
}

.ccpas-detail-media {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 360px;
  border-radius: 22px;
  background: linear-gradient(135deg, #eef5fb, #f9fcff);
  overflow: hidden;
}

.ccpas-detail-media img {
  width: min(420px, 92%);
  max-height: 420px;
  object-fit: contain;
}

.ccpas-detail-copy h1 {
  margin: 14px 0 12px;
  color: var(--ccpas-text);
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -.055em;
}

.ccpas-detail-desc {
  margin: 0 0 22px;
  color: #40566d;
  font-size: 17px;
  line-height: 1.6;
  font-weight: 700;
}

.ccpas-detail-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 24px;
}

.ccpas-detail-facts div {
  padding: 14px 16px;
  border: 1px solid #dce8f2;
  border-radius: 16px;
  background: #f8fbfe;
}

.ccpas-detail-facts dt {
  margin: 0 0 4px;
  color: #627388;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ccpas-detail-facts dd {
  margin: 0;
  color: var(--ccpas-text);
  font-size: 14px;
  font-weight: 900;
}

.ccpas-detail-offer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  background: linear-gradient(135deg, #06182d, #0b4a3c);
}

.ccpas-detail-price {
  color: #ffffff;
  font-size: 34px;
  font-weight: 1000;
  letter-spacing: -.04em;
}

.ccpas-detail-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border-radius: 999px;
  color: #06182d !important;
  background: var(--ccpas-green);
  font-weight: 1000;
  box-shadow: 0 14px 30px rgba(34, 230, 110, .23);
}

.ccpas-detail-note {
  margin: 14px 0 0;
  color: #5b6f82;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 700;
}

.ccpas-detail-checks {
  display: grid;
  grid-template-columns: auto repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: center;
  margin: 28px 0 0;
  padding: 24px;
  border: 1px solid #b9f5cd;
  border-radius: 24px;
  background: #eafff0;
}

.ccpas-detail-checks h2 {
  margin: 0;
  color: var(--ccpas-text);
  font-size: 22px;
  line-height: 1.1;
}

.ccpas-detail-checks div {
  display: flex;
  gap: 12px;
  align-items: center;
}

.ccpas-detail-checks svg {
  flex: 0 0 28px;
  width: 28px;
  height: 28px;
  fill: #087d43;
}

.ccpas-detail-checks b,
.ccpas-detail-checks small {
  display: block;
}

.ccpas-detail-checks b {
  color: var(--ccpas-text);
  font-size: 14px;
  line-height: 1.15;
}

.ccpas-detail-checks small {
  margin-top: 3px;
  color: #436070;
  font-size: 12px;
  line-height: 1.35;
}

@media (max-width: 820px) {
  .ccpas-detail-card,
  .ccpas-detail-checks {
    grid-template-columns: 1fr;
  }
  .ccpas-detail-media {
    min-height: 260px;
  }
  .ccpas-detail-facts {
    grid-template-columns: 1fr;
  }
}

/* v1.1.6 richer internal accessory detail template */
.ccpas-accessory-product-page .ccpas-detail-wrap {
  background: linear-gradient(180deg, #eef5fb 0%, #f8fbff 100%);
}

.ccpas-detail-card-rich {
  align-items: start;
}

.ccpas-detail-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px;
}

.ccpas-detail-badges .ccpas-badge {
  position: static;
  top: auto;
  left: auto;
}

.ccpas-detail-source-pill {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #0a5f2e;
  background: #e6ffef;
  border: 1px solid #b9f5cd;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.ccpas-detail-offer-rich {
  justify-content: space-between;
  margin-bottom: 18px;
}

.ccpas-detail-offer-rich > div {
  min-width: 180px;
}

.ccpas-detail-price-label,
.ccpas-detail-offer-rich small {
  display: block;
  color: #c8d8e9;
  font-size: 12px;
  font-weight: 850;
}

.ccpas-detail-offer-rich small {
  margin-top: 4px;
}

.ccpas-detail-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 20px;
  margin-top: 28px;
}

.ccpas-detail-panel {
  padding: 26px;
  border: 1px solid var(--ccpas-line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 36px rgba(6, 24, 45, .08);
}

.ccpas-detail-panel h2 {
  margin: 0 0 10px;
  color: var(--ccpas-text);
  font-size: 24px;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.ccpas-detail-panel p {
  margin: 0 0 14px;
  color: #40566d;
  font-size: 15px;
  line-height: 1.55;
  font-weight: 750;
}

.ccpas-detail-panel ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ccpas-detail-panel li {
  position: relative;
  margin: 10px 0 0;
  padding-left: 24px;
  color: #243a50;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 750;
}

.ccpas-detail-panel li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--ccpas-green);
  box-shadow: 0 0 0 4px rgba(34, 230, 110, .16);
}

.ccpas-fit-panel {
  border-color: #b9f5cd;
  background: linear-gradient(180deg, #ffffff, #f3fff6);
}

.ccpas-offer-table-wrap {
  margin-top: 24px;
}

.ccpas-offer-table-scroll {
  overflow-x: auto;
}

.ccpas-offer-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}

.ccpas-offer-table th,
.ccpas-offer-table td {
  padding: 13px 12px;
  border-bottom: 1px solid #e5edf5;
  color: #21364c;
  font-size: 14px;
  text-align: left;
  vertical-align: middle;
}

.ccpas-offer-table th {
  color: #607389;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ccpas-offer-table a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  color: #06182d;
  background: var(--ccpas-green);
  font-size: 12px;
  font-weight: 1000;
  white-space: nowrap;
}

@media (max-width: 820px) {
  .ccpas-detail-section-grid {
    grid-template-columns: 1fr;
  }
}

/* v1.2.0 phone compatibility checker */
.ccpas-phone-finder {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(320px, 1.1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: 30px;
  border-color: rgba(34,230,110,.28);
  background: linear-gradient(135deg, #ffffff 0%, #f4fff7 100%);
}

.ccpas-phone-finder .ccpas-eyebrow {
  color: #087d3c;
  background: #dcffe8;
  border-color: #b9f5cd;
}

.ccpas-phone-finder h2 {
  margin: 12px 0 8px;
  color: var(--ccpas-text);
  font-size: clamp(28px, 3vw, 42px);
  line-height: 1.02;
  letter-spacing: -.05em;
}

.ccpas-phone-finder p,
.ccpas-phone-finder small {
  margin: 0;
  color: #4c6076;
  font-size: 14px;
  line-height: 1.45;
  font-weight: 700;
}

.ccpas-phone-finder-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.ccpas-phone-finder-form input {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border: 1px solid #cfe0ef;
  border-radius: 14px;
  color: var(--ccpas-text);
  background: #ffffff;
  font: inherit;
  font-size: 16px;
  font-weight: 750;
}

.ccpas-phone-finder-form button {
  appearance: none;
  min-height: 56px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  color: #06182d;
  background: linear-gradient(180deg, #52f889, #22d964);
  font: inherit;
  font-weight: 1000;
  cursor: pointer;
  box-shadow: 0 14px 26px rgba(34,230,110,.22);
  white-space: nowrap;
}

.ccpas-phone-finder-form small {
  grid-column: 1 / -1;
  color: #637386;
  font-size: 12px;
}

.ccpas-phone-page {
  min-height: 70vh;
}

.ccpas-phone-hero {
  padding: 62px 0 52px;
  color: #ffffff;
  background:
    radial-gradient(circle at 86% 18%, rgba(34,230,110,.24), transparent 30%),
    linear-gradient(135deg, #06182d 0%, #0a483c 100%);
}

.ccpas-phone-hero .ccpas-breadcrumb {
  color: #cfe1f2;
}

.ccpas-phone-hero .ccpas-breadcrumb a {
  color: var(--ccpas-green);
}

.ccpas-phone-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  gap: 28px;
  align-items: stretch;
}

.ccpas-phone-hero h1 {
  margin: 18px 0 14px;
  color: #ffffff;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1;
  letter-spacing: -.055em;
}

.ccpas-phone-hero p {
  max-width: 760px;
  margin: 0;
  color: #dcecff;
  font-size: 17px;
  line-height: 1.55;
  font-weight: 750;
}

.ccpas-phone-hero .ccpas-phone-finder {
  margin: 0;
  align-self: center;
  grid-template-columns: 1fr;
  box-shadow: 0 22px 44px rgba(0,0,0,.18);
}


/* v1.2.4 readability fix: phone-finder card appears inside the dark hero.
   These more-specific selectors override the hero paragraph color so the pale card
   keeps dark, accessible copy and placeholder text. */
.ccpas-phone-hero .ccpas-phone-finder p,
.ccpas-phone-hero .ccpas-phone-finder-copy p {
  color: #31445a;
  text-shadow: none;
}

.ccpas-phone-hero .ccpas-phone-finder small,
.ccpas-phone-hero .ccpas-phone-finder-form small {
  color: #465a70;
  text-shadow: none;
}

.ccpas-phone-finder-form input::placeholder {
  color: #6f7f91;
  opacity: 1;
}

.ccpas-phone-hero .ccpas-phone-finder-form input {
  color: #07182e;
  background: #ffffff;
}

.ccpas-phone-specs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.ccpas-phone-specs span {
  display: block;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 14px;
  color: #dcecff;
  background: rgba(255,255,255,.08);
  font-size: 13px;
  line-height: 1.3;
  font-weight: 750;
}

.ccpas-phone-specs b {
  display: block;
  margin-bottom: 4px;
  color: #ffffff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.ccpas-phone-content {
  padding: 42px 0 70px;
}

.ccpas-filter-row a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 21px;
  border: 1px solid var(--ccpas-line);
  border-radius: 999px;
  color: #09233e;
  background: #ffffff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1;
}

.ccpas-filter-row a.is-active {
  color: #ffffff;
  background: var(--ccpas-navy);
  border-color: var(--ccpas-navy);
}

.ccpas-phone-section {
  margin-top: 36px;
}

.ccpas-fit-line {
  display: block;
  margin-top: 8px;
  min-height: 38px;
  color: #536579;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

.ccpas-phone-empty {
  margin-top: 24px;
}

.ccpas-phone-empty h2 {
  margin: 0 0 8px;
  color: var(--ccpas-text);
  font-size: 30px;
  letter-spacing: -.04em;
}

.ccpas-phone-empty p {
  margin: 0 0 18px;
  color: #4c6076;
  font-size: 16px;
  line-height: 1.55;
  font-weight: 700;
}

.ccpas-phone-checks {
  margin-top: 42px;
}

@media (max-width: 980px) {
  .ccpas-phone-finder,
  .ccpas-phone-hero-grid {
    grid-template-columns: 1fr;
  }
  
/* v1.2.4 readability fix: phone-finder card appears inside the dark hero.
   These more-specific selectors override the hero paragraph color so the pale card
   keeps dark, accessible copy and placeholder text. */
.ccpas-phone-hero .ccpas-phone-finder p,
.ccpas-phone-hero .ccpas-phone-finder-copy p {
  color: #31445a;
  text-shadow: none;
}

.ccpas-phone-hero .ccpas-phone-finder small,
.ccpas-phone-hero .ccpas-phone-finder-form small {
  color: #465a70;
  text-shadow: none;
}

.ccpas-phone-finder-form input::placeholder {
  color: #6f7f91;
  opacity: 1;
}

.ccpas-phone-hero .ccpas-phone-finder-form input {
  color: #07182e;
  background: #ffffff;
}

.ccpas-phone-specs {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .ccpas-phone-finder-form {
    grid-template-columns: 1fr;
  }
}

.ccpas-phone-import-form {
  margin: 0;
}

.ccpas-phone-import-form button,
.ccpas-mini-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: var(--ccpas-green);
  color: #041326;
  font-weight: 900;
  font-size: 13px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(27, 226, 116, .22);
}

.ccpas-phone-import-hero {
  margin-top: 18px;
}

.ccpas-phone-import-hero button {
  min-height: 46px;
  padding: 0 22px;
}

.ccpas-phone-empty-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 22px;
  border: 1px solid #b8f3cf;
  border-radius: 20px;
  background: linear-gradient(135deg, #f0fff6 0%, #ffffff 72%);
  box-shadow: 0 14px 34px rgba(8, 28, 51, .06);
}

.ccpas-phone-empty-category strong {
  display: block;
  margin: 0 0 6px;
  color: var(--ccpas-text);
  font-size: 19px;
  font-weight: 950;
  letter-spacing: -.02em;
}

.ccpas-phone-empty-category p {
  margin: 0;
  max-width: 820px;
  color: #4d6074;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 750;
}

.ccpas-empty-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ccpas-mini-link {
  background: #ffffff;
  color: #007b39;
  border: 1px solid #9beebd;
  box-shadow: none;
}

@media (max-width: 780px) {
  .ccpas-phone-empty-category {
    grid-template-columns: 1fr;
  }
  .ccpas-empty-actions {
    justify-content: flex-start;
  }
}

.ccpas-phone-admin-notice {
  margin-top: 16px;
  padding: 14px 18px;
  border: 1px solid #9beebd;
  border-radius: 16px;
  background: #f0fff6;
  color: #064821;
  font-size: 14px;
  font-weight: 850;
}

.ccpas-phone-admin-notice.is-error {
  border-color: #ffc0c0;
  background: #fff3f3;
  color: #842029;
}
