/* =========================================================
   PETITEK SITE.CSS
   Shared public website styles
========================================================= */

:root {
  --font-primary: "Inter", Arial, sans-serif;

  --teal: #5EBCBC;
  --black: #111111;
  --white: #ffffff;
  --text: #2b2b2b;
  --muted: #666666;

  --soft-bg: #f6f7f7;
  --border: #e7e7e7;

  --max-width: 1180px;

  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;

  --shadow: 0 14px 34px rgba(0, 0, 0, .10);
}

/* =========================================================
   RESET / BASE
========================================================= */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--text);
  font-family: var(--font-primary);
  font-size: 16px;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
}

/* =========================================================
   TYPOGRAPHY
========================================================= */

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.04em;
  font-weight: 700;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  line-height: 1.15;
  letter-spacing: -.03em;
  font-weight: 600;
}

h3 {
  font-size: 1.25rem;
  line-height: 1.25;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

small {
  color: var(--muted);
}

/* =========================================================
   ABOUT PAGE
========================================================= */

.about-video-section {
  margin-bottom: 20px;
}

.about-video-section .video-frame {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* =========================================================
   PAGE LAYOUT
========================================================= */

.site-main {
  min-height: 60vh;
}

.site-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.page-section {
  padding: 60px 0;
}

.section-soft {
  background: var(--soft-bg);
}

.card-grid {
  display: grid;
  gap: 24px;
}


/* =========================================================
   BUTTONS
========================================================= */

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: .2s ease;
}

.btn-primary {
  background: var(--black);
  color: var(--white) !important;
}

.btn-primary:hover {
  background: var(--teal);
  color: var(--black) !important;
}

.btn-secondary {
  border: 1px solid var(--black);
  color: var(--black);
}

.btn-secondary:hover {
  background: var(--black);
  color: var(--white);
}

/* =========================================================
   HERO SECTIONS
========================================================= */

.page-hero {
  background: var(--teal);
  text-align: center;
  padding: 48px 24px;
  color: var(--black);
}

.page-hero-inner {
  max-width: 900px;
  margin: 0 auto;
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.hero-copy {
  max-width: 800px;
  margin: 20px auto 0;
  color: var(--white);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 500;
}

/* =========================================================
   SECTION HEADINGS
========================================================= */

.section-heading {
  margin-bottom: 24px;
}

.section-heading::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--teal);
  border-radius: 999px;
  margin-top: 12px;
}

/* =========================================================
   CARDS
========================================================= */

.content-card,
.video-card,
.form-card,
.contact-card,
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 32px;
}

/* =========================================================
   VIDEO EMBEDS
========================================================= */

.video-frame {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 14px;
  background: var(--black);
}

.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* =========================================================
   FORMS
========================================================= */

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-family: var(--font-primary);
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

/* =========================================================
   FOUNDER / SIGNATURE
========================================================= */

.founder-copy {
  text-align: left;
  max-width: 700px;
}

.founder-photo {
  width: 160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);

  display: block;
  margin: 0 auto 20px;
}

.signature-text {
  text-align: center;
  font-family: "Brush Script MT", "Segoe Script", "Lucida Handwriting", cursive;
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
  color: var(--black);
  margin: 34px auto 16px;
  transform: rotate(-2deg);
  font-weight: 400;
}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-card {
  max-width: 900px;
  margin: 0 auto;
}

.legal-meta {
  color: var(--muted);
  font-size: .95rem;
  margin-bottom: 24px;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

  .nav-wrap {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    position: relative;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 18px;
    right: 18px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow);
    padding: 18px;
    z-index: 200;
  }

  .nav-links.is-open {
    display: grid;
    gap: 14px;
  }

  .page-hero {
    padding: 28px 20px;
  }

  .hero-eyebrow {
    margin-bottom: 8px;
  }

  .hero-copy {
    margin-top: 12px;
  }

}

/* =====================================================
   LEARN PAGE
===================================================== */

.learn-page {
  background: #f7f8f8;
  min-height: 100vh;
  padding: 40px 18px;
}

.learn-hero {
  max-width: 960px;
  margin: 0 auto 26px;
  text-align: center;
}

.learn-hero h1 {
  margin: 0 0 10px;
  font-size: clamp(2.1rem, 5vw, 3.25rem);
  color: #111;
}

.learn-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: #555;
  font-size: 1.1rem;
  line-height: 1.55;
}

.learn-player-card {
  max-width: 1200px;
  margin: 0 auto 18px;
  background: #000;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
}

.learn-player-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.learn-player-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.learn-current-video {
  max-width: 1200px;
  margin: 0 auto 22px;
  background: #fff;
  border: 1px solid #e5e7e7;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}

.learn-current-video h2 {
  margin: 0 0 8px;
  color: #111;
  font-size: 1.65rem;
}

.learn-current-video p {
  margin: 0;
  color: #555;
  line-height: 1.6;
}

.learn-video-list {
  max-width: 1200px;
  margin: 0 auto 24px;
  display: grid;
  gap: 12px;
}

.learn-video-option {
  width: 100%;
  text-align: left;
  background: #fff;
  border: 1px solid #e5e7e7;
  border-radius: 18px;
  padding: 18px 20px;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.learn-video-option span {
  display: block;
  color: #111;
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.learn-video-option small {
  display: block;
  color: #555;
  line-height: 1.4;
  font-size: 0.95rem;
}

.learn-video-option:hover,
.learn-video-option.is-active {
  border-color: #5EBCBC;
  box-shadow: 0 8px 22px rgba(94,188,188,0.22);
}

.learn-help-card {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid #e5e7e7;
  border-radius: 22px;
  padding: 28px 22px;
}

.learn-help-card h2 {
  margin: 0 0 8px;
  color: #111;
}

.learn-help-card p {
  margin: 0 0 18px;
  color: #555;
}

.learn-help-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.learn-video-picker-intro {
  max-width: 1200px;
  margin: 0 auto 14px;
  padding: 0 4px;
}

.learn-video-picker-intro h3 {
  margin: 0 0 4px;
  color: #111;
  font-size: 1.15rem;
}

.learn-video-picker-intro p {
  margin: 0;
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 700px) {
  .learn-page {
    padding: 28px 14px;
  }

  .learn-current-video {
    padding: 20px;
  }

  .learn-video-option {
    padding: 16px;
  }
}

.learn-video-picker-intro {
  max-width: 1200px;
  margin: 0 auto 18px;
  background: #fff;
  border: 1px solid #e5e7e7;
  border-radius: 20px;
  padding: 22px 24px;
}


/* =========================================================
   SUPPORT PAGE
========================================================= */

.support-page {
  background: var(--soft-bg);
  min-height: 100vh;
  padding: 36px 18px;
}

.support-hero {
  max-width: 900px;
  margin: 0 auto 24px;
  text-align: center;
}

.support-hero h1 {
  margin: 0 0 10px;
  color: var(--black);
  font-size: clamp(2.1rem, 5vw, 3.25rem);
}

.support-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.55;
}

/* ChatrBot feature card */

.support-chat-card {
  max-width: 1000px;
  margin: 0 auto 30px;
  background: linear-gradient(180deg, #ffffff 0%, #fdfefe 100%);
  border: 2px solid rgba(94, 188, 188, 0.45);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.10);
  padding: 34px;
}

.support-chat-card h2 {
  margin: 0 0 8px;
  color: var(--black);
  font-size: clamp(1.8rem, 4vw, 2.35rem);
}

.support-chat-card p {
  color: var(--muted);
}

.support-chat-badge {
  display: inline-block;
  margin-bottom: 14px;
  background: rgba(94, 188, 188, 0.16);
  color: #247979;
  border: 1px solid rgba(94, 188, 188, 0.45);
  border-radius: 999px;
  padding: 7px 14px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.chat-note {
  font-size: 0.92rem;
  color: var(--muted);
  background: #f7fbfb;
  border-left: 5px solid var(--teal);
  border-radius: 14px;
  padding: 13px 15px;
  margin: 14px 0 18px;
}

.support-chat-form {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-top: 18px;
}

.support-chat-form input {
  flex: 1;
  min-height: 56px;
  padding: 15px 18px;
  font-size: 1.05rem;
  border-radius: 16px;
}

.support-chat-form .btn {
  min-width: 150px;
  min-height: 56px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 16px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}

.support-chat-output {
  display: none;
  margin-top: 18px;
  background: #f7f8f8;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  color: var(--black);
  white-space: pre-wrap;
}

/* Resource cards */

.support-resources {
  max-width: 1000px;
  margin: 0 auto;
}

.support-resources h2 {
  text-align: center;
  margin: 0 0 18px;
  color: var(--black);
}

.support-resource-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.support-resource-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  padding: 24px;
  text-decoration: none;
  color: inherit;
}

.support-resource-card h3 {
  margin: 0 0 8px;
  color: var(--black);
}

.support-resource-card p {
  margin: 0;
  color: var(--muted);
}

.support-resource-card:hover {
  border-color: var(--teal);
  box-shadow: 0 8px 22px rgba(94, 188, 188, 0.22);
}

/* Mobile */

@media (max-width: 700px) {
  .support-page {
    padding: 28px 14px;
  }

  .support-hero {
    margin-bottom: 20px;
  }

  .support-chat-card {
    padding: 22px;
    border-radius: 22px;
  }

  .support-chat-card h2 {
    font-size: 1.75rem;
  }

  .chat-note {
    font-size: 0.88rem;
    padding: 11px 13px;
  }

  .support-chat-form {
    flex-direction: column;
    gap: 10px;
  }

  .support-chat-form input {
    min-height: 48px;
    padding: 13px 15px;
    font-size: 1rem;
  }

  .support-chat-form .btn {
    width: 100%;
    min-height: 48px;
    font-size: 1rem;
  }

  .support-resource-grid {
    grid-template-columns: 1fr;
  }

  .support-resource-card {
    padding: 20px;
  }
}

/* =========================================================
   WARRANTY PAGE
========================================================= */

.warranty-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 18px 60px;
}

.warranty-hero {
  text-align: center;
  margin-bottom: 32px;
}

.warranty-badge {
  display: inline-block;
  background: rgba(94,188,188,.12);
  color: #247979;
  border: 1px solid rgba(94,188,188,.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.warranty-hero h1 {
  margin: 0 0 12px;
}

.warranty-hero p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.7;
}

.warranty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 30px;
  margin-bottom: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.warranty-card h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.warranty-card p:last-child {
  margin-bottom: 0;
}

.warranty-card ul {
  margin: 14px 0;
  padding-left: 22px;
}

.warranty-card li {
  margin-bottom: 8px;
}

.warranty-help {
  background: linear-gradient(
    180deg,
    rgba(94,188,188,.08),
    rgba(94,188,188,.04)
  );
  border: 1px solid rgba(94,188,188,.25);
  border-radius: var(--radius-md);
  padding: 32px;
  text-align: center;
  margin-top: 24px;
}

.warranty-help h2 {
  margin-top: 0;
  margin-bottom: 12px;
}

.warranty-help p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
}

.warranty-actions {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.warranty-small-note {
  margin-top: 18px !important;
  font-size: .92rem;
}

@media (max-width: 700px) {

  .warranty-page {
    padding: 28px 14px 50px;
  }

  .warranty-card,
  .warranty-help {
    padding: 22px;
  }

  .warranty-actions {
    flex-direction: column;
  }

  .warranty-actions .btn {
    width: 100%;
  }

}

/* =========================================================
   LEGAL PAGES
========================================================= */

.legal-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 18px 60px;
}

.legal-hero {
  text-align: center;
  margin: 0 auto 32px;
  max-width: 760px;
}

.legal-badge {
  display: inline-block;
  background: rgba(94,188,188,.12);
  color: #247979;
  border: 1px solid rgba(94,188,188,.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.legal-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.legal-hero p {
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
  max-width: 680px;
}

.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 34px;
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
}

.legal-card h2 {
  margin-top: 30px;
  margin-bottom: 10px;
}

.legal-card h2:first-child {
  margin-top: 0;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-card ul {
  padding-left: 24px;
  margin: 14px 0;
}

.legal-card li {
  margin-bottom: 8px;
}

@media (max-width: 700px) {
  .legal-page {
    padding: 28px 14px 50px;
  }

  .legal-card {
    padding: 24px;
  }
}


/* =========================================================
   PRODUCT REGISTRATION
========================================================= */

.register-page {
  max-width: 920px;
  margin: 0 auto;
  padding: 40px 18px 60px;
}

.register-hero {
  text-align: center;
  margin-bottom: 32px;
}

.register-badge {
  display: inline-block;
  background: rgba(94,188,188,.12);
  color: #247979;
  border: 1px solid rgba(94,188,188,.35);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}

.register-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.register-hero p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.register-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 24px rgba(0,0,0,.05);
  padding: 32px;
}

.register-card-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px;
}

.register-card-header h2 {
  margin: 0 0 8px;
}

.register-card-header p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.register-form {
  max-width: 620px;
  margin: 0 auto;
}

.register-form label {
  display: block;
  margin: 16px 0 6px;
  font-weight: 700;
  color: var(--black);
}

.register-form input[type="text"],
.register-form input[type="tel"] {
  width: 100%;
  min-height: 54px;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 1rem;
  outline: none;
}

.register-form input[type="text"]:focus,
.register-form input[type="tel"]:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(94,188,188,.18);
}

.register-checkbox {
  margin-top: 20px;
  background: #f7f8f8;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
}

.register-checkbox label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 0;
  font-weight: 500;
  color: var(--muted);
  line-height: 1.5;
}

.register-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  max-width: 18px;
  flex-shrink: 0;
  margin-top: 3px;
}

.register-submit {
  width: 100%;
  min-height: 56px;
  margin-top: 22px;
  border: none;
  cursor: pointer;
  font-size: 1.05rem;
}

.register-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.register-response {
  text-align: center;
  margin: 16px 0 0;
  font-weight: 700;
}

.register-response.is-working {
  color: var(--muted);
}

.register-response.is-success {
  color: #2b8c8c;
}

.register-response.is-error {
  color: #b00020;
}

.register-help-card {
  margin-top: 26px;
  background: linear-gradient(
    180deg,
    rgba(94,188,188,.08),
    rgba(94,188,188,.04)
  );
  border: 1px solid rgba(94,188,188,.25);
  border-radius: var(--radius-md);
  padding: 30px;
  text-align: center;
}

.register-help-card h2 {
  margin: 0 0 10px;
}

.register-help-card p {
  max-width: 700px;
  margin: 0 auto;
  color: var(--muted);
  line-height: 1.6;
}

.register-help-links {
  margin-top: 18px;
  text-align: center;
  font-size: 1rem;
}

.register-help-links a {
  color: var(--teal);
  font-weight: 700;
  text-decoration: none;
}

.register-help-links a:hover {
  text-decoration: underline;
}

.register-help-links span {
  color: var(--muted);
  margin: 0 10px;
}

@media (max-width: 700px) {

  .register-page {
    padding: 28px 14px 50px;
  }

  .register-card,
  .register-help-card {
    padding: 22px;
  }

  .register-help-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .register-help-links span {
    display: none;
  }

}

/* =========================================================
   WEBSITE V2 NAVIGATION
========================================================= */

.website-v2 {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: #111;
}

.website-v2 .site-main {
  margin-top: 0;
  padding-top: 0;
}

.website-v2 .content {
  padding-top: 8px !important;
}


.site-header {
  position: sticky;
  top: 0;
  z-index: 2000;
  background: #ffffff;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.nav-wrap {
  height: 68px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .brand {
  color: #5EBCBC;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.9rem;
  letter-spacing: -0.03em;
}

.site-header .mobile-menu-toggle {
  display: block;
  margin-left: auto;
  background: transparent;
  border: none;
  color: #000;
  font-size: 30px;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.site-header .nav-links {
  display: none;
}

.site-header .nav-links.is-open {
  display: block;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 8px 20px 18px;
  box-shadow: 0 8px 20px rgba(0,0,0,.08);
}

.site-header .nav-links a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 1.05rem;
  font-weight: 500;
  padding: 10px 0;
}


/* =========================================================
   PRIMARY HOMEPAGE FOOTER
   Matches approved footer image
   Only change: PETITEK is teal
========================================================= */

.site-footer-home {
  background: #050505;
  color: #ffffff;
  text-align: center;
}

.site-footer-home a {
  color: inherit;
  text-decoration: none;
}

.site-footer-home .footer-inner {
  max-width: 390px;
  margin: 0 auto;
  padding: 24px 28px 18px;
}

.site-footer-home .footer-brand {
  display: block;
  color: #5EBCBC;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  margin: 0 0 10px;
}

.site-footer-home .footer-subtitle {
  color: #cfcfcf;
  font-size: .92rem;
  line-height: 1.35;
  margin: 0 0 14px;
}

.site-footer-home .footer-email-form {
  margin: 0 auto 14px;
}

.site-footer-home .footer-email-row {
  display: flex;
  height: 48px;
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 4px;
  overflow: hidden;
  background: transparent;
}

.site-footer-home .footer-email-row input {
  flex: 1;
  min-width: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  padding: 0 14px;
  font-size: .95rem;
}


.footer-email-success {
  display: none;
  color: #5EBCBC;
  font-size: .8rem;
  margin-top: 8px;
}

.footer-email-success.show {
  display: block;
}

.site-footer-home .footer-email-row input::placeholder {
  color: #bdbdbd;
}

.site-footer-home .footer-email-row button {
  width: 46px;
  border: 0;
  background: #5EBCBC;
  color: #ffffff;
  font-size: 1.25rem;
  cursor: pointer;
}

.site-footer-home .footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 0 0 16px;
}

.site-footer-home .footer-social a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e8e8e8;
  font-size: .95rem;
}

.site-footer-home .footer-social i {
  color: #5EBCBC;
  font-size: 1.65rem;
}

.site-footer-home .footer-social-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.25);
}

.site-footer-home .footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer-home .footer-links span {
  color: #5EBCBC;
}

.site-footer-home .footer-links-main {
  color: #ffffff;
  font-size: .95rem;
  margin: 0 0 16px;
}

.site-footer-home .footer-divider {
  height: 1px;
  background: rgba(255,255,255,.25);
  margin: 0 0 5px;
}

.site-footer-home .footer-links-sub {
  color: #e5e5e5;
  font-size: .9rem;
  margin: 0 0 12px;
}

.site-footer-home .footer-ambassador-link {
  margin: 0 0 14px;
}

.site-footer-home .footer-ambassador-link a {
  color: #5EBCBC;
  font-size: .9rem;
}

.site-footer-home .footer-copy {
  color: rgba(255,255,255,.55);
  font-size: .72rem;
}


/* =========================================================
   SHARED FOOTER
========================================================= */

.site-footer {
  background: #050505;
  color: #ffffff;
  text-align: center;
}

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

/* =========================================================
   SECONDARY FOOTER V2 - ISOLATED
========================================================= */

.secondary-footer-v2 {
  background: #050505 !important;
  color: #ffffff !important;
  text-align: center !important;
  width: 100% !important;
}

.secondary-footer-v2 a {
  color: inherit !important;
  text-decoration: none !important;
}

.secondary-footer-inner {
  max-width: 460px !important;
  margin: 0 auto !important;
  padding: 18px 24px 12px !important;
}

.secondary-footer-brand {
  display: block !important;
  color: #5EBCBC !important;
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  letter-spacing: .14em !important;
  line-height: 1 !important;
  margin: 0 0 12px !important;
}

.secondary-footer-links {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
}

.secondary-footer-links span {
  color: #5EBCBC !important;
}

.secondary-footer-main-links {
  color: #ffffff !important;
  font-size: .8rem !important;
  font-weight: 500 !important;
  margin: 0 0 10px !important;
}

.secondary-footer-legal-links {
  color: #e5e5e5 !important;
  font-size: .82rem !important;
  font-weight: 400 !important;
  margin: 0 0 10px !important;
}

.secondary-footer-divider {
  height: 1px !important;
  background: rgba(255,255,255,.25) !important;
  margin: 0 0 10px !important;
}

.secondary-footer-copy {
  color: rgba(255,255,255,.55) !important;
  font-size: .60rem !important;
  line-height: 1.2 !important;
}

footer.secondary-footer-v2 a.secondary-footer-brand,
footer.secondary-footer-v2 a.secondary-footer-brand:link,
footer.secondary-footer-v2 a.secondary-footer-brand:visited,
footer.secondary-footer-v2 a.secondary-footer-brand:hover,
footer.secondary-footer-v2 a.secondary-footer-brand:active {
  color: #5EBCBC !important;
}

/* =========================================================
   EMBEDDED CHECKOUT PAGE
========================================================= */

.page {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px;
}

.partner-wrap,
.upper,
.lower,
.product-details,
.product-hero,
.checkout-column,
.support-column {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  min-width: 0;
}

.card,
.checkout-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.card {
  padding: 18px;
  margin-bottom: 16px;
}

.product-hero .card {
  padding: 0;
  overflow: hidden;
}

.hero,
.included-img {
  width: 100%;
  display: block;
}

.tm {
  font-size: 40%;
  vertical-align: super;
  font-weight: 400;
}

.subtitle {
  color: #666;
  margin-top: 0;
  margin-bottom: 16px;
}

.price-box {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 16px 0;
  margin: 16px 0 0;
}

.retail-price {
  color: #565959;
  font-size: 15px;
  margin-bottom: 4px;
}

.strike-price {
  color: #cc0c39;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
  font-weight: 600;
}

.amazon-price {
  display: flex;
  align-items: flex-start;
  line-height: 1;
  margin: 8px 0 18px;
}

.currency {
  font-size: 20px;
  margin-top: 4px;
}

.price-whole {
  font-size: 54px;
  font-weight: 400;
  letter-spacing: -2px;
}

.price-cents {
  font-size: 20px;
  margin-top: 6px;
}

.benefit {
  font-size: 14px;
  color: #666;
  margin-top: 6px;
  line-height: 1.5;
}

.benefit-check {
  color: #000;
  font-weight: 700;
}

.reviews {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.4;
}

.stars {
  color: #FFA41C;
  font-size: 15px;
}

.rating {
  color: #0F1111;
  font-weight: 600;
  margin-left: 4px;
}

/* Partner Banner */

.partner-banner {
  background: #5EBCBC;
  color: white;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  width: 100%;
}

.partner-icon {
  flex: 0 0 34px;
}

.partner-icon svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: white;
  stroke-width: 5;
  stroke-linecap: round;
  stroke-linejoin: round;
  display: block;
}

.partner-divider {
  flex: 0 0 2px;
  height: 48px;
  background: rgba(255,255,255,.65);
}

.partner-text {
  flex: 1;
  min-width: 0;
}

.partner-title {
  font-size: 17px;
  font-weight: 700;
  color: white;
  margin-bottom: 4px;
  line-height: 1.1;
  white-space: nowrap;
}

.partner-name {
  font-size: 18px;
  color: rgb(22,77,86);
  font-weight: 600;
  line-height: 1.15;
  overflow-wrap: anywhere;
}

/* Trust Box */

.trust-row {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 8px;
  padding: 8px 0;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}

.trust-row:last-child {
  border-bottom: none;
}

.trust-label {
  color: #565959;
  font-size: 12px;
}

.trust-value {
  color: #2513c6;
  font-size: 12px;
  font-weight: 300;
}

/* Stripe Checkout */



.checkout-divider {
  width: 100%;
  background: #111111;
  color: #fff;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 14px 10px;
  border-radius: 8px;
  margin: 0 0 16px 0;
}

.checkout-column {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;

  max-width: 520px;
  margin: 0 auto;
}

.checkout-card {
  width: 100%;
  max-width: 100%;
  min-width: 0;

  padding: 0;

  background: transparent;
  border: none;
  box-shadow: none;
}

.checkout-divider {
  display: none;
}
#checkout {
  width: 100%;
  max-width: 100%;
  min-width: 0;
}

.checkout-card iframe {
  width: 100% !important;
  max-width: 100% !important;
}

/* Tablet */

@media (min-width: 768px) and (max-width: 1199px) {
  .partner-wrap,
  .upper,
  .lower,
  .product-hero,
  .product-details,
  .checkout-column,
  .support-column {
    max-width: 820px;
  }
}

/* Desktop */

@media (min-width: 1200px) {
  .page {
    padding: 24px;
  }

  .partner-wrap,
  .upper,
  .lower {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
  }

  .upper,
  .lower {
    display: grid;
    grid-template-columns: 480px 1fr;
    gap: 24px;
    align-items: start;
  }

  .upper {
    margin-bottom: 24px;
  }

  .product-details {
  width: 480px;
  max-width: 480px;
  margin: 0;
}

.product-details h1 {
  margin: 0 0 6px;
}

.checkout-column {
  width: 520px;
  max-width: 520px;
  margin: 0 auto;
}

  .product-hero,
  .support-column {
    width: auto;
    max-width: none;
    margin: 0;
  }

  .checkout-divider {
    display: none;
  }

  .checkout-card,
  #checkout {
    width: 100%;
    max-width: 480px;
  }

  .checkout-card iframe {
    max-width: 480px !important;
  }

  .upper {
    align-items: stretch;
  }

  .product-details,
  .product-hero {
    display: flex;
  }

  .product-details .card,
  .product-hero .card {
    width: 100%;
    height: 100%;
  }
}

/* =========================================================
   CHECKOUT FOOTER V2
========================================================= */

.checkout-footer-v2 {
  background: #050505;
  color: #ffffff;
  text-align: center;
  width: 100%;
}

.checkout-footer-v2 a {
  color: inherit;
  text-decoration: none;
}

.checkout-footer-inner {
  max-width: 420px;
  margin: 0 auto;
  padding: 22px 24px 16px;
}

.checkout-footer-brand {
  display: inline-block;
  color: #5EBCBC !important;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: .14em;
  line-height: 1;
  margin-bottom: 10px;
}

.checkout-footer-copy {
  color: rgba(255,255,255,.55);
  font-size: .70rem;
  line-height: 1.2;
}

/* Footer */

.checkout-footer {
  text-align: center;
  padding: 32px 20px;
  border-top: 1px solid #e8e8e8;
  margin-top: 40px;
  background: #ffffff;
}

.checkout-footer-brand {
  display: inline-block;
  color: #5EBCBC;
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.checkout-footer-copy {
  color: #777;
  font-size: .85rem;
}


