@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary-color: #002c67; /* Deeper Allianz Blue */
  --secondary-color: #c9a263; /* Gold */
  --text-color: #0f172a; /* Darker Slate */
  --bg-color: #eef2f6; /* Slightly darker background */
  --white: #ffffff;
  --whatsapp-color: #25D366;
  --whatsapp-hover: #1EBE5D;
  --radius: 12px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 12px 40px rgba(0, 44, 103, 0.06);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 20px 60px;
}

.card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid #edf2f7;
  box-shadow: var(--shadow);
  padding: 40px 30px;
  margin-top: 15px;
  margin-bottom: 30px;
  position: relative;
}

h1, h2, h3 {
  color: var(--primary-color);
  line-height: 1.25;
}

h1 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -0.8px;
}

h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.4px;
}

p {
  font-size: 1.05rem;
  margin-bottom: 24px;
  color: #334155; /* Slightly darker slate for higher contrast */
}

/* Premium Button / WhatsApp */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  width: 100%;
}

.btn-whatsapp {
  background-color: var(--whatsapp-color);
  color: var(--white);
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background-color: var(--whatsapp-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp svg {
  margin-right: 10px;
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #002250;
}

/* Dashboard specific */
.dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: var(--primary-color);
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1; /* Cleaner gray border */
  border-radius: var(--radius);
  font-size: 0.95rem;
  color: #0f172a;
  background-color: #ffffff;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(0, 55, 129, 0.08);
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 20px;
}

th, td {
  padding: 14px 16px;
  text-align: left;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.92rem;
}

th {
  background-color: #f8fafc;
  color: var(--primary-color);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.5px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  background: #f1f5f9;
  color: #475569;
}

/* Copy Link Box */
.link-box {
  background: #f4f6f8;
  padding: 15px;
  border-radius: var(--radius);
  border: 1px dashed #ccc;
  margin-bottom: 20px;
  word-break: break-all;
  font-family: monospace;
}

/* Landing Page Elements */
.hero {
  text-align: center;
  margin-bottom: 40px;
}

.highlight {
  color: var(--secondary-color);
}

.benefits {
  list-style: none;
  margin: 30px 0;
}

.benefits li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 22px;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.55;
}

.benefits li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
  font-size: 1.2rem;
  margin-right: 10px;
}

.profile-img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top; /* Verhindert, dass oben die Haare abgeschnitten werden */
  margin: 10px auto 20px;
  display: block;
  border: 5px solid var(--white);
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
}

.tagline {
  text-align: center;
  font-weight: 700;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 1.15rem;
  margin-bottom: 10px;
}

/* ========================================================================= */
/* PREMIUM DASHBOARD STYLES */
/* ========================================================================= */
.dashboard-body {
  background-color: #f1f5f9;
}

.dashboard-nav {
  background: var(--primary-color);
  color: var(--white);
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.nav-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.25rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--secondary-color);
}

.nav-user {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 0.95rem;
}

.nav-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid var(--secondary-color);
}

.dashboard-wrapper {
  max-width: 1500px;
  margin: 40px auto;
  padding: 0 30px;
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.metric-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 25px;
  display: flex;
  align-items: center;
  gap: 20px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
}

.metric-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: rgba(11, 28, 60, 0.05);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.metric-info h3 {
  font-size: 2rem;
  margin-bottom: 2px;
}

.metric-info p {
  margin: 0;
  color: #64748b;
  font-size: 0.9rem;
  font-weight: 500;
}

.dashboard-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

@media (max-width: 900px) {
  .dashboard-content {
    grid-template-columns: 1fr;
  }
}

.admin-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.02);
  border: 1px solid rgba(0,0,0,0.05);
}

.card-header {
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f1f5f9;
}

.card-header h2 {
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}

.card-header p {
  font-size: 0.9rem;
  color: #64748b;
  margin: 0;
}

.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: #94a3b8;
}

.with-icon {
  padding-left: 45px !important;
}

.alert-success {
  background: #dcfce7;
  color: #166534;
  padding: 15px;
  border-radius: var(--radius);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  border: 1px solid #bbf7d0;
}

.copy-section {
  margin-top: 30px;
  padding-top: 25px;
  border-top: 1px dashed #cbd5e1;
}

.copy-section h4 {
  color: var(--whatsapp-color);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}

.textarea-wrapper {
  position: relative;
}

.textarea-wrapper textarea {
  font-size: 0.9rem;
  background: #f8fafc;
  line-height: 1.5;
  resize: vertical;
}

.btn-copy-absolute {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--white);
  border: 1px solid #cbd5e1;
  color: #475569;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.btn-copy-absolute:hover {
  background: #f1f5f9;
  color: var(--primary-color);
}

.copy-confirm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--whatsapp-color);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}

.copy-confirm.show {
  opacity: 1;
}

/* Polished Table */
.table-responsive {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

.admin-table th {
  background: transparent;
  color: #64748b;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
  padding: 10px 15px;
  border-bottom: 2px solid #f1f5f9;
}

.admin-table td {
  padding: 15px;
  vertical-align: middle;
  border-bottom: 1px solid #f1f5f9;
}

.admin-table tr:hover td {
  background: #f8fafc;
}

.client-name {
  display: flex;
  align-items: center;
  gap: 15px;
}

.client-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.client-slug {
  display: block;
  font-size: 0.8rem;
  color: #94a3b8;
  font-family: monospace;
}

.lead-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 30px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 15px;
  font-weight: 700;
  font-size: 0.9rem;
}

.lead-badge-gold {
  background: var(--secondary-color);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(201, 162, 99, 0.4);
}

.status-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
}

.status-new {
  background: #e0e7ff;
  color: #4338ca;
}

.status-active {
  background: #dcfce7;
  color: #15803d;
}

.status-reward {
  background: #fef3c7;
  color: #b45309;
  border: 1px solid #fde68a;
}

.empty-state {
  text-align: center;
  padding: 40px 20px !important;
  color: #94a3b8;
}

.empty-state i {
  font-size: 3rem;
  margin-bottom: 10px;
  opacity: 0.5;
}

/* ========================================================================= */
/* CONVERSION OPTIMIZED LANDING PAGE STYLES */
/* ========================================================================= */

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.trust-badge {
  display: inline-block;
  background: #f8fafc;
  padding: 8px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
  margin-top: 15px;
  margin-bottom: 25px;
  border: 1px solid #e2e8f0;
}

/* Trust Bar (Numbers) */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  background: var(--white);
  padding: 20px 10px;
  border-radius: var(--radius);
  border: 1px solid #f1f5f9;
  margin: 30px 0;
  text-align: center;
}

.trust-item h4 {
  color: var(--primary-color);
  font-size: 1.4rem;
  margin-bottom: 5px;
  font-weight: 800;
}

.trust-item p {
  font-size: 0.8rem;
  margin: 0;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* Testimonial Box */
.testimonial {
  background: #f8fafc;
  border-left: 4px solid var(--secondary-color);
  padding: 20px;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 30px 0;
  position: relative;
  text-align: left;
}

.testimonial p {
  font-style: italic;
  color: #334155;
  font-size: 1.05rem;
  margin-bottom: 10px;
  line-height: 1.5;
}

.testimonial .author {
  font-weight: 700;
  color: var(--primary-color);
  font-size: 0.9rem;
  margin: 0;
  font-style: normal;
}

/* Form Fallback */
.fallback-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  color: #64748b;
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
  transition: var(--transition);
}

.fallback-link:hover {
  color: var(--primary-color);
}

.fallback-form-container {
  display: none;
  background: #f8fafc;
  padding: 25px;
  border-radius: var(--radius);
  margin-top: 20px;
  border: 1px solid #e2e8f0;
  text-align: left;
}

.fallback-form-container.active {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Process Steps */
.section-title {
  text-align: center;
  margin: 50px 0 30px;
  font-size: 1.6rem;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.step {
  display: flex;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid #f1f5f9;
  text-align: left;
  align-items: flex-start;
  gap: 20px;
}

.step-number {
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.step h4 {
  margin-bottom: 5px;
  font-size: 1.1rem;
}

.step p {
  margin: 0;
  font-size: 0.95rem;
}

/* FAQ Accordion */
.faq-section {
  margin-bottom: 40px;
  text-align: left;
}

details.faq-item {
  background: var(--white);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  margin-bottom: 10px;
  overflow: hidden;
}

details.faq-item summary {
  padding: 20px;
  font-weight: 600;
  color: var(--primary-color);
  cursor: pointer;
  list-style: none;
  position: relative;
}

details.faq-item summary::-webkit-details-marker {
  display: none;
}

details.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--secondary-color);
}

details[open].faq-item summary::after {
  content: "−";
}

details.faq-item .faq-content {
  padding: 0 20px 20px;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* ========================================================================= */
/* PREMIUM FEEL & MICRO-ANIMATIONS */
/* ========================================================================= */

/* WhatsApp Pulse Effect */
@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.btn-whatsapp-pulse {
  animation: pulseGlow 2.5s infinite;
  position: relative;
  overflow: hidden;
}

/* Subtle fade in for trust numbers */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

.trust-item h4 {
  animation: fadeInUp 0.8s ease-out forwards;
}
.trust-item p {
  animation: fadeInUp 1s ease-out forwards;
}

/* Sticky CTA Wrapper */
.sticky-cta-wrapper {
  margin: 45px 0 35px;
  text-align: center;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .sticky-cta-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    margin: 0 !important;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 -5px 20px rgba(0,0,0,0.08);
    z-index: 1000;
  }
  
  .sticky-cta-wrapper .btn {
    width: 100%;
    font-size: 1.1rem !important; /* Slightly smaller for mobile fit */
    padding: 15px 20px !important;
  }
  
  /* Add padding to the card so content isn't hidden behind sticky CTA and disable fade-in to fix position:fixed WebKit bug */
  .card {
    padding-bottom: 80px !important;
    animation: none !important;
  }
  
  body {
    padding-bottom: 80px;
  }
}

/* ========================================================================= */
/* PERFECT RESPONSIVENESS (MOBILE TWEAKS) */
/* ========================================================================= */

@media (max-width: 768px) {
  /* Landing Pages Mobile */
  h1 {
    font-size: 1.8rem;
  }
  
  h2 {
    font-size: 1.5rem;
  }
  
  p {
    font-size: 1rem;
  }
  
  .card {
    padding: 40px 20px 20px !important;
    margin-top: 10px;
  }
  
  .profile-img {
    width: 100px;
    height: 100px;
    margin: 10px auto 15px;
  }
  
  .trust-bar {
    grid-template-columns: 1fr; /* Stack on mobile for better readability */
    gap: 15px;
    padding: 15px;
  }
  
  .trust-item h4 {
    font-size: 1.5rem;
  }
  
  .benefits li {
    font-size: 1rem;
  }
  
  .step {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 10px;
    padding: 15px;
  }
  
  .testimonial {
    border-left: none;
    border-top: 4px solid var(--secondary-color);
    border-radius: 0 0 var(--radius) var(--radius);
    padding: 20px 15px;
  }
  
  /* Dashboard Mobile */
  .dashboard-wrapper {
    margin: 20px auto;
  }
  
  .admin-card {
    padding: 20px;
  }
  
  .metric-card {
    padding: 15px;
  }
  
  .nav-container {
    flex-direction: column;
    gap: 15px;
  }
  
  .action-group {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
  
  .btn-wa-send {
    justify-content: center;
  }
  
  .client-name {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }
  
  /* CSS GRID FIX FOR MOBILE OVERFLOW */
  .dashboard-content > div {
    min-width: 0;
  }
  
  .table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  .textarea-wrapper textarea {
    overflow-wrap: break-word;
    word-break: normal;
  }
}

/* Allianz Specific Styles */
.allianz-logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.allianz-logo {
  max-width: 200px;
  height: auto;
}

/* Google Reviews Slider */
.review-slider-container {
  position: relative;
  max-width: 600px;
  margin: 20px auto;
  overflow: hidden;
  background: #f1f5f9; /* light background matching the modern UI */
  border-radius: var(--radius);
  padding: 20px;
  border: 1px solid #e2e8f0;
}
.review-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}
.review-slide {
  min-width: 100%;
  box-sizing: border-box;
  padding: 0 10px;
  text-align: left;
}
.review-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
}
.review-author {
  font-weight: 600;
  color: var(--primary-color);
  font-size: 1.05rem;
}
.review-meta {
  font-size: 0.8rem;
  color: #777;
}
.review-stars {
  color: #fbbc04; /* Google Gold */
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.review-text {
  font-style: italic;
  color: #555;
  line-height: 1.4;
  font-size: 0.95rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Cookie Banner Styles */
.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  max-width: 500px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  padding: 20px;
  z-index: 10000;
  border: 1px solid #e2e8f0;
  display: none;
}
.cookie-content p {
  font-size: 0.9rem;
  margin-bottom: 15px;
  color: #555;
}
.cookie-content a {
  color: var(--primary-color);
  text-decoration: underline;
}
.cookie-buttons {
  display: flex;
  gap: 10px;
}
.cookie-btn {
  padding: 10px 15px;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  border: none;
  flex: 1;
}
.cookie-btn-accept {
  background-color: var(--primary-color);
  color: var(--white);
}
.cookie-btn-accept:hover {
  background-color: #002250;
}
.cookie-btn-essential {
  background-color: #e2e8f0;
  color: #475569;
}
.cookie-btn-essential:hover {
  background-color: #cbd5e1;
}

/* Legal Footer Styles */
.legal-footer {
  margin-top: 50px;
  padding-top: 25px;
  border-top: 1px solid #e2e8f0;
  text-align: center;
  line-height: 1.7;
}
.legal-footer-links {
  margin-bottom: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 0.85rem;
  color: #94a3b8;
}
.legal-footer-links a {
  color: #475569;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}
.legal-footer-links a:hover {
  color: var(--primary-color);
}
.legal-footer .legal-info {
  font-size: 0.75rem;
  color: #64748b;
  margin-bottom: 10px;
}
.legal-footer .copyright {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ========================================================================= */
/* STRIPE-STYLE SLIDE-OVER DRAWER STYLES */
/* ========================================================================= */
.drawer-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(4px);
  z-index: 9999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}
.drawer-panel {
  position: fixed;
  top: 0;
  right: -460px;
  width: 440px;
  max-width: 100%;
  height: 100vh;
  background: var(--white);
  box-shadow: -10px 0 30px rgba(15, 23, 42, 0.15);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}
.drawer-panel.show {
  right: 0;
}
.drawer-header {
  padding: 24px;
  border-bottom: 1px solid #e2e8f0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.drawer-header h3 {
  margin: 0;
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
}
.drawer-close {
  background: transparent;
  border: none;
  font-size: 1.3rem;
  color: #94a3b8;
  cursor: pointer;
  transition: color 0.2s;
  padding: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer-close:hover {
  color: #ef4444;
}
.drawer-body {
  padding: 24px;
  flex: 1;
  overflow-y: auto;
}




