/* ═══════════════════════════════════════════
   Thm-Teepublic Luxe — CTA V1 Bar
   Fixed Bottom Bar + Dark Red Theme
   ═══════════════════════════════════════════ */

body {
  padding-bottom: 100px;
}

.fl-luxe-cta-v1 {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
  background: #111111;
  border-top: 2px solid #B91C1C;
}

.fl-luxe-cta-v1-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  max-width: 600px;
  margin: 0 auto;
}

.fl-luxe-cta-v1-btn {
  flex: 1;
  padding: 16px 24px;
  background: transparent;
  color: #FFFFFF !important;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  border: 1px solid #333333;
  border-radius: 8px;
  font-family: 'Georgia', serif;
  transition: all 0.2s ease;
}

.fl-luxe-cta-v1-btn:hover {
  border-color: #B91C1C !important;
  color: #B91C1C !important;
}

.fl-luxe-cta-v1-primary {
  background: #B91C1C;
  color: #FFFFFF !important;
  border-color: #B91C1C !important;
}

.fl-luxe-cta-v1-primary:hover {
  background: #DC2626;
  border-color: #DC2626;
  color: #FFFFFF !important;
}

@media (max-width: 480px) {
  .fl-luxe-cta-v1-buttons {
    flex-wrap: wrap;
  }

  .fl-luxe-cta-v1-btn {
    flex: 1 1 45%;
  }
}
