/*
Theme Name: LapelPins - Burnt Yellow & Black Edition
Theme URI: https://lapelpins.cc
Author: LapelPins Team
Description: Custom e-commerce & corporate manufacturer landing page for LapelPins.cc in burnt yellow (#d97706), crisp white, and deep black (#000000), featuring factory-direct catalog, interactive customizer, and conversion pop-ups.
Version: 2.1.0
Text Domain: lapelpins
*/

/* ==========================================================================
   1. Root Variables (Burnt Yellow / Amber Gold, Black, White)
   ========================================================================== */
:root {
  --lp-primary: #d97706;         /* Amarillo Quemado (Amber 600) */
  --lp-primary-hover: #b45309;   /* Amarillo Quemado Profundo (Amber 700) */
  --lp-primary-light: #fffbeb;   /* Tono ámbar sutil para fondos activos */
  --lp-primary-border: #fde68a;  /* Borde ámbar claro */
  --lp-primary-dark: #92400e;    /* Texto ámbar oscuro para lectura en fondos claros */
  
  --lp-black: #000000;           /* Negro Puro */
  --lp-dark: #000000;            /* Negro para encabezados */
  --lp-navy: #18181b;            /* Negro Carbón / Zinc 900 */
  --lp-charcoal: #27272a;        /* Borde oscuro y detalles */
  
  --lp-text: #18181b;            /* Texto principal */
  --lp-text-light: #52525b;      /* Texto secundario */
  --lp-text-muted: #71717a;      /* Texto suave */
  
  --lp-bg: #ffffff;              /* Blanco Puro */
  --lp-bg-alt: #fbfbfb;          /* Blanco de contraste suave */
  --lp-bg-card: #ffffff;
  --lp-border: #e4e4e7;          /* Borde neutro */
  --lp-border-hover: #000000;
  
  --lp-silver: #a1a1aa;
  --lp-gold: #d97706;            /* Estrellas y acentos dorados/ámbar */
  --lp-accent: #f59e0b;
  
  --lp-font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --lp-font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  
  --lp-radius-sm: 4px;
  --lp-radius: 8px;
  --lp-radius-lg: 12px;
  --lp-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --lp-shadow: 0 4px 14px rgba(0,0,0,0.06);
  --lp-shadow-lg: 0 12px 30px -4px rgba(0,0,0,0.1);
  --lp-transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--lp-font-main);
  background-color: var(--lp-bg-alt);
  color: var(--lp-text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 75px; /* Space for sticky bottom bar */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--lp-font-heading);
  color: var(--lp-dark);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
}

a {
  color: var(--lp-dark);
  text-decoration: none;
  transition: var(--lp-transition);
}

a:hover {
  color: var(--lp-primary);
}

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

.lp-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

.lp-section {
  padding: 65px 0;
}

.lp-section--alt {
  background-color: #ffffff;
}

/* Section Headers */
.lp-section-title {
  text-align: center;
  margin-bottom: 45px;
}

.lp-section-title h2 {
  font-size: 2.3rem;
  margin-bottom: 12px;
  color: var(--lp-dark);
}

.lp-section-title p {
  color: var(--lp-text-light);
  font-size: 1.05rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Buttons */
.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--lp-radius);
  cursor: pointer;
  transition: var(--lp-transition);
  text-align: center;
  border: 1px solid transparent;
}

.lp-btn--primary {
  background-color: var(--lp-primary);
  color: #000000 !important;
  border-color: var(--lp-primary);
  box-shadow: 0 3px 12px rgba(217, 119, 6, 0.35);
}

.lp-btn--primary:hover {
  background-color: var(--lp-primary-hover);
  border-color: var(--lp-primary-hover);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(180, 83, 9, 0.45);
}

.lp-btn--outline {
  background-color: transparent;
  color: #000000 !important;
  border-color: #18181b;
}

.lp-btn--outline:hover {
  background-color: #000000;
  color: var(--lp-primary) !important;
  border-color: #000000;
  transform: translateY(-2px);
}

.lp-btn--sm {
  padding: 7px 16px;
  font-size: 0.85rem;
}

.lp-btn--lg {
  padding: 15px 34px;
  font-size: 1.1rem;
}

/* ==========================================================================
   2. Top Bar & Header (GS-JJ Factory Header in Pure Black & Burnt Yellow)
   ========================================================================== */
.lp-topbar {
  background-color: #000000;
  color: #e4e4e7;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid #27272a;
}

.lp-topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.lp-topbar__perks {
  display: flex;
  gap: 22px;
  align-items: center;
}

.lp-topbar__perk {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #d4d4d8;
}

.lp-topbar__perk span.check {
  color: var(--lp-primary);
  font-weight: 800;
}

.lp-topbar__contact {
  display: flex;
  gap: 16px;
  align-items: center;
}

.lp-topbar__contact a {
  color: #d4d4d8;
}
.lp-topbar__contact a:hover {
  color: var(--lp-primary);
}

/* Main Navbar */
.lp-navbar {
  background-color: #ffffff;
  border-bottom: 1px solid #e4e4e7;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}

.lp-navbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}

.lp-navbar__logo {
  font-size: 1.65rem;
  font-weight: 900;
  color: #000000;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-navbar__logo span.highlight {
  color: var(--lp-primary);
}

.lp-navbar__menu {
  display: flex;
  gap: 26px;
  list-style: none;
  align-items: center;
}

.lp-navbar__link {
  color: #18181b;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 6px 0;
  position: relative;
}

.lp-navbar__link:hover {
  color: var(--lp-primary);
}

.lp-navbar__cta {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* ==========================================================================
   3. Hero Section (Factory-Direct in White, Black and Burnt Yellow)
   ========================================================================== */
.lp-hero-gs {
  background: #ffffff;
  border-bottom: 1px solid var(--lp-border);
  padding: 45px 0 55px;
}

.lp-hero-gs__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 45px;
  align-items: center;
}

.lp-hero-gs__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--lp-primary-light);
  border: 1px solid var(--lp-primary-border);
  color: var(--lp-primary-dark);
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.lp-hero-gs__title {
  font-size: clamp(2.3rem, 4vw, 3.3rem);
  color: #000000;
  margin-bottom: 14px;
  line-height: 1.15;
}

.lp-hero-gs__title span.highlight {
  color: var(--lp-primary);
}

.lp-hero-gs__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  font-size: 0.95rem;
}

.lp-stars {
  color: var(--lp-primary);
  font-size: 1.15rem;
  letter-spacing: 2px;
}

.lp-hero-gs__rating-text strong {
  color: #000000;
}

.lp-hero-gs__desc {
  font-size: 1.1rem;
  color: var(--lp-text-light);
  line-height: 1.6;
  margin-bottom: 26px;
}

.lp-hero-gs__perks-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 18px;
  margin-bottom: 30px;
}

.lp-hero-gs__perk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #18181b;
}

.lp-hero-gs__perk-item span.icon {
  color: var(--lp-primary);
  font-weight: 900;
}

.lp-hero-gs__ctas {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

/* Hero Right Showcase Stage */
.lp-hero-gs__preview-box {
  background: #fafafa;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 30px;
  text-align: center;
  position: relative;
  box-shadow: var(--lp-shadow);
}

.lp-hero-gs__preview-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #000000;
  color: var(--lp-primary);
  border: 1px solid #27272a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-hero-gs__img-wrap {
  margin: 15px 0 22px;
  display: flex;
  justify-content: center;
}

.lp-hero-gs__img-wrap img {
  max-height: 260px;
  object-fit: contain;
  filter: drop-shadow(0 15px 22px rgba(0,0,0,0.12));
}

.lp-hero-gs__price-strip {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 14px 18px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.lp-hero-gs__price-label {
  font-size: 0.85rem;
  color: var(--lp-text-light);
  text-align: left;
}

.lp-hero-gs__price-val {
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--lp-primary);
}

.lp-hero-gs__price-val small {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  font-weight: normal;
}

/* ==========================================================================
   4. Category Tabs (By Craft / By Theme - Burnt Yellow & Black)
   ========================================================================== */
.lp-tabs-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}

.lp-tab-btn {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #18181b;
  cursor: pointer;
  transition: var(--lp-transition);
}

.lp-tab-btn:hover {
  border-color: #000000;
  color: #000000;
}

.lp-tab-btn.active {
  background-color: #000000;
  border-color: #000000;
  color: var(--lp-primary);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

/* Product Cards Grid */
.lp-product-grid-gs {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

.lp-card-gs {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  overflow: hidden;
  transition: var(--lp-transition);
  display: flex;
  flex-direction: column;
}

.lp-card-gs:hover {
  border-color: var(--lp-primary);
  box-shadow: 0 12px 28px -4px rgba(217, 119, 6, 0.16);
  transform: translateY(-4px);
}

.lp-card-gs__media {
  position: relative;
  background: #fafafa;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 220px;
  border-bottom: 1px solid #f4f4f5;
}

.lp-card-gs__media img {
  max-height: 180px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.lp-card-gs:hover .lp-card-gs__media img {
  transform: scale(1.05);
}

.lp-card-gs__corner-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #000000;
  color: var(--lp-primary);
  border: 1px solid #27272a;
  font-size: 0.72rem;
  font-weight: 800;
  padding: 3px 9px;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.lp-card-gs__body {
  padding: 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.lp-card-gs__title {
  font-size: 1.18rem;
  color: #000000;
  margin-bottom: 8px;
}

.lp-card-gs__desc {
  font-size: 0.88rem;
  color: var(--lp-text-light);
  line-height: 1.55;
  margin-bottom: 18px;
  flex: 1;
}

.lp-card-gs__price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid #f4f4f5;
  padding-top: 14px;
  margin-bottom: 16px;
}

.lp-card-gs__price {
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--lp-primary);
}

.lp-card-gs__price span.unit {
  font-size: 0.85rem;
  color: var(--lp-text-muted);
  font-weight: 500;
}

.lp-card-gs__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

/* ==========================================================================
   5. How to Order (4-Step Cards in Black & Burnt Yellow)
   ========================================================================== */
.lp-order-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 35px;
}

.lp-step-card {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 32px 22px 26px;
  text-align: center;
  position: relative;
  transition: var(--lp-transition);
}

.lp-step-card:hover {
  border-color: var(--lp-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px -4px rgba(217, 119, 6, 0.15);
}

.lp-step-number {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: #000000;
  color: var(--lp-primary);
  font-weight: 900;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -52px auto 16px;
  border: 4px solid #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

.lp-step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #000000;
}

.lp-step-card p {
  font-size: 0.88rem;
  color: var(--lp-text-light);
  line-height: 1.55;
}

/* ==========================================================================
   6. Rush 24H Personalized Pins Banner (Deep Black Gradient & Burnt Yellow)
   ========================================================================== */
.lp-rush-banner {
  background: linear-gradient(135deg, #18181b 0%, #000000 100%);
  color: #ffffff;
  border: 1px solid #27272a;
  border-radius: var(--lp-radius-lg);
  padding: 45px;
  margin: 40px 0;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 35px;
  align-items: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.lp-rush-banner h2 {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.lp-rush-banner p {
  color: #d4d4d8;
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.lp-rush-badge {
  display: inline-block;
  background: var(--lp-primary);
  color: #000000;
  padding: 5px 14px;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
}

/* ==========================================================================
   7. Live Pricing / Order Customizer Matrix (Burnt Yellow Swatches & Calculator)
   ========================================================================== */
.lp-customizer-box {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius-lg);
  padding: 38px;
  box-shadow: var(--lp-shadow);
}

.lp-customizer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 35px;
}

.lp-option-group {
  margin-bottom: 26px;
}

.lp-option-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #000000;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-swatch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 10px;
}

.lp-swatch-btn {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 11px 12px;
  text-align: center;
  cursor: pointer;
  transition: var(--lp-transition);
  font-size: 0.85rem;
  font-weight: 700;
  color: #18181b;
}

.lp-swatch-btn:hover {
  border-color: #000000;
}

.lp-swatch-btn.active {
  border-color: var(--lp-primary);
  background-color: var(--lp-primary-light);
  color: var(--lp-primary-dark);
  box-shadow: 0 0 0 1px var(--lp-primary);
}

/* Order Summary Box */
.lp-order-summary {
  background: #fafafa;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  padding: 26px;
  position: sticky;
  top: 90px;
}

.lp-order-summary h3 {
  font-size: 1.25rem;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--lp-border);
  padding-bottom: 12px;
  color: #000000;
}

.lp-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  margin-bottom: 11px;
  color: #52525b;
}

.lp-summary-row.total {
  border-top: 1px dashed var(--lp-border);
  padding-top: 14px;
  margin-top: 14px;
  font-size: 1.25rem;
  font-weight: 900;
  color: var(--lp-primary);
}

/* ==========================================================================
   8. FAQ Accordion
   ========================================================================== */
.lp-faq-container {
  max-width: 860px;
  margin: 0 auto;
}

.lp-faq-item {
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--lp-transition);
}

.lp-faq-item.active {
  border-color: var(--lp-primary);
}

.lp-faq-question {
  padding: 18px 24px;
  font-weight: 800;
  font-size: 1.05rem;
  color: #000000;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  user-select: none;
}

.lp-faq-question:hover {
  background-color: #fafafa;
}

.lp-faq-icon {
  font-size: 1.3rem;
  transition: transform 0.2s ease;
  color: var(--lp-primary);
}

.lp-faq-item.active .lp-faq-icon {
  transform: rotate(45deg);
}

.lp-faq-answer {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--lp-text-light);
  line-height: 1.6;
  display: none;
}

.lp-faq-item.active .lp-faq-answer {
  display: block;
}

/* ==========================================================================
   9. POP-UPS & CONVERSION TRIGGERS (Burnt Yellow & Black)
   ========================================================================== */

/* 1. Discount Coupon Pop-Up (Exit-Intent / 6s Delay Modal) */
.lp-popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(5px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lp-popup-overlay.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Floating Free Proof Trigger Button */
.lp-floating-coupon-btn {
  position: fixed;
  bottom: 85px;
  right: 20px;
  background: var(--lp-primary);
  color: #000000;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 50px;
  border: 2px solid #000000;
  box-shadow: 0 6px 20px rgba(217, 119, 6, 0.4);
  cursor: pointer;
  z-index: 9995;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--lp-transition);
  animation: pulse-badge 2.5s infinite;
}

.lp-floating-coupon-btn:hover {
  background: var(--lp-primary-hover);
  color: #ffffff;
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 24px rgba(180, 83, 9, 0.5);
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
  }
  50% {
    box-shadow: 0 4px 25px rgba(217, 119, 6, 0.7);
    transform: scale(1.03);
  }
}

.lp-popup-modal {
  background: #ffffff;
  border-radius: 16px;
  max-width: 520px;
  width: 100%;
  padding: 38px 34px;
  position: relative;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.35);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-align: center;
  border: 1px solid var(--lp-border);
}

.lp-popup-overlay.is-visible .lp-popup-modal {
  transform: scale(1);
}

.lp-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  background: #f4f4f5;
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #71717a;
  transition: var(--lp-transition);
}

.lp-popup-close:hover {
  background: #e4e4e7;
  color: #000000;
}

.lp-popup-badge {
  background: var(--lp-primary-light);
  border: 1px solid var(--lp-primary-border);
  color: var(--lp-primary-dark);
  font-size: 0.8rem;
  font-weight: 900;
  padding: 5px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lp-popup-modal h2 {
  font-size: 2rem;
  color: #000000;
  margin-bottom: 10px;
}

.lp-popup-modal h2 span {
  color: var(--lp-primary);
}

.lp-popup-modal p {
  color: var(--lp-text-light);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 24px;
}

.lp-popup-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lp-popup-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--lp-border);
  border-radius: var(--lp-radius);
  font-size: 0.95rem;
  outline: none;
  font-family: inherit;
  background-color: #ffffff;
  color: #18181b;
}

.lp-popup-input:focus {
  border-color: var(--lp-primary);
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.2);
}

.lp-popup-features {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin-top: 20px;
  font-size: 0.82rem;
  color: var(--lp-text-light);
}

.lp-popup-features span {
  color: var(--lp-primary);
  font-weight: 900;
}

/* 2. Live Social Proof Sales Toast */
.lp-sales-toast {
  position: fixed;
  bottom: 85px;
  left: 20px;
  background: #ffffff;
  border: 1px solid var(--lp-border);
  border-radius: 12px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
  z-index: 9998;
  max-width: 360px;
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lp-sales-toast.is-active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.lp-toast-img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: #fffbeb;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #fde68a;
}

.lp-toast-img img {
  max-width: 36px;
  max-height: 36px;
  object-fit: contain;
}

.lp-toast-content {
  font-size: 0.82rem;
  line-height: 1.35;
}

.lp-toast-buyer {
  font-weight: 800;
  color: #000000;
}

.lp-toast-product {
  color: var(--lp-primary);
  font-weight: 700;
}

.lp-toast-time {
  font-size: 0.72rem;
  color: var(--lp-text-muted);
  display: block;
  margin-top: 2px;
}

.lp-toast-close {
  background: none;
  border: none;
  color: #a1a1aa;
  cursor: pointer;
  padding: 4px;
  font-size: 0.95rem;
  margin-left: 4px;
}
.lp-toast-close:hover {
  color: #000000;
}

/* ==========================================================================
   10. Sticky Bottom Bar (White & Black with Burnt Yellow Accent)
   ========================================================================== */
.lp-sticky-bar-gs {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--lp-border);
  box-shadow: 0 -4px 18px rgba(0,0,0,0.08);
  padding: 12px 0;
  z-index: 9990;
}

.lp-sticky-bar-gs__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.lp-sticky-bar-gs__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lp-sticky-bar-gs__promo {
  font-weight: 800;
  color: #000000;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.lp-sticky-bar-gs__promo span.badge {
  background: #000000;
  color: var(--lp-primary);
  border: 1px solid #27272a;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: 0.5px;
}

.lp-sticky-bar-gs__sub {
  font-size: 0.85rem;
  color: var(--lp-text-light);
}

.lp-sticky-bar-gs__actions {
  display: flex;
  gap: 10px;
}

/* ==========================================================================
   11. Responsive
   ========================================================================== */
@media (max-width: 992px) {
  .lp-hero-gs__grid,
  .lp-rush-banner,
  .lp-customizer-grid {
    grid-template-columns: 1fr;
  }
  .lp-order-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 20px;
  }
  .lp-step-number {
    margin: -40px auto 16px;
  }
  .lp-navbar__menu {
    display: none;
  }
}

@media (max-width: 640px) {
  .lp-order-steps-grid {
    grid-template-columns: 1fr;
  }
  .lp-product-grid-gs {
    grid-template-columns: 1fr;
  }
  .lp-hero-gs__perks-list {
    grid-template-columns: 1fr;
  }
  .lp-topbar__perks {
    display: none;
  }
  .lp-sales-toast {
    left: 10px;
    right: 10px;
    bottom: 75px;
    max-width: unset;
  }
}
