:root {
  --navy: #081a4a;
  --deep: #020b2d;
  --blue: #143a8f;
  --sky: #234e9e;
  --sky-soft: #eef3ff;
  --orange: #ef3f32;
  --red: #ef3f32;
  --gold: #f7b538;
  --green: #29c56d;
  --pink: #ff6f91;
  --ink: #07112f;
  --muted: #6f7893;
  --light: #fbf1df;
  --cream: #fbf1df;
  --cream-dark: #f4dfbf;
  --cream-soft: #fff7e8;
  --white: #ffffff;
  --border: #ead8bd;
  --radius: 28px;
  --shadow: 0 18px 45px rgba(2, 11, 45, 0.22);
}

* { box-sizing: border-box; }

html {
  margin: 0;
  padding: 0;
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  padding: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, sans-serif;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; margin: 0; padding: 0; }

h1, h2, h3, .logo { font-family: Fredoka, Inter, sans-serif; }

h1 { font-size: clamp(46px, 7vw, 88px); line-height: 0.92; margin: 12px 0 20px; }
h2 { font-size: clamp(32px, 4vw, 56px); line-height: 1.02; margin: 8px 0 16px; }
h3 { font-size: 25px; margin: 8px 0 10px; }
p { line-height: 1.7; color: #334155; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 7%;
  background: rgba(251, 241, 223, 0.96);
  backdrop-filter: blur(16px);
  box-shadow: 0 8px 30px rgba(2, 11, 45, 0.12);
  border-bottom: 5px solid var(--gold);
}

.logo {
  font-size: 34px;
  font-weight: 700;
  text-decoration: none;
  line-height: 0.88;
  transform: rotate(-2deg);
  text-shadow: 0 4px 0 rgba(247, 181, 56, 0.35);
  letter-spacing: 0.5px;
}
.logo span { display: block; color: var(--navy); }
.logo strong { display: block; color: var(--orange); }

.main-nav { display: flex; align-items: center; gap: 16px; }
.main-nav a, .header-actions a, .site-footer a {
  color: var(--navy);
  text-decoration: none;
  font-weight: 900;
}
.main-nav a {
  position: relative;
  padding: 10px 13px;
  border-radius: 999px;
  transition: 0.25s;
}
.main-nav a:hover, .main-nav a.active {
  background: var(--gold);
  color: var(--deep);
  box-shadow: 0 5px 0 rgba(2, 11, 45, 0.25);
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--orange);
}
.header-actions a {
  border: 2px solid var(--navy);
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--cream-soft);
  box-shadow: 0 5px 0 var(--navy);
}
.nav-toggle {
  display: none;
  background: var(--navy);
  color: #fff;
  border: 0;
  border-radius: 16px;
  padding: 10px 14px;
  font-size: 20px;
}

.hero, .page-hero, .shop-hero { position: relative; overflow: hidden; }

.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 50px;
  align-items: center;
  padding: 95px 7% 115px;
  background: radial-gradient(circle at 86% 25%, rgba(239, 63, 50, 0.28), transparent 24%), linear-gradient(135deg, var(--navy), var(--deep));
}
.hero::before, .page-hero::after, .shop-hero::after {
  content: "";
  position: absolute;
  left: -6%;
  right: -6%;
  bottom: -1px;
  height: 82px;
  background: var(--cream);
  clip-path: polygon(0 55%, 8% 45%, 16% 62%, 25% 45%, 35% 58%, 45% 46%, 56% 61%, 66% 43%, 76% 59%, 86% 45%, 100% 58%, 100% 100%, 0 100%);
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy > p:not(.eyebrow) { font-size: 20px; max-width: 670px; color: #d9deef; }
.hero h1, .page-hero h1, .shop-hero h1 { color: #fff; }
.hero h1 span, .page-hero h1 span { color: var(--gold); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
  color: var(--orange);
  font-size: 13px;
}
.light { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 14px 24px;
  text-decoration: none;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  transition: 0.25s;
}
.btn:hover { transform: translateY(-4px) rotate(-1deg); }
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--gold));
  color: #fff;
  box-shadow: 0 8px 0 #a92b1f;
}
.btn-secondary {
  background: var(--cream-soft);
  color: var(--navy);
  border: 3px solid var(--navy);
  box-shadow: 0 8px 0 var(--navy);
}
.hero .btn-secondary, .lesson-band .btn-secondary { background: transparent; color: #fff; border-color: rgba(255,255,255,0.45); box-shadow: none; }
.btn-light { background: #fff; color: var(--navy); box-shadow: 0 8px 0 rgba(255,255,255,0.35); }
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-card {
  position: relative;
  min-height: 520px;
  border-radius: 52px;
  background: linear-gradient(160deg, #123b98, #06164a);
  box-shadow: 0 28px 70px rgba(2, 11, 45, 0.28);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 10px solid #fff;
}
.backboard-preview {
  position: relative;
  z-index: 2;
  width: 78%;
  height: 275px;
  border-radius: 36px;
  background: linear-gradient(135deg, #234e9e, #7dd8f5);
  border: 12px solid #fff;
  display: grid;
  place-items: center;
  text-align: center;
  color: #fff;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  animation: soft-bob 4s ease-in-out infinite;
}
.backboard-preview span { font-family: Fredoka; font-size: 120px; text-shadow: 0 5px 0 var(--orange); }
.backboard-preview small { position: absolute; bottom: 34px; font-weight: 900; letter-spacing: 0.1em; }
.rim { position: absolute; z-index: 3; bottom: 145px; width: 225px; height: 36px; background: var(--orange); border-radius: 50%; box-shadow: 0 12px 0 #a92b1f; }
.net { position: absolute; bottom: 58px; width: 150px; height: 110px; border: 5px solid #fff; border-top: 0; clip-path: polygon(0 0, 100% 0, 75% 100%, 25% 100%); opacity: 0.95; }

.page-hero, .shop-hero {
  min-height: 360px;
  padding: 74px 7% 98px;
  background: radial-gradient(circle at 82% 25%, rgba(239, 63, 50, 0.28), transparent 24%), linear-gradient(135deg, var(--navy), var(--deep));
  color: #fff;
}
.page-hero p, .lesson-band p { color: #d9deef; }
.page-hero h1 { max-width: 850px; font-size: clamp(42px, 6.1vw, 82px); }
.page-hero-with-media { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 42px; align-items: center; padding-right: 7%; }

.shop-hero { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; padding: 85px 7% 110px; }
.shop-hero-animation, .custom-hero-animation, .lesson-hero-animation, .contact-hero-animation {
  position: relative;
  min-height: 260px;
  border-radius: 36px;
  background: linear-gradient(145deg, #123b98, var(--deep));
  border: 6px solid rgba(255,255,255,0.9);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.shop-hero-animation { min-height: 280px; border-width: 7px; border-radius: 42px; display: grid; place-items: center; }
.shop-ball { font-size: 78px; animation: shop-bounce 1.6s ease-in-out infinite; }
.shop-star { position: absolute; bottom: 70px; font-size: 48px; animation: twinkle 1.5s ease-in-out infinite; }

.section-pad { position: relative; padding: 88px 7%; background: var(--cream); }
.compact-section { padding-top: 68px; padding-bottom: 68px; }
.section-head { text-align: center; max-width: 780px; margin: 0 auto 42px; }
.row-head { display: flex; align-items: end; justify-content: space-between; max-width: none; text-align: left; }
.section-head h2, .row-head h2 { color: var(--navy); }

.stats, .steps-grid, .product-grid, .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.stats { background: var(--deep); color: #fff; }
.stats div, .steps-grid article, .reviews-grid article, .contact-card, .upload-card, .form-panel, .form-preview-card, .contact-info-card, .checkout-card, .cart-summary, .cart-empty, .order-success-card {
  background: var(--cream-soft);
  border: 3px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
}
.stats strong { display: block; font-size: 44px; color: var(--orange); font-family: Fredoka; }
.stats span { font-weight: 900; color: var(--navy); }
.steps-grid article { transition: 0.25s; position: relative; }
.steps-grid article:hover, .product-card:hover, .reviews-grid article:hover { transform: translateY(-8px); }
.steps-grid b { color: var(--orange); font-size: 30px; }
.soft-bg { background: radial-gradient(circle at top right, rgba(239,63,50,0.12), transparent 30%), linear-gradient(180deg, var(--cream) 0%, #fff1c9 100%); }

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 0;
  position: relative;
  overflow: hidden;
  border: 4px solid var(--border);
  border-radius: var(--radius);
  background: var(--cream-soft);
  box-shadow: var(--shadow);
  transition: 0.25s;
}
.product-img {
  width: 100%;
  height: 220px;
  margin: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #fff0cf, var(--cream-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  font-size: 34px;
}
.product-img img { width: 100%; height: 100%; object-fit: contain; display: block; padding: 14px; }
.product-placeholder { font-size: 34px; }
.product-content { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.product-card h3 { margin-top: 0; color: var(--navy); }
.product-card p { margin-bottom: 22px; }
.product-bottom { margin-top: auto; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.product-bottom strong { color: var(--navy); font-size: 22px; white-space: nowrap; }
.product-bottom .btn { min-width: 160px; }
.text-link { font-weight: 900; color: var(--blue); text-decoration: none; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.upload-card { text-align: center; background: linear-gradient(135deg, var(--cream-soft), #fff0cf); position: relative; }
.upload-icon, .payment-icon { width: 92px; height: 92px; background: var(--orange); color: #fff; border-radius: 50%; display: grid; place-items: center; margin: 0 auto 20px; font-size: 40px; box-shadow: 0 8px 0 #a92b1f; }

.lesson-band {
  position: relative;
  padding: 105px 7%;
  background: radial-gradient(circle at 80% 25%, rgba(239,63,50,0.34), transparent 30%), linear-gradient(135deg, var(--navy), var(--deep));
  color: #fff;
  overflow: hidden;
}
.lesson-band h2 { color: #fff; }

.newsletter { margin: 60px 7%; padding: 54px; border-radius: 38px; background: linear-gradient(135deg, var(--navy), #123b98); color: #fff; text-align: center; position: relative; overflow: hidden; border: 6px solid #fff; box-shadow: var(--shadow); }
.newsletter h2 { color: #fff; }
.newsletter form { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.newsletter input { max-width: 360px; }

.newsletter input, .form input, .form textarea, .form select, .modern-form input, .modern-form textarea, .modern-form select {
  border: 3px solid var(--border);
  border-radius: 18px;
  padding: 15px 16px;
  min-height: 52px;
  width: 100%;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
.form { display: grid; gap: 16px; }
.two-col, .form-grid.two { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.modern-form { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 34px; align-items: stretch; }
.form-grid { display: grid; gap: 16px; }
.modern-form label, .form label { display: grid; gap: 8px; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.modern-form textarea { min-height: 132px; resize: vertical; }
.file-drop { border: 3px dashed var(--border); border-radius: 22px; padding: 20px; background: #fffaf0; }
.file-drop input { border: 0; padding: 0; min-height: auto; }
.file-drop span { color: var(--orange); font-weight: 900; }
.form input:focus, .form textarea:focus, .form select:focus, .modern-form input:focus, .modern-form textarea:focus, .modern-form select:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 5px rgba(239, 63, 50, 0.16);
}

.custom-preview { min-height: 330px; }
.custom-preview-board { position: relative; min-height: 280px; border-radius: 28px; border: 9px solid #fff; background: linear-gradient(135deg, #234e9e, #7dd8f5); box-shadow: 0 16px 35px rgba(0,0,0,0.18); display: grid; place-items: center; overflow: hidden; }
.custom-preview-board::after { content: ""; position: absolute; bottom: 42px; left: 50%; transform: translateX(-50%); width: 150px; height: 28px; background: var(--orange); border-radius: 50%; box-shadow: 0 8px 0 #a92b1f; }
.preview-number { font-family: Fredoka, sans-serif; font-size: 82px; color: #fff; text-shadow: 0 5px 0 var(--orange); z-index: 2; }
.preview-theme { position: absolute; z-index: 3; bottom: 22px; font-weight: 900; color: #fff; text-shadow: 0 3px 0 rgba(0,0,0,0.2); letter-spacing: 0.08em; text-transform: uppercase; }
.contact-form.modern-form { grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr); }
.lesson-booking, .contact-form.modern-form.lesson-booking { margin-top: 36px; width: 100%; grid-template-columns: 1fr !important; }
.lesson-booking .form-panel { width: 100%; max-width: none; margin: 0; }
.contact-info-card { align-self: start; }
.contact-info-card h3 { color: var(--orange); }

.mini-backboard { position: absolute; left: 54px; top: 56px; width: 205px; height: 125px; border: 8px solid #fff; border-radius: 22px; background: linear-gradient(135deg, #234e9e, #7dd8f5); display: grid; place-items: center; font-family: Fredoka, sans-serif; font-size: 64px; color: #fff; text-shadow: 0 4px 0 var(--orange); }
.mini-rim { position: absolute; left: 107px; top: 178px; width: 105px; height: 20px; border-radius: 50%; background: var(--orange); box-shadow: 0 7px 0 #a92b1f; }
.dribble-ball { position: absolute; left: 50%; top: 42px; font-size: 78px; animation: dribble 1.1s ease-in-out infinite; }
.court-star { position: absolute; left: 54%; bottom: 44px; font-size: 42px; animation: twinkle 1.5s ease-in-out infinite; }
.message-bubble { position: absolute; left: 44px; top: 58px; background: #fff; color: var(--navy); padding: 18px 24px; border-radius: 26px 26px 26px 6px; font-weight: 900; font-size: 24px; }
.bounce-envelope { position: absolute; right: 74px; bottom: 58px; font-size: 74px; animation: mail-float 2.8s ease-in-out infinite; }
.sparkle-ring { position: absolute; right: 166px; top: 72px; font-size: 38px; animation: twinkle 1.5s ease-in-out infinite; }
.custom-ball { position: absolute; width: 42px; height: 42px; border-radius: 50%; background: radial-gradient(circle at 34% 27%, #ffbd77 0 18%, var(--orange) 19% 100%); box-shadow: inset 0 0 0 4px #8a3300; offset-path: path("M 315 205 C 230 40, 130 50, 110 168"); animation: custom-shot 3.8s ease-in-out infinite; }
.custom-spark { position: absolute; left: 200px; top: 54px; font-size: 34px; animation: twinkle 1.5s ease-in-out infinite; }

.video-showcase { position: relative; overflow: hidden; background: radial-gradient(circle at top left, rgba(247,181,56,0.2), transparent 28%), linear-gradient(180deg, var(--cream) 0%, var(--cream-dark) 100%); padding-top: 86px; padding-bottom: 86px; }
.video-frame { position: relative; width: min(1100px, 92vw); margin: 0 auto; padding: 14px; border: 8px solid #fff; border-radius: 40px; background: linear-gradient(135deg, var(--navy), #123b98 58%, var(--orange)); box-shadow: 0 22px 55px rgba(2,11,45,0.2); overflow: visible; }
.promo-video { display: block; width: 100%; height: auto; aspect-ratio: 16/9; border-radius: 28px; background: var(--deep); object-fit: contain; }
.lessons-content, .custom-details-section, .contact-section { width: 100%; padding-bottom: 50px; margin-bottom: 0; }

.product-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(360px, 0.9fr); gap: 56px; align-items: center; }
.product-large-img { min-height: 520px; border: 6px solid var(--border); border-radius: 40px; background: linear-gradient(135deg, #fff0cf, var(--cream-soft)); box-shadow: var(--shadow); overflow: hidden; display: grid; place-items: center; }
.product-large-img img { width: 100%; height: 100%; min-height: 520px; object-fit: contain; display: block; padding: 22px; }
.product-large-placeholder { font-size: 120px; }
.product-detail-content { background: var(--cream-soft); border: 4px solid var(--border); border-radius: 36px; padding: 42px; box-shadow: var(--shadow); }
.product-detail-content h1 { margin-top: 8px; color: var(--navy); }
.product-detail-content h2 { color: var(--orange); font-size: clamp(34px, 4vw, 56px); }
.product-detail-form { display: flex; align-items: end; gap: 14px; flex-wrap: wrap; margin: 28px 0 18px; }
.product-detail-form label { display: grid; gap: 8px; font-weight: 900; color: var(--navy); }
.product-detail-form input { width: 120px; border: 3px solid var(--border); border-radius: 16px; padding: 14px; font: inherit; }

.cart-page, .checkout-page { max-width: 1380px; margin: 0 auto; width: 100%; }
.cart-head, .checkout-head { margin-bottom: 34px; }
.checkout-head p:not(.eyebrow) { max-width: 640px; font-size: 18px; }
.cart-layout, .checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 400px; gap: 34px; align-items: start; }
.cart-list, .checkout-form, .checkout-items { display: grid; gap: 18px; }
.cart-row { position: relative; display: grid; grid-template-columns: minmax(0, 1fr) 120px 140px 140px; gap: 18px; align-items: center; background: var(--cream-soft); border: 4px solid var(--border); border-radius: 28px; padding: 22px; box-shadow: var(--shadow); }
.cart-product { display: flex; gap: 16px; align-items: center; }
.cart-thumb, .payment-box { background: linear-gradient(180deg, #fff0cf, var(--cream-soft)); }
.cart-thumb { width: 82px; height: 82px; border-radius: 22px; display: grid; place-items: center; font-size: 34px; flex-shrink: 0; }
.cart-product h3 { margin: 0 0 4px; color: var(--navy); }
.cart-product p { margin: 0; color: var(--muted); font-weight: 800; }
.cart-qty label { display: grid; gap: 6px; font-weight: 900; color: var(--navy); }
.cart-qty input { width: 100%; border: 3px solid var(--border); border-radius: 16px; padding: 12px; font: inherit; }
.cart-line-total { font-size: 22px; font-weight: 900; color: var(--navy); }
.cart-remove { position: absolute; top: 14px; right: 14px; width: 36px; height: 36px; border: 0; border-radius: 50%; background: #ef4444; color: #fff; font-size: 24px; line-height: 1; font-weight: 900; cursor: pointer; box-shadow: 0 5px 0 #b91c1c; transition: 0.2s; }
.cart-remove:hover { transform: translateY(-2px) scale(1.05); background: #dc2626; }
.cart-summary h2, .checkout-card h2 { margin-top: 0; }
.summary-line, .summary-total, .cart-summary .summary-line, .cart-summary .summary-total, .order-summary .summary-line, .order-summary .summary-total { display: flex; justify-content: space-between; gap: 16px; padding: 15px 0; border-bottom: 2px dashed #d7bb8f; }
.summary-total, .cart-summary .summary-total, .order-summary .summary-total { border-bottom: 0; font-size: 24px; color: var(--orange); }
.cart-summary .btn, .checkout-submit { width: 100%; margin: 20px 0 14px; }
.cart-summary .text-link, .order-summary .text-link { display: block; text-align: center; margin-top: 18px; }
.checkout-form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.checkout-form-grid label { display: grid; gap: 8px; font-weight: 900; color: var(--navy); }
.checkout-form-grid label.full { grid-column: 1 / -1; }
.checkout-form-grid input { width: 100%; border: 3px solid var(--border); border-radius: 18px; padding: 15px 16px; min-height: 56px; font: inherit; background: #fff; color: var(--ink); }
.checkout-form-grid input:focus { outline: none; border-color: var(--orange); box-shadow: 0 0 0 5px rgba(239,63,50,0.16); }
.payment-box { display: flex; gap: 18px; align-items: center; border: 3px solid var(--border); border-radius: 24px; padding: 20px; margin-bottom: 24px; }
.payment-icon { width: 70px; height: 70px; margin: 0; font-size: 34px; flex-shrink: 0; }
.payment-box h3, .payment-box p { margin: 0; }
.checkout-item { display: flex; justify-content: space-between; gap: 18px; padding: 16px; border-radius: 18px; background: #fffaf0; border: 2px solid var(--border); }
.checkout-item div { display: grid; gap: 4px; }
.checkout-item span { color: var(--muted); font-weight: 800; }

.order-confirmation-page { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: minmax(0, 1fr) 420px; gap: 34px; align-items: start; }
.success-icon { width: 82px; height: 82px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 46px; font-weight: 900; margin-bottom: 22px; }
.order-status-box { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0; }
.order-status-box div { background: #fffaf0; border: 3px solid var(--border); border-radius: 22px; padding: 18px; }
.order-status-box span { display: block; color: var(--muted); font-weight: 800; margin-bottom: 6px; }
.order-status-box strong { color: var(--orange); font-size: 22px; }
.order-success-card .btn { margin-right: 12px; margin-top: 10px; }

.site-footer { position: relative; flex-shrink: 0; margin: 0; padding: 44px 7% 24px; text-align: center; background: linear-gradient(180deg, var(--navy), var(--deep)); color: #d9deef; overflow: hidden; }
.site-footer::after { content: "★  ✦  ★"; position: absolute; left: 50%; top: 12px; transform: translateX(-50%); color: rgba(247,181,56,0.6); font-size: 18px; letter-spacing: 14px; }
.site-footer .logo { display: inline-block; margin-bottom: 8px; }
.site-footer nav { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin: 8px 0 12px; }
.site-footer a { color: #fff; }
.site-footer p { margin: 0; padding: 0; line-height: 1.4; color: #d9deef; }
.hidden, .float-layer, .floating-ball, .floating-star { display: none !important; }
.toast { position: fixed; right: 22px; bottom: 22px; background: var(--navy); color: #fff; font-weight: 900; padding: 16px 20px; border-radius: 18px; box-shadow: var(--shadow); z-index: 100; opacity: 0; transform: translateY(20px); transition: 0.25s; }
.toast.show { opacity: 1; transform: translateY(0); }

@keyframes soft-bob { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }
@keyframes dribble { 0%, 100% { transform: translateY(0) rotate(0); } 50% { transform: translateY(112px) rotate(180deg); } }
@keyframes twinkle { 0%, 100% { opacity: 0.4; transform: scale(0.9); } 50% { opacity: 1; transform: scale(1.18); } }
@keyframes mail-float { 0%, 100% { transform: translateY(0) rotate(-4deg); } 50% { transform: translateY(-10px) rotate(4deg); } }
@keyframes custom-shot { 0% { offset-distance: 0%; opacity: 0; } 10% { opacity: 1; } 65% { offset-distance: 100%; opacity: 1; } 80%, 100% { offset-distance: 100%; opacity: 0; } }
@keyframes shop-bounce { 0%, 100% { transform: translateY(-30px) rotate(0); } 50% { transform: translateY(35px) rotate(180deg); } }

@media (max-width: 1000px) {
  .page-hero-with-media, .modern-form, .contact-form.modern-form, .checkout-grid, .cart-layout, .order-confirmation-page { grid-template-columns: 1fr; }
  .custom-hero-animation, .lesson-hero-animation, .contact-hero-animation { max-width: 520px; }
  .page-hero { padding-bottom: 92px; }
}

@media (max-width: 900px) {
  .site-header { padding: 14px 5%; }
  .nav-toggle { display: block; }
  .main-nav { display: none; position: absolute; left: 0; right: 0; top: 76px; background: var(--cream); padding: 24px 7%; box-shadow: var(--shadow); flex-direction: column; align-items: flex-start; }
  .main-nav.open { display: flex; }
  .header-actions { display: none; }
  .hero, .shop-hero, .split, .two-col { grid-template-columns: 1fr; }
  .hero { padding: 60px 5% 100px; }
  .hero-card { min-height: 420px; }
  .stats, .steps-grid, .product-grid, .reviews-grid { grid-template-columns: 1fr; }
  .row-head { display: block; }
  .section-pad { padding: 60px 5%; }
  .shop-hero { padding: 60px 5% 95px; }
  .shop-hero-animation { min-height: 220px; }
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
  .product-large-img, .product-large-img img { min-height: 340px; }
  .product-detail-content { padding: 30px; }
  .product-detail-form { display: grid; }
  .product-detail-form input, .product-detail-form .btn, .product-detail-content .btn, .cart-row .btn { width: 100%; }
}

@media (max-width: 760px) {
  .form-grid.two, .checkout-form-grid { grid-template-columns: 1fr; }
  .product-card { min-height: auto; }
  .product-img { height: 240px; }
  .product-bottom .btn { width: 100%; }
  .cart-row { grid-template-columns: 1fr; }
  .checkout-card { padding: 24px; }
  .order-status-box { grid-template-columns: 1fr; }
  .order-success-card .btn { width: 100%; margin-right: 0; }
  .site-footer { padding-bottom: 22px; }
  .promo-video { min-height: 220px; border-radius: 20px; }
  .video-frame { width: 94vw; padding: 9px; border-width: 5px; border-radius: 28px; }
}

/* =========================
   FORM OUTLINE FIX
========================= */

.form input,
.form textarea,
.form select,
.modern-form input,
.modern-form textarea,
.modern-form select,
.checkout-form-grid input {
  border: 3px solid #ead8bd !important;
  background: #fffaf0 !important;
  border-radius: 18px !important;
  box-shadow: inset 0 0 0 1px rgba(8, 26, 74, 0.04);
}

.form input:focus,
.form textarea:focus,
.form select:focus,
.modern-form input:focus,
.modern-form textarea:focus,
.modern-form select:focus,
.checkout-form-grid input:focus {
  outline: none;
  border-color: #ef3f32 !important;
  box-shadow: 0 0 0 5px rgba(239, 63, 50, 0.16);
}

.file-drop {
  border: 3px dashed #ead8bd !important;
  background: #fffaf0 !important;
}

/* =========================
   HOME PAGE REDESIGN
========================= */

.home-hero-v2 {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 90px 7% 50px;
  background:
    radial-gradient(circle at 85% 40%, rgba(239,63,50,.18), transparent 24%),
    linear-gradient(135deg, #081a4a, #020b2d);
  color: #fff;
}

.home-hero-copy h1 {
  color: #fff;
  max-width: 680px;
}

.home-hero-copy h1 span {
  color: #f7b538;
}

.home-hero-copy p:not(.eyebrow) {
  color: #d9deef;
  font-size: 20px;
  max-width: 620px;
}

.home-hero-product {
  position: relative;
  min-height: 520px;
  display: grid;
  place-items: center;
}

.hero-backboard {
  width: min(520px, 100%);
  height: 310px;
  border-radius: 38px;
  border: 10px solid #f6ead7;
  background:
    linear-gradient(135deg, rgba(239,63,50,.2), transparent),
    #0b245d;
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: 0 35px 70px rgba(0,0,0,.35);
  transform: rotate(-2deg);
}

.hero-backboard span {
  font-family: Fredoka, sans-serif;
  font-size: 120px;
  color: #ef3f32;
  -webkit-text-stroke: 5px #f6ead7;
  line-height: .8;
}

.hero-backboard small {
  display: block;
  color: #f6ead7;
  font-weight: 900;
  letter-spacing: .12em;
}

.hero-rim {
  position: absolute;
  bottom: 145px;
  width: 250px;
  height: 42px;
  border-radius: 50%;
  background: #ef3f32;
  box-shadow: 0 10px 0 #a92b1f;
}

.hero-net {
  position: absolute;
  bottom: 45px;
  width: 160px;
  height: 120px;
  border: 6px solid #f6ead7;
  border-top: 0;
  clip-path: polygon(0 0,100% 0,75% 100%,25% 100%);
}

.hero-ball {
  position: absolute;
  right: 20px;
  bottom: 80px;
  font-size: 110px;
  animation: soft-bob 3s ease-in-out infinite;
}

.hero-star {
  position: absolute;
  color: #f7b538;
  font-size: 36px;
}

.hero-star.one { right: 4%; top: 18%; }
.hero-star.two { left: 10%; bottom: 24%; color: #ef3f32; }
.hero-star.three { right: 22%; bottom: 8%; color: #fff; }

.home-feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 0 7% 70px;
  margin-top: -40px;
  background: #020b2d;
}

.home-feature-strip article {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 22px;
  padding: 24px;
  color: #fff;
}

.home-feature-strip span {
  font-size: 34px;
}

.home-feature-strip h3 {
  color: #fff;
  margin: 12px 0 8px;
}

.home-feature-strip p {
  color: #d9deef;
  margin: 0;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  background: #fbf1df;
}

.about-intro h2 {
  color: #081a4a;
}

.about-intro p {
  font-size: 19px;
}

.btn-primary {
  background: linear-gradient(135deg, #ef3f32, #f7b538);
  color: #fff;
  box-shadow: 0 8px 0 #a92b1f;
}

.home-hero-v2 .btn-secondary {
  color: #fff;
  background: transparent;
  border: 2px solid #f7b538;
  box-shadow: none;
}

.video-showcase,
.section-pad,
.compact-section,
.soft-bg {
  background: #fbf1df;
}

.steps-grid article,
.product-card,
.upload-card {
  background: #fffaf0;
  border-color: #ead8bd;
}

.product-img {
  background: linear-gradient(180deg, #fff0cf, #fffaf0) !important;
}

.lesson-band {
  background: linear-gradient(135deg, #081a4a, #020b2d) !important;
}

@media (max-width: 1000px) {
  .home-hero-v2 {
    grid-template-columns: 1fr;
    padding: 70px 5% 60px;
  }

  .home-feature-strip {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0;
    padding: 40px 5%;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .home-feature-strip {
    grid-template-columns: 1fr;
  }

  .hero-ball {
    font-size: 76px;
    right: 0;
  }

  .hero-backboard {
    height: 240px;
  }

  .hero-backboard span {
    font-size: 82px;
  }
}
.home-feature-strip {
  padding-top: 55px !important;
}

/* =========================
   COLORED HERO HEADING WORDS
========================= */

.page-hero h1 span,
.shop-hero h1 span,
.product-detail-content h1 span,
.checkout-head h1 span,
.cart-head h1 span {
  color: var(--gold);
}

.page-hero h1 strong,
.shop-hero h1 strong {
  color: var(--orange);
}

/* Page-specific heading highlights */
.page-hero h1 .highlight-gold,
.shop-hero h1 .highlight-gold {
  color: var(--gold);
}

.page-hero h1 .highlight-orange,
.shop-hero h1 .highlight-orange {
  color: var(--orange);
}

/* =========================
   EYEBROW COLOR FIX
========================= */

.eyebrow {
  color: var(--orange) !important;
}

.page-hero .eyebrow,
.shop-hero .eyebrow,
.home-hero-v2 .eyebrow,
.lesson-band .eyebrow {
  color: var(--orange) !important;
}

.eyebrow.light {
  color: var(--gold) !important;
}

/* =========================
   CUSTOM LIVE PREVIEW
========================= */

.custom-live-form {
  align-items: start;
}

.custom-live-form .form-panel,
.custom-live-form .form-preview-card {
  background: #fff7e8;
  border-color: #ead8bd;
}

.custom-file-drop {
  display: grid;
  gap: 12px;
}

.custom-file-drop small {
  color: var(--muted);
  font-weight: 800;
}

.live-backboard {
  position: relative;
  width: 100%;
  min-height: 360px;
  border: 10px solid #fff;
  border-radius: 42px;
  background:
    radial-gradient(circle at 82% 48%, rgba(239, 63, 50, 0.55), transparent 20%),
    radial-gradient(circle at 18% 52%, rgba(247, 181, 56, 0.25), transparent 22%),
    linear-gradient(135deg, #081a4a, #020b2d);
  box-shadow: 0 26px 55px rgba(2, 11, 45, 0.24);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.live-backboard::before {
  content: "";
  position: absolute;
  inset: 24px;
  border: 8px solid var(--orange);
  border-radius: 32px;
  opacity: 0.95;
}

.preview-upload-img {
  position: absolute;
  left: 42px;
  bottom: 78px;
  width: 165px;
  height: 190px;
  object-fit: contain;
  display: none;
  z-index: 3;
  filter: drop-shadow(0 14px 18px rgba(0, 0, 0, 0.35));
}

.live-team {
  position: absolute;
  top: 56px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
  font-family: Fredoka, Inter, sans-serif;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-shadow: 0 4px 0 var(--orange);
}

.live-number {
  position: relative;
  z-index: 4;
  color: #fff;
  font-family: Fredoka, Inter, sans-serif;
  font-size: clamp(92px, 11vw, 170px);
  font-weight: 900;
  line-height: 0.8;
  text-shadow:
    5px 5px 0 var(--orange),
    -4px -4px 0 var(--navy);
}

.live-player {
  position: absolute;
  bottom: 120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-shadow: 0 3px 0 rgba(0, 0, 0, 0.25);
}

.live-rim {
  position: absolute;
  bottom: 86px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  height: 34px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 9px 0 #a92b1f;
  z-index: 5;
}

.live-net {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: 130px;
  height: 82px;
  border: 5px solid #fff;
  border-top: 0;
  clip-path: polygon(0 0, 100% 0, 76% 100%, 24% 100%);
  z-index: 4;
  opacity: 0.95;
}

.preview-note {
  text-align: center;
  font-weight: 800;
  color: var(--muted);
  margin-top: 22px;
}

@media (max-width: 900px) {
  .live-backboard {
    min-height: 310px;
  }

  .preview-upload-img {
    width: 120px;
    height: 145px;
    left: 24px;
    bottom: 72px;
  }
}

@media (max-width: 600px) {
  .live-backboard {
    min-height: 260px;
    border-width: 7px;
    border-radius: 30px;
  }

  .live-backboard::before {
    inset: 16px;
    border-width: 5px;
    border-radius: 22px;
  }

  .live-team {
    top: 42px;
    font-size: 22px;
  }

  .live-player {
    bottom: 96px;
    font-size: 12px;
  }

  .live-rim {
    width: 150px;
    bottom: 70px;
  }

  .live-net {
    width: 95px;
    height: 64px;
  }

  .preview-upload-img {
    width: 90px;
    height: 105px;
  }
}

.addon-option {
  display: flex !important;
  align-items: center;
  gap: 12px;
  margin: 18px 0;
  font-weight: 900;
  color: var(--navy);
}

.addon-option input {
  width: 22px;
  height: 22px;
  accent-color: var(--orange);
}
/* Custom board checkout and PayPal flow */
.custom-hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 18px;
  font-weight: 700;
}

.custom-selected-product {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 28px;
  padding: 22px;
  border: 3px solid var(--border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(14, 42, 84, 0.08);
}

.custom-selected-product-media {
  width: 120px;
  height: 100px;
  overflow: hidden;
  border-radius: 20px;
  background: var(--cream-soft);
}

.custom-selected-product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-selected-product h2,
.custom-selected-product p {
  margin-top: 0;
}

.custom-selected-product p:not(.eyebrow) {
  margin-bottom: 0;
}

.custom-selected-product-price {
  display: grid;
  justify-items: end;
  gap: 4px;
  min-width: 150px;
}

.custom-selected-product-price strong {
  color: var(--orange);
  font-family: 'Fredoka', sans-serif;
  font-size: 30px;
}

.custom-selected-product-price span {
  color: var(--muted);
  font-weight: 900;
  font-size: 12px;
}

.custom-checkout-panel {
  display: grid;
  gap: 24px;
}

.custom-step-block {
  padding-bottom: 26px;
  border-bottom: 3px dashed var(--border);
}

.custom-step-block:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.custom-step-heading {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 22px;
}

.custom-step-heading > span {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-family: 'Fredoka', sans-serif;
  font-size: 23px;
  box-shadow: 0 6px 0 #a92b1f;
}

.custom-step-heading .eyebrow,
.custom-step-heading h2 {
  margin-top: 0;
}

.custom-step-heading h2 {
  margin-bottom: 0;
}

.custom-payment-block {
  position: relative;
}

.custom-payment-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 18px;
}

.custom-payment-summary > div {
  display: grid;
  gap: 5px;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #fffaf0;
}

.custom-payment-summary span,
.preview-order-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.custom-payment-note,
.paypal-secure-note {
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
}

.paypal-button-container {
  min-height: 50px;
  margin-top: 18px;
}

.paypal-message {
  display: none;
  margin: 14px 0;
  padding: 13px 15px;
  border-radius: 14px;
  font-weight: 800;
}

.paypal-message:not(:empty) {
  display: block;
  background: #eef5ff;
  color: var(--navy);
  border: 2px solid #bdd4f6;
}

.paypal-message.error {
  background: #fff0ef;
  color: #8a2017;
  border-color: #f2b4ae;
}

.paypal-message.success {
  background: #edfff5;
  color: #17663d;
  border-color: #9ed8b8;
}

.paypal-message.working {
  background: #fff8e3;
  color: #6a4a00;
  border-color: #efd78a;
}

.paypal-setup-warning {
  margin-top: 18px;
  padding: 18px;
  border: 3px solid #efd78a;
  border-radius: 18px;
  background: #fff8e3;
}

.paypal-setup-warning p {
  margin-bottom: 0;
}

.paypal-setup-warning code {
  font-weight: 900;
}

.preview-order-card {
  display: grid;
  gap: 5px;
  margin-top: 22px;
  padding: 18px;
  border: 2px solid var(--border);
  border-radius: 18px;
  background: #fffaf0;
}

.preview-order-card b {
  color: var(--orange);
  font-family: 'Fredoka', sans-serif;
  font-size: 24px;
}

@media (max-width: 760px) {
  .custom-selected-product {
    grid-template-columns: 88px minmax(0, 1fr);
  }

  .custom-selected-product-media {
    width: 88px;
    height: 80px;
  }

  .custom-selected-product-price {
    grid-column: 1 / -1;
    width: 100%;
    justify-items: start;
    padding-top: 14px;
    border-top: 2px solid var(--border);
  }

  .custom-payment-summary {
    grid-template-columns: 1fr;
  }
}

/* Reference content and responsive image fitting */
.brand-logo {
  display: inline-flex;
  align-items: center;
  transform: none;
  text-shadow: none;
  line-height: 1;
}

.brand-logo img {
  display: block;
  width: 82px;
  height: 72px;
  object-fit: contain;
}

.site-header .brand-logo img {
  width: 76px;
  height: 64px;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 28px;
  color: #fff;
  font-weight: 800;
}

.hero-rating strong {
  display: inline-grid;
  place-items: center;
  min-width: 58px;
  min-height: 58px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--deep);
  font-family: Fredoka, Inter, sans-serif;
  font-size: 22px;
  box-shadow: 0 7px 0 rgba(169, 43, 31, 0.85);
}

.hero-photo-card {
  align-self: stretch;
  min-height: 560px;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.92);
  border-radius: 52px;
  background:
    radial-gradient(circle at 50% 40%, rgba(247,181,56,.35), transparent 32%),
    linear-gradient(145deg, #123b98, var(--deep));
  box-shadow: 0 28px 70px rgba(2, 11, 45, 0.32);
}

.hero-kid-image {
  position: absolute;
  inset: auto 50% 0 auto;
  transform: translateX(50%);
  display: block;
  width: min(100%, 620px);
  height: 96%;
  object-fit: contain;
  object-position: center bottom;
}

.joy-badge {
  position: absolute;
  z-index: 3;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 3px;
  padding: 16px 20px;
  border-radius: 20px;
  background: rgba(255, 250, 240, 0.95);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.joy-badge strong {
  color: var(--orange);
  font-family: Fredoka, Inter, sans-serif;
  font-size: 22px;
}

.page-image-card {
  position: relative;
  z-index: 2;
  min-height: 280px;
  border: 7px solid rgba(255,255,255,.9);
  border-radius: 38px;
  background: linear-gradient(145deg, #123b98, var(--deep));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.page-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
}

.contain-image-card img {
  object-fit: contain;
  object-position: center;
  padding: 14px;
}

.cover-image-card img {
  object-fit: cover;
  object-position: center;
}

.shop-hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: #d9deef;
  font-size: 18px;
}

.shop-hero-animation.page-image-card {
  display: grid;
  place-items: center;
}

.shop-hero-animation.page-image-card img {
  max-height: 290px;
}

.product-img {
  position: relative;
  height: auto;
  aspect-ratio: 5 / 6;
  background: #fff !important;
}

.product-img img {
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: contain;
  object-position: center;
}

.product-badge {
  position: absolute;
  z-index: 4;
  top: 14px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--orange);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
  box-shadow: 0 5px 0 #a92b1f;
}

.product-large-img {
  min-height: 0;
  aspect-ratio: 5 / 6;
  background: #fff;
}

.product-large-img img {
  min-height: 0;
  padding: 0;
  object-fit: contain;
}

.product-shipping-line {
  color: var(--orange);
  font-weight: 900;
}

.product-detail-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.lil-bo-media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  border: 7px solid #fff;
  border-radius: 40px;
  background: var(--navy);
  box-shadow: var(--shadow);
}

.lil-bo-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.lil-bo-caption {
  position: absolute;
  left: 22px;
  bottom: 22px;
  display: grid;
  gap: 2px;
  padding: 14px 18px;
  border-radius: 18px;
  background: rgba(255,250,240,.94);
  color: var(--navy);
  box-shadow: var(--shadow);
}

.lil-bo-caption strong {
  color: var(--orange);
  font-family: Fredoka, Inter, sans-serif;
  font-size: 24px;
}

.quote-copy,
.quote-card p {
  font-size: 19px;
  font-weight: 700;
}

.about-logo-card {
  display: grid;
  place-items: center;
  min-height: 430px;
}

.about-logo-card img {
  display: block;
  width: min(100%, 330px);
  max-height: 390px;
  object-fit: contain;
}

.benefit-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.lesson-intro {
  margin-bottom: 34px;
}

.lesson-benefits {
  margin-bottom: 38px;
}

.ready-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 420px);
  gap: 48px;
  align-items: center;
}

.ready-cta > img {
  display: block;
  width: 100%;
  max-height: 390px;
  object-fit: contain;
  justify-self: end;
}

.compact-ready-cta > img {
  max-height: 330px;
}

.contact-kid-image {
  display: block;
  width: 100%;
  height: 300px;
  margin: -8px 0 24px;
  border-radius: 24px;
  object-fit: contain;
  object-position: center bottom;
  background: linear-gradient(145deg, #123b98, var(--deep));
}

.contact-info-card a {
  color: var(--navy);
  font-weight: 900;
}

.cart-thumb {
  overflow: hidden;
}

.cart-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.custom-selected-product-media img {
  object-fit: contain;
  background: #fff;
}

.site-footer {
  text-align: left;
  padding-top: 68px;
}

.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.3fr .75fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 1380px;
  margin: 0 auto;
}

.footer-brand p,
.footer-contact p {
  max-width: 520px;
}

.footer-logo img {
  width: 125px;
  height: 130px;
}

.footer-links h3,
.footer-contact h3 {
  color: var(--gold);
  font-size: 22px;
}

.footer-links nav {
  display: grid;
  justify-content: start;
  gap: 10px;
  margin: 0;
}

.footer-contact a {
  color: #fff;
}

.footer-bottom {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  max-width: 1380px;
  margin: 38px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.footer-bottom a {
  color: #fff;
}

@media (max-width: 1100px) {
  .benefit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1000px) {
  .hero-photo-card {
    width: min(100%, 680px);
    min-height: 540px;
  }

  .ready-cta {
    grid-template-columns: 1fr;
  }

  .ready-cta > img {
    width: min(100%, 390px);
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .main-nav {
    top: 100%;
  }

  .product-img {
    aspect-ratio: 1 / 1;
  }

  .product-large-img {
    aspect-ratio: 1 / 1;
  }

  .product-detail-actions .btn {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .site-header .brand-logo img {
    width: 66px;
    height: 58px;
  }

  .home-hero-v2 {
    min-height: 0;
  }

  .hero-photo-card {
    min-height: 450px;
    border-radius: 36px;
  }

  .joy-badge {
    left: 14px;
    bottom: 14px;
  }

  .page-image-card,
  .page-image-card img {
    min-height: 230px;
  }

  .benefit-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }

  .footer-bottom {
    display: grid;
  }

  .lil-bo-media,
  .lil-bo-media img {
    min-height: 380px;
  }

  .product-img {
    height: auto;
    aspect-ratio: 5 / 6;
  }
}

@media (max-width: 520px) {
  .hero-photo-card {
    min-height: 390px;
  }

  .hero-rating {
    align-items: flex-start;
  }

  .hero-rating span {
    max-width: 210px;
  }

  .lil-bo-media,
  .lil-bo-media img {
    min-height: 320px;
  }

  .site-footer {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/* Homepage About Video Section */

.about-video-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.35fr);
  gap: 70px;
  align-items: center;
  background: #fbf1df;
}

.about-video-box {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 38px;
  overflow: visible;
  background: #081a4a;
  box-shadow: 0 20px 45px rgba(8, 26, 74, 0.14);
}

.about-home-video {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 38px;
  object-fit: cover;
  object-position: center;
  background: #081a4a;
}

.about-basketball-icon {
  position: absolute;
  top: -38px;
  right: -32px;
  z-index: 2;

  width: 100px;
  height: 100px;
  border-radius: 50%;

  display: grid;
  place-items: center;

  background: #ff9f2d;
  font-size: 43px;
  line-height: 1;

  box-shadow: 0 14px 30px rgba(8, 26, 74, 0.12);
}

.about-video-content .eyebrow {
  margin-bottom: 22px;
}

.about-video-content h2 {
  max-width: 780px;
  margin: 0 0 25px;
  color: #081a4a;
  font-size: clamp(44px, 5vw, 76px);
  font-weight: 500;
  line-height: 1.02;
}

.about-video-content h2 span {
  color: #ef3f32;
}

.about-video-content p:not(.eyebrow) {
  max-width: 850px;
  margin-bottom: 20px;
  color: #4e607c;
  font-size: 19px;
  line-height: 1.75;
}

.about-video-content strong {
  color: #ef3f32;
}

.about-video-content .btn {
  margin-top: 16px;
}


/* Tablet */

@media (max-width: 1000px) {
  .about-video-section {
    grid-template-columns: 1fr 1fr;
    gap: 42px;
  }

  .about-video-content h2 {
    font-size: clamp(38px, 5vw, 58px);
  }

  .about-basketball-icon {
    width: 82px;
    height: 82px;
    top: -28px;
    right: -20px;
    font-size: 35px;
  }
}


/* Mobile */

@media (max-width: 760px) {
  .about-video-section {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .about-video-box {
    max-width: 560px;
    margin: 0 auto;
    border-radius: 28px;
  }

  .about-home-video {
    border-radius: 28px;
  }

  .about-video-content {
    text-align: left;
  }

  .about-video-content h2 {
    font-size: clamp(38px, 12vw, 54px);
  }

  .about-video-content p:not(.eyebrow) {
    font-size: 17px;
    line-height: 1.65;
  }

  .about-basketball-icon {
    width: 72px;
    height: 72px;
    top: -24px;
    right: 14px;
    font-size: 30px;
  }
}

.custom-goalz-text {
    color: #d7dbe5;
    font-size: 24px;
    line-height: 1.55;
}

.custom-goalz-text .red-text {
    color: #f33b2f;
}
@media (max-width: 768px) {
    .custom-goalz-text {
        font-size: 18px;
        line-height: 1.5;
    }
}
.about-page-video-box {
    overflow: hidden;
}

.about-page-video {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 420px;
    object-fit: cover;
    object-position: center;
    border-radius: inherit;
}

@media (max-width: 768px) {
    .about-page-video {
        min-height: 300px;
    }
}
