/** Shopify CDN: Minification failed

Line 17:0 All "@import" rules must come first

**/
/* ============================================
   AEROPEAK — Product Page Styles
   Colors: Navy #0B1F3A | Teal #00C2B8 | White #FFFFFF | Grey #F5F7FA
   Font: Barlow Condensed (headlines) + DM Sans (body)
   ============================================ */

body {
  margin: 0;
  padding: 0;
}

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:ital,wght@0,700;0,800;0,900;1,700&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --ap-navy: #0B1F3A;
  --ap-teal: #00C2B8;
  --ap-teal-dark: #009e95;
  --ap-white: #FFFFFF;
  --ap-grey: #F5F7FA;
  --ap-grey-2: #E8ECF1;
  --ap-text: #1a2e47;
  --ap-text-light: #5a7184;
  --ap-font-display: 'Barlow Condensed', sans-serif;
  --ap-font-body: 'DM Sans', sans-serif;
  --ap-radius: 12px;
  --ap-radius-sm: 8px;
  --ap-shadow: 0 4px 24px rgba(11, 31, 58, 0.10);
  --ap-shadow-lg: 0 8px 40px rgba(11, 31, 58, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--ap-font-body);
  color: var(--ap-text);
  background: var(--ap-white);
}

.ap-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== ANNOUNCEMENT BAR ===== */
.ap-announcement-bar {
  background: var(--ap-navy);
  color: var(--ap-white);
  padding: 10px 0;
  overflow: hidden;
  font-size: 13px;
  font-family: var(--ap-font-body);
  font-weight: 500;
  letter-spacing: 0.3px;
}

.ap-ticker {
  overflow: hidden;
  white-space: nowrap;
}

.ap-ticker-inner {
  display: inline-block;
  animation: ap-ticker 28s linear infinite;
}

.ap-ticker-inner span {
  margin: 0 20px;
}

.ap-divider {
  color: var(--ap-teal);
  margin: 0 8px !important;
}

@keyframes ap-ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ===== HERO ===== */
.ap-hero {
  background: var(--ap-grey);
  padding: 60px 0 80px;
  overflow: hidden;
}

.ap-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.ap-hero-media {
  position: relative;
}

.ap-hero-image-wrap {
  position: relative;
  background: var(--ap-white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--ap-shadow-lg);
  overflow: hidden;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ap-hero-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 2;
}

.ap-hero-img-placeholder {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ap-font-display);
  font-size: 48px;
  color: var(--ap-navy);
  font-weight: 900;
  z-index: 2;
}

/* Breath wave animations */
.ap-breath-wave {
  position: absolute;
  border-radius: 50%;
  border: 2px solid var(--ap-teal);
  opacity: 0;
  animation: ap-breathe 3s ease-out infinite;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.ap-breath-wave {
  width: 60%;
  height: 60%;
  animation-delay: 0s;
}

.ap-breath-wave--2 {
  width: 80%;
  height: 80%;
  animation-delay: 1s;
}

.ap-breath-wave--3 {
  width: 100%;
  height: 100%;
  animation-delay: 2s;
}

@keyframes ap-breathe {
  0% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0.8);
  }

  100% {
    opacity: 0;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

.ap-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.ap-thumb {
  width: 64px;
  height: 64px;
  border: 2px solid var(--ap-grey-2);
  border-radius: var(--ap-radius-sm);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: var(--ap-white);
  transition: border-color 0.2s;
}

.ap-thumb.active,
.ap-thumb:hover {
  border-color: var(--ap-teal);
}

.ap-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero Content */
.ap-badge-row {
  margin-bottom: 16px;
}

.ap-badge {
  display: inline-block;
  background: rgba(0, 194, 184, 0.12);
  color: var(--ap-teal-dark);
  border: 1px solid rgba(0, 194, 184, 0.3);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ap-hero-headline {
  font-family: var(--ap-font-display);
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 900;
  color: var(--ap-navy);
  line-height: 1.05;
  margin: 0 0 16px;
  letter-spacing: -0.5px;
}

.ap-hero-headline em {
  font-style: italic;
  color: var(--ap-teal);
}

.ap-hero-sub {
  font-size: 17px;
  color: var(--ap-text-light);
  margin: 0 0 20px;
  line-height: 1.6;
}

.ap-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
}

.ap-stars {
  color: #F5A623;
  font-size: 20px;
  letter-spacing: 2px;
}

.ap-rating-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--ap-text-light);
}

/* Bundle Selector */
.ap-bundle-selector {
  margin-bottom: 24px;
}

.ap-bundle-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ap-text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 12px;
}

.ap-bundles {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.ap-bundle-option {
  flex: 1;
  min-width: 120px;
  cursor: pointer;
}

.ap-bundle-option input {
  display: none;
}

.ap-bundle-card {
  border: 2px solid var(--ap-grey-2);
  border-radius: var(--ap-radius);
  padding: 14px 12px;
  background: var(--ap-white);
  transition: all 0.2s;
  position: relative;
}

.ap-bundle-option input:checked+.ap-bundle-card,
.ap-bundle-option:hover .ap-bundle-card {
  border-color: var(--ap-teal);
  box-shadow: 0 0 0 1px var(--ap-teal);
}

.ap-bundle-recommended .ap-bundle-card {
  border-color: var(--ap-teal);
  background: rgba(0, 194, 184, 0.04);
}

.ap-bundle-badge-top {
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ap-teal);
  color: var(--ap-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.ap-bundle-top {
  display: flex;
  flex-direction: column;
  gap: 2px;
  margin-bottom: 8px;
}

.ap-bundle-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ap-navy);
}

.ap-bundle-days {
  font-size: 12px;
  color: var(--ap-text-light);
}

.ap-bundle-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ap-price-old {
  font-size: 13px;
  color: var(--ap-text-light);
  text-decoration: line-through;
}

.ap-price-new {
  font-size: 20px;
  font-weight: 800;
  color: var(--ap-navy);
  font-family: var(--ap-font-display);
}

.ap-bundle-save {
  font-size: 11px;
  font-weight: 700;
  color: var(--ap-teal-dark);
  margin-top: 4px;
}

/* ATC Button */
.ap-atc-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px 32px;
  background: var(--ap-teal);
  color: var(--ap-white);
  border: none;
  border-radius: var(--ap-radius);
  font-family: var(--ap-font-display);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  animation: ap-pulse 2.5s ease-in-out infinite;
}

.ap-atc-btn:hover {
  background: var(--ap-teal-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 194, 184, 0.35);
  animation: none;
}

@keyframes ap-pulse {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 194, 184, 0.4);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(0, 194, 184, 0);
  }
}

/* Urgency */
.ap-urgency {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ap-text-light);
  text-align: center;
}

.ap-urgency strong {
  color: #e05c2e;
}

/* Trust Row */
.ap-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--ap-grey-2);
}

.ap-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--ap-text-light);
  font-weight: 500;
}

.ap-trust-item svg {
  color: var(--ap-teal);
  flex-shrink: 0;
}

/* Payment Icons */
.ap-payment-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.ap-payment-label {
  font-size: 12px;
  color: var(--ap-text-light);
  font-weight: 600;
}

.ap-payment-icons {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.ap-pay-badge {
  background: var(--ap-grey);
  border: 1px solid var(--ap-grey-2);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ap-navy);
}

.ap-pay-cod {
  background: var(--ap-navy);
  color: var(--ap-white);
  border-color: var(--ap-navy);
}

/* ===== SOCIAL BAR ===== */
.ap-social-bar {
  background: var(--ap-navy);
  padding: 16px 0;
  overflow: hidden;
}

.ap-social-inner {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  animation: ap-ticker 20s linear infinite;
}

.ap-social-item {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
}

.ap-social-sep {
  color: var(--ap-teal);
  font-size: 20px;
}

/* ===== SECTIONS COMMON ===== */
.ap-section-title {
  font-family: var(--ap-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--ap-navy);
  text-align: center;
  margin: 0 0 16px;
  line-height: 1.1;
}

.ap-section-sub {
  text-align: center;
  color: var(--ap-text-light);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.6;
}

/* ===== PROBLEM ===== */
.ap-problem {
  padding: 80px 0;
  background: var(--ap-white);
}

.ap-problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ap-problem-card {
  background: var(--ap-grey);
  border-radius: var(--ap-radius);
  padding: 32px 28px;
  border-left: 4px solid var(--ap-teal);
}

.ap-problem-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.ap-problem-card h3 {
  font-family: var(--ap-font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ap-navy);
  margin: 0 0 12px;
}

.ap-problem-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ap-text-light);
  margin: 0;
}

/* ===== SOLUTION ===== */
.ap-solution {
  background: var(--ap-navy);
  padding: 80px 0;
}

.ap-solution-title {
  font-family: var(--ap-font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 900;
  color: var(--ap-white);
  text-align: center;
  margin: 0 0 16px;
}

.ap-solution-sub {
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  font-size: 17px;
  max-width: 600px;
  margin: 0 auto 56px;
  line-height: 1.6;
}

.ap-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.ap-step {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(0, 194, 184, 0.25);
  border-radius: var(--ap-radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
}

.ap-step-num {
  width: 52px;
  height: 52px;
  background: var(--ap-teal);
  color: var(--ap-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ap-font-display);
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 20px;
}

.ap-step h3 {
  font-family: var(--ap-font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--ap-white);
  margin: 0 0 12px;
}

.ap-step p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}

.ap-step-arrow {
  font-size: 28px;
  color: var(--ap-teal);
  font-weight: 300;
}

/* ===== BENEFITS ===== */
.ap-benefits {
  padding: 80px 0;
  background: var(--ap-grey);
}

.ap-benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.ap-benefit-card {
  background: var(--ap-white);
  border-radius: var(--ap-radius);
  padding: 28px 24px;
  box-shadow: var(--ap-shadow);
  transition: transform 0.2s, box-shadow 0.2s;
}

.ap-benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ap-shadow-lg);
}

.ap-benefit-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.ap-benefit-card h3 {
  font-family: var(--ap-font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--ap-navy);
  margin: 0 0 8px;
}

.ap-benefit-card p {
  font-size: 14px;
  color: var(--ap-text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== AUDIENCE ===== */
.ap-audience {
  padding: 80px 0;
  background: var(--ap-white);
}

.ap-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ap-audience-card {
  padding: 36px 28px;
  border-radius: var(--ap-radius);
  background: var(--ap-grey);
  position: relative;
  overflow: hidden;
}

.ap-audience-emoji {
  font-size: 48px;
  margin-bottom: 20px;
  display: block;
}

.ap-audience-card h3 {
  font-family: var(--ap-font-display);
  font-size: 24px;
  font-weight: 900;
  color: var(--ap-navy);
  margin: 0 0 12px;
}

.ap-audience-card p {
  font-size: 15px;
  color: var(--ap-text-light);
  line-height: 1.7;
  margin: 0 0 20px;
}

.ap-audience-line {
  height: 3px;
  width: 48px;
  background: var(--ap-teal);
  border-radius: 2px;
}

/* ===== BUY BOX ===== */
.ap-buybox {
  padding: 80px 0;
  background: var(--ap-grey);
}

.ap-buybox-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
  background: var(--ap-white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--ap-shadow-lg);
  border-top: 4px solid var(--ap-teal);
}

.ap-buybox-media img {
  width: 100%;
  border-radius: var(--ap-radius);
  object-fit: contain;
}

.ap-buybox-img-placeholder {
  background: var(--ap-grey);
  border-radius: var(--ap-radius);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ap-font-display);
  font-size: 36px;
  color: var(--ap-navy);
  font-weight: 900;
}

.ap-buybox-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: rgba(0, 194, 184, 0.06);
  border: 1px solid rgba(0, 194, 184, 0.2);
  border-radius: var(--ap-radius-sm);
  padding: 16px;
  margin-top: 20px;
}

.ap-buybox-guarantee span {
  font-size: 28px;
}

.ap-buybox-guarantee strong {
  display: block;
  font-size: 14px;
  color: var(--ap-navy);
  margin-bottom: 4px;
}

.ap-buybox-guarantee p {
  font-size: 13px;
  color: var(--ap-text-light);
  margin: 0;
}

.ap-buybox-title {
  font-family: var(--ap-font-display);
  font-size: 32px;
  font-weight: 900;
  color: var(--ap-navy);
  margin: 0 0 10px;
}

.ap-buybox-stars {
  font-size: 16px;
  margin-bottom: 28px;
}

.ap-buybox-stars .ap-stars {
  color: #F5A623;
  margin-right: 6px;
}

.ap-buybox-stars span {
  color: var(--ap-text-light);
  font-size: 14px;
}

/* BB Bundle options */
.ap-buybox-bundles {
  margin-bottom: 24px;
}

.ap-bb-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ap-bb-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 2px solid var(--ap-grey-2);
  border-radius: var(--ap-radius-sm);
  padding: 14px 16px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  background: var(--ap-white);
}

.ap-bb-option input {
  display: none;
}

.ap-bb-option.active,
.ap-bb-option:has(input:checked) {
  border-color: var(--ap-teal);
  background: rgba(0, 194, 184, 0.04);
}

.ap-bb-popular {
  border-color: var(--ap-teal);
  background: rgba(0, 194, 184, 0.04);
}

.ap-bb-pop-badge {
  position: absolute;
  top: -11px;
  left: 16px;
  background: var(--ap-teal);
  color: var(--ap-white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.ap-bb-left {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ap-bb-left strong {
  font-size: 15px;
  color: var(--ap-navy);
  font-weight: 700;
}

.ap-bb-best {
  display: inline-block;
  font-size: 11px;
  color: var(--ap-teal-dark);
  font-weight: 600;
  background: rgba(0, 194, 184, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
  width: fit-content;
}

.ap-bb-right {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.ap-bb-old {
  font-size: 13px;
  color: var(--ap-text-light);
  text-decoration: line-through;
}

.ap-bb-new {
  font-size: 22px;
  font-weight: 800;
  color: var(--ap-navy);
  font-family: var(--ap-font-display);
}

.ap-bb-save {
  font-size: 12px;
  font-weight: 700;
  color: var(--ap-teal-dark);
  background: rgba(0, 194, 184, 0.1);
  padding: 2px 8px;
  border-radius: 20px;
}

.ap-atc-btn--large {
  font-size: 24px;
  padding: 20px 32px;
  margin-bottom: 12px;
}

.ap-shipping-note {
  font-size: 13px;
  color: var(--ap-text-light);
  margin-top: 12px;
}

/* ===== HOW TO USE ===== */
.ap-howto {
  padding: 80px 0;
  background: var(--ap-white);
}

.ap-howto-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}

.ap-howto-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 32px 0;
  border-bottom: 1px solid var(--ap-grey-2);
}

.ap-howto-step:last-child {
  border-bottom: none;
}

.ap-howto-num {
  font-family: var(--ap-font-display);
  font-size: 56px;
  font-weight: 900;
  color: var(--ap-teal);
  line-height: 1;
  min-width: 70px;
  opacity: 0.4;
}

.ap-howto-content h3 {
  font-family: var(--ap-font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--ap-navy);
  margin: 0 0 8px;
}

.ap-howto-content p {
  font-size: 16px;
  color: var(--ap-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===== REVIEWS ===== */
.ap-reviews {
  padding: 80px 0;
  background: var(--ap-grey);
}

.ap-reviews-summary {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
  margin-bottom: 48px;
}

.ap-reviews-score {
  font-family: var(--ap-font-display);
  font-size: 64px;
  font-weight: 900;
  color: var(--ap-navy);
  line-height: 1;
}

.ap-reviews-summary .ap-stars {
  color: #F5A623;
  font-size: 24px;
  display: block;
  margin-bottom: 4px;
}

.ap-reviews-summary p {
  font-size: 14px;
  color: var(--ap-text-light);
  margin: 0;
}

.ap-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.ap-review-card {
  background: var(--ap-white);
  border-radius: var(--ap-radius);
  padding: 24px;
  box-shadow: var(--ap-shadow);
}

.ap-review-stars {
  color: #F5A623;
  font-size: 16px;
  margin-bottom: 12px;
}

.ap-review-card>p {
  font-size: 14px;
  line-height: 1.7;
  color: var(--ap-text);
  margin: 0 0 20px;
  font-style: italic;
}

.ap-reviewer {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ap-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: var(--ap-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.ap-reviewer strong {
  font-size: 14px;
  color: var(--ap-navy);
  display: block;
}

.ap-reviewer small {
  font-size: 12px;
  color: var(--ap-text-light);
}

.ap-loox-placeholder {
  margin-top: 20px;
}

/* ===== FAQ ===== */
.ap-faq {
  padding: 80px 0;
  background: var(--ap-white);
}

.ap-faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.ap-faq-item {
  border-bottom: 1px solid var(--ap-grey-2);
}

.ap-faq-item summary {
  padding: 20px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--ap-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ap-faq-item summary::-webkit-details-marker {
  display: none;
}

.ap-faq-item summary::after {
  content: '+';
  font-size: 24px;
  color: var(--ap-teal);
  font-weight: 300;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.ap-faq-item[open] summary::after {
  transform: rotate(45deg);
}

.ap-faq-item p {
  padding: 0 0 20px;
  font-size: 15px;
  color: var(--ap-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ===== FINAL CTA ===== */
.ap-final-cta {
  background: var(--ap-navy);
  padding: 80px 0;
  text-align: center;
}

.ap-final-title {
  font-family: var(--ap-font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--ap-white);
  margin: 0 0 16px;
}

.ap-final-sub {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 36px;
}

.ap-final-btn {
  display: inline-flex;
  max-width: 480px;
  margin-bottom: 24px;
}

.ap-final-trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .ap-hero {
    padding: 32px 0 48px;
  }

  .ap-hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .ap-hero-image-wrap {
    padding: 24px;
  }

  .ap-bundles {
    flex-direction: column;
  }

  .ap-bundle-option {
    min-width: unset;
  }

  .ap-problem-grid,
  .ap-benefits-grid,
  .ap-audience-grid,
  .ap-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ap-steps {
    flex-direction: column;
    align-items: center;
  }

  .ap-step-arrow {
    transform: rotate(90deg);
  }

  .ap-buybox-inner {
    grid-template-columns: 1fr;
    padding: 28px 20px;
    gap: 32px;
  }

  .ap-howto-step {
    flex-direction: column;
    gap: 12px;
  }

  .ap-howto-num {
    font-size: 36px;
    min-width: unset;
  }

  .ap-trust-row {
    gap: 12px;
  }

  .ap-section-title {
    font-size: 28px;
  }

  .ap-final-btn {
    width: 100%;
  }

  .ap-social-bar {
    display: none;
  }

  /* Hide on very small to avoid overflow issues */
}

@media (max-width: 480px) {
  .ap-hero-headline {
    font-size: 36px;
  }

  .ap-atc-btn {
    font-size: 18px;
    padding: 16px 24px;
  }

  .ap-reviews-grid {
    grid-template-columns: 1fr;
  }

  .ap-bb-option {
    flex-wrap: wrap;
    gap: 8px;
  }
}

/* ===== MOBILE NAV OVERRIDES ===== */

.header-wrapper {

  background: var(--ap-navy) !important;

}

.header__heading-link,

.header__menu-item,

.header__icon {

  color: var(--ap-white) !important;

}

.header__icon svg,

.header__menu-icon {

  fill: var(--ap-white) !important;

}

.menu-drawer {

  background: var(--ap-navy) !important;

}

.menu-drawer__navigation a {

  color: var(--ap-white) !important;

}


/* ===== ANNOUNCEMENT BAR — Orange Urgency ===== */
.announcement-bar,
.utility-bar__grid {
  background: var(--ap-teal) !important;
}

.announcement-bar__message,
.announcement-bar a,
.announcement-bar span {
  color: #FFFFFF !important;
  font-weight: 600 !important;
  font-size: 14px !important;
  letter-spacing: 0.3px !important;
}

/* ===== TICKER BAR — White/Navy ===== */
/* ===== FULL WIDTH FIXES ===== */
.announcement-bar,
.announcement-bar__content {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.header-wrapper {
  padding-left: 24px !important;
  padding-right: 24px !important;
}

.ap-announcement-bar {
  background: var(--ap-white) !important;
  border-bottom: 1px solid var(--ap-grey-2) !important;
}

.ap-ticker-inner span {
  color: var(--ap-navy) !important;
}

.ap-divider {
  color: var(--ap-teal) !important;
}

/* ===== CART BADGE — Teal Bubble ===== */
.cart-count-bubble {
  background: var(--ap-teal) !important;
  color: var(--ap-white) !important;
  border-radius: 50% !important;
  width: 20px !important;
  height: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  position: absolute !important;
  top: -6px !important;
  right: -6px !important;
  border: 2px solid var(--ap-navy) !important;
}

.cart-count-bubble span {
  color: var(--ap-white) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
}


/* ============================================
   AEROPEAK — Mobile Hero Fixes v2
   1. Compact announcement bar + nav
   2. Hide thumbnails on mobile
   3. Text shadow for visibility on any bg image
   4. Overlay gradient strengthened
   ============================================ */

/* ===== 1. COMPACT ANNOUNCEMENT BAR ===== */
.announcement-bar__content,
.announcement-bar {
  min-height: unset !important;
  padding-top: 8px !important;
  padding-bottom: 8px !important;
}

.announcement-bar p,
.announcement-bar span,
.announcement-bar__message {
  line-height: 1.3 !important;
}

/* ===== 2. COMPACT NAV ON MOBILE ===== */
@media (max-width: 768px) {
  .header__heading-link img,
  .header__heading-logo {
    max-height:  36px !important;
    width: auto !important;
  }

  /* Center the logo properly in the nav */
  .header__heading {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
  }

  /* Tighten icon gap now that search is gone */
  .header__icons {
    gap: 8px !important;
  }

  /* ===== 3. HIDE THUMBNAILS ON MOBILE ===== */
  .ap-thumbs {
    display: none !important;
  }

  /* ===== 4. STRONGER GRADIENT OVERLAY ===== */
  .ap-hero-image-wrap::after {
    background: linear-gradient(
      to bottom,
      rgba(11,31,58,0.0) 0%,
      rgba(11,31,58,0.0) 25%,
      rgba(11,31,58,0.5) 50%,
      rgba(11,31,58,0.85) 70%,
      rgba(11,31,58,0.97) 85%,
      rgba(11,31,58,1) 100%
    ) !important;
  }

  /* ===== 5. TEXT SHADOW — visible on ANY image ===== */
  .ap-mob-headline {
    text-shadow:
      0 2px 12px rgba(0,0,0,0.8),
      0 0 40px rgba(0,0,0,0.6) !important;
  }

  .ap-mob-badge {
    /* Force dark bg so text always readable */
    background: rgba(0,0,0,0.4) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
    border-color: rgba(0,194,184,0.5) !important;
  }

  .ap-mob-stars-text {
    text-shadow: 0 1px 6px rgba(0,0,0,0.8) !important;
  }

  /* ===== 6. OVERLAY SITS HIGHER — more content visible ===== */
  .ap-hero-overlay-mobile {
    padding-bottom: 32px !important;
  }

  /* ===== 7. IMAGE SHOWS FACE NOT INFOGRAPHIC ===== */
  /* Force first image (face photo) via object-position */
  .ap-hero-img {
    object-position: center 15% !important;
  }
}