/* ═══════════════════════════════════════════
   Thm-Teepublic Luxe — Hero V2 Split
   Dark Red Theme + Brand (#B91C1C)
   ═══════════════════════════════════════════ */

.fl-luxe-hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 64px 48px;
  margin-bottom: 48px;
  background: #1A1A1A;
  border: 1px solid #333333;
  border-radius: 16px;
}

.fl-luxe-hero-v2-left {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.fl-luxe-hero-v2-title {
  margin: 0;
  font-size: 42px;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.1;
  font-family: 'Georgia', serif;
}

.fl-luxe-hero-v2-subtitle {
  margin: 0;
  font-size: 16px;
  line-height: 1.8;
  color: #999999;
  font-family: 'Georgia', serif;
}

.fl-luxe-hero-v2-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.fl-luxe-hero-v2-feature {
  padding: 10px 20px;
  background: rgba(221, 25, 26, 0.15);
  color: #B91C1C;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: 'Georgia', serif;
  border-radius: 20px;
}

.fl-luxe-hero-v2-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.fl-luxe-hero-v2-cta {
  display: inline-block;
  width: fit-content;
  padding: 18px 48px;
  background: #B91C1C;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  transition: all 0.2s ease;
}

.fl-luxe-hero-v2-cta:hover {
  background: #DC2626;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(221, 25, 26, 0.4);
}

@media (max-width: 768px) {
  .fl-luxe-hero-v2 {
    grid-template-columns: 1fr;
    padding: 48px 24px;
    gap: 32px;
  }

  .fl-luxe-hero-v2-title {
    font-size: 32px;
  }
}
