/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #f9fafb;
  color: #1f2937;
  overflow-x: hidden;
}

/* Layout */
.sidebar {
  position: fixed;
  left: 0;
  top: 0;
  width: 64px;
  height: 100vh;
  background: linear-gradient(180deg, #1e3a5f 0%, #152a45 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem 0;
  z-index: 1000;
  transition: transform 0.3s;
}

.sidebar.active {
  transform: translateX(0);
}

.sidebar-btn {
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.3s;
  margin-bottom: 1.5rem;
}

.sidebar-btn:hover {
  background: rgba(255, 255, 255, 0.1);
}

.sidebar-spacer {
  flex: 1;
}

.main-wrapper {
  margin-left: 64px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  margin-left: 64px;
  min-height: 100vh;
  background: #f9fafb;
}

/* Header */
.header {
  background: linear-gradient(90deg, #0891b2 0%, #06b6d4 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-inner {
  width: 24px;
  height: 24px;
  background: white;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0891b2;
  font-weight: bold;
  font-size: 0.625rem;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
  letter-spacing: 0.5px;
}

.header-icons {
  display: flex;
  gap: 0.75rem;
  margin-left: 1rem;
}

.header-icons i {
  font-size: 1.25rem;
  opacity: 0.8;
  cursor: pointer;
  transition: opacity 0.3s;
}

.header-icons i:hover {
  opacity: 1;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.user-name {
  font-size: 0.875rem;
  font-weight: 500;
}

.header-right i {
  font-size: 1rem;
  cursor: pointer;
}

/* Content Area */
.content-area {
  flex: 1;
  padding: 1.5rem;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(90deg, #2563eb 0%, #4f46e5 100%);
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  overflow: hidden;
  position: relative;
}

.hero-banner::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
  pointer-events: none;
}

.hero-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 2rem 2.5rem;
  position: relative;
  z-index: 1;
}

.hero-icon {
  width: 48px;
  height: 48px;
  background: rgba(251, 191, 36, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.hero-icon i {
  font-size: 1.5rem;
  color: #fde047;
}

.hero-text {
  flex: 1;
}

.hero-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  margin: 0 0 0.75rem 0;
  line-height: 1.2;
}

.hero-highlight {
  background: linear-gradient(90deg, #fde047 0%, #fb923c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #bfdbfe;
  margin: 0 0 1rem 0;
  line-height: 1.5;
  max-width: 800px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  color: white;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-badge i {
  color: #fde047;
  font-size: 1rem;
}

.hero-badge-ai {
  background: linear-gradient(90deg, #7c3aed 0%, #2563eb 100%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
}

.hero-badge-ai i {
  color: white;
}

/* Page Title Section */
.page-title-section {
  margin-bottom: 1.5rem;
}

.page-title {
  font-size: 2rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.page-subtitle {
  color: #6b7280;
  font-size: 1rem;
}

/* Recommendation Banner */
.recommendation-banner {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #93c5fd;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.recommendation-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.recommendation-icon {
  width: 40px;
  height: 40px;
  background: #3b82f6;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
}

.recommendation-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0;
}

.recommendation-text {
  font-size: 0.875rem;
  color: #1e40af;
  margin: 0;
}

.recommendation-btn {
  background: transparent;
  border: none;
  color: #2563eb;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: underline;
  cursor: pointer;
  white-space: nowrap;
}

.recommendation-btn:hover {
  color: #1d4ed8;
}

/* Compare Button */
.btn-compare {
  border: 2px solid #93c5fd;
  background: white;
  color: #1d4ed8;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  transition: all 0.3s;
}

.btn-compare:hover {
  border-color: #60a5fa;
  background: #eff6ff;
  color: #1d4ed8;
}

/* Certification Card */
.certification-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  margin-bottom: 1rem;
  overflow: hidden;
  transition: box-shadow 0.3s;
}

.certification-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.certification-card-inner {
  display: flex;
}

.cert-left {
  flex: 1;
  padding: 1.5rem;
}

.cert-header {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.cert-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.cert-icon.orange {
  background: #f97316;
}
.cert-icon.green {
  background: #22c55e;
}
.cert-icon.blue {
  background: #3b82f6;
}
.cert-icon.dark-blue {
  background: #2563eb;
}

.cert-title-area {
  flex: 1;
}

.cert-title-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.cert-name {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

.cert-view-more {
  color: #2563eb;
  font-size: 0.875rem;
  text-decoration: none;
  cursor: pointer;
}

.cert-view-more:hover {
  text-decoration: underline;
}

.cert-users {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: #6b7280;
  font-size: 0.75rem;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.cert-badge {
  background: #2563eb;
  color: white;
  font-size: 0.75rem;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-weight: 500;
}

.cert-badge.green {
  background: #16a34a;
}

/* Volume Discount Panel */
.volume-discount-panel {
  background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 50%, #4338ca 100%);
  border: 2px solid #a78bfa;
  border-radius: 12px;
  padding: 1rem;
  color: white;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.volume-discount-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}

.volume-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.volume-title {
  font-size: 0.875rem;
  font-weight: 900;
  margin: 0;
}

.volume-subtitle {
  font-size: 0.75rem;
  font-weight: bold;
  color: #fde047;
  margin: 0;
}

.volume-progress {
  background: rgba(255, 255, 255, 0.2);
  height: 10px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 1;
}

.volume-progress-bar {
  background: linear-gradient(90deg, #fbbf24 0%, #f97316 100%);
  height: 100%;
  border-radius: 10px;
  transition: width 0.5s ease;
  position: relative;
}

.volume-progress-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.75rem;
  text-align: right;
  margin-top: 0.25rem;
  font-weight: 500;
}

.volume-tiers {
  display: flex;
  gap: 0.5rem;
  position: relative;
  z-index: 1;
}

.volume-tier {
  flex: 1;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 0.5rem;
  text-align: center;
  transition: all 0.3s;
}

.volume-tier.active {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(249, 115, 22, 0.3) 100%);
  border-color: #fde047;
  box-shadow: 0 0 12px rgba(253, 224, 71, 0.4);
}

.volume-tier-discount {
  font-size: 1rem;
  font-weight: 900;
  color: #fde047;
}

.volume-tier-range {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  margin-top: 0.125rem;
}

/* Certification Right Panel */
.cert-right {
  width: 320px;
  background: #f9fafb;
  padding: 1.5rem;
  border-left: 1px solid #e5e7eb;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.cert-badges-top {
  display: flex;
  justify-content: flex-end;
  gap: 0.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.discount-badge {
  background: #ef4444;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.popular-badge {
  background: #7c3aed;
  color: white;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.cert-pricing {
  flex: 1;
}

.original-price {
  font-size: 0.875rem;
  color: #6b7280;
  text-decoration: line-through;
  margin-bottom: 0.25rem;
}

.savings-badge {
  background: #dcfce7;
  color: #166534;
  padding: 0.125rem 0.5rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-bottom: 0.25rem;
}

.current-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}

.price-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1f2937;
}

.price-currency {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: bold;
}

.limited-offer {
  font-size: 0.75rem;
  color: #ea580c;
  font-weight: 600;
  margin-bottom: 1rem;
}

.add-to-cart-btn {
  width: 100%;
  padding: 0.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.add-to-cart-btn.primary {
  background: #2563eb;
  color: white;
}

.add-to-cart-btn.primary:hover {
  background: #1d4ed8;
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.add-to-cart-btn.success {
  background: #16a34a;
  color: white;
}

.add-to-cart-btn.success:hover {
  background: #15803d;
}

/* Purchase Summary */
.purchase-summary {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #dbeafe;
  padding: 1.5rem;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.summary-title-area {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.summary-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.summary-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

.summary-count {
  font-size: 0.75rem;
  color: #6b7280;
  margin: 0;
}

.step-badge {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: bold;
}

/* Empty Cart */
.empty-cart {
  text-align: center;
  padding: 3rem 1rem;
}

.empty-cart-icon {
  width: 96px;
  height: 96px;
  background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.2);
}

.empty-cart-icon i {
  font-size: 3rem;
  color: #3b82f6;
}

.empty-cart-title {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.empty-cart-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1.5rem;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.empty-cart-features {
  text-align: left;
  margin-bottom: 1.5rem;
}

.empty-cart-recomendation{
  padding: calc(0.25rem * 4);
  background-color: #eff6ff;
  border: 1px solid #bedbff;
  border-width: 2px;
  border-radius: 0.5rem;
  width: 100%;
}

.empty-text-recomendation-title{
  color: #1c398e;
  font-weight: bold;
}

.empty-cart-recomendation-body{
  color: #1447e6;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #374151;
}

.feature-check {
  width: 20px;
  height: 20px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-check i {
  font-size: 0.75rem;
  color: #16a34a;
}

.security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #9ca3af;
  font-size: 0.75rem;
  margin-top: 1.5rem;
}

/* Cart Items */
.activity-banner {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 8px;
  padding: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.activity-banner i {
  color: #7c3aed;
}

.activity-text {
  font-size: 0.75rem;
  color: #6b21a8;
  margin: 0;
}

.cart-items {
  max-height: 256px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.cart-item {
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem;
  margin-bottom: 0.75rem;
  transition: border-color 0.3s;
}

.cart-item:hover {
  border-color: #93c5fd;
}

.cart-item-header {
  margin-bottom: 0.5rem;
}

.cart-discount-text-blue {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  color: #1e40af;
  font-weight: bold;
}

.cart-discount-green {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  background: #dcfce7;
  border: 1px solid #e9d5ff;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
}

.cart-discount-text-green {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
}

.cart-discount-purple {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  padding: 0.5rem;
  border-radius: 6px;
  font-size: 0.7rem;
}

.cart-discount-text-purple {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
}

.cart-discount-text-yellow {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem;
  border-radius: 1rem;
  color: red;
  font-size: 0.7rem;
  background: #fef3c7;
}

.cart-discount-text-yellow .totales {
  margin-left:10px;
}

.cart-item-info {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cart-item-name {
  font-size: 0.875rem;
  font-weight: bold;
  color: #1f2937;
}

.cart-item-delete {
  font-size: 0.875rem;
  font-weight: bold;
  color: #ef4444;
}

.cart-item-delete:hover {
  color: #cf2828;
}

.cart-item-savings {
  font-size: 0.75rem;
  color: #16a34a;
  font-weight: 600;
  margin: 0;
}

.remove-item-btn {
  background: transparent;
  border: none;
  color: #ef4444;
  cursor: pointer;
  padding: 0.25rem;
  border-radius: 4px;
  transition: all 0.3s;
}

.remove-item-btn:hover {
  background: #fee2e2;
  color: #dc2626;
}

.cart-item-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.quantity-controls {
  width: 100%;
  padding: 1rem;
  font-size: 1rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.quantity-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 4px;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-weight: bold;
  transition: all 0.3s;
}

.quantity-btn.minus {
  background: #f3f4f6;
  color: #374151;
}

.quantity-btn.minus:hover {
  background: #e5e7eb;
}

.quantity-btn.plus {
  background: #3b82f6;
  color: white;
}

.quantity-btn.plus:hover {
  background: #2563eb;
}

.quantity-display {
  font-size: 0.875rem;
  font-weight: bold;
  width: 32px;
  text-align: center;
}

.cart-item-price {
  font-size: 1rem;
  font-weight: bold;
  color: #1f2937;
}

/* Summary Totals */
.summary-totals {
  border-top: 2px solid #e5e7eb;
  padding-top: 1rem;
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.summary-row.highlight {
  background: #dcfce7;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  padding: 0.5rem;
  border-radius: 6px;
  border: 1px solid #7fd59c;
}

.summary-row.highlight.purple {
  background: #faf5ff;
  border: 1px solid #e9d5ff;
}

.summary-row.highlight.orange {
  background: #ffecd6;
  border: 1px solid #fdba74;
  color: #d18870;
}

.summary-label {
  color: #6b7280;
}

.summary-label.blue {
  color: #1e40af;
  font-weight: 600;
  font-weight: bold;
}

.summary-label.orange {
  color: #9a3412;
  font-weight: 600;
  font-weight: bold;
}

.summary-label.green {
  color: #166534;
  font-weight: 600;
}

.summary-label.purple {
  color: #6b21a8;
  font-weight: bold;
}

.summary-value {
  font-weight: 600;
}

.summary-value.blue {
  color: #1e40af;
  font-weight: bold;
}

.summary-value.orange {
  color: #9a3412;
  font-weight: bold;
}

.summary-value.green {
  color: #166534;
  font-weight: bold;
}

.summary-value.purple {
  color: #6b21a8;
  font-weight: bold;
}

.summary-total {
  background: linear-gradient(90deg, #3b82f6 0%, #06b6d4 100%);
  color: white;
  border-radius: 8px;
  padding: 1rem;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.total-left p {
  margin: 0;
}

.total-label {
  font-size: 0.75rem;
  opacity: 0.9;
}

.total-amount {
  font-size: 1.875rem;
  font-weight: 900;
  margin: 0.25rem 0;
}

.total-currency {
  font-size: 0.75rem;
  opacity: 0.9;
}

.total-savings-label {
  font-size: 0.75rem;
  opacity: 0.9;
  text-align: right;
}

.total-savings-amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #fde047;
}

/* Continue Button */
.continue-btn {
  width: 100%;
  background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
  color: white;
  border: none;
  padding: 1.25rem;
  font-size: 1.125rem;
  font-weight: 900;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
  box-shadow: 0 8px 16px rgba(34, 197, 94, 0.3);
  margin-bottom: 0.5rem;
}

.continue-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 24px rgba(34, 197, 94, 0.4);
}

/* Security Info */
.security-info {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
}

.security-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

.security-item {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.security-item i {
  font-size: 1rem;
}

.security-item i.fa-lock {
  color: #16a34a;
}

.security-item i.fa-shield-alt {
  color: #3b82f6;
}

.security-divider {
  width: 1px;
  height: 16px;
  background: #d1d5db;
}

.payment-methods-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding-top: 0.75rem;
  border-top: 1px solid #e5e7eb;
}

.payment-methods-icons i {
  color: #6b7280;
}

.payment-icon-card {
  width: 32px;
  height: 20px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.5rem;
  font-weight: bold;
  color: white;
}

.payment-icon-card.visa {
  background: linear-gradient(90deg, #1e3a8a 0%, #3b82f6 100%);
}

.payment-icon-card.mastercard {
  background: linear-gradient(90deg, #dc2626 0%, #f97316 100%);
}

.payment-icon-card.amex {
  background: linear-gradient(90deg, #1e40af 0%, #2563eb 100%);
}

.payment-icon-card.oxxo {
  background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
}

/* Promo Banner */
.promo-banner {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border: 2px solid #fbbf24;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.promo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.promo-title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #78350f;
  margin: 0 0 0.25rem 0;
}

.promo-text {
  font-size: 0.75rem;
  color: #92400e;
  margin: 0;
}

/* Sticky Sidebar */
.sticky-sidebar {
  position: sticky!important;
  top: 1.5rem!important;
}

/* Comparison Modal */
.table-comparison {
  margin-bottom: 0;
}

.table-comparison thead th {
  background: #f9fafb;
  border-bottom: 2px solid #e5e7eb;
  padding: 1rem;
  vertical-align: middle;
}

.table-comparison tbody tr {
  transition: background 0.3s;
}

.table-comparison tbody tr:hover {
  background: #f9fafb;
}

.table-comparison tbody td {
  padding: 1rem;
  vertical-align: middle;
}

.plan-name {
  font-weight: bold;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.plan-price {
  font-size: 1.5rem;
  font-weight: 900;
  color: #2563eb;
  margin-bottom: 0.25rem;
}

.plan-time {
  font-size: 0.875rem;
  color: #6b7280;
}

.select-plan-btn {
  background: #2563eb;
  border: none;
  color: white;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s;
}

.select-plan-btn:hover {
  background: #1d4ed8;
}

/* Checkout Page Styles */
.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.breadcrumb-link {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-link:hover {
  color: #2563eb;
}

.breadcrumb-separator {
  color: #9ca3af;
}

.breadcrumb-current {
  color: #1f2937;
  font-weight: 600;
}

.breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 1.5rem;
}

.breadcrumb-item {
  font-size: 0.875rem;
}

.breadcrumb-item a {
  color: #6b7280;
  text-decoration: none;
  transition: color 0.3s;
}

.breadcrumb-item a:hover {
  color: #2563eb;
}

.breadcrumb-item.active {
  color: #1f2937;
  font-weight: 600;
}

.breadcrumb-item + .breadcrumb-item::before {
  content: "/";
  color: #9ca3af;
  padding: 0 0.5rem;
}

/* Payment Section */
.payment-section {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.25rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.section-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

/* Payment Methods */
.payment-methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.payment-method-card {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.payment-method-disabled {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}

.payment-method-disabled .payment-method-content{
  background: #F7F7F7;
}

.payment-method-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.payment-method-card.active {
  border-color: #3b82f6;
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.2);
}

.payment-method-card.active .payment-method-content {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 50%, #eff6ff 100%);
}

.payment-method-card[data-method="spei"].active .payment-method-content {
  background: linear-gradient(135deg, #fef2f2 0%, #fee2e2 100%);
}

.payment-method-card[data-method="cash"].active .payment-method-content {
  background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
}

.recommended-badge {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(90deg, #22c55e 0%, #10b981 100%);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 0.375rem 0.75rem;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 2px 8px rgba(34, 197, 94, 0.3);
  z-index: 10;
}

.payment-method-content {
  padding: 1.5rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: white;
  transition: background 0.3s;
}

.payment-radio {
  margin-top: 0.25rem;
}

.radio-outer {
  width: 24px;
  height: 24px;
  border: 2px solid #d1d5db;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.3s;
}

.payment-method-card.active .radio-outer {
  border-color: #3b82f6;
}

.radio-inner {
  width: 14px;
  height: 14px;
  background: #3b82f6;
  border-radius: 50%;
  display: none;
}

.payment-method-card.active .radio-inner {
  display: block;
}

.payment-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
  transition: all 0.3s;
}

.payment-icon.card-icon {
  background: #dbeafe;
  color: #2563eb;
}

.payment-method-card.active .payment-icon.card-icon {
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.payment-icon.spei-icon {
  background: #fee2e2;
  color: #dc2626;
}

.payment-method-card.active .payment-icon.spei-icon {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.3);
}

.payment-icon.cash-icon {
  background: #dcfce7;
  color: #16a34a;
}

.payment-method-card.active .payment-icon.cash-icon {
  background: linear-gradient(135deg, #22c55e 0%, #10b981 100%);
  color: white;
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.payment-info {
  flex: 1;
}

.payment-title {
  font-size: 1.125rem;
  font-weight: 900;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
}

.payment-description {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 0.5rem 0;
}

.instant-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #e2e7fe;
  border: 1px solid #1e40af;
  color: #12239a;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: bold;
}

.instant-badge i {
  color: #12239a;
}

.process-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  background: #fed7aa;
  border: 1px solid #fdba74;
  color: #9a3412;
  padding: 0.375rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: bold;
}

.process-badge i {
  color: #ea580c;
}

.process-badge.cash-badge {
  background: #dcfce7;
  border: 1px solid #86efac;
  color: #166534;
}

.process-badge.cash-badge i {
  color: #16a34a;
}

/* Card Info Section */
#cardInfoSection {
  display: block;
}

#cardInfoSection.hidden {
  display: none;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control {
  background: #f9fafb;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.form-control:focus {
  border-color: #3b82f6;
  outline: none;
  background: white;
}

/* Custom Checkbox */
.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.custom-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  cursor: pointer;
  appearance: none;
  position: relative;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.custom-checkbox input[type="checkbox"]:checked {
  background: #3b82f6;
  border-color: #3b82f6;
}

.custom-checkbox input[type="checkbox"]:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 0.75rem;
  font-weight: bold;
}

.checkbox-label {
  font-weight: 600;
  color: #1f2937;
  cursor: pointer;
}

/* Info Box */
.info-box {
  background: #eff6ff;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  padding: 1rem;
}

.info-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 0.25rem 0;
}

.info-text {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  font-family: "Courier New", monospace;
  margin: 0;
  word-break: break-all;
}

.info-value-sm {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 1rem;
}

.btn-action {
  flex: 1;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s;
}

.btn-gradient {
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
  border: none;
  color: white;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-gradient:hover {
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
  transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 991px) {
  .sidebar {
    width: 0;
    overflow: hidden;
  }

  .main-wrapper {
    margin-left: 0;
  }

  .cert-right {
    width: 100%;
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }

  .certification-card-inner {
    flex-direction: column;
  }

  .sticky-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .header-content {
    flex-direction: column;
    gap: 1rem;
  }

  .page-title {
    font-size: 1.5rem;
  }

  .recommendation-banner {
    flex-direction: column;
    text-align: center;
  }

  .volume-tiers {
    flex-direction: column;
  }

  .action-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.active {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .success-title {
    font-size: 1.5rem;
  }

  .success-subtitle {
    font-size: 1rem;
  }

  .amount-value {
    font-size: 2rem;
  }

  .payment-title {
    font-size: 1.25rem;
  }
}

/* Payment Format Modal */
.payment-format-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #3b82f6 0%, #06b6d4 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.5rem;
}

.payment-format-summary {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #93c5fd;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.payment-format-summary .summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.75rem;
}

.payment-format-summary .summary-row:last-child {
  margin-bottom: 0;
}

.payment-format-summary .summary-row span {
  font-size: 0.875rem;
  color: #1e40af;
}

.payment-format-summary .amount {
  font-size: 1.5rem;
  font-weight: 900;
  color: #1e3a8a;
}

.payment-format-summary .reference {
  font-family: monospace;
  font-size: 1.125rem;
  font-weight: bold;
  color: #1e3a8a;
  background: white;
  padding: 0.5rem 1rem;
  border-radius: 6px;
}

.payment-format-instructions h3 {
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin-bottom: 1rem;
}

.payment-format-instructions ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.payment-format-instructions ol li {
  margin-bottom: 0.5rem;
  color: #374151;
}

.bank-details {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f3f4f6;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 600;
}

.detail-value {
  font-size: 1rem;
  color: #1f2937;
  font-weight: bold;
  font-family: monospace;
}

.copy-btn {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  margin-left: 0.5rem;
}

.copy-btn:hover {
  background: #2563eb;
}

.store-logos {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.store-logo {
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border: 2px solid #d1d5db;
  border-radius: 8px;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  color: #374151;
  font-size: 0.875rem;
}

.barcode-container {
  background: white;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  margin: 1.5rem 0;
}

.barcode {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 0 auto 1rem;
}

.barcode-number {
  font-family: monospace;
  font-size: 1.125rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0;
}

.alert {
  padding: 1rem;
  border-radius: 8px;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.alert-info {
  background: #eff6ff;
  border: 1px solid #93c5fd;
  color: #1e40af;
}

.alert-info i {
  color: #3b82f6;
}

.alert-warning {
  background: #fef3c7;
  border: 1px solid #fbbf24;
  color: #92400e;
}

.alert-warning i {
  color: #f59e0b;
}

.alert strong {
  font-weight: 700;
}

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}

/* Payment Format Page Styles */
.max-w-4xl {
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
}

.payment-success-header {
  background: linear-gradient(90deg, #2563eb 0%, #06b6d4 100%);
  border-radius: 16px;
  padding: 2rem;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.25);
  position: relative;
  overflow: hidden;
}

.payment-success-header::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(30%, -30%);
}

.success-icon {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-right: 1rem;
}

.success-icon i {
  font-size: 2rem;
  color: white;
}

.success-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 0 0 0.5rem 0;
}

.success-subtitle {
  font-size: 1.125rem;
  color: #bfdbfe;
  margin: 0 0 1rem 0;
  line-height: 1.5;
}

.order-number-badge {
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 8px;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.badge-label {
  font-size: 0.875rem;
  font-weight: 600;
}

.badge-value {
  font-size: 1.125rem;
  font-weight: 900;
}

.expiration-warning {
  background: #fff7ed;
  border: 2px solid #fed7aa;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.expiration-warning i {
  font-size: 1.5rem;
  color: #ea580c;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.warning-title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #7c2d12;
  margin: 0 0 0.25rem 0;
}

.warning-text {
  font-size: 0.875rem;
  color: #9a3412;
  margin: 0;
}

.payment-instructions-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.payment-header {
  padding: 1.5rem;
  color: white;
}

.payment-header-spei {
  background: linear-gradient(90deg, #ef4444 0%, #f97316 100%);
}

.payment-header-cash {
  background: linear-gradient(90deg, #22c55e 0%, #22c55e 100%);
}

.payment-icon {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 0.75rem;
}

.payment-icon i {
  font-size: 1.5rem;
}

.payment-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0 0 0.25rem 0;
}

.payment-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
  color: #6b7280;
  margin: 0;
}

.payment-body {
  padding: 1.5rem;
}

.amount-box {
  background: linear-gradient(135deg, #eff6ff 0%, #dbeafe 100%);
  border: 2px solid #93c5fd;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
}

.amount-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e3a8a;
  margin: 0 0 0.5rem 0;
}

.amount-value {
  font-size: 2.5rem;
  font-weight: 900;
  color: #2563eb;
  margin: 0;
}

.info-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  display: block;
  margin-bottom: 0.5rem;
}

.btn-copy {
  background: #3b82f6;
  color: white;
  border: none;
  padding: 0.375rem 0.75rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
}

.btn-copy:hover {
  background: #2563eb;
}

.btn-copy i {
  font-size: 0.875rem;
}

.store-box {
  background: white;
  border: 2px solid #e5e7eb;
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  color: #374151;
  font-size: 0.875rem;
  transition: all 0.3s;
}

.store-box:hover {
  border-color: #93c5fd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.instructions-box {
  background: #f9fafb;
  border-radius: 8px;
  padding: 1rem;
}

.instructions-title {
  font-size: 0.875rem;
  font-weight: bold;
  color: #1f2937;
  margin: 0 0 0.75rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.instructions-title i {
  color: #3b82f6;
  font-size: 1.125rem;
}

.instructions-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: decimal;
}

.instructions-list li {
  font-size: 0.875rem;
  color: #374151;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.instructions-list li:last-child {
  margin-bottom: 0;
}

.help-box {
  background: #eff6ff;
  border: 1px solid #93c5fd;
  border-radius: 8px;
  padding: 1rem;
}

.help-box p {
  font-size: 0.875rem;
  color: #1e40af;
}

.help-box a {
  color: #2563eb;
  font-weight: 600;
  text-decoration: none;
}

.help-box a:hover {
  text-decoration: underline;
}

/* Main Header Styles */
.main-header {
  background: linear-gradient(90deg, #0891b2 0%, #06b6d4 100%);
  color: white;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0.75rem 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: bold;
  color: white;
}

.header-logo i {
  font-size: 1.5rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.header-actions .btn-link {
  color: white;
  font-size: 1.25rem;
  padding: 0.5rem;
}

.user-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.user-avatar {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.875rem;
  font-weight: 600;
}

.user-name {
  font-size: 0.875rem;
  font-weight: 500;
}

/* Sidebar Navigation */
.sidebar-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0 0.5rem;
}

.sidebar-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
  font-size: 0.75rem;
}

.sidebar-link:hover {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

.sidebar-link i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.sidebar-link span {
  font-size: 0.625rem;
  text-align: center;
}

/* Responsive */
@media print {
  .main-header,
  .sidebar,
  .breadcrumb,
  .btn,
  button {
    display: none !important;
  }

  .payment-instructions-card {
    box-shadow: none;
    border: 2px solid #000;
  }

  .main-content {
    margin-left: 0;
  }
}

.text-discounts{
  text-decoration: line-through;
}

.font-bold{
  font-weight: bold;
}

.cert-selected{
  border: 1px solid blue;
}

.d-none{
  display: none;
}

.ml-1{
  margin-left: 5px;
}

.clabe-bank{
  font-size: 2rem;
  font-weight: bold;
}

.referencia-bank{
  font-size: 1.3rem;
  font-weight: bold;
}

.datos-bank{
  font-size: 1.1rem;
  font-weight: bold;
}

.div-paquete {
  width: 100%;
  height: 750px;
  overflow: hidden;
}

.div-paquete img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.trust-eye {
  border-radius: 10px;
}

.trust-btn {
  border-radius: 12px;
  padding: 12px 14px;
  font-weight: 700;
  background: #2f7cf6;
  border-color: #2f7cf6;
}

.trust-btn:disabled {
  opacity: .55;
  cursor: not-allowed;
}

.trust-progress {
  border-radius: 999px;
  background: #e9f0ff;
}