/*
Theme Name: Lab Peptide Supply
Theme URI: https://labpeptidesupply.com
Author: Lab Peptide Supply
Author URI: https://labpeptidesupply.com
Description: Black and gold WooCommerce theme for Lab Peptide Supply with Elementor Free compatible editable header and footer templates.
Version: 1.0.0
Requires at least: 6.4
Tested up to: 6.9
Requires PHP: 7.4
Text Domain: lab-peptide-supply
*/

:root {
  --lps-black: #000000;
  --lps-ink: #141821;
  --lps-muted: #5c6470;
  --lps-panel: #f2f3f5;
  --lps-border: #d9d9d9;
  --lps-gold: #e4ae37;
  --lps-gold-deep: #8d6a14;
  --lps-gold-soft: #f5d777;
  --lps-white: #ffffff;
  --lps-max: 1200px;
  --lps-font: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--lps-white);
  color: var(--lps-ink);
  font-family: var(--lps-font);
  font-size: 16px;
  line-height: 1.58;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--lps-gold);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--lps-gold-soft);
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.lps-announcement {
  min-height: 38px;
  overflow: hidden;
  padding: 8px 16px;
  background: var(--lps-gold);
  color: #0b0b0b;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.lps-marquee {
  width: max-content;
  min-width: 100%;
  display: flex;
  gap: 68px;
  white-space: nowrap;
  animation: lps-marquee 18s linear infinite;
}

.lps-marquee span {
  display: inline-block;
}

@keyframes lps-marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-33.333%);
  }
}

.lps-header-shell,
.lps-header {
  background: var(--lps-black);
}

.lps-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.lps-header-inner {
  max-width: 1540px;
  margin: 0 auto;
  min-height: 80px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 26px;
}

.lps-logo-link {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.lps-logo {
  width: 184px;
  display: block;
}

.lps-nav ul,
.lps-footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.lps-nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.lps-nav a {
  position: relative;
  color: var(--lps-white);
  font-size: 16px;
  font-weight: 800;
}

.lps-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 2px;
  background: var(--lps-gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 160ms ease;
}

.lps-nav .current-menu-item > a,
.lps-nav a:hover,
.lps-nav a:focus {
  color: var(--lps-gold);
}

.lps-nav .current-menu-item > a::after,
.lps-nav a:hover::after,
.lps-nav a:focus::after {
  transform: scaleX(1);
}

.lps-header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 22px;
}

.lps-icon-link,
.lps-menu-toggle,
.lps-search-toggle {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: var(--lps-white);
  cursor: pointer;
  position: relative;
}

.lps-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: block;
}

.lps-cart-count {
  position: absolute;
  top: 4px;
  right: 1px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--lps-gold);
  color: #111111;
  font-size: 11px;
  font-weight: 900;
  line-height: 18px;
  text-align: center;
}

.lps-menu-toggle {
  display: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
}

.lps-menu-toggle[aria-expanded="true"] {
  border-color: var(--lps-gold);
  box-shadow: inset 0 0 0 1px var(--lps-gold);
}

.lps-menu-bars,
.lps-menu-bars::before,
.lps-menu-bars::after {
  display: block;
  width: 23px;
  height: 3px;
  border-radius: 4px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.lps-menu-bars::before,
.lps-menu-bars::after {
  content: "";
  position: absolute;
}

.lps-menu-bars::before {
  transform: translateY(-8px);
}

.lps-menu-bars::after {
  transform: translateY(8px);
}

.lps-menu-toggle[aria-expanded="true"] .lps-menu-bars {
  background: transparent;
}

.lps-menu-toggle[aria-expanded="true"] .lps-menu-bars::before {
  transform: rotate(45deg);
}

.lps-menu-toggle[aria-expanded="true"] .lps-menu-bars::after {
  transform: rotate(-45deg);
}

.lps-search-panel {
  display: none;
  background: #070707;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.lps-search-panel.is-open {
  display: block;
}

.lps-search-form {
  max-width: var(--lps-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  padding: 18px;
}

.lps-search-form input[type="search"],
.search .search-field,
.woocommerce input[type="search"] {
  min-height: 46px;
  border: 1px solid var(--lps-border);
  border-radius: 0;
  padding: 12px 14px;
  background: #ffffff;
  color: var(--lps-ink);
}

.lps-btn,
.button,
button.button,
input[type="submit"],
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit,
.wp-element-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 13px 30px;
  border: 1px solid var(--lps-gold);
  border-radius: 1px;
  background: var(--lps-gold);
  color: #101010;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: none;
  cursor: pointer;
}

.lps-btn:hover,
.lps-btn:focus,
.button:hover,
.button:focus,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover {
  background: #060606;
  color: var(--lps-gold);
  border-color: var(--lps-gold);
}

.lps-btn-gradient,
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button {
  background: linear-gradient(90deg, var(--lps-gold) 0%, var(--lps-gold-deep) 54%, #060606 100%);
  color: #ffffff;
}

.lps-btn-outline {
  background: transparent;
  color: var(--lps-gold);
}

.lps-main {
  min-height: 55vh;
}

.lps-home {
  background: var(--lps-black);
  color: var(--lps-white);
}

.lps-container {
  max-width: var(--lps-max);
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}

.lps-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1.07fr);
  align-items: center;
  gap: 58px;
  padding-top: 86px;
  padding-bottom: 70px;
}

.lps-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 22px;
  color: var(--lps-gold);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.lps-eyebrow::before {
  content: "";
  width: 2px;
  height: 24px;
  background: var(--lps-gold);
}

.lps-hero h1 {
  margin: 0 0 20px;
  color: var(--lps-white);
  font-size: clamp(50px, 5.4vw, 76px);
  line-height: 0.98;
  font-weight: 900;
  text-transform: uppercase;
}

.lps-gold-text {
  color: var(--lps-gold);
}

.lps-hero p {
  max-width: 590px;
  margin: 0 0 30px;
  color: #f1f1f1;
  font-size: 19px;
  line-height: 1.5;
  font-weight: 600;
}

.lps-hero-media img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  animation: lps-hero-float 5.5s ease-in-out infinite;
}

@keyframes lps-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.lps-band {
  padding: 76px 0;
}

.lps-band-dark {
  background: var(--lps-black);
  color: var(--lps-white);
}

.lps-band-light {
  background: var(--lps-white);
  color: var(--lps-ink);
}

.lps-section-heading {
  margin: 0 0 34px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.1;
  font-weight: 900;
  text-transform: uppercase;
}

.lps-underline-heading::after {
  content: "";
  display: block;
  width: 62px;
  height: 3px;
  margin-top: 12px;
  background: var(--lps-gold);
}

.lps-icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.lps-icon-feature {
  min-height: 185px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: #050505;
  overflow: hidden;
}

.lps-icon-feature img {
  width: 100%;
  height: 96px;
  margin-bottom: 18px;
  object-fit: cover;
  opacity: 0.72;
}

.lps-icon-feature h3 {
  margin: 0;
  color: var(--lps-white);
  font-size: 20px;
}

.lps-section-copy {
  max-width: 760px;
  color: inherit;
  font-size: 18px;
}

.lps-feature-grid,
.lps-category-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.lps-feature {
  border: 1px solid rgba(228, 174, 55, 0.45);
  padding: 30px;
  background: #070707;
}

.lps-feature strong {
  display: block;
  margin-bottom: 10px;
  color: var(--lps-gold);
  font-size: 20px;
}

.lps-category {
  min-height: 250px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #111111;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--lps-white);
  transition: transform 180ms ease, border-color 180ms ease;
}

.lps-category:hover,
.lps-category:focus {
  transform: translateY(-4px);
  border-color: var(--lps-gold);
}

.lps-category h3 {
  margin: 0 0 8px;
  color: var(--lps-white);
  font-size: 24px;
}

.lps-page-hero {
  background: #000000;
  color: #ffffff;
  padding: 118px 0;
}

.lps-page-hero h1,
.lps-page h1,
.woocommerce-products-header__title.page-title,
.woocommerce div.product .product_title,
.woocommerce-account h1,
.woocommerce-cart h1,
.woocommerce-checkout h1 {
  margin: 0;
  color: inherit;
  font-size: clamp(36px, 5vw, 58px);
  line-height: 1.1;
  font-weight: 950;
}

.lps-page {
  padding: 64px 0;
}

.lps-rich-text {
  max-width: 900px;
}

.lps-rich-text h2 {
  margin-top: 38px;
  font-size: 30px;
}

.lps-contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: start;
}

.lps-contact-panel {
  background: #101010;
  color: #ffffff;
  padding: 36px;
}

.lps-contact-panel h2 {
  margin-top: 0;
  color: #ffffff;
}

.lps-contact-panel a {
  color: var(--lps-gold);
}

.lps-form-shell {
  background: var(--lps-panel);
  padding: 36px;
}

.lps-form-shell input,
.lps-form-shell select,
.lps-form-shell textarea,
.woocommerce input.input-text,
.woocommerce textarea,
.woocommerce select,
.woocommerce .select2-container .select2-selection--single {
  width: 100%;
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  background: #f7f8f8;
}

.lps-form-shell textarea {
  min-height: 150px;
}

.lps-form-row {
  margin-bottom: 18px;
}

.woocommerce,
.woocommerce-page {
  background: #ffffff;
}

.post-type-archive-product .site-content,
.tax-product_cat .site-content {
  background: #000000;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  color: #ffffff;
}

.woocommerce .woocommerce-ordering select {
  width: auto;
  min-width: 170px;
  background: #000000;
  color: #ffffff;
  border: 0;
}

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  margin: 0;
  padding: 0 0 80px;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: none;
  width: auto;
  margin: 0;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  text-align: center;
  overflow: hidden;
}

.woocommerce ul.products li.product .astra-shop-thumbnail-wrap,
.woocommerce ul.products li.product > a:first-child {
  display: block;
  background: #000000;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  margin: 0;
  object-fit: contain;
  padding: 20px 0;
  background: #000000;
}

.woocommerce span.onsale {
  top: 20px;
  left: 20px;
  right: auto;
  min-width: 54px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #ffffff;
  color: #273142;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.3;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 20px 14px 8px;
  color: #151515;
  font-size: 21px;
  line-height: 1.2;
  font-weight: 850;
}

.woocommerce ul.products li.product .price {
  color: var(--lps-gold);
  font-size: 17px;
  font-weight: 900;
}

.woocommerce ul.products li.product .price del {
  color: #d9bd70;
  opacity: 1;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .button {
  margin: 12px auto 22px;
  min-width: 150px;
  background: #000000;
  color: var(--lps-gold);
  border-color: #000000;
}

.woocommerce .products-wrap {
  padding-top: 170px;
}

.woocommerce-products-header {
  max-width: var(--lps-max);
  margin: 0 auto;
  padding: 105px 18px 0;
  color: #ffffff;
}

.woocommerce-products-header__title.page-title {
  color: #ffffff;
}

.woocommerce div.product {
  max-width: var(--lps-max);
  margin: 0 auto;
  padding: 90px 18px 84px;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image {
  background: #000000;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--lps-gold);
  font-size: 24px;
  font-weight: 900;
}

.woocommerce div.product p.price del {
  color: #a17d26;
}

.woocommerce div.product p.price ins {
  text-decoration: none;
}

.woocommerce div.product form.cart {
  display: flex;
  gap: 10px;
  align-items: stretch;
  margin-top: 28px;
}

.woocommerce div.product form.cart div.quantity {
  margin: 0;
}

.woocommerce .quantity .qty {
  width: 98px;
  height: 54px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  text-align: center;
}

.woocommerce div.product form.cart .button {
  min-height: 54px;
  background: #000000;
  color: var(--lps-gold);
  border-color: #000000;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-top-color: var(--lps-gold);
}

.woocommerce-message::before,
.woocommerce-info::before {
  color: var(--lps-gold);
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content,
.woocommerce-cart .woocommerce,
.woocommerce-checkout .woocommerce,
.woocommerce-account .woocommerce {
  max-width: var(--lps-max);
  margin: 0 auto;
}

.woocommerce-cart .entry-content,
.woocommerce-checkout .entry-content,
.woocommerce-account .entry-content {
  padding: 64px 18px 76px;
}

.woocommerce-cart table.cart td.actions .coupon .input-text {
  min-width: 420px;
  min-height: 54px;
}

.woocommerce-cart .cart-collaterals .cart_totals {
  border: 1px solid #dedede;
  padding: 24px 30px 18px;
}

.woocommerce-cart .cart-collaterals .cart_totals h2 {
  color: var(--lps-gold);
  text-transform: uppercase;
}

.woocommerce-checkout form.checkout {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 24px;
}

.woocommerce-checkout #customer_details,
.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review,
.woocommerce-account .woocommerce-form,
.woocommerce-account .woocommerce-MyAccount-content,
.woocommerce-account .woocommerce-MyAccount-navigation {
  border: 1px solid #dedede;
  padding: 24px 30px;
  background: #ffffff;
}

.woocommerce-checkout #order_review_heading,
.woocommerce-checkout #order_review {
  grid-column: 2;
}

.woocommerce-checkout #customer_details {
  grid-row: 1 / span 3;
}

.woocommerce-checkout #payment {
  background: #f3f4f6;
  border-radius: 0;
}

.woocommerce-checkout #payment div.payment_box {
  background: #ffffff;
}

.woocommerce-checkout #payment div.payment_box::before {
  border-bottom-color: #ffffff;
}

.woocommerce-account .u-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.lps-footer {
  background: #000000;
  color: #ffffff;
  padding: 58px 0 34px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.lps-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.7fr 0.9fr 0.8fr;
  gap: 42px;
}

.lps-footer-logo {
  width: 220px;
  margin-bottom: 12px;
}

.lps-footer h2,
.lps-footer h3 {
  margin: 0 0 16px;
  color: #ffffff;
  font-size: 19px;
}

.lps-footer p,
.lps-footer li {
  margin: 0 0 9px;
  color: #eeeeee;
}

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

.lps-footer a {
  color: #eeeeee;
}

.lps-products-section {
  padding-top: 60px;
}

.lps-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.lps-product-card {
  background: #ffffff;
  color: var(--lps-ink);
  border: 1px solid rgba(255, 255, 255, 0.75);
  overflow: hidden;
}

.lps-product-image {
  display: block;
  background: #000000;
}

.lps-product-image img {
  display: block;
  width: 100%;
  height: 272px;
  object-fit: contain;
  padding: 20px 0 18px;
}

.lps-product-info {
  padding: 22px 26px 26px;
}

.lps-product-title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 12px;
}

.lps-product-title-row h3 {
  margin: 0;
  color: #000000;
  font-size: 25px;
  line-height: 1.15;
  font-weight: 700;
}

.lps-product-title-row h3 a {
  color: #000000;
}

.lps-product-title-row span {
  flex: 0 0 auto;
  padding: 4px 9px;
  border: 1px solid #aaa;
  border-radius: 8px;
  color: var(--lps-gold);
  font-weight: 800;
  line-height: 1.1;
}

.lps-product-info p {
  min-height: 80px;
  margin: 0 0 22px;
  color: #252c35;
  font-size: 15px;
  line-height: 1.42;
}

.lps-product-buy {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 14px;
}

.lps-product-buy .price {
  color: var(--lps-gold);
  font-size: 19px;
  font-weight: 700;
}

.lps-product-buy del {
  color: #d3a84a;
}

.lps-product-buy ins {
  text-decoration: none;
}

.lps-product-buy .lps-btn {
  background: #000000;
  color: var(--lps-gold);
  border-color: #000000;
  min-width: 142px;
  padding-left: 18px;
  padding-right: 18px;
}

.lps-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.lps-process-card {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: #050505;
  padding-bottom: 22px;
}

.lps-process-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.lps-process-card h3,
.lps-process-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.lps-process-card h3 {
  margin: 18px 0 8px;
  color: #ffffff;
}

.lps-process-card p {
  margin: 0;
  color: #d9d9d9;
}

.lps-final-copy {
  margin-top: 64px;
}

.lps-final-copy h2 {
  color: #ffffff;
}

.lps-footer a:hover,
.lps-footer a:focus {
  color: var(--lps-gold);
}

.lps-footer-bottom {
  margin-top: 36px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: #c9c9c9;
  font-size: 14px;
}

.lps-sticky-atc {
  display: none;
}

.lps-admin-card {
  max-width: 980px;
  padding: 24px;
  margin-top: 20px;
  background: #ffffff;
  border: 1px solid #dcdcde;
}

@media (max-width: 1024px) {
  .lps-header-inner {
    grid-template-columns: 180px 1fr auto;
  }

  .lps-nav ul {
    gap: 18px;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lps-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lps-icon-feature-grid,
  .lps-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 921px) {
  .lps-announcement {
    justify-content: flex-start;
    min-height: 35px;
    overflow: hidden;
  }

  .lps-header-inner {
    min-height: 65px;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 0 10px;
  }

  .lps-logo {
    width: 152px;
  }

  .lps-nav {
    display: none;
    grid-column: 1 / -1;
    margin: 0 -10px;
  }

  .lps-header.is-open .lps-nav {
    display: block;
  }

  .lps-nav ul {
    display: block;
    background: #000000;
  }

  .lps-nav li a {
    display: block;
    padding: 10px 20px;
  }

  .lps-nav .current-menu-item > a,
  .lps-nav li a:hover,
  .lps-nav li a:focus {
    background: var(--lps-gold);
    color: #111111;
  }

  .lps-nav a::after {
    display: none;
  }

  .lps-header-actions {
    gap: 8px;
  }

  .lps-icon-link,
  .lps-search-toggle,
  .lps-menu-toggle {
    width: 38px;
    height: 38px;
  }

  .lps-menu-toggle {
    display: inline-flex;
  }

  .lps-hero {
    min-height: 760px;
    grid-template-columns: 1fr;
    gap: 20px;
    padding-top: 180px;
    text-align: center;
  }

  .lps-eyebrow {
    justify-content: center;
  }

  .lps-hero p {
    margin-left: auto;
    margin-right: auto;
    font-size: 18px;
  }

  .lps-btn {
    width: 100%;
  }

  .lps-feature-grid,
  .lps-icon-feature-grid,
  .lps-category-grid,
  .lps-process-grid,
  .lps-contact-grid,
  .lps-footer-grid,
  .woocommerce-checkout form.checkout,
  .woocommerce-account .u-columns {
    grid-template-columns: 1fr;
  }

  .woocommerce .products-wrap {
    padding-top: 90px;
  }

  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .woocommerce-checkout #customer_details,
  .woocommerce-checkout #order_review_heading,
  .woocommerce-checkout #order_review {
    grid-column: auto;
    grid-row: auto;
  }

  .woocommerce-cart table.cart td.actions .coupon .input-text {
    min-width: 100%;
  }
}

@media (max-width: 640px) {
  .lps-hero {
    padding-top: 300px;
    padding-bottom: 44px;
  }

  .lps-hero h1 {
    font-size: 45px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .lps-product-grid {
    grid-template-columns: 1fr;
  }

  .lps-product-buy {
    grid-template-columns: 1fr;
  }

  .lps-product-buy .lps-btn {
    width: 100%;
  }

  .woocommerce ul.products li.product .button {
    width: calc(100% - 42px);
  }

  .woocommerce div.product {
    padding-top: 42px;
  }

  .woocommerce div.product form.cart {
    margin-bottom: 74px;
  }

  .lps-sticky-atc {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 80;
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    background: #000000;
    border-top: 1px solid var(--lps-gold);
  }

  .lps-sticky-atc strong {
    color: #ffffff;
    line-height: 1.2;
  }

  .lps-sticky-atc .price {
    display: block;
    color: var(--lps-gold);
    font-size: 14px;
  }

  .lps-sticky-atc .lps-btn {
    width: auto;
    min-height: 42px;
    padding: 12px 18px;
    white-space: nowrap;
  }
}

/* Refined storefront presentation. */
.lps-marquee {
  gap: 0;
  animation-duration: 28s;
}

.lps-marquee-group {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
}

.lps-marquee-group span {
  display: inline-flex;
  align-items: center;
  padding: 0 34px;
}

.lps-marquee-group span::after {
  content: "";
  width: 5px;
  height: 5px;
  margin-left: 34px;
  border-radius: 50%;
  background: #0b0b0b;
}

.lps-home-v2 {
  overflow: hidden;
}

.lps-hero-shell {
  position: relative;
  background: #000000;
}

.lps-home-v2 .lps-hero {
  min-height: 690px;
  grid-template-columns: minmax(0, 0.82fr) minmax(520px, 1.18fr);
  gap: 44px;
  padding-top: 54px;
  padding-bottom: 58px;
}

.lps-home-v2 .lps-hero-copy {
  position: relative;
  z-index: 2;
}

.lps-home-v2 .lps-hero h1 {
  font-size: 68px;
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: 0;
}

.lps-home-v2 .lps-hero p {
  max-width: 560px;
  font-size: 18px;
  font-weight: 500;
}

.lps-home-v2 .lps-hero-media {
  position: relative;
}

.lps-home-v2 .lps-hero-media::after {
  content: "";
  position: absolute;
  inset: auto 10% 5% 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(228, 174, 55, 0.85), transparent);
}

.lps-home-v2 .lps-hero-media img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  animation: lps-hero-reveal 900ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

@keyframes lps-hero-reveal {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.lps-trust-rail {
  border-top: 1px solid rgba(228, 174, 55, 0.38);
  border-bottom: 1px solid rgba(255, 255, 255, 0.11);
  background: #080808;
}

.lps-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-top: 0;
  padding-bottom: 0;
}

.lps-trust-grid > div {
  position: relative;
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.lps-trust-grid > div:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.lps-trust-grid > div::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 24px;
  width: 28px;
  height: 2px;
  background: var(--lps-gold);
}

.lps-trust-grid strong {
  margin-top: 10px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.lps-trust-grid span {
  color: #aeb0b4;
  font-size: 13px;
}

.lps-home-v2 .lps-products-section {
  padding: 88px 0 104px;
  background: #050505;
}

.lps-section-intro {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 38px;
}

.lps-section-intro > div > span,
.lps-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--lps-gold);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lps-section-intro .lps-section-heading {
  margin-bottom: 0;
  color: #ffffff;
  font-size: 42px;
  letter-spacing: 0;
}

.lps-section-intro > a {
  margin-bottom: 12px;
  padding-bottom: 4px;
  border-bottom: 1px solid var(--lps-gold);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}

.lps-products-section .lps-product-grid {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 30px !important;
  align-items: stretch;
}

.lps-products-section .lps-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  border: 1px solid #272727;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease, border-color 180ms ease;
}

.lps-products-section .lps-product-card:hover {
  transform: translateY(-5px);
  border-color: var(--lps-gold);
}

.lps-products-section .lps-product-image {
  position: relative;
  height: 330px !important;
  overflow: hidden;
  background: #000000;
}

.lps-products-section .lps-product-image img {
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  object-fit: cover !important;
  object-position: center;
  transition: transform 300ms ease;
}

.lps-products-section .lps-product-card:hover .lps-product-image img {
  transform: scale(1.025);
}

.lps-products-section .lps-product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 24px 25px 26px;
}

.lps-products-section .lps-product-title-row h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
}

.lps-products-section .lps-product-info > p {
  min-height: 66px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.5;
}

.lps-products-section .lps-product-buy {
  margin-top: auto;
}

.lps-products-section .lps-product-buy .lps-btn {
  min-height: 44px;
  min-width: 132px;
  padding: 11px 16px;
  font-size: 13px;
}

.lps-quality-band {
  padding: 92px 0 104px;
  border-top: 1px solid rgba(228, 174, 55, 0.24);
  background: #0a0a0a;
  color: #ffffff;
}

.lps-quality-band .lps-section-heading {
  max-width: 760px;
  margin-bottom: 38px;
  font-size: 42px;
  letter-spacing: 0;
}

.lps-quality-band .lps-feature {
  min-height: 230px;
  padding: 34px;
  border-color: rgba(228, 174, 55, 0.36);
  background: #050505;
}

.lps-quality-band .lps-feature > span {
  display: block;
  margin-bottom: 34px;
  color: rgba(228, 174, 55, 0.55);
  font-size: 13px;
  font-weight: 800;
}

.lps-quality-band .lps-feature strong {
  color: var(--lps-gold);
  font-size: 20px;
}

.lps-quality-band .lps-feature p {
  margin-bottom: 0;
  color: #d4d4d4;
}

.woocommerce ul.products {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 1 / 1;
  padding: 0;
  object-fit: cover;
}

.lps-footer {
  position: relative;
  left: auto;
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 64px 0 30px;
  background: #000000;
}

.lps-footer .lps-container {
  width: 100%;
  max-width: var(--lps-max);
}

.lps-elementor-header-shell,
.lps-elementor-footer-shell,
.lps-elementor-header-shell > .elementor,
.lps-elementor-footer-shell > .elementor,
.lps-elementor-header-shell .elementor-section,
.lps-elementor-footer-shell .elementor-section,
.lps-elementor-header-shell .elementor-container,
.lps-elementor-footer-shell .elementor-container,
.lps-elementor-header-shell .elementor-column,
.lps-elementor-footer-shell .elementor-column,
.lps-elementor-header-shell .elementor-widget-wrap,
.lps-elementor-footer-shell .elementor-widget-wrap,
.lps-elementor-header-shell .elementor-widget,
.lps-elementor-footer-shell .elementor-widget,
.lps-elementor-header-shell .elementor-widget-container,
.lps-elementor-footer-shell .elementor-widget-container,
.lps-elementor-header-shell .elementor-shortcode,
.lps-elementor-footer-shell .elementor-shortcode {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

@media (max-width: 1024px) {
  .lps-home-v2 .lps-hero {
    grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  }

  .lps-home-v2 .lps-hero h1 {
    font-size: 56px;
  }

  .lps-trust-grid,
  .lps-footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 921px) {
  .lps-home-v2 .lps-hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-top: 70px;
    padding-bottom: 44px;
    text-align: left;
  }

  .lps-home-v2 .lps-eyebrow {
    justify-content: flex-start;
  }

  .lps-home-v2 .lps-hero p {
    margin-left: 0;
    margin-right: 0;
  }

  .lps-home-v2 .lps-hero .lps-btn {
    width: auto;
  }

  .lps-products-section .lps-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 640px) {
  .lps-announcement {
    font-size: 12px;
  }

  .lps-marquee-group span {
    padding: 0 20px;
  }

  .lps-marquee-group span::after {
    margin-left: 20px;
  }

  .lps-home-v2 .lps-hero {
    padding-top: 48px;
  }

  .lps-home-v2 .lps-hero h1 {
    font-size: 43px;
  }

  .lps-home-v2 .lps-hero p {
    font-size: 16px;
  }

  .lps-home-v2 .lps-hero-media {
    margin: 4px -18px 0;
  }

  .lps-trust-grid,
  .lps-footer-grid {
    grid-template-columns: 1fr;
  }

  .lps-trust-grid > div {
    min-height: 96px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .lps-section-intro {
    align-items: flex-start;
    flex-direction: column;
  }

  .lps-section-intro .lps-section-heading,
  .lps-quality-band .lps-section-heading {
    font-size: 34px;
  }

  .lps-products-section .lps-product-grid {
    grid-template-columns: 1fr !important;
  }

  .lps-products-section .lps-product-image {
    height: 340px !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lps-marquee,
  .lps-home-v2 .lps-hero-media img {
    animation: none;
  }
}

/* Inner pages and documentation library. */
.lps-content-page,
.lps-shop-fallback {
  padding-top: 0;
  padding-bottom: 0;
  background: #ffffff;
  color: var(--lps-ink);
}

.lps-inner-intro {
  max-width: 800px;
  padding-top: 72px;
  padding-bottom: 48px;
}

.lps-inner-intro-wide {
  max-width: var(--lps-max);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  gap: 72px;
  align-items: end;
  padding-top: 82px;
  padding-bottom: 64px;
}

.lps-inner-intro > span,
.lps-inner-intro > div > span,
.lps-contact-copy > span,
.lps-statement-band span {
  display: block;
  margin-bottom: 12px;
  color: var(--lps-gold-deep);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.lps-inner-intro h2,
.lps-contact-copy h2 {
  margin: 0;
  color: #0b0b0b;
  font-size: 44px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
}

.lps-inner-intro p {
  margin: 0 0 18px;
  color: #3d424a;
  font-size: 17px;
  line-height: 1.7;
}

.lps-about-visual {
  padding: 34px 0;
  background: #050505;
}

.lps-about-visual img {
  width: 100%;
  max-height: 570px;
  display: block;
  object-fit: contain;
}

.lps-values-section,
.lps-document-guide,
.lps-contact-options {
  padding-top: 86px;
  padding-bottom: 92px;
}

.lps-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.lps-info-grid article {
  min-height: 240px;
  padding: 32px;
  border: 1px solid #dedede;
  background: #ffffff;
}

.lps-info-grid article > span {
  display: block;
  margin-bottom: 42px;
  color: var(--lps-gold-deep);
  font-size: 13px;
  font-weight: 800;
}

.lps-info-grid h3 {
  margin: 0 0 12px;
  color: #0b0b0b;
  font-size: 20px;
  line-height: 1.3;
}

.lps-info-grid p {
  margin: 0 0 14px;
  color: #565d66;
}

.lps-info-grid a {
  color: var(--lps-gold-deep);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.lps-statement-band {
  padding: 84px 0 92px;
  background: #070707;
  color: #ffffff;
}

.lps-statement-band h2 {
  max-width: 980px;
  margin: 0;
  color: #ffffff;
  font-size: 38px;
  line-height: 1.35;
  font-weight: 700;
  letter-spacing: 0;
}

.lps-document-guide {
  padding-top: 0;
}

.lps-document-library {
  padding-top: 12px;
  padding-bottom: 96px;
}

.lps-document-library .lps-section-heading {
  color: #0b0b0b;
  font-size: 38px;
}

.lps-document-list {
  border-top: 2px solid #0b0b0b;
}

.lps-document-row {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 14px 18px;
  border-bottom: 1px solid #dedede;
}

.lps-document-row strong {
  color: #111111;
  font-size: 16px;
}

.lps-document-row span {
  color: #666c74;
  font-size: 14px;
}

.lps-document-row a {
  min-width: 108px;
  padding: 9px 14px;
  border: 1px solid #111111;
  color: #111111;
  font-size: 13px;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.lps-document-row a:hover,
.lps-document-row a:focus {
  border-color: var(--lps-gold);
  background: var(--lps-gold);
  color: #111111;
}

.lps-document-note {
  margin: 24px 0 0;
  color: #555b63;
}

.lps-contact-options {
  padding-top: 0;
}

.lps-contact-form-section {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(420px, 1.22fr);
  gap: 68px;
  align-items: start;
  padding-top: 78px;
  padding-bottom: 96px;
  border-top: 1px solid #dedede;
}

.lps-contact-copy p {
  color: #565d66;
  font-size: 16px;
  line-height: 1.7;
}

.lps-contact-form-section .lps-form-shell {
  padding: 34px;
  border: 1px solid #dedede;
  background: #f5f5f4;
}

.lps-form-shell label {
  display: block;
  color: #20242a;
  font-size: 14px;
  font-weight: 700;
}

.lps-form-shell label input,
.lps-form-shell label select,
.lps-form-shell label textarea {
  margin-top: 7px;
}

.lps-honeypot {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
}

.lps-form-message,
.lps-notice {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-left: 3px solid var(--lps-gold);
  background: #f2f2f0;
  color: #20242a;
}

.lps-form-message.is-error {
  border-left-color: #a52b2b;
}

.lps-shop-fallback .lps-container {
  padding-bottom: 96px;
}

.lps-shop-fallback .lps-inner-intro {
  margin: 0;
}

.lps-shop-fallback .woocommerce ul.products {
  padding-bottom: 0;
}

@media (max-width: 921px) {
  .lps-inner-intro-wide,
  .lps-contact-form-section {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .lps-info-grid {
    grid-template-columns: 1fr;
  }

  .lps-info-grid article {
    min-height: 0;
  }

  .lps-info-grid article > span {
    margin-bottom: 24px;
  }
}

@media (max-width: 640px) {
  .lps-inner-intro,
  .lps-inner-intro-wide {
    padding-top: 54px;
    padding-bottom: 42px;
  }

  .lps-inner-intro h2,
  .lps-contact-copy h2 {
    font-size: 34px;
  }

  .lps-values-section,
  .lps-document-guide,
  .lps-contact-options,
  .lps-contact-form-section {
    padding-top: 56px;
    padding-bottom: 64px;
  }

  .lps-document-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 18px 0;
  }

  .lps-document-row a {
    width: 100%;
    margin-top: 8px;
  }

  .lps-contact-form-section .lps-form-shell {
    padding: 22px;
  }

  .lps-statement-band h2 {
    font-size: 28px;
  }
}
