/* ============================================================
   VARIABLES GLOBALES
   ============================================================ */
:root {
  --brand-orange: #F58220;
  --brand-navy: #0B2341;
  --brand-slate-400: #94a3b8;
  --brand-slate-600: #475569;
}

/* ============================================================
   BASE
   ============================================================ */
body {
  font-family: 'Inter', sans-serif;
  background: #f8fafc;
  color: #0f172a;
  margin: 0;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-navy);
  text-decoration: none;
}

.quote-toggle {
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  font-size: 1.5rem;
}

.quote-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--brand-orange);
  color: white;
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--brand-navy);
  color: #cbd5e1;
  padding: 2rem 0;
  margin-top: 2rem;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================================
   DRAWER
   ============================================================ */
.cs-drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99999;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cs-drawer-overlay.active {
  visibility: visible;
  opacity: 1;
}

.cs-drawer-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.4);
}

.cs-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: white;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
}

.cs-drawer-overlay.active .cs-drawer {
  transform: translateX(0);
}

.cs-drawer-header {
  padding: 1rem;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--brand-navy);
  color: white;
}

.cs-drawer-close {
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
}

.cs-drawer-body {
  padding: 1rem;
  flex: 1;
  overflow-y: auto;
}