Oxygen Convertible Strap Football Mouthguard
/* ===== Battle PDP spacing system (consistent desktop + mobile) ===== */ .bt-pdp { line-height: 1.55 !important; } /* ================= MOBILE GUTTER FIX ================= Theme a lready provides LEFT spacing. We ONLY add RIGHT spacing so margins appear equal. ======================================================= */ .bt-pdp{ max-width: 100%; overflow-x: hidden; padding-left: 0 !important; /* keep theme left gutter */ padding-right: 16px !important; /* create matching right gutter */ box-sizing: border-box !important; width: 100% !important; } /* Slightly more breathing room on tablet */ @media (min-width: 768px){ .bt-pdp{ padding-right: 18px !important; } } /* Desktop: center content nicely */ @media (min-width: 1024px){ .bt-pdp{ padding-right: 0 !important; max-width: 720px; margin-left: auto !important; margin-right: auto !important; } } /* Prevent anything from touching edges */ .bt-pdp *{ box-sizing: border-box !important; } .bt-pdp img, .bt-pdp table, .bt-pdp details, .bt-pdp div{ max-width: 100% !important; } /* Section headings */ .bt-pdp h2{ font-size: 20px !important; font-weight: 500 !important; margin: 20px 0 10px !important; padding: 0 !important; line-height: 1.3 !important; } .bt-pdp h2:first-of-type{ margin-top: 0 !important; } /* Standard block spacing */ .bt-pdp p, .bt-pdp ul, .bt-pdp ol, .bt-pdp section, .bt-pdp .bt-faq, .bt-pdp .bt-blog-links{ margin: 0 0 20px !important; padding: 0 !important; } /* Lists */ .bt-pdp ul, .bt-pdp ol{ padding-left: 20px !important; } .bt-pdp li{ margin: 0 0 6px !important; } /* Tech specs table styling */ .bt-specs{ width: 100%; border-collapse: collapse; border: 1px solid rgba(0,0,0,.12); border-radius: 12px; overflow: hidden; } .bt-specs th, .bt-specs td{ padding: 12px 14px; border-top: 1px solid rgba(0,0,0,.08); vertical-align: top; text-align: left; } .bt-specs tr:first-child th, .bt-specs tr:first-child td{ border-top: 0; } .bt-specs th{ width: 34%; font-weight: 600; background: rgba(0,0,0,.03); } /* FAQ styling */ .bt-faq h3{ font-size: 16px !important; font-weight: 700 !important; margin: 0 0 6px !important; line-height: 1.25 !important; } .bt-faq p{ margin: 0 0 14px !important; line-height: 1.55 !important; } .bt-faq p:last-child{ margin-bottom: 0 !important; } /* Blog links */ .bt-blog-links ul{ margin: 0 !important; padding-left: 18px !important; } .bt-blog-links li{ margin: 0 0 8px !important; } /* Divider */ .bt-divider { height: 1px; background: rgba(0,0,0,.10); border: 0; margin: 18px 0; width: 100%; } /* Callout */ .bt-callout{ border: 1px solid rgba(0,0,0,.12); border-radius: 12px; padding: 12px 14px; background: rgba(0,0,0,.02); margin: 0 0 20px !important; } .bt-callout-title{ font-weight: 700; margin: 0 0 6px !important; line-height: 1.25; } .bt-callout p{ margin: 0 !important; } /* Badges */ .bt-badges{ display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 20px !important; padding: 0 !important; list-style: none; } .bt-badge{ border: 1px solid rgba(0,0,0,.12); border-radius: 999px; padding: 6px 10px; font-size: 14px; line-height: 1; background: #fff; white-space: nowrap; } /* Icon list */ .bt-icon-list{ list-style: none; padding-left: 0 !important; } .bt-icon-list li{ display: flex; gap: 10px; align-items: flex-start; margin: 0 0 10px !important; } .bt-ico{ width: 22px; min-width: 22px; height: 22px; border-radius: 999px; border: 1px solid rgba(0,0,0,.14); display: inline-flex; align-items: center; justify-content: center; font-size: 14px; background: rgba(0,0,0,.02); } /* Comparison cards */ .bt-compare-card{ border: 1px solid rgba(0,0,0,.12); border-radius: 12px; padding: 10px 12px; background: #fff; } .bt-compare-card--primary{ border-color: rgba(0,0,0,.22); } .bt-compare-rows{ display: grid; gap: 8px; } .bt-compare-row{ display: flex; gap: 10px; } .bt-compare-label{ min-width: 72px; font-weight: 600; opacity: .85; } .bt-compare-value{ flex: 1; } /* Horizontal scroll */ .bt-compare-scroll{ width: 100%; margin: 12px 0 10px; overflow-x: auto; -webkit-overflow-scrolling: touch; padding-bottom: 8px; scroll-snap-type: x mandatory; contain: layout paint; } .bt-compare-track{ white-space: nowrap; font-size: 0; padding-bottom: 10px; } .bt-compare-scroll .bt-compare-card{ display: inline-block; white-space: normal; font-size: 14px; margin-right: 10px; scroll-snap-align: start; width: 210px; } @media (min-width: 768px){ .bt-compare-scroll .bt-compare-card{ width: 260px; } } /* Collapsible sections */ .bt-collapse{ border: 1px solid rgba(0,0,0,.10); border-radius: 12px; background: rgba(0,0,0,.01); margin-bottom: 20px; overflow: hidden; } .bt-collapse__summary{ display: flex; justify-content: space-between; align-items: center; padding: 14px; cursor: pointer; } .bt-collapse__h2{ margin: 0 !important; line-height: 1.05 !important; } .bt-collapse__chev{ opacity: .75; transition: transform .2s ease; } .bt-collapse[open] .bt-collapse__chev{ transform: rotate(180deg); } .bt-collapse__content{ padding: 14px 18px 16px !important; } /* ========================================================= FIX: Inner padding inside FAQ + Learn More dropdown content ========================================================= */ .bt-pdp details.bt-collapse > .bt-collapse__content{ padding: 14px 16px 16px !important; /* mobile-friendly */ } @media (min-width: 768px){ .bt-pdp details.bt-collapse > .bt-collapse__content{ padding: 16px 18px 18px !important; } } .bt-pdp details.bt-collapse > .bt-collapse__content.bt-faq, .bt-pdp details.bt-collapse > .bt-collapse__content.bt-blog-links{ padding-left: 16px !important; padding-right: 16px !important; } .bt-pdp details.bt-collapse > .bt-collapse__content.bt-blog-links ul{ padding-left: 18px !important; margin: 0 !important; } /* Optional: simple hero image styling */ .bt-hero-img{ width: 100%; height: auto; border-radius: 12px; display: block; margin: 0 0 16px !important; } Oxygen Convertible Strap Mouthguard — Maximum Airflow, No-Boil Comfort & Braces-Friendly Protection Engineered for elite performance, the Oxygen Convertible Strap Mouthguard is built for athletes who need breathable comfort and serious protection—without the hassle. This patented design delivers unmatched airflow, a secure feel, and game-ready durability straight out of the box. Quick Win If you’re wearing braces, this is a true ready-to-wear mouthguard—no boiling required. For best comfort, seat it firmly with your bite and keep the breathing channel clear. Product Overview The Oxygen Mouthguard is the gold standard in airflow, comfort, and protection. Designed by athletic, dental, and medical experts, it features a patented breathing channel inspired by SCUBA innovation—so you can keep oxygen moving through every play. Whether you wear braces or not, it delivers a secure fit and high-impact protection with bold style options. The convertible strap lets you play strapped or strapless, depending on your preference and league rules. Key Features 🔥 No Boiling Needed: Ready to wear right out of the package 🦷 Braces-Compatible: Fits over orthodontics comfortably (also great without braces) 💨 Maximum Breathability: Patented airflow channel designed to keep oxygen moving 🤿 SCUBA-Inspired Design: Engineered breathing innovation for all-game comfort 🛡️ Absorber Shield: Built to help protect against high-impact collisions 🔁 Convertible Strap: Wear it with or without the attachable strap Football Youth–Adult Braces or No Braces No-Boil Fit High Airflow Strap or Strapless Tech Specs▾ Fit Type No-boil, ready-to-wear mouthguard (braces-friendly) Breathing Patented SCUBA-inspired breathing channel for increased airflow Protection Absorber Shield design helps reduce impact forces Strap Convertible / attachable strap (wear strapped or strapless) Construction Advanced composite materials for comfort and durability Braces Designed to fit over orthodontics comfortably Recommended Use Football and contact sports (follow league equipment rules) Do You Need to Boil an Oxygen Mouthguard? No. Oxygen is a no-boil mouthguard designed to be worn straight out of the package. It’s built for comfort and stability without custom molding—ideal for athletes who want quick, consistent fit. Is Oxygen a Good Mouthguard for Braces? Yes. Oxygen is designed to fit comfortably over orthodontics. If you’re looking for a braces mouthguard that still lets you breathe and communicate, this is built for that job. Braces Mouthguard Tip Learn how to wear a braces mouthguard here: Braces Mouthguard Guide Frequently Asked Questions▾ Is the Oxygen Mouthguard ready to wear? Yes. Oxygen is a no-boil mouthguard, so you can wear it right out of the package. Can I use this mouthguard with braces? Yes. It’s designed to fit comfortably over braces and orthodontic appliances, while still offering protection and airflow. What makes Oxygen different from other mouthguards? The patented SCUBA-inspired breathing channel is designed to maximize airflow, so you can breathe more freely during high-tempo play. Do I have to use the strap? No. The strap is attachable, so you can play strapped or strapless depending on your preference and league rules. How do I clean the Oxygen Mouthguard? Rinse after use, gently clean with mild soap, and let it air dry completely before storing. Keeping the breathing channel clear helps performance and comfort. Is this mouthguard legal for games? Oxygen is designed for competitive play. Equipment rules vary by league, so always confirm your league’s mouthguard requirements. Warranty Unlimited Defective Guarantee + $5,000 Dental Warranty Battle stands behind Oxygen with an Unlimited Defective Guarantee. You’re also covered by a $5,000 Dental Warranty—valid with or without braces. 📄 Note: Warranty coverage may require proof of purchase and adherence to standard use/care guidelines. Learn More About Mouthguards, Braces & Protection▾ How to Wear a Mouthguard with Braces How to Clean a Mouthguard (Quick Care Guide) Shop Battle Mouthguards Related topics: oxygen mouthguard, battle oxygen mouthguard, oxygen convertible strap mouthguard, no boil mouthguard, braces mouthguard, football mouthguard with strap, breathable mouthguard, scuba breathing mouthguard, high airflow football mouthguard, absorber shield mouthguard, youth football mouthguard, adult football mouthguard, $5000 dental warranty mouthguard.
More you might like
Related
Oxygen Convertible Strap Football Mouthguard
Related
Battle Sports Oxygen Convertible Strap Football Mouthguard
Related
BATTLE Oxygen Football Mouthguard Limited Edition with Conve
Related