/*
Theme Name: Lithium Power Store
Theme URI: https://www.lithiumbatterystore.in
Author: Lithium Batteries and Inverters
Author URI: https://www.lithiumbatterystore.in
Description: A clean, fast, conversion-focused WooCommerce theme built for selling lithium batteries, inverters and hybrid inverters. Designed for Lithium Batteries and Inverters (lithiumbatterystore.in). Fully responsive, WooCommerce-ready, with a custom storefront homepage, category showcase, trust badges and product carousels.
Version: 1.1.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lithium-power-store
Tags: e-commerce, woocommerce, two-columns, right-sidebar, custom-menu, custom-logo, featured-images, full-width-template, theme-options, threaded-comments, translation-ready
*/

/* ==========================================================================
   1. CSS Variables / Design Tokens
   ========================================================================== */
:root {
  --lps-primary: #0a6e3c;        /* deep battery green */
  --lps-primary-dark: #064e2a;
  --lps-primary-light: #12a35a;
  --lps-accent: #ffb703;         /* energy amber */
  --lps-accent-dark: #e89c00;
  --lps-dark: #0f1d17;
  --lps-text: #1f2a24;
  --lps-muted: #5d6b63;
  --lps-bg: #ffffff;
  --lps-bg-soft: #f4f7f5;
  --lps-bg-soft-2: #eaf2ed;
  --lps-border: #e2e8e4;
  --lps-danger: #d7263d;
  --lps-radius: 12px;
  --lps-radius-sm: 8px;
  --lps-shadow: 0 4px 24px rgba(10, 110, 60, 0.08);
  --lps-shadow-hover: 0 10px 36px rgba(10, 110, 60, 0.16);
  --lps-container: 1240px;
  --lps-font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --lps-font-head: 'Poppins', 'Inter', sans-serif;
}

/* ==========================================================================
   2. Base / Reset
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: var(--lps-font);
  font-size: 16px;
  line-height: 1.65;
  color: var(--lps-text);
  background: var(--lps-bg);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lps-font-head);
  color: var(--lps-dark);
  line-height: 1.2;
  margin: 0 0 0.5em;
  font-weight: 700;
}

a { color: var(--lps-primary); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--lps-primary-dark); }

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

p { margin: 0 0 1rem; }

.lps-container {
  max-width: var(--lps-container);
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.screen-reader-text {
  border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
  height: 1px; width: 1px; margin: -1px; overflow: hidden;
  padding: 0; position: absolute !important; word-wrap: normal !important;
}

/* ==========================================================================
   3. Buttons
   ========================================================================== */
.lps-btn,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.woocommerce .widget_price_filter .price_slider_amount .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--lps-primary);
  color: #fff;
  font-weight: 600;
  font-family: var(--lps-font);
  padding: 12px 26px;
  border: none;
  border-radius: var(--lps-radius-sm);
  cursor: pointer;
  transition: background .2s ease, transform .15s ease, box-shadow .2s ease;
  line-height: 1.2;
  font-size: 15px;
}
.lps-btn:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  background: var(--lps-primary-dark);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--lps-shadow-hover);
}

.lps-btn--accent,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce #respond input#submit.alt {
  background: var(--lps-accent);
  color: var(--lps-dark);
}
.lps-btn--accent:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover {
  background: var(--lps-accent-dark);
  color: var(--lps-dark);
}

.lps-btn--ghost {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,.7);
}
.lps-btn--ghost:hover { background: #fff; color: var(--lps-primary); }

/* ==========================================================================
   4. Top Bar
   ========================================================================== */
.lps-topbar {
  background: var(--lps-primary-dark);
  color: #d8efe6;
  font-size: 12px;
}
.lps-topbar .lps-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 28px;
  flex-wrap: wrap;
  gap: 6px;
}
.lps-topbar a { color: #fff; display: inline-flex; align-items: center; gap: 5px; }
.lps-topbar__left span { margin-right: 16px; display: inline-flex; align-items: center; gap: 5px; }
.lps-topbar__right a { margin-left: 14px; }
.lps-topbar .lps-ico { width: 14px; height: 14px; }

/* ==========================================================================
   5. Header
   ========================================================================== */
.lps-header {
  background: #fff;
  border-bottom: 1px solid var(--lps-border);
  position: sticky;
  top: 0;
  z-index: 999;
}
.lps-header__inner {
  display: flex;
  align-items: center;
  gap: 28px;
  min-height: 84px;
}
.lps-logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.lps-logo img { max-height: 56px; width: auto; }
.lps-logo__text { display: flex; flex-direction: column; }
.lps-logo__name { font-family: var(--lps-font-head); font-weight: 800; font-size: 20px; color: var(--lps-primary); line-height: 1.1; }
.lps-logo__tag { font-size: 11.5px; color: var(--lps-muted); letter-spacing: .5px; text-transform: uppercase; }

.lps-search { flex: 1; max-width: 560px; }
.lps-search form { display: flex; border: 2px solid var(--lps-border); border-radius: var(--lps-radius-sm); overflow: hidden; }
.lps-search input[type="search"] {
  flex: 1; border: none; padding: 11px 16px; font-size: 15px; outline: none; background: var(--lps-bg-soft);
}
.lps-search button {
  background: var(--lps-primary); color: #fff; border: none; padding: 0 20px; cursor: pointer; font-weight: 600;
}
.lps-search button:hover { background: var(--lps-primary-dark); }

.lps-header__actions { display: flex; align-items: center; gap: 22px; flex-shrink: 0; }
.lps-header__action { display: flex; align-items: center; gap: 8px; color: var(--lps-text); font-size: 14px; font-weight: 500; }
.lps-header__action .lps-ico { width: 24px; height: 24px; stroke: var(--lps-primary); }
.lps-cart-count {
  background: var(--lps-accent); color: var(--lps-dark); font-size: 11px; font-weight: 700;
  border-radius: 999px; padding: 1px 7px; margin-left: 2px;
}

/* ==========================================================================
   6. Primary Navigation
   ========================================================================== */
.lps-nav {
  background: var(--lps-primary);
}
.lps-nav .lps-container { display: flex; align-items: center; gap: 8px; }
.lps-nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; }
.lps-nav ul li { position: relative; }
.lps-nav ul li a {
  display: block; color: #fff; padding: 14px 18px; font-weight: 600; font-size: 14.5px; letter-spacing: .2px;
}
.lps-nav ul li a:hover, .lps-nav ul li.current-menu-item > a { background: var(--lps-primary-dark); color: #fff; }
.lps-nav ul li ul {
  position: absolute; top: 100%; left: 0; background: #fff; min-width: 220px;
  box-shadow: var(--lps-shadow); border-radius: 0 0 var(--lps-radius-sm) var(--lps-radius-sm);
  flex-direction: column; display: none; z-index: 50; padding: 6px 0;
}
.lps-nav ul li:hover > ul { display: flex; }
.lps-nav ul li ul li a { color: var(--lps-text); padding: 10px 18px; }
.lps-nav ul li ul li a:hover { background: var(--lps-bg-soft); color: var(--lps-primary); }

.lps-menu-toggle {
  display: none; background: transparent; border: none; color: #fff; padding: 12px 16px;
  font-size: 15px; font-weight: 600; cursor: pointer; align-items: center; gap: 8px;
}

/* ==========================================================================
   7. Hero
   ========================================================================== */
.lps-hero {
  background: linear-gradient(120deg, var(--lps-primary-dark) 0%, var(--lps-primary) 55%, var(--lps-primary-light) 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.lps-hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 340px;     /* was 480px */
  height: 340px;
  background: radial-gradient(circle, rgba(255,183,3,.25), transparent 65%);
  border-radius: 50%;
}
}
.lps-hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 32px;
  padding: 36px 0;          /* was 64px 0 */
  position: relative;
  z-index: 2;
  align-items: center;
}
.lps-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,.15);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 12px;       /* was 18px */
}
.lps-hero h1 {
  color: #fff;
  font-size: clamp(26px, 3.4vw, 38px);   /* was clamp(30px, 4.5vw, 48px) */
  margin-bottom: 12px;
}
.lps-hero p {
  font-size: 16px;           /* was 18px */
  opacity: .92;
  max-width: 500px;
  margin-bottom: 20px;       /* was 28px */
}
.lps-hero__visual {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 16px;
  padding: 22px;             /* was 30px */
  backdrop-filter: blur(4px);
}
.lps-hero__stat strong {
  display: block;
  font-size: 24px;           /* was 30px */
  font-family: var(--lps-font-head);
  color: var(--lps-accent);
}
}
.lps-hero__eyebrow {
  display: inline-block; background: rgba(255,255,255,.15); padding: 6px 14px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: .5px; margin-bottom: 18px;
}
.lps-hero h1 { color: #fff; font-size: clamp(30px, 4.5vw, 48px); margin-bottom: 18px; }
.lps-hero p { font-size: 18px; opacity: .92; max-width: 520px; margin-bottom: 28px; }
.lps-hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.lps-hero__visual {
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px; padding: 30px; backdrop-filter: blur(4px);
}
.lps-hero__stats { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.lps-hero__stat { text-align: center; }
.lps-hero__stat strong { display: block; font-size: 30px; font-family: var(--lps-font-head); color: var(--lps-accent); }
.lps-hero__stat span { font-size: 13px; opacity: .85; }

/* ==========================================================================
   8. Trust / USP bar
   ========================================================================== */
.lps-usp { background: var(--lps-bg-soft); border-bottom: 1px solid var(--lps-border); }
.lps-usp__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; padding: 12px 0; }
.lps-usp__item { display: flex; align-items: center; gap: 9px; }
.lps-usp__item .lps-ico { width: 22px; height: 22px; stroke: var(--lps-primary); flex-shrink: 0; }
.lps-usp__item strong { display: block; font-size: 13px; line-height: 1.25; }
.lps-usp__item span { font-size: 11.5px; color: var(--lps-muted); line-height: 1.2; }

/* ==========================================================================
   9. Sections / Headings
   ========================================================================== */
.lps-section { padding: 60px 0; }
.lps-section--soft { background: var(--lps-bg-soft); }
.lps-section__head { text-align: center; max-width: 680px; margin: 0 auto 42px; }
.lps-section__head h2 { font-size: clamp(26px, 3vw, 34px); }
.lps-section__head p { color: var(--lps-muted); font-size: 17px; }
.lps-section__head--left { text-align: left; margin-left: 0; }

/* ==========================================================================
   10. Category cards
   ========================================================================== */
.lps-cats { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.lps-cat {
  background: #fff; border: 1px solid var(--lps-border); border-radius: var(--lps-radius);
  overflow: hidden; transition: transform .2s ease, box-shadow .2s ease; box-shadow: var(--lps-shadow);
}
.lps-cat:hover { transform: translateY(-6px); box-shadow: var(--lps-shadow-hover); }
.lps-cat__media { height: 200px; background: var(--lps-bg-soft-2); display: flex; align-items: center; justify-content: center; }
.lps-cat__media .lps-ico { width: 84px; height: 84px; stroke: var(--lps-primary); }
.lps-cat__media img { width: 100%; height: 100%; object-fit: cover; }
.lps-cat__body { padding: 22px; }
.lps-cat__body h3 { font-size: 20px; margin-bottom: 6px; }
.lps-cat__body p { color: var(--lps-muted); font-size: 14.5px; margin-bottom: 14px; }
.lps-cat__link { font-weight: 600; display: inline-flex; align-items: center; gap: 6px; }

/* ==========================================================================
   11. WooCommerce product grid overrides
   ========================================================================== */
.woocommerce ul.products, .woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 0;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
  width: auto !important; margin: 0 !important; float: none !important;
  background: #fff; border: 1px solid var(--lps-border); border-radius: var(--lps-radius);
  padding: 16px; transition: transform .2s ease, box-shadow .2s ease; box-shadow: var(--lps-shadow);
  display: flex; flex-direction: column;
}
.woocommerce ul.products li.product:hover { transform: translateY(-5px); box-shadow: var(--lps-shadow-hover); }
.woocommerce ul.products li.product a img { border-radius: var(--lps-radius-sm); margin-bottom: 14px; }
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--lps-font-head); font-size: 16px; font-weight: 600; padding: 0; color: var(--lps-dark);
}
.woocommerce ul.products li.product .price {
  color: var(--lps-primary); font-weight: 700; font-size: 17px;
}
.woocommerce ul.products li.product .price del { color: var(--lps-muted); font-weight: 400; font-size: 14px; }
.woocommerce ul.products li.product .button { margin-top: auto; width: 100%; }
.woocommerce span.onsale {
  background: var(--lps-accent); color: var(--lps-dark); border-radius: 999px; font-weight: 700;
  min-height: auto; min-width: auto; padding: 4px 12px; line-height: 1.4;
}
.woocommerce .star-rating span { color: var(--lps-accent-dark); }

/* WooCommerce single product */
.woocommerce div.product .product_title { font-size: 30px; }
.woocommerce div.product p.price, .woocommerce div.product span.price {
  color: var(--lps-primary); font-size: 26px; font-weight: 700;
}
.woocommerce .quantity .qty { padding: 10px; border: 2px solid var(--lps-border); border-radius: var(--lps-radius-sm); }
.woocommerce-message, .woocommerce-info { border-top-color: var(--lps-primary); }
.woocommerce-message::before, .woocommerce-info::before { color: var(--lps-primary); }
.woocommerce nav.woocommerce-pagination ul li a, .woocommerce nav.woocommerce-pagination ul li span.current {
  border-radius: var(--lps-radius-sm); border: 1px solid var(--lps-border);
}
.woocommerce nav.woocommerce-pagination ul li span.current { background: var(--lps-primary); color: #fff; border-color: var(--lps-primary); }

/* ==========================================================================
   12. CTA band
   ========================================================================== */
.lps-cta {
  background: linear-gradient(120deg, var(--lps-dark), var(--lps-primary-dark));
  color: #fff; border-radius: var(--lps-radius); padding: 46px; text-align: center;
}
.lps-cta h2 { color: #fff; font-size: 30px; }
.lps-cta p { opacity: .9; max-width: 560px; margin: 0 auto 24px; }

/* ==========================================================================
   13. Footer
   ========================================================================== */
.lps-footer { background: var(--lps-dark); color: #c2d2c9; padding: 56px 0 0; font-size: 14.5px; }
.lps-footer a { color: #c2d2c9; }
.lps-footer a:hover { color: #fff; }
.lps-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 36px; }
.lps-footer h4 { color: #fff; font-size: 16px; margin-bottom: 18px; }
.lps-footer ul { list-style: none; margin: 0; padding: 0; }
.lps-footer ul li { margin-bottom: 10px; }
.lps-footer__brand .lps-logo__name { color: #fff; }
.lps-footer__brand p { margin: 16px 0; max-width: 320px; }
.lps-footer__contact span { display: flex; gap: 10px; margin-bottom: 10px; align-items: flex-start; }
.lps-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.12); margin-top: 44px; padding: 20px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: 13.5px;
}

/* widgets in footer */
.lps-footer .widget { margin-bottom: 0; }
.lps-footer .widget-title { color:#fff; font-size:16px; margin-bottom:18px; }

/* ==========================================================================
   14. Generic content / sidebar
   ========================================================================== */
.lps-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 50px 0; }
.lps-layout--full { grid-template-columns: 1fr; }
.lps-sidebar .widget {
  background: #fff; border: 1px solid var(--lps-border); border-radius: var(--lps-radius);
  padding: 22px; margin-bottom: 24px;
}
.lps-sidebar .widget-title { font-size: 17px; margin-bottom: 14px; }
.lps-sidebar ul { list-style: none; padding: 0; margin: 0; }
.lps-sidebar ul li { padding: 7px 0; border-bottom: 1px dashed var(--lps-border); }

.lps-page-title { background: var(--lps-bg-soft); padding: 36px 0; border-bottom: 1px solid var(--lps-border); }
.lps-page-title h1 { font-size: 32px; margin: 0; }
.lps-breadcrumb { color: var(--lps-muted); font-size: 14px; margin-top: 6px; }

article.lps-post { margin-bottom: 40px; }
article.lps-post h2 { font-size: 26px; }

/* ==========================================================================
   15. Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .lps-hero__inner { grid-template-columns: 1fr; }
  .lps-hero__visual { max-width: 480px; }
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(3,1fr); }
  .lps-cats { grid-template-columns: repeat(2,1fr); }
  .lps-footer__grid { grid-template-columns: 1fr 1fr; }
  .lps-layout { grid-template-columns: 1fr; }
}
@media (max-width: 860px) {
  .lps-search { display: none; }
  .lps-menu-toggle { display: inline-flex; }
  .lps-nav .lps-container { flex-direction: column; align-items: stretch; }
  .lps-nav ul { display: none; flex-direction: column; }
  .lps-nav ul.lps-nav--open { display: flex; }
  .lps-nav ul li ul { position: static; box-shadow: none; }
  .lps-usp__grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2,1fr); gap: 14px; }
  .lps-cats { grid-template-columns: 1fr; }
  .lps-footer__grid { grid-template-columns: 1fr; }
  .lps-hero__stats { grid-template-columns: repeat(3,1fr); }
  .lps-section { padding: 44px 0; }
  .lps-cta { padding: 30px 20px; }
}

/* ==========================================================================
   16. Content Page Templates (About / Contact / FAQ / Policies)
   ========================================================================== */

/* generic prose page */
.lps-prose { max-width: 820px; }
.lps-prose h2 { font-size: 26px; margin-top: 1.6em; }
.lps-prose h3 { font-size: 20px; margin-top: 1.4em; }
.lps-prose ul { padding-left: 20px; }
.lps-prose ul li { margin-bottom: 8px; }

/* About */
.lps-about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; }
.lps-about-card {
  background: var(--lps-bg-soft); border: 1px solid var(--lps-border);
  border-radius: var(--lps-radius); padding: 28px;
}
.lps-about-stats { display: grid; grid-template-columns: repeat(2,1fr); gap: 18px; }
.lps-about-stat { text-align: center; padding: 18px; background:#fff; border:1px solid var(--lps-border); border-radius: var(--lps-radius-sm); }
.lps-about-stat strong { display:block; font-family: var(--lps-font-head); font-size: 30px; color: var(--lps-primary); }
.lps-about-stat span { font-size: 13px; color: var(--lps-muted); }

.lps-feature-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
.lps-feature {
  background:#fff; border:1px solid var(--lps-border); border-radius: var(--lps-radius);
  padding: 24px; box-shadow: var(--lps-shadow);
}
.lps-feature .lps-ico { width: 32px; height: 32px; stroke: var(--lps-primary); margin-bottom: 10px; }
.lps-feature h3 { font-size: 18px; margin-bottom: 6px; }
.lps-feature p { color: var(--lps-muted); font-size: 14.5px; margin: 0; }

/* Contact */
.lps-contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 40px; align-items: start; }
.lps-contact-card {
  background: var(--lps-bg-soft); border: 1px solid var(--lps-border);
  border-radius: var(--lps-radius); padding: 26px;
}
.lps-contact-row { display:flex; gap:14px; align-items:flex-start; padding: 12px 0; border-bottom: 1px dashed var(--lps-border); }
.lps-contact-row:last-child { border-bottom: none; }
.lps-contact-row .lps-ico { width: 24px; height: 24px; stroke: var(--lps-primary); flex-shrink: 0; margin-top: 2px; }
.lps-contact-row strong { display:block; font-size: 14px; }
.lps-contact-row a, .lps-contact-row span { color: var(--lps-muted); font-size: 14px; }
.lps-contact-form { background:#fff; border:1px solid var(--lps-border); border-radius: var(--lps-radius); padding: 28px; }
.lps-map { border-radius: var(--lps-radius); overflow: hidden; margin-top: 24px; border:1px solid var(--lps-border); }
.lps-map iframe { width:100%; height: 320px; border:0; display:block; }

/* FAQ accordion */
.lps-faq { max-width: 860px; margin: 0 auto; }
.lps-faq-item { border:1px solid var(--lps-border); border-radius: var(--lps-radius-sm); margin-bottom: 12px; background:#fff; overflow:hidden; }
.lps-faq-q {
  width:100%; text-align:left; background:none; border:none; cursor:pointer;
  padding: 16px 20px; font-size: 16px; font-weight: 600; font-family: var(--lps-font-head);
  color: var(--lps-dark); display:flex; justify-content: space-between; align-items:center; gap: 16px;
}
.lps-faq-q:hover { background: var(--lps-bg-soft); }
.lps-faq-q .lps-faq-ico { transition: transform .2s ease; flex-shrink:0; color: var(--lps-primary); font-size: 22px; line-height: 1; }
.lps-faq-item.is-open .lps-faq-ico { transform: rotate(45deg); }
.lps-faq-a { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.lps-faq-a__inner { padding: 0 20px 18px; color: var(--lps-muted); font-size: 15px; }

@media (max-width: 860px) {
  .lps-about-grid, .lps-contact-grid { grid-template-columns: 1fr; }
  .lps-feature-grid { grid-template-columns: 1fr; }
}
/* Shrink the energy/bolt and star icons in the hero */
.lps-hero__eyebrow .lps-ico { width: 14px; height: 14px; flex-shrink: 0; }
.lps-hero__visual .lps-ico  { width: 16px; height: 16px; flex-shrink: 0; }
.lps-footer__contact .lps-ico { width: 16px; height: 16px; }