/* ==========================================================================
   CSS CUSTOM SYSTEM & VARIABLES
   ========================================================================== */
:root {
  /* Colors */
  --red-primary: #C41E1E;
  --red-hover: #A01414;
  --red-light: #FFF5F5;
  --red-border: #F5CCCC;
  --black-primary: #111113;
  --black-header: #09090b;
  --gray-dark: #27272a;
  --gray-medium: #71717a;
  --gray-light: #f4f4f5;
  --gray-border: #e4e4e7;
  --white: #ffffff;
  --success: #10b981;
  --success-dark: #047857;
  --success-light: #ecfdf5;

  /* Typography */
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;

  /* Spacing */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;

  /* Border Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.02);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -1px rgba(0,0,0,0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-xl: 0 20px 30px -5px rgba(0,0,0,0.12), 0 10px 15px -5px rgba(0,0,0,0.07);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE STYLES
   ========================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  background-color: var(--white);
  color: var(--gray-dark);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ==========================================================================
   SCROLLBAR STYLES
   ========================================================================== */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--gray-light);
}
::-webkit-scrollbar-thumb {
  background: #d4d4d8;
  border-radius: var(--radius-full);
  border: 2px solid var(--gray-light);
}
::-webkit-scrollbar-thumb:hover {
  background: #a1a1aa;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
header {
  background: var(--black-header);
  padding: 16px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo {
  display: flex;
  align-items: center;
  gap: 16px;
  transition: transform var(--transition-fast);
}

.logo:hover {
  transform: scale(1.02);
}

.logo-image {
  height: 60px;
  width: auto;
}

.logo-text {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.5px;
  display: block;
}

.logo-sub {
  color: var(--gray-medium);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-top: -2px;
}

.header-tagline {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.9;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  position: relative;
  background-image: url('../images/fachada-noche.webp');
  background-size: cover;
  background-position: center;
  padding: 120px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 480px;
}

.hero-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(9, 9, 11, 0.88) 0%, rgba(196, 30, 30, 0.3) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-badge {
  background: var(--red-primary);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 6px 18px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  animation: fadeInDown 0.6s ease;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.hero p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(16px, 2.5vw, 20px);
  max-width: 580px;
  margin-bottom: 36px;
  font-weight: 400;
}

.cta-scroll-btn {
  background: var(--white);
  color: var(--black-primary);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 16px;
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-fast);
}

.cta-scroll-btn:hover {
  background: var(--red-primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(196, 30, 30, 0.3);
}

/* ==========================================================================
   PERKS SECTION (BENEFICIOS)
   ========================================================================== */
.perks-section {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-border);
  padding: 24px 40px;
}

.perks-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  justify-content: center;
}

.perk-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.perk-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--red-border);
}

.perk-icon {
  font-size: 24px;
  background: var(--red-light);
  padding: 8px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
}

.perk-info h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--gray-dark);
}

.perk-info p {
  font-size: 12px;
  color: var(--gray-medium);
  font-weight: 500;
}

/* ==========================================================================
   VACANCIES / JOBS SECTION
   ========================================================================== */
.jobs-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 42px);
  color: var(--black-primary);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
}

.section-subtitle {
  color: var(--gray-medium);
  font-size: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 30px;
}

.job-card {
  background: var(--white);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.job-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--red-primary);
  transform: scaleY(0);
  transition: transform var(--transition-normal);
  transform-origin: top;
}

.job-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--red-border);
}

.job-card:hover::before {
  transform: scaleY(1);
}

.job-card-header {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.job-dept {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--red-primary);
}

.job-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 700;
  color: var(--black-primary);
  line-height: 1.3;
}

.job-title-es {
  font-size: 13px;
  color: var(--gray-medium);
  margin-top: 2px;
}

.job-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.badge {
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.badge-ft {
  background: #eff6ff;
  color: #1d4ed8;
}

.badge-pt {
  background: #fef2f2;
  color: #991b1b;
}

.badge-we {
  background: #fdf2f8;
  color: #9d174d;
}

.apply-btn {
  width: 100%;
  padding: 14px;
  background: var(--gray-light);
  color: var(--black-primary);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
  text-align: center;
  font-family: var(--font-sans);
}

.job-card:hover .apply-btn {
  background: var(--red-primary);
  color: var(--white);
  border-color: var(--red-primary);
  box-shadow: 0 4px 12px rgba(196, 30, 30, 0.2);
}

.apply-btn:hover {
  background: var(--red-hover) !important;
  color: var(--white) !important;
}

/* ==========================================================================
   MODAL DIALOG (MODERN COMPONENT)
   ========================================================================== */
.modal-dialog {
  border: none;
  border-radius: var(--radius-lg);
  width: calc(100% - 32px);
  max-width: 800px;
  max-height: 90vh;
  margin: auto;
  box-shadow: var(--shadow-xl);
  outline: none;
  overflow: hidden;
  animation: modalScaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal-dialog::backdrop {
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(8px);
  animation: backdropFadeIn 0.3s ease;
}

.modal-content {
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  position: relative;
  background: var(--white);
}

.modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--gray-border);
  background: var(--white);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-medium);
  transition: all var(--transition-fast);
  z-index: 10;
}

.modal-close:hover {
  background: var(--red-light);
  color: var(--red-primary);
  border-color: var(--red-border);
  transform: rotate(90deg);
}

/* Modal views */
#formView {
  padding: 48px;
  overflow-y: auto;
}

.modal-header {
  margin-bottom: 36px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--gray-border);
}

.modal-header .section-label {
  margin-bottom: 6px;
}

.modal-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3.5vw, 32px);
  color: var(--black-primary);
  font-weight: 800;
}

/* ==========================================================================
   FORM CONTROLS & LAYOUT
   ========================================================================== */
.form-section {
  border: none;
  margin-bottom: 40px;
}

.form-section-title {
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-primary);
  margin-bottom: 24px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--red-light);
  width: 100%;
}

.form-group-helper {
  font-size: 13px;
  color: var(--gray-medium);
  margin-top: -16px;
  margin-bottom: 24px;
}

.form-input-helper {
  font-size: 11px;
  color: var(--gray-medium);
  margin-top: 2px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-row.single {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-dark);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: 15px;
  font-family: var(--font-sans);
  color: var(--black-primary);
  background: var(--white);
  transition: all var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--red-primary);
  box-shadow: 0 0 0 4px var(--red-light);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

/* Work authorization box */
.auth-box {
  background: var(--red-light);
  border: 1.5px solid var(--red-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 40px;
}

.auth-box p {
  font-size: 14px;
  font-weight: 700;
  color: var(--black-primary);
  margin-bottom: 16px;
}

.radio-group {
  display: flex;
  gap: 32px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 500;
}

.radio-option input[type="radio"] {
  width: 20px;
  height: 20px;
  accent-color: var(--red-primary);
  cursor: pointer;
}

/* Availability interactive checkboxes */
.availability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 8px;
}

.avail-option {
  cursor: pointer;
}

.avail-option input[type="checkbox"] {
  display: none; /* Hide native checkbox to style custom card */
}

.avail-card {
  border: 2px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 24px 16px;
  text-align: center;
  transition: all var(--transition-fast);
  background: var(--white);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.avail-option input:checked + .avail-card {
  border-color: var(--red-primary);
  background: var(--red-light);
  box-shadow: 0 4px 12px rgba(196, 30, 30, 0.08);
}

.avail-card:hover {
  border-color: var(--red-primary);
  transform: translateY(-2px);
}

.avail-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.avail-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--black-primary);
  margin-bottom: 4px;
}

.avail-sub {
  font-size: 11px;
  color: var(--gray-medium);
  font-weight: 500;
}

/* Job history blocks */
.job-block {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
  position: relative;
}

.job-block-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  background: var(--gray-dark);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 18px;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: var(--red-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: all var(--transition-fast);
  box-shadow: 0 4px 12px rgba(196, 30, 30, 0.15);
}

.submit-btn:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 20px rgba(196, 30, 30, 0.3);
  transform: translateY(-1px);
}

.submit-btn:disabled {
  background: var(--gray-medium);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}

/* ==========================================================================
   SUCCESS VIEW
   ========================================================================== */
.success-view {
  display: none;
  text-align: center;
  padding: 60px 48px;
  flex-direction: column;
  align-items: center;
  max-height: 90vh;
  overflow-y: auto;
}

.success-view.active {
  display: flex;
}

.success-icon-container {
  width: 80px;
  height: 80px;
  background: var(--success-light);
  border: 3px solid var(--success);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}

.success-icon {
  font-size: 40px;
  color: var(--success-dark);
  font-weight: bold;
}

.success-view h2 {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 800;
  color: var(--success-dark);
  margin-bottom: 16px;
}

.success-main-text {
  font-size: 16px;
  color: var(--gray-dark);
  max-width: 520px;
  margin-bottom: 28px;
}

.download-info-box {
  background: var(--gray-light);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  padding: 16px 24px;
  margin-bottom: 32px;
  width: 100%;
  max-width: 520px;
  text-align: left;
}

.download-info-box p {
  font-size: 14px;
  color: var(--gray-dark);
  margin-bottom: 6px;
}

.download-info-box p:last-child {
  margin-bottom: 0;
}

.download-subtext {
  color: var(--gray-medium);
}

.download-subtext code {
  background: #e4e4e7;
  padding: 2px 6px;
  border-radius: var(--radius-sm);
  font-family: monospace;
  font-size: 12px;
}

.success-footer-text {
  font-size: 13px;
  color: var(--gray-medium);
  max-width: 480px;
  margin-bottom: 36px;
}

.close-success-btn {
  padding: 14px 28px;
  background: var(--black-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.close-success-btn:hover {
  background: var(--gray-dark);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background: var(--black-header);
  color: var(--gray-medium);
  padding: 48px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-info {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-contact {
  font-size: 13px;
}

.footer-contact a {
  color: var(--red-primary);
  font-weight: 600;
  transition: color var(--transition-fast);
}

.footer-contact a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes modalScaleUp {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(15px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes backdropFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

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

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 768px) {
  header {
    padding: 16px 24px;
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .hero {
    padding: 80px 24px;
    min-height: 400px;
  }

  .perks-section {
    padding: 24px;
  }

  .jobs-section {
    padding: 60px 24px;
  }

  #formView {
    padding: 32px 24px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .availability-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .radio-group {
    flex-direction: column;
    gap: 12px;
  }

  .success-view {
    padding: 40px 24px;
  }
}

/* ==========================================================================
   WORK AUTHORIZATION WARNING DIALOG
   ========================================================================== */
.warning-dialog {
  max-width: 480px !important;
  border-radius: var(--radius-lg);
  border: none;
  animation: modalScaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.warning-dialog::backdrop {
  background: rgba(9, 9, 11, 0.6);
  backdrop-filter: blur(8px);
}

.warning-modal-content {
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
}

.warning-emoji {
  font-size: 56px;
  margin-bottom: 24px;
}

.warning-modal-content h2 {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 800;
  color: var(--black-primary);
  margin-bottom: 16px;
  line-height: 1.25;
}

.warning-text-primary {
  font-size: 15px;
  font-weight: 600;
  color: #3f3f46;
  margin-bottom: 12px;
  line-height: 1.5;
}

.warning-text-secondary {
  font-size: 14px;
  color: #71717a;
  line-height: 1.6;
  margin-bottom: 20px;
}

.warning-text-secondary strong {
  color: var(--black-primary);
}

.warning-text-tertiary {
  font-size: 13px;
  color: #a1a1aa;
  line-height: 1.5;
  margin-bottom: 28px;
}

.warning-close-btn {
  width: 100%;
  padding: 14px;
  background: #18181b;
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.warning-close-btn:hover {
  background: #27272a;
}

/* ==========================================================================
   SUBMISSION CONFIRMATION DIALOG
   ========================================================================== */
.confirm-dialog {
  max-width: 480px !important;
  border-radius: var(--radius-lg);
  border: none;
  animation: modalScaleUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.confirm-modal-content {
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--white);
}

.confirm-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.confirm-modal-content h2 {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 800;
  color: var(--black-primary);
  margin-bottom: 16px;
}

.confirm-text {
  font-size: 14px;
  color: var(--gray-dark);
  line-height: 1.6;
  margin-bottom: 32px;
  text-align: justify;
}

.confirm-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  width: 100%;
}

.confirm-cancel-btn {
  padding: 12px;
  background: var(--gray-light);
  color: var(--black-primary);
  border: 1px solid var(--gray-border);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.confirm-cancel-btn:hover {
  background: #e4e4e7;
}

.confirm-accept-btn {
  padding: 12px;
  background: var(--red-primary);
  color: var(--white);
  border: none;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: background var(--transition-fast);
  box-shadow: 0 4px 10px rgba(196, 30, 30, 0.15);
}

.confirm-accept-btn:hover {
  background: var(--red-hover);
  box-shadow: 0 6px 15px rgba(196, 30, 30, 0.25);
}


