/* ==========================================================================
   IMPORTS
   ========================================================================== */
/* Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700&display=swap");



/* ==========================================================================
   VARIABLES
   ========================================================================== */
:root {
  /* Brand Colors */
  --color-black:         #212721;
  --color-black-tonal:   #40403E;
  --color-gray-1:        #666662;
  --color-gray-2:        #D4CFC4;
  --color-off-white:     #EEE9DC; /* natural paper tone */
  --color-lava:          #FF3838;
  --color-volcanic-blue: #5E8DA2;
  

  /* Typography */
  --font-family-body:    'Lato', sans-serif;

  /* Transitions */
  --transition-base:     0.2s ease-in-out;
}



/* ==========================================================================
   BASE STYLES
   ========================================================================== */
/* Global Typography & Layout */
body {
  font-family: var(--font-family-body);
  font-weight: 400;
  color: var(--color-black);
  background-color: var(--color-white);
  line-height: 1.6;
}

/* Links */
a {
  text-decoration: none;
  color: var(--color-lava);
  transition: color var(--transition-base);
}

a:hover,
a:focus {
  color: #cc2f2f; /* Slightly darker on hover/focus */
}

/*a:visited {
  color: var(--color-lava);
}*/



/* ==========================================================================
   GLOBAL ELEMENTS
   ========================================================================== */

/* Standard Button Formatting */

.button {
  display: inline-block;
  height: 48px; /* fixed height */
  padding: 0 24px; /* horizontal padding only */
  line-height: 48px; /* vertically center the text */
  border: none;
  background: #FF3838;
  font-size: 16px;
  font-weight: 400;
  color: white !important;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  white-space: nowrap; /* prevent wrapping */
  margin: 20px 0;
}

.button:hover {
  background: #b42c34;
  border: none;
}


/* Black Underline / Red Hover Button Formatting*/
.underline-button {
  font-weight: bold;
  font-size: 16px;
  color: black;
  text-decoration: underline;
  padding-bottom: 2px;
  transition: color 0.2s ease-in-out;
}

.underline-button:hover {
  color: #FF3838;
}

/* Gray Section Divider Line */
.section-divider {
  max-width: 1100px;
  border: none;
  border-top: 1px solid #e0e0e0; /* soft light gray */
  margin: 40px auto;
  width: 90%;
}

/* Klaviyo Email Signup */
.email-signup {
  max-width: 1100px;
  margin: 0 auto 60px;
}

.email-signup h1 {
  font-size: 20px; 
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 0;
}


/* ==========================================================================
   GLOBAL CONTAINERS
   ========================================================================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ==========================================================================
   BREADCRUMBS / SEARCH HERO
   ========================================================================== */

/* make the wrapper flex and push breadcrumbs to left, search to right */
.breadcrumbs-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}
/* Breadcrumb visual styling */
.breadcrumbs {
  font-size: 16px;
  color: #666;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}
.breadcrumbs i {
  font-size: 22px;
  font-weight: 600;
}

.breadcrumbs a {
  color: #666;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}

.breadcrumbs a:hover {
  color: #FF3838;
}

.breadcrumb-current {
  color: #FF3838;
  font-weight: bold;
}

/* outer gray box */
.breadcrumbs-search {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}
.search-container {
  position: relative;
  width: 100%;
  max-width: 300px;
  background: #f5f5f5;           /* your light‐gray box */
  border: 1px solid #ccc;        /* boundary of the box */
  border-radius: 4px;
}
/* remove the inner Zendesk input’s own border/background */
.search-container .search.search-full,
.search-container .search.search-full input {
  background: transparent !important;
  border: none       !important;
  box-shadow: none   !important;
  padding: 8px 36px 8px 12px !important; /* room for the icon */
  width: 100%;
}

/* position & size your icon */
.search-container .search-icon {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 18px;
  height: auto;
  pointer-events: none;
}
/* 1) Remove any outline/box-shadow from the inner <input> */
.breadcrumbs-search .search-container input[type="search"]:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* 2) Highlight the container itself when its input is focused */
.breadcrumbs-search .search-container:focus-within {
  box-shadow: inset 0 0 0 2px #FF3838;
}

.search-container .search-full input::placeholder {
  font-size: 18px;
  color: #999;
  opacity: 0.5;   
}





/* ==========================================================================
   CONTACT BLOCK
   ========================================================================== */

.contact-us {
  max-width: 1100px;
  background-color: #f5f5f5;
  padding: 10px;
  margin: 10px auto 80px;
  text-align: center;
  border-radius: 4px;
  border: 1px solid #ddd;
}

.contact-us h3 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 0;
}

.contact-us p {
  font-size: 16px;
  margin-bottom: 10px;
}



/* ==========================================================================
   HEADER STYLES
   ========================================================================== */


/* ==========================================================================
   ANNOUNCEMENT BAR
   ========================================================================== */
.announcement-bar {
  background-color: #101A13;     /* darkest Black */
  color:            #fff;        /* pure white */
  display:          flex;         /* flex container for centering */
  align-items:      center;       /* vertical centering */
  justify-content:  center;       /* horizontal centering */
  height:           36px;         /* fixed bar height */
  padding:          2px 0;            /* no extra padding */
  font-size:        13.4px;
  font-weight:      550;
  word-spacing: 1px;
  letter-spacing: 0.8px;
}

/* link wrapper */
.announcement-bar a {
  display:          inline-flex;  /* keep text+arrow aligned */
  align-items:      center;
  text-decoration:  none;         /* remove default underline */
  color:            inherit;      /* pure white */
}

/* your arrow span */
.announcement-bar .announcement-arrow {
  display:         inline-block;  
  margin-left:     6px;           /* space from the text */
  transform-origin: 0 50%;        /* pin the left edge (shaft) */
  transition:      transform var(--transition-base);
}

/* stretch only the arrow‐head on hover */
.announcement-bar a:hover .announcement-arrow {
  transform:       scaleX(1.3);   /* tweak 1.3 to match your site’s feel */
}



/* ==========================================================================
   HEADER & NAV WRAPPER
   ========================================================================== */
.header {
  width:            100%;        /* full-bleed background */
  background-color: #fff;        /* pure white */
  border-bottom:    1px solid #ddd;
  padding-top: 5px;
}

.nav-bar {
  display:         flex;
  align-items:     center;
  justify-content: space-between;
  max-width:       1100px;       /* limit content width */
  margin:          0 auto;       /* center on large screens */
  padding:         22px 20px;       /* minimal side padding */

}


/* ==========================================================================
   LOGO
   ========================================================================== */
.nav-logo img {
  height:        35px;
  margin-right:  40px;           /* tighten space after logo */
}


/* ==========================================================================
   MAIN NAV LINKS
   ========================================================================== */
/* ─── Main Navigation Links ───────────────────────────── */

.nav-links {
  display:       flex;
  gap:           24px;              /* space between links */
  margin:        0;
  padding:       0;
  list-style:    none;
  padding-bottom: 7px;
}

.nav-links a {
  position:         relative;
  text-decoration:  none;
  color:            #404943; /* exact color pulled from main site */
  word-spacing: 0.8px;
  letter-spacing: 0.5px;
  font-family:      var(--font-family-body);
  font-size:        14px;
  font-weight:      500;
}

/* underline pseudo-element, starts at zero width */
.nav-links a::after {
  content:       "";
  position:      absolute;
  left:          0;
  bottom:        -2px;              /* adjust to sit just under text */
  width:         0;
  height:        1px;
  background:    #404943; /* exact color pulled from main site */
  /* no transition here, so it pops on/off immediately */
}

/* on hover or focus, instantly expand to full width */
.nav-links a:hover::after,
.nav-links a:focus::after {
  width: 100%;
}


/* ==========================================================================
   RIGHT-HAND ICONS
   ========================================================================== */
.nav-icons {
  display:       flex;
  align-items:   center;
  gap:           22px;           /* a bit more breathing room */
  margin-left: auto;
  padding-bottom: 4px;
}

.nav-icons a {
  display:       inline-flex;
  transition:    transform var(--transition-base);
}

.nav-icons a:hover {
  transform:     scale(1.2);
}

.nav-icons a img {
  width:         22px;           /* larger icons */
  height:        auto;
}



/* ==========================================================================
   FOOTER STYLES
   ========================================================================== */

/* ==========================================================================
   HELP BLOCK
   ========================================================================== */
.help-block {
  padding-top: 40px;
  padding-bottom: 60px;
  margin: 0 auto;
  max-width: 1100px;
}
.help-block__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 8px;
  align-items: start;
}


/* Intro/heading */
.help-block__heading {
  font-size: 2rem;
  line-height: 1.2;
  margin: 0;
  color: #0b1a0f; /* dark green/black */
}

/* Features container */
.help-block__features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

/* Individual feature card */
.help-block__feature {
  display: flex;
  flex-direction: column;
  align-items: start;
}

/* Icon */
.help-block__icon {
  margin-bottom: 0;
}
.help-block__icon img {
  width: 48px;
  height: auto;
}

/* Title in red */
.help-block__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  color: #FF3838;
}

/* Description link */
.help-block__desc {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: #666662;
}
/* override our feature-block links to #666662 */
.help-block__desc a,
.help-block__desc a:link,
.help-block__desc a:visited {
  color: #666662 !important;
  text-decoration: underline;
}

.help-block__desc a:hover,
.help-block__desc a:active {
  color: #666662 !important;
  text-decoration: none;
}




/* ===========================
   GLOBAL FOOTER WRAPPER
   =========================== */
.site-footer {
  background-color: #010D03;
  color: #FFF;
  padding: 34px 0;
  font-family: sans-serif;
}

/* ===========================
   TOP ROW: LINK COLUMNS
   =========================== */
.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  padding-bottom: 0;
  padding-right: 30px;
}

.footer-column h3 {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1px;
  word-spacing: 0.4px;
  margin-bottom: 20px;
  color: #FFF;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 10px;
}

.footer-column a {
  position: relative;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.6px;
  color: #AEB2AF;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-column a:hover {
  color: #FFF;
}

.footer-column a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #AEB2AF;
}

/* ===========================
   TOP ROW: LOGO COLUMN
   =========================== */
.footer-logo {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.footer-logo img {
  max-width: 100px;
  height: auto;
  padding-top: 10px;
}

/* ===========================
   MIDDLE ROW: SIGNUP + ICONS
   =========================== */
.footer-extra {
  margin: 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end; /* icons bottom-align to the input */
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-signup {
  display: flex;
  width: 360px;
  flex-direction: column;
}
.footer-signup h1 {
  font-size: 18px;
  letter-spacing: 0.5px;
  margin-bottom: 15px;
}

.klaviyo-form-Yb3MN6 {
  border: 1px solid gray;
  }

.footer-social{
  margin-right: 16px;
  padding-bottom: 10px;
}
.footer-social a {
  display: inline-block;
  margin-left: 22px;
}

.footer-social img {
  width: 17.5px;
  height: 17.5px;
}

/* ===========================
   BOTTOM ROW: DIVIDER + COPYRIGHT
   =========================== */
.footer-divider {
  width: 100%;
  height: 1px;
  background-color: #151F17;
  margin: 50px 0 40px;
}

.footer-copyright {
  text-align: center;
  font-size: 11px;
  color: #AEB2AF;
}



/* ==========================================================================
   HOMEPAGE
   ========================================================================== */

/* ===========================
   HERO IMAGE / SEARCH BAR
   =========================== */

/* 1) Root container to size & center */
.hero {
  width: 100%;
  height: 40vh;          /* 60% of viewport height */
  min-height: 300px;     /* never too short */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 2) Image wrapper uses the inline style for the BG */
.hero__image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 3) Inner content is centered & constrained */
.hero__inner {
  text-align: center;
  width: 90%;
  max-width: 800px;
  color: #fff;
}

/* 4) Big headline */
.hero__title {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

/* 5) Search form styling */
.hero__search {
  display: inline-flex;
  width: 100%;
  max-width: 500px;
  background: rgba(255,255,255,0.9);
  border-radius: 4px;
  overflow: hidden;
}

/* 6) The text input grows to fill */
.hero__search-input {
  flex: 1 1 auto;
  min-width: 0;    /* prevents overflow on very narrow screens */
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border: none;
  outline: none;
  color: #333;
  background: transparent;
}

/* 7) Make placeholder look crisp */
.hero__search-input::placeholder {
  color: #999999;
  opacity: 1;
}

/* 8) Hide the native clear-X on WebKit */
.hero__search-input::-webkit-search-cancel-button {
  display: none;
}

/* 9) The submit button with your custom icon */
/* make sure your button has no extra padding affecting icon placement */
.hero__search-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px; /* adjust to taste */
}

/* size & default color */
.hero__search-btn .search-icon {
  font-size: 22px;       /* or whatever size you like */
  font-weight: 700;
  color: #999999;           /* your default icon color */
  transition: color .2s ease-in-out;
}

/* hover state */
.hero__search-btn:hover .search-icon {
  color: #FF3838;        /* red on hover */
}

/* (optional) make sure nothing else bleeds into the hero */
.hero,
.hero *,
.hero *::before,
.hero *::after {
  box-sizing: border-box;
}
/* suggestion dropdown */
.search-suggestions {
  position: absolute;
  top: 100%;               /* right beneath the input */
  left: 0;
  width: 100%;
  max-width: 400px;
  background: #fff;
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  z-index: 10;
  display: none;
}

.search-suggestions.is-open {
  display: block;
}

.search-suggestions ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.search-suggestions li {
  padding: 8px 12px;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.15s;
}

.search-suggestions li:hover {
  background: #f5f5f5;
}






/* ===========================
   BROWSE BT PRODUCT
   =========================== */
  .product-section {
      max-width: 1200px;
      margin: 0 auto;
      text-align: center;
      padding: 50px 0;
  }
  
  /* Product Section Heading */
  .product-section h2 {
      font-size: 60px;
      font-weight: bold;
      margin-bottom: 60px;
  }
  
  /* Product Categories */
  .product-categories {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-bottom: 30px;
  }
  
  .product-categories .category {
      background: none;
      border: none;
      font-size: 20px;
      color: gray;
      cursor: pointer;
      padding: 10px;
      transition: color 0.2s ease-in-out;
      position: relative;
  }
  
  .product-categories .category.active {
      color: black;
      font-weight: bold;
      border-bottom: 2px solid black;
  }
  
  /* Underline Effect on Hover */
  .product-categories .category::after {
      content: "";
      position: absolute;
      left: 50%;
      bottom: -2px;
      width: 0;
      height: 2px;
      background-color: #FF3838;
      transition: width 0.3s ease-in-out, left 0.3s ease-in-out;
  }
  
  .product-categories .category:hover::after,
  .product-categories .category.active::after {
      width: 100%;
      left: 0;
  }
  
  /* Product Grid */
  .product-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 20px;
      margin: 30px;
  }

  .homepage .product-item:not([data-category="portable-speakers"]) {
    display: none;
  }
  
  /* Product Boxes */
  .product-item {
      text-align: center;
  }
  .product-item p {
    color: black;
  }
  
  .product-box {
    width: 260px;
    height: 260px;
    background-color: #efefef;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease-in-out;
  }
  
  .product-box img {
      width: 80%;
      height: auto;
      object-fit: contain;
      margin: 10px 0;
  }
  
  .product-item:hover .product-box {
      background-color: #d9d9d9;
  }
  
  .accessory-filters {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
  }
  
  .accessory-tab {
    padding: 10px 16px;
    font-weight: 500;
    border: none;
    background: none;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
  }
  
  .accessory-tab.active {
    border-bottom: 2px solid #FF3838;
    font-weight: bold;
  }
  
  /* Default: hide all accessory product boxes */
  .accessory-items .product-item {
    display: none;
  }
  
  /* Show only the ones that have the `.show` class */
  .accessory-items .product-item.show {
    display: block;
  }

  .product-scroll-left,
  .product-scroll-right {
    display:none;
  }

/* ==========================================================================
   BROWSE ALL PRODUCTS
   ========================================================================== */

.all-product-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  padding: 0 20px 80px;
}

.all-product-section h1 {
  font-size: 75px;
  font-weight: bold;
  margin-bottom: 100px;
}

.product-category-heading {
  font-size: 32px;
  font-weight: bold;
  margin: 50px 0 20px;
  text-align: left;
}

.all-product-section .product-grid {
  justify-content: flex-start;
  margin-left: 0;
}



/* ==========================================================================
   BROWSE BY TOPIC
   ========================================================================== */
.topic-section {
    text-align: center;
    background-color: #f5f5f5;
  	align-items: center;
    padding: 60px 0 100px;
}

.topic-section h2 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 30px;
}

.topic-prev,
.topic-next {
  display: none;
}
  
.topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 220px); /* fixed-size columns */
  gap: 30px;
  justify-content: center; /* ✅ centers the entire grid in its container */
  width: 100%;
  box-sizing: border-box;
}

.topic-box {
  width: 100%; /* fills the grid cell */
  height: 200px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #d1d1d1;
  box-sizing: border-box;
  text-decoration: none;
  transition: border 0.2s ease;
}


.topic-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.topic-box p {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
  padding: 0 8px;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

.topic-box:hover {
  border: 2px solid black;
}

/* -----------------------------
   BROWSE ALL TOPICS PAGE
   ----------------------------- */
.all-topics-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.all-topics-section h1 {
  font-size: 75px;
  font-weight: bold;
  margin-bottom: 100px;
}


/* ==========================================================================
   ALL TOPICS GRID
   ========================================================================== */
.all-topics-grid {
  max-width: 960px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-auto-rows: 1fr;
  gap: 30px;
  margin: 60px auto 100px;
  align-items: center;
}

/* ==========================================================================
   ALL TOPICS CARD
   ========================================================================== */
.all-topics-card {
  height: 100%;
  
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #d1d1d1;
  box-sizing: border-box;
  text-decoration: none;
  transition: border 0.2s ease;
}

.all-topics-card:hover {
  border: 2px solid black;
}

.all-topics-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.all-topics-card__image {
  /* center horizontally and add a bit of top padding */
  display: flex;
  justify-content: center;
  padding: 60px 20px 40px;
  flex: 0 0 auto;  /* don’t stretch this area */
}

.all-topics-card__image img {
  max-width: 80px; 
  height: auto;
}

.all-topics-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 16px;
}

.all-topics-card__description {
  font-size: 1rem;
  color: #555;
  margin: 0 16px 24px;
  line-height: 1.5;
}

/* default title color */
.all-topics-card h3 {
  color: #333;                 
  transition: color 0.2s ease;
}


/* ==========================================================================
   BROWSE BY APPLICATION
   ========================================================================== */
.application-section {
    text-align: center;
    background-color: white;
  	align-items: center;
    padding: 40px 0;
}

.application-section h2 {
    font-size: 60px;
    font-weight: bold;
    margin-bottom: 40px;
}

.application-prev,
.application-next {
  display: none;
}
  
.application-grid {
  display: grid;
  grid-template-columns: repeat(2, 220px); /* fixed-size columns */
  gap: 30px;
  justify-content: center; /* ✅ centers the entire grid in its container */
  width: 100%;
  box-sizing: border-box;
  padding-bottom: 40px;
}

.application-box {
  width: 100%; /* fills the grid cell */
  height: 200px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: 2px solid #d1d1d1;
  box-sizing: border-box;
  text-decoration: none;
  transition: border 0.2s ease;
}


.application-box img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 16px;
}

.application-box p {
  font-size: 16px;
  font-weight: 700;
  color: #111;
  margin: 0;
  padding: 0 8px;
  text-align: center;
  white-space: normal;
  line-height: 1.4;
}

.application-box:hover {
  border: 2px solid black;
}

/* -----------------------------
   BROWSE ALL APPLICATION PAGE
   ----------------------------- */
.all-applications-section {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}

.all-applications-section h1 {
  font-size: 75px;
  font-weight: bold;
  margin-bottom: 100px;
}


/* ==========================================================================
   ALL APPLICATIONS GRID
   ========================================================================== */
.all-applications-grid {
  display: grid;
  /* always 2 columns of equal width */
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
  max-width: 960px;
  margin: 60px auto 100px;
  align-items: center;
}

/* ==========================================================================
   APPLICATION CARD
   ========================================================================== */
.all-applications-card {
  height: 100%;
  
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #d1d1d1;
  box-sizing: border-box;
  text-decoration: none;
  transition: border 0.2s ease;
}

.all-applications-card:hover {
  border: 2px solid black;
}

.all-applications-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.all-applications-card__image {
  /* center horizontally and add a bit of top padding */
  display: flex;
  justify-content: center;
  padding: 60px 20px 40px;
  flex: 0 0 auto;  /* don’t stretch this area */
}

.all-applications-card__image img {
  max-width: 80px; 
  height: auto;
}

.all-applications-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 16px;
}

.all-applications-card__description {
  font-size: 1rem;
  color: #555;
  margin: 0 16px 24px;
  line-height: 1.5;
}

/* default title color */
.all-applications-card h3 {
  color: #333;                 
  transition: color 0.2s ease;
}


/* ==========================================================================
   SKAA COMPATIBILITY
   ========================================================================== */
.skaa-compatibility-section {
    background-color: white;
  }
  
  .skaa-compatibility-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .skaa-compatibility-text {
    flex: 1;
    min-width: 300px;
  }
  
  .skaa-compatibility-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .skaa-compatibility-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
  }
  
  .skaa-compatibility-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .skaa-compatibility-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }
  
/* ==========================================================================
   OTHER BRAND COMPATIBILITY
   ========================================================================== */
.brand-compatibility-section {
    background-color: white;
  }
  
  .brand-compatibility-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
  }
  
  .brand-compatibility-text {
    flex: 1;
    min-width: 300px;
  }
  
  .brand-compatibility-text h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .brand-compatibility-text p {
    font-size: 16px;
    color: #555;
    margin-bottom: 40px;
    max-width: 500px;
  }
  
  .brand-compatibility-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
  }
  
  .brand-compatibility-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
  }



















/* ==========================================================================
   PRODUCT PAGES
   ========================================================================== */

/* ===========================
   HERO BLOCK
   =========================== */
.product-hero {
    background-color: #f5f5f5;
    padding: 40px 0;
  }
  
  .product-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .product-image img {
    max-width: auto;
    height: 400px;
    padding-right: 20px;
  }
  
  .product-info {
    max-width: 500px;
    text-align: left;
  }
  
  .product-info h1 {
    font-size: 55px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .product-info p {
    font-size: 18px;
    color: #666;
    margin-bottom: 20px;
  }
  
  .product-info-divider {
      width: 100%;
      height: 1px;
      background-color: #d9d9d9;
      margin-bottom: 20px;
  }
  
  /* Inline product links */
  .product-links {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
  }
  
  .product-links a {
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    color: black;
    display: flex;
    align-items: center;
    gap: 5px;
  }
.product-links img {
  height: 25px;
}
  
  .product-links a:hover {
    color: #FF3838;
  }

  /* Optional compatibility row */
.product-compatibility {
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
}

.product-compatibility img {
  height: 60px;
  padding-left: 16px;
}


/* ===========================
   ANNOUNCEMENT BAR
   =========================== */
.registration-announcement-bar {
  background-color: #FF3838;
  text-align: center;
  padding: 10px 0;
}

.registration-announcement-bar a{
  color: white;
  font-size: 18px;
  font-weight: 500;
}

.registration-announcement-bar:hover {
  background: #b42c34;
  border: none;
}

/* ===========================
   ARTICLE PREVIEWS
   =========================== */
.article-preview {
  max-width: 1080px;
  margin: 0 auto 0;
  padding: 40px 20px 0;
  text-align: center;
}

.article-preview h2 {
  font-size: 24px;
  font-weight: 700;
  margin-top: 50px;
  margin-bottom: 60px;
}

.article-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-bottom: 40px;
}

.article-preview-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.article-preview-card {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 20px;
  background: white;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: border 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
  cursor: pointer;
}

.article-preview-card:hover {
  border-color: #FF3838;
  box-shadow: 0 0 0 1px #FF3838;
}

.article-preview-card h3 {
  font-size: 16px;
  font-weight: 400;
  margin: 0;
  text-align: center;
}

/* ==========================================================================
   GETTING STARTED SECTION
   ========================================================================== */

.getting-started-section {
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 60px;
}

.getting-started-section h1 {
  font-size: 3.5rem;
  text-align: center;
  margin-bottom: 2rem;
}

/* wrapper flexes the cards out evenly */
.getting-started-card-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* each card is a column that stretches to equal height */
.getting-started-card {
  flex: 1 1 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
}

/* image stays at top, always square */
.getting-started-card img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* the text + button stack, stretch full height, aligned left */
.getting-started-card .card-content {
  flex: 1;                       /* fill remaining space */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;      /* pin children flush left */
}

/* head-line: reserve exactly two lines of text */
.getting-started-card h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  margin: 0 0 0.5rem;
  /* 2 lines at 1.2 line-height → ~2.4em tall */
  min-height: 2.4em; 
}

/* paragraph spacing */
.getting-started-card p {
  font-size: 0.875rem;
  margin: 0 0 1rem;
  line-height: 1.4;
}

.getting-started-section .getting-started-card .underline-button {
  display: inline-block;   /* size to its text */
  margin-top: auto;        /* push it to the bottom of the card-content */
  align-self: flex-start;  /* pin it flush to the left edge */
}





/* ==========================================================================
   FEATURED ARTICLES
   ========================================================================== */
.feature-articles {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  padding: 0 20px 80px;
  margin: 0 auto;
}

.feature-block {
  display: flex;
  align-items: center; 
  justify-content: flex-start;
  gap: 8rem;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 auto;
}
.feature-block.reverse {
  flex-direction: row-reverse;
}
.feature-image img {
  width: 450px;
}
.feature-text {
  flex: 1 1 50%;
  max-width: 400px;
}


/* ==========================================================================
   FEATURED VIDEOS
   ========================================================================== */
/*********Feature Video Section*******/

/* Main section layout */
.feature-videos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding-bottom: 40px;
}

/* Grid wrapper for the two videos */
.video-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  width: 100%;
}

/* Each individual video */
.video-block {
  flex: 1 1 359px; /* Adjust size and allow shrink/grow */
  max-width: 540px;
  display: flex;
  flex-direction: column;
}

.video-frame-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  margin-bottom: 18px;
}

.video-frame-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}


/* Content under video */
.video-block-content {
  text-align: left;
}

.video-block-content h2 {
  font-size: 22px;
}

.video-block-content p {
  font-size: 16px;
  color: #666;
  line-height: 1.5;
}









/* ==========================================================================
   TROUBLESHOOTING
   ========================================================================== */
.troubleshooting-section {
  background-color: #f5f5f5;
  padding: 40px 20px 80px;
  text-align: center;
}

.troubleshooting-section h2 {
  font-size: 36px;
  margin-bottom: 50px;
  font-weight: 700;
}

/* Grid Layout */
.troubleshooting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  padding-left: 100px;
}

/* Individual Cards */
.troubleshooting-card {
  display: grid;
  justify-content: stretch;
  background: transparent;
  padding: 0;
}

.troubleshooting-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.troubleshooting-card p {
  font-size: 16px;
  color: #555;
  margin-right: 110px;
}

.troubleshooting-card a:hover {
  color: #FF3838;
}

.troubleshooting-header {
  display: flex;
  align-items: center;
  gap: 5px;
}

.troubleshooting-header img {
  height: 40px;
}

.troubleshooting-header h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

/* ==========================================================================
   INSTALL SUBWOOFER PAGES
   ========================================================================== */
.install-sub-product-page {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 40px;
}
.install-sub-product-page-block {
  padding: 40px;
}






/* ==========================================================================
   GLOBAL ARTICLE TEMPLATE
   ========================================================================== */
.article-container {
  max-width: 1100px;
  margin: 80px auto;
  padding: 0 20px;
}
.article-header h1 {
  font-size: 38px;
  margin-top: 60px;
  margin-bottom: 20px;
  font-weight: 700;
}

/*.article-body h1 {
  font-size: 38px;
  font-weight: 700;
}

.article-body h2 {
  font-size: 30px;
  font-weight: 700;
}

.article-body h3 {
  font-size: 24px;
  font-weight: 600;
}

.article-body h4 {
  font-size: 20px;
  font-weight: 600;
}

.article-body p {
  font-size: 18px;
  line-height: 1.6;
}*/

/* Related Articles Section */
.related-articles {
  border-top: 1px solid #ddd;
  margin-top: 60px;
  padding-top: 40px;
}

.related-articles h2 {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 20px;
}

.related-articles ul {
  list-style: none;
  padding: 0;
}

.related-articles li {
  margin-bottom: 10px;
}

.related-articles a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  position: relative;
}

.related-articles a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #FF3838;
  transition: opacity 0.2s ease-in-out;
  opacity: 0;
}

.related-articles a:hover::after {
  opacity: 1;
}

/* ===Article Embedded Videos=== */

/* Keep videos responsive and not huge on article pages */
.article-body .wysiwyg-media {

  max-width: 600px;              /* set your desired max width */
}

.article-body .wysiwyg-media > div {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%;           /* 16:9 intrinsic ratio */
  overflow: hidden;
  border-radius: 12px;           /* optional styling */
}

.article-body .wysiwyg-media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}







/* Scroll To Top */
.scroll-to-top {
  position: fixed;
  bottom: 145px;
  right: 24px;
  z-index: 1000;
  background-color: #FF3838;
  color: #fff;
  font-size: 24px;
  font-weight: normal;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  display: none; /* Hidden by default */
  box-shadow: 0 2px 10px rgba(0,0,0,0.2);
  transition: background 0.2s ease-in-out;
}

.scroll-to-top::before {
  content: "Top";
  position: absolute;
  bottom: 90%;               /* sit just above the button */
  left: 50%;                  /* center horizontally */
  transform: translateX(-50%) translateY(-8px); /* tweak vertical gap */
  color: #FF3838;             /* red text */
  font-size: 16px;            /* adjust to taste */
  white-space: nowrap;        /* keep it on one line */
  pointer-events: none;       /* allow clicks through to the button */
}

.scroll-to-top:hover {
  background-color: #cc2f2f;
}



/* ==========================================================================
   SEE ALL ARTICLES PAGE
   ========================================================================== */

/* Main container */
.see-all-articles-page {
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 80px;
}

/* Hero section */
.see-all-hero {
  text-align: center;
  margin-bottom: 50px;
}

.see-all-hero h1 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
  color: black !important;
}

.see-all-description {
  font-size: 18px;
  color: #555;
}

/* Article title (h1) styling */
.see-all-articles-title {
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  text-align: center;
}

/* Search bar wrapper (margin below added here) */
.search-bar {
  margin-bottom: 40px;
}

/* Article list container */
#see-all-articles-list {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  color: black;
}

/* Each article row */
.article-item {
  border-bottom: 1px solid #ddd;
}

/* Accordion toggle button */
.article-toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s ease;
}

.article-toggle:hover {
  background-color: #f8f8f8;
}

/* Arrow icon */
.article-toggle .arrow {
  transition: transform 0.2s ease;
  font-size: 20px;
}

.article-toggle[aria-expanded="true"] .arrow {
  transform: rotate(90deg);
}

.article-preview-body {
  padding: 0 15px;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
}

/* Slow open */
.article-preview-body.opening {
  transition: max-height 3s ease, opacity 0.4s ease;
  max-height: 500px;
  opacity: 1;
}

/* Fast close */
.article-preview-body.closing {
  transition: max-height 0.3s ease, opacity 0.2s ease;
  max-height: 0;
  opacity: 1;
}



/* Preview footer with button link */
.preview-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 0;
}

/* Read full article link styled as button */
.view-article-link {
  display: inline-block;
  margin-bottom: 20px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: white !important;
  background: #FF3838;
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.view-article-link:hover {
  background: #b42c34;
  border: none;
  text-decoration: none;
}




/* ==========================================================================
   TOPIC PAGES
   ========================================================================== */
.topic-header {
  text-align: center;
}

.topic-header h1 {
  font-size: 48px;
  font-weight: 800;
  padding: 
}

/* Topic Blocks */
.topic-block {
  display: column;
  align-items: center;
  justify-content: space-between;
  max-width: 1100px;
  margin: 60px auto;
  padding: 0 20px;
  flex-wrap: wrap;
}
.topic-block.reverse {
  flex-direction: row-reverse;
}
.topic-text {
  flex: 1 1 45%;
}
.topic-image {
  flex: 1 1 45%;
}
.topic-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}


/* ==========================================================================
   APPLICATION PAGES
   ========================================================================== */

.application-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;   /* center text vertically beside the image */
  gap: 0;
  margin: 0 auto 60px;   /* adjust spacing below hero as needed */
  max-width: 2000px;      /* or whatever your main column width is */
  background-color: #efefef;
}

.application-hero__image img {
  width: 100%;
  height: auto;
  object-fit: cover;      /* crop/fill if your img ratios vary */
  display: block;
}

.application-hero__text {
  padding: 0 60px;        /* space between image and text */
  max-width: 500px;
}

.application-hero__text h1 {
  font-size: 2.5rem;      /* make your headline big & bold */
  margin-bottom: 16px;
}

.application-hero__desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* ==========================================================================
   ACCESSORIES GRID
   ========================================================================== */
.accessories-grid {
  display: grid;
  /* always 2 columns of equal width */
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 30px;
  max-width: 960px;
  margin: 60px auto 100px;
  align-items: center;
}

/* ==========================================================================
   ACCESSORIES CARD
   ========================================================================== */
.accessories-card {
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  border: 2px solid #d1d1d1;
  box-sizing: border-box;
  text-decoration: none;
  transition: border 0.2s ease;
}

.accessories-card:hover {
  border: 2px solid black;
}

.accessories-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  color: inherit;
  text-decoration: none;
}
.accessories-card__image {
  /* center horizontally and add a bit of top padding */
  display: flex;
  justify-content: center;
  padding: 40px 20px 20px;
  flex: 0 0 auto;  /* don’t stretch this area */
}

.accessories-card__image img {
  max-width: 100px; 
  height: auto;
}

.accessories-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 16px 0;
  text-align: center;
}

/* default title color */
.accessories-card h3 {
  color: #333;                 
  transition: color 0.2s ease;
}

















/* ======================================================================================
   MOBILE STUFF
   =================================================================================== */
html, body {
  width: 100%;
  overflow-x: hidden;
}

.hamburger-icon {
    display: none; /* Hide hamburger on desktop */
  }
.mobile-menu {
  display: none;
}
.mobile-section-divider {
  display: none;
}

.badges {
  display: none;
}

@media (max-width: 768px) {
  
  /* MOBILE Gray Section Divider Line */
.mobile-section-divider {
  display: flex;
  max-width: 700px;
  border: none;
  border-top: 1px solid #e0e0e0; /* soft light gray */
  margin: 0 auto;
  width: 100%;
}
.badges {
  display: grid;
  grid-template-columns: 180px 180px;
  justify-content: center;
  gap: 10px;
}
  /* ===========================
   HEADER
   ============================ */
  .announcement-bar {
    font-size: 12.5px;
    font-weight: 400;
    word-spacing: 2px;
  }
  
  .hamburger-icon {
    display: block;
    position: relative;
    z-index: 999;
    width: 40px; height: 40px;
  }
  .hamburger-icon img {
    display: block;
    width: 100%; height: 100%;
  	transform: scale(0.6, 0.7);
  	transform-origin: center;
  }
  

  .nav-bar {
    position: relative;
    padding: 15px 4px;
  }
  
  .nav-links {
    display: none; /* Hide nav links on mobile */
  }
  
  .nav-logo img {
  	height: 35px;
  }


  .nav-logo {
    position: absolute;
    left: 54%;
    transform: translateX(-50%);
    /* (you can add top:50% + translateY(-50%) if you need vertical centering too) */
    z-index: 10;
  }
  
    /* this will hide the 2nd icon (Profile) on mobile) */
  .nav-icons a:nth-child(1) {
    display: none;
  }
  
  .nav-icons {
    display: flex;
    gap: 20px;
    margin-left: auto;
    align-items: center;
    padding-right: 10px;
  }
  
  /* Hide menu by default */
.mobile-menu {
  display: none;
  flex-direction: column;
  background-color: white;
  width: 100%;
  text-align: left;
  padding: 10px 20px;
  border-top: 1px solid #ddd;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* Show menu when active */
.mobile-menu.active {
  display: flex;
}

/* Style mobile menu links */
.mobile-menu li {
  margin: 10px 0;
}

.mobile-menu a {
  color: black;
  font-weight: 500;
  text-decoration: none;
}

.mobile-menu a:hover {
  text-decoration: underline;
}
  
  
  /* ===========================
   FOOTER
   ============================ */
  /* ===========================
   HELP BLOCK
   =========================== */
  
/* 1) Collapse inner into a single column and center it */
  .help-block__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  /* 2) Center the intro heading */
  .help-block__intro {
    text-align: center;
    width: 100%;
  }
  .help-block__heading {
    font-size: 1.75rem; /* shrink a bit if you like */
    line-height: 1.2;
    margin-bottom: 1rem;
  }

  /* 3) Make each feature take full width */
  .help-block__features {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  /* 4) Center icons & title inside each feature */
  .help-block__feature {
    align-items: center;
    text-align: center;
    padding: 0 1rem;
  }
  .help-block__icon {
    margin-bottom: 0.5rem;
  }
  .help-block__title {
    font-size: 1.125rem;
    margin-bottom: 0.25rem;
  }
  .help-block__desc {
    font-size: 0.9rem;
    line-height: 1.4;
  }
  
  /* ===========================
   MAIN FOOTER
   =========================== */
  /* 1) turn the outer row into a column flex container */
  .footer-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* left‐align everything */
    gap: 2rem;                /* space between each block */
  }

  /* 2) make each “column” full width */
  .footer-column,
  .footer-logo {
    width: 100%;
    margin: 0;                /* kill any leftover side margins */
  }


  /* 4) adjust your newsletter & social row similarly */
  .footer-extra .footer-inner,
  .footer-signup,
  .footer-social,
  .footer-divider,
  .footer-copyright {
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
  }

    /* 1) let the wrapper span the viewport and stack its children */
  .breadcrumbs-wrapper {
    display: flex;
    flex-direction: column;
    align-items: stretch;      /* stretch children to fill */
    max-width: 100%;           /* override desktop’s 1200px cap */
    padding: 0;                /* remove side gutters */
    margin: 20px;         /* vertical spacing only */
    gap: 16px;                 /* nice gap between crumbs & search */
  }

  /* 2) force the search block under the breadcrumbs */
  .breadcrumbs-search {
    order: 2;                  /* move after .breadcrumbs */
    width: 100%;               /* fill the wrapper */
  }
  .breadcrumbs {
    order: 1;
  }

  /* 3) make the search container truly fluid */
  .search-container {
    width: 100% !important;
    max-width: none !important; /* kill desktop’s 300px cap */
  }

  /* inner input too, so you actually get edge-to-edge results */
  .search-container input {
    width: 100% !important;
    box-sizing: border-box;
  }
  
  
  
  
/* ===========================
   HOMEPAGE
   ============================ */

/* ===========================
   HERO IMAGE / SEARCH BAR
   =========================== */

  /* 1) Shrink the hero on small screens */
  .hero {
		height: 300px;
  }

  /* 2) Scale down the headline */
  .hero__title {
    font-size: 40px;
  }

  /* 3) Let the search form take up most of the viewport width */
  .hero__search {
    width: 90%;
    max-width: none;     /* remove 500px cap */
  }

  /* 4) Bump up the tappable area of the input */
  .hero__search-input {
    padding: 1rem 1.25rem;  /* a little more vertical/horizontal padding */
    font-size: 1.125rem;    /* slightly larger for readability */
  }

  /* 5) Likewise, give the button more breathing room */
  .hero__search-btn {
    padding: 0 1.5rem;      /* widen the hit area */
  }
  .hero__search-btn img {
    width: 1.5rem;          /* scale up the icon */
  }
  
  
  
  .search-results-container h1 {
  font-size: 38px;
  }
  /* ===========================
   BROWSE BY PRODUCT
   =========================== */
  
  .product-section h2 {
      font-size: 40px;
  }
  
  .product-categories{
    padding: 0 25px;
  }
  
  .product-categories .category {
      font-size: 14px;
  }
    .product-box {
    width: 160px;
    height: 160px;
  }
  
  .all-product-section {
    padding: 20px 20px 40px;
  }
  
  .all-product-section h1 {
    font-size: 38px;
  }
  
  .product-category-heading {
    font-size: 24px;
  }
  
  /* ===========================
   BROWSE BY TOPIC
   =========================== */
	.topic-section h2 {
      font-size: 40px;
  }
  .topic-grid {
    grid-template-columns: repeat(2, 180px);
  }
	.topic-box {
  height: 180px;
  }
	.topic-box p {
	padding: 0;
}
  
  
    .all-topics-section h1 {
    font-size: 36px;
    margin: 40px 20px;
  }
  .all-topics-grid {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
    padding: 0 20px;
  }

  .all-topics-card {
    width: 100%;
  }
  .all-topics-card__image {
    padding: 40px 20px 10px;
  }
  
  /* ===========================
   BROWSE BY APPLICATION
   =========================== */
  .application-section h2 {
        font-size: 40px;
    }

  .application-grid {
      grid-template-columns: repeat(2, 180px);
    }
  .application-box {
    height: 180px;
    }

  .application-box p {
    padding: 0;
  }
  
  .all-applications-section h1 {
    font-size: 36px;
    margin: 40px 20px;
  }
  .all-applications-grid {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
    padding: 0 20px;
  }

  .all-applications-card {
    width: 100%;
  }
  .all-applications-card__image {
    padding: 40px 20px 10px;
  }
  
  

    


  
  
  /* ===========================
   COMPATIBILITY SECTION
   =========================== */
  
  .skaa-compatibility-section,
  .brand-compatibility-section {
    padding: 0 16px;
  }
  .skaa-compatibility-text .button,
  .brand-compatibility-text .button {
  margin: 0;
}

  
  /* ===========================
   PRODUCT PAGES
   =========================== */

  /* ===========================
   HERO BLOCK
   =========================== */
  /* 1) Make the hero inner stack vertically */
  .product-hero-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;        /* center text once stacked */
    padding: 0 16px;           /* give some side‐padding on mobile */
  }

  /* 2) Shrink the product image and remove right padding */
  .product-image img {
    width: 100%;               /* fill the container width */
    max-width: 300px;          /* optional cap so it never gets too huge */
    height: auto;              /* maintain aspect ratio */
    padding-right: 0;
    margin-bottom: 24px;       /* space below image before the text */
  }

  /* 3) Tweak the info column */
  .product-info {
    max-width: 100%;           /* let it flow full width */
    margin: 0 auto;
  }

  .product-info h1 {
    font-size: 38px;           /* scale heading down */
    line-height: 1.2;
  }

  .product-info p {
    font-size: 16px;
    margin-bottom: 24px;
  }

  /* 4) Make the divider a little lighter on small screens */
  .product-info-divider {
    margin: 24px 0;
  }

/* 5) Wrap your links into one line and center them */
.product-links {
  display: flex;              /* <— make it a flex container */
  flex-wrap: wrap;        /* if they overflow, wrap to the next row */
  justify-content: center;    /* <— center them horizontally */
  gap: 8px;                  /* tighten gap a little */
  margin: 0 auto;             /* just in case you need extra centering */
}
.product-links a {
  font-size: 16px;
  text-decoration: none;
}
  
.product-compatibility {
  display: flex;
  flex-direction: column;     /* stack vertically */
  align-items: center;        /* center horizontally */
  justify-content: center;
  gap: 4px;                   /* spacing between text and image */
  margin-top: 20px;
  font-size: 14px;
  color: #666;
  text-align: center;         /* center the text itself */
}

.product-compatibility img {
  height: 60px;
  padding: 0;
}
 
  
  /* ===========================
   GETTING STARTED
   =========================== */
.getting-started-section h1 {
  font-size: 34px;
  }
.getting-started-card-wrapper { 
  gap:80px;
  }
.getting-started-card {
  display: flex;
  flex-direction: column;      /* stack span above the image */
  align-items: flex-start;
  }
    

    /* ===========================
   FEATURE ARTICLES
   =========================== */
.feature-block {
    padding: 0;
    gap: 1.5rem;
  }
  
  .feature-block,
  .feature-block.reverse {
    /* stack image over text in every block */
    flex-direction: column !important;
    align-items: stretch;    /* make them full-width */
    text-align: center;      /* optional: center the text/buttons */
    gap: 1.5rem;             /* space between image & text */
  }

  .feature-image,
  .feature-text {
    width: 100%;
    max-width: none;
    padding: 0;
  }
  
    .feature-block .feature-image,
  .feature-block .feature-text {
    width: 100%;
    max-width: none;      /* no desktop maxes */
    padding: 0;           /* nuke any inner gutters */
  }
  .feature-image {
      order: -1;  
    
  }

  .feature-image img {
    width: 100%;
    height: auto;
    display: block;
  }
    /* ===========================
   FEATURE VIDEOS
   =========================== */
  .feature-videos {
    padding: 20px;
  }
  
    /* ===========================
   TROUBLESHOOTING
   =========================== */
.troubleshooting-grid {
	 flex-direction: column;
  	padding: 0;
}
  
  /* ===========================
   ACCESSORY PAGES
   =========================== */
  .accessories-grid {
    display: flex;
    flex-direction: column;
    align-items: center; 
    gap: 20px;
    padding: 0 20px;
  }

  .accessories-card {
    width: 100%;
  }
  .accessories-card__image {
    padding: 40px 20px 10px;
  }
  
  
   /* ===========================
   TOPIC PAGES
   =========================== */
  .topic-header h1 {
    font-size: 36px;
    margin: 40px 20px;
    text-align: left;
}
  .topic-text h2 {
    font-size: 18px;
  }
  
  
  
   /* ===========================
   APPLICATION PAGES
   =========================== */  
  
    /* make the whole hero positionable & give it a fixed height */
  .application-hero {
    flex-direction: column;
    position: relative;
    height: 45vh;      /* you can tweak from 40–60vh as you like */
    min-height: 300px; /* keep your desktop min-height */
    overflow: hidden;  /* clip anything outside */
  }

  /* stretch the img to cover, and darken it via filter */
  .application-hero__image img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; 
    object-position: 65% 50%;
    filter: brightness(40%);     /* 60% brightness → “darkened” */
  }

  /* pull your text on top of the image */
  .application-hero__text {
    position: absolute;     /* detach from normal flow */
    top: 50%;               /* halfway down the container */
    left: 50%;              /* halfway across the container */
    transform: translate(-50%, -50%);  /* truly center it */
    width: 100%;            /* span the full width */
    max-width: 90%;         /* optional: keep some horizontal padding */
    padding: 0 1rem;        /* breathing room on the sides */
    text-align: center;     /* center your h1 & p */
    z-index: 2;             /* above your image and any overlay */
    color: white;
  }

  
/* ===========================
   ARTICLE TEMPLATE
   ===========================*/
  .article-header h1 { font-size: 36px; }

  .article-body h1 { font-size: 30px; }
  .article-body h2 { font-size: 24px; }
  .article-body h3 { font-size: 20px; }
  .article-body h4 { font-size: 18px; }
  .article-body p { font-size: 17px; }
  
  .article-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-left: 0;
  margin-right: auto;
}  
  
}
