/* Recommended Products Page Styles */

/* Scope-level token overrides — this marketing page is intentionally a
   premium dark experience regardless of the site-wide theme toggle. */
.recommended-products-page {
  --surface: #1e293b;
  --surface-elevated: #1f2937;
  --border: rgba(255, 255, 255, 0.08);
  --text-primary: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --background: #0f172a;

  background: var(--background);
  color: var(--text-primary);
}

/* Same architecture as fleet-solutions.css — reset text tokens back to
   light values but preserve --surface as the parent-scope dark value so
   rules using `color: var(--surface)` as a "dark text on white" trick
   continue to work. */
.recommended-products-page .product-card,
.recommended-products-page .affiliate-disclosure {
  --text-primary: #1F2937;
  --text-secondary: #4a4a4a;
  --text-muted: #4B5563;
  --border: #E5E7EB;
  /* Darker success green — same rationale as fleet-solutions/_shared.css:
     the default #059669 gives 3.43:1 on the discount-amount tinted-green bg
     (#DCFCE7). #047857 passes WCAG-AA (~5:1). */
  --success: #047857;
  color: var(--text-primary);
}

/* Hero Section */
.products-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
  color: white;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.products-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width=%2760%27 height=%2760%27 viewBox=%270 0 60 60%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cg fill=%27none%27 fill-rule=%27evenodd%27%3E%3Cg fill=%27%23ffffff%27 fill-opacity=%270.03%27%3E%3Cpath d=%27M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z%27/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
  opacity: 0.1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  grid-gap: 4rem;
  gap: 4rem;
  text-align: center;
}

.hero-text-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(34, 197, 94, 0.15);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: var(--success);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0;
  text-align: center;
}

.title-accent {
  display: block;
  background: linear-gradient(135deg, var(--success) 0%, var(--success) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 600px;
  margin: 0;
  text-align: center;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}

.stat-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--success);
  line-height: 1;
}

.stat-label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 2rem;
  background: rgba(255, 255, 255, 0.2);
}

.hero-benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  grid-gap: 1.5rem;
  gap: 1.5rem;
  margin-top: 2rem;
}

.hero-benefit-card {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 2rem;
  text-align: center;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

.hero-benefit-card:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(34, 197, 94, 0.3);
  transform: translateY(-4px);
}

.benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--success) 0%, var(--success) 100%);
  border-radius: 16px;
  margin-bottom: 1rem;
  color: white;
}

.benefit-content h2 {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  margin: 0 0 0.5rem 0;
}

.benefit-content p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  line-height: 1.5;
}

.hero-benefits {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 2rem;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}

.hero-benefit span {
  font-weight: 500;
}

/* Products Grid */
.products-grid-section {
  padding: 80px 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  grid-gap: 2rem;
  gap: 2rem;
  margin-top: 3rem;
}

/* Product Cards */
.product-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: white;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image-container {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.discount-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  font-weight: 600;
  font-size: 0.875rem;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.discount-text {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

/* Product Content */
.product-content {
  padding: 1.5rem;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.product-category {
  /* Badge sits inside a light .product-card — force a light chip bg so the
     dark text remains readable regardless of the page-level dark surface. */
  background: #F3F4F6;
  color: #4B5563;
  color: var(--text-muted-strong, #4B5563);
  padding: 0.25rem 0.75rem;
  border-radius: 1rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.product-description {
  color: var(--text-muted);
  margin-bottom: 1rem;
  line-height: 1.6;
}

/* Why Truckers Section */
.why-truckers {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  background: #fef3c7;
  border: 1px solid var(--warning);
  border-radius: 8px;
  padding: 1rem;
  margin-bottom: 1.5rem;
}

.truck-icon {
  color: var(--warning);
  margin-top: 0.125rem;
  flex-shrink: 0;
}

.why-truckers p {
  color: #92400e;
  margin: 0;
  font-style: italic;
}

/* Product Features */
.product-features {
  margin-bottom: 1.5rem;
}

.heading-4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--surface-elevated);
  margin-bottom: 0.75rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}

.feature-item svg {
  color: #10b981;
  flex-shrink: 0;
}

/* Product Benefits */
.product-benefits {
  margin-bottom: 1.5rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  grid-gap: 0.5rem;
  gap: 0.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.benefit-item svg {
  color: var(--warning);
  flex-shrink: 0;
}

/* Product Pricing */
.product-pricing {
  margin-bottom: 1.5rem;
}

.discount-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: #dcfce7;
  border: 1px solid var(--success);
  border-radius: 8px;
  padding: 0.75rem;
}

.discount-info svg {
  color: var(--success);
}

.discount-amount {
  font-weight: 600;
  color: var(--success);
}

.discount-code {
  font-size: 0.875rem;
  color: var(--hhc-forest);
}

.discount-code strong {
  background: #bbf7d0;
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  margin-left: 0.25rem;
}

/* Product CTA */
.product-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem;
  background: linear-gradient(135deg, var(--hhc-blue-700) 0%, var(--hhc-blue) 100%);
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.product-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(30, 64, 175, 0.3);
  text-decoration: none;
  color: white;
}

.product-affiliate-cta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem;
  margin-top: 0.75rem;
  background: transparent;
  color: var(--success);
  text-decoration: none;
  border-radius: 8px;
  border: 2px solid var(--success);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.product-affiliate-cta:hover {
  background: var(--success);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
  text-decoration: none;
}

/* Affiliate Disclosure */
.affiliate-disclosure-section {
  background: var(--surface);
  padding: 60px 0;
}

.affiliate-disclosure {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--info);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.affiliate-disclosure h3 {
  color: var(--surface-elevated);
  margin-bottom: 1rem;
}

.affiliate-disclosure p {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.affiliate-disclosure p:last-child {
  margin-bottom: 0;
}

/* CTA Section - Enhanced Visibility */
.products-cta-section {
  background: linear-gradient(135deg, var(--background) 0%, var(--hhc-blue) 50%, var(--background) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.products-cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 50%, rgba(34, 197, 94, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.products-cta-section .cta-card {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  position: relative;
  border: 2px solid rgba(34, 197, 94, 0.2);
  box-shadow: 
    0 25px 50px -12px rgba(0, 0, 0, 0.25),
    0 0 0 1px rgba(255, 255, 255, 0.1) inset;
}

.products-cta-section .cta-card.enhanced {
  animation: ctaPulse 3s ease-in-out infinite;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 30px rgba(34, 197, 94, 0.1); }
  50% { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25), 0 0 40px rgba(34, 197, 94, 0.25); }
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--success) 0%, var(--success) 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.products-cta-section .cta-card h2 {
  font-size: 2.5rem;
  color: var(--background);
  margin-bottom: 16px;
  line-height: 1.2;
}

.products-cta-section .cta-card p {
  font-size: 1.15rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.cta-features {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--hhc-blue);
  font-weight: 600;
  font-size: 0.95rem;
}

.cta-feature svg {
  color: var(--success);
}

.products-cta-section .cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-cta.primary {
  background: linear-gradient(135deg, var(--success) 0%, var(--success) 100%);
  color: white;
  box-shadow: 0 8px 20px rgba(34, 197, 94, 0.35);
}

.btn-cta.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(34, 197, 94, 0.45);
}

.btn-cta.secondary {
  background: transparent;
  color: var(--hhc-blue);
  border: 2px solid var(--border);
}

.btn-cta.secondary:hover {
  background: var(--surface);
  border-color: var(--hhc-blue);
}

/* Responsive CTA */
@media (max-width: 768px) {
  .products-cta-section {
    padding: 60px 0;
  }

  .products-cta-section .cta-card {
    padding: 32px 24px;
    border-radius: 20px;
  }

  .products-cta-section .cta-card h2 {
    font-size: 1.75rem;
  }

  .cta-features {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .products-cta-section .cta-buttons {
    flex-direction: column;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
    padding: 16px 24px;
    font-size: 1rem;
  }
}


/* Responsive Design */
@media (max-width: 768px) {
  .products-hero {
    padding: 80px 0;
  }
  
  .hero-content-wrapper {
    gap: 3rem;
  }
  
  .hero-stats {
    gap: 1.5rem;
  }
  
  .stat-number {
    font-size: 1.75rem;
  }
  
  .hero-benefits-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .hero-benefit-card {
    padding: 1.5rem;
  }
  
  .benefit-icon {
    width: 56px;
    height: 56px;
  }
  
  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .hero-benefits {
    gap: 1rem;
  }
  
  .hero-benefit {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  
  .product-header {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .products-hero {
    padding: 60px 0;
  }
  
  .hero-content-wrapper {
    gap: 2rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1rem;
  }
  
  .stat-item {
    flex-direction: row;
    gap: 0.5rem;
  }
  
  .stat-divider {
    display: none;
  }
  
  .hero-benefits-grid {
    gap: 1rem;
  }
  
  .hero-benefit-card {
    padding: 1.25rem;
  }
  
  .products-grid-section {
    padding: 60px 0;
  }
  
  .product-content {
    padding: 1rem;
  }
  
  .why-truckers {
    flex-direction: column;
    gap: 0.75rem;
  }
  
  .affiliate-disclosure {
    padding: 1.5rem;
  }
}
/* ============================================================
   Category filter chips + share row on /products
   ============================================================ */
.product-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  padding: 12px 16px;
  max-width: 900px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.product-chip-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0 6px;
}

.product-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: #ffffff;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.1s ease;
}

.product-chip:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

.product-chip.active {
  background: #22c55e;
  border-color: #22c55e;
  color: #0f172a;
}

.product-chip:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.product-chip-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  padding: 0 6px;
  height: 20px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.2);
  color: inherit;
  font-size: 0.72rem;
  font-weight: 700;
}

.product-chip.active .product-chip-count {
  background: rgba(15, 23, 42, 0.22);
}

.product-empty-state {
  grid-column: 1 / -1;
  padding: 60px 20px;
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

/* Per-product share row sits below the CTA in each card. Keeps the
   "Share" button visually secondary while still 1-click accessible. */
.product-share-row {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.product-share-row .social-share__trigger {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
}

.product-share-row .social-share__trigger:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.product-share-row .social-share__menu {
  background: #ffffff;
  color: #0f172a;
  border-color: rgba(15, 23, 42, 0.12);
}

.product-share-row .social-share__item {
  color: #0f172a;
}

.product-share-row .social-share__item:hover {
  background: rgba(15, 23, 42, 0.06);
}

@media (max-width: 640px) {
  .product-chip-row {
    padding: 10px;
    gap: 6px;
  }
  .product-chip {
    padding: 6px 12px;
    font-size: 0.8rem;
  }
}


/*# sourceMappingURL=264.d0dc189b.chunk.css.map*/