/* ==========================================================================
   Anclademia Pricing Module - Modern Nautical Visual System
   Scoped CSS Classes: .ancla-pricing-* (Prevents conflicts with host site)
   ========================================================================== */

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

/* Master CSS Variables & Tokens */
:root {
  --ancla-navy-deep: #0b192c;
  --ancla-navy-medium: #1e3a5f;
  --ancla-cyan-primary: #00b4d8;
  --ancla-cyan-hover: #0096b4;
  --ancla-cyan-light: #e6f8fc;
  --ancla-emerald: #10b981;
  --ancla-emerald-light: #ecfdf5;
  --ancla-amber: #f59e0b;
  --ancla-amber-light: #fffbe completed;
  --ancla-slate-900: #0f172a;
  --ancla-slate-700: #334155;
  --ancla-slate-500: #64748b;
  --ancla-slate-300: #cbd5e1;
  --ancla-slate-100: #f1f5f9;
  --ancla-slate-50: #f8fafc;
  --ancla-white: #ffffff;
  
  --ancla-radius-lg: 20px;
  --ancla-radius-md: 14px;
  --ancla-radius-sm: 8px;

  --ancla-shadow-card: 0 12px 32px -8px rgba(11, 25, 44, 0.08), 0 4px 12px rgba(11, 25, 44, 0.03);
  --ancla-shadow-card-hover: 0 24px 48px -12px rgba(11, 25, 44, 0.16), 0 8px 20px rgba(0, 180, 216, 0.12);
  --ancla-shadow-btn: 0 4px 14px rgba(0, 180, 216, 0.35);

  --ancla-transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset local */
.ancla-pricing-wrapper * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.ancla-pricing-wrapper {
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
  padding: 12px 10px;
  background: transparent;
  color: var(--ancla-slate-900);
  box-sizing: border-box;
}

/* Header opcional de sección */
.ancla-pricing-header {
  text-align: center;
  margin-bottom: 40px;
}

.ancla-pricing-tagline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--ancla-cyan-light);
  color: var(--ancla-cyan-hover);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.ancla-pricing-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--ancla-navy-deep);
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .ancla-pricing-title { font-size: 40px; }
}

/* Grid de Cursos (Multicolumna Adaptable) */
.ancla-pricing-container {
  container-type: inline-size;
  width: 100%;
}

.ancla-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  width: 100%;
  box-sizing: border-box;
}

@media (min-width: 640px) {
  .ancla-pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 960px) {
  .ancla-pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tarjeta de Curso */
.ancla-card {
  background: var(--ancla-white);
  border: 1px solid rgba(226, 232, 240, 0.9);
  border-radius: var(--ancla-radius-lg);
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--ancla-shadow-card);
  transition: var(--ancla-transition);
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.ancla-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ancla-shadow-card-hover);
  border-color: rgba(0, 180, 216, 0.3);
}

.ancla-card-featured,
.ancla-card-border-cyan {
  border: 2.5px solid #00b4d8 !important;
  box-shadow: 0 12px 32px rgba(0, 180, 216, 0.15) !important;
}

.ancla-card-featured::before,
.ancla-card-border-cyan::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00b4d8, #0077b6);
}

.ancla-card-border-fire {
  border: 2.5px solid #f97316 !important;
  box-shadow: 0 12px 32px rgba(249, 115, 22, 0.15) !important;
}
.ancla-card-border-fire::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ef4444, #f97316);
}

.ancla-card-border-gold {
  border: 2.5px solid #f59e0b !important;
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.15) !important;
}
.ancla-card-border-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
}

.ancla-card-border-purple {
  border: 2.5px solid #8b5cf6 !important;
  box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15) !important;
}
.ancla-card-border-purple::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #8b5cf6, #6d28d9);
}

.ancla-card-border-navy {
  border: 2.5px solid #0b192c !important;
  box-shadow: 0 12px 32px rgba(11, 25, 44, 0.15) !important;
}
.ancla-card-border-navy::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #0b192c, #1e293b);
}

.ancla-card-border-soft {
  border: 1px solid #cbd5e1 !important;
  box-shadow: var(--ancla-shadow-card) !important;
}
.ancla-card-border-soft::before {
  display: none !important;
}

/* Header de la tarjeta */
.ancla-card-header {
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.ancla-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 13px;
  border-radius: 12px;
  margin-bottom: 10px;
  letter-spacing: 0.2px;
  transition: all 0.2s ease;
  background: var(--ancla-slate-100);
  color: var(--ancla-navy-medium);
  align-self: flex-start;
}

.ancla-badge-popular,
.ancla-badge-navy {
  background: #0b192c !important;
  color: #ffffff !important;
}

.ancla-badge-fire {
  background: linear-gradient(135deg, #ef4444 0%, #f97316 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(239, 68, 68, 0.35);
}

.ancla-badge-cyan {
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(0, 180, 216, 0.35);
}

.ancla-badge-gold {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.35);
}

.ancla-badge-purple {
  background: linear-gradient(135deg, #8b5cf6 0%, #6d28d9 100%) !important;
  color: #ffffff !important;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.35);
}

.ancla-badge-soft {
  background: #f1f5f9 !important;
  color: #334155 !important;
  border: 1px solid #e2e8f0;
}

.ancla-card-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--ancla-navy-deep);
  line-height: 1.3;
  margin-bottom: 4px;
}

.ancla-card-description {
  font-size: 13.5px;
  color: var(--ancla-slate-700);
  line-height: 1.5;
  margin-top: 6px;
  margin-bottom: 0;
}

/* Lista de características con altura fijada para alineación matemática horizontal perfecta */
.ancla-features-list {
  list-style: none;
  margin: 16px 0 20px;
  padding: 0 4px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 275px;
  min-height: 275px;
  max-height: 275px;
  overflow-y: auto;
}

.ancla-features-list::-webkit-scrollbar {
  width: 4px;
}
.ancla-features-list::-webkit-scrollbar-thumb {
  background: rgba(0, 180, 216, 0.3);
  border-radius: 4px;
}
.ancla-features-list::-webkit-scrollbar-track {
  background: transparent;
}

.ancla-modality-section {
  height: 135px;
  min-height: 135px;
  margin-bottom: 18px;
}

.ancla-extras-section {
  height: 85px;
  min-height: 85px;
  margin-bottom: 18px;
}

.ancla-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--ancla-slate-700);
  line-height: 1.45;
}

.ancla-feature-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--ancla-emerald-light);
  color: var(--ancla-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.ancla-feature-icon svg {
  width: 12px;
  height: 12px;
  stroke-width: 3;
}

/* Bloque de Especificaciones Náuticas (Eslora y Millas) */
.ancla-specs-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  background: var(--ancla-slate-50);
  border: 1px solid var(--ancla-slate-300);
  border-radius: 12px;
  padding: 12px;
  margin-bottom: 16px;
}

.ancla-spec-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 2px;
}

.ancla-spec-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ancla-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ancla-spec-value {
  font-size: 13.5px;
  font-weight: 800;
  color: var(--ancla-navy-deep);
  text-align: center;
}

/* Tag Promocional de Descuentos antes de comprar */
.ancla-discount-tag-header {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.12), rgba(0, 180, 216, 0.12));
  border: 1px dashed rgba(16, 185, 129, 0.4);
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 10px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Selector de Modalidad (Teoría Online / Presencial) */
.ancla-option-section {
  margin-bottom: 18px;
}

.ancla-option-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--ancla-navy-deep);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.ancla-modality-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ancla-slate-50);
  border: 1.5px solid var(--ancla-slate-300);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--ancla-transition);
  font-size: 13px;
  color: var(--ancla-slate-700);
}

.ancla-modality-item:hover {
  border-color: var(--ancla-cyan-primary);
}

.ancla-modality-item.active {
  background: var(--ancla-cyan-light);
  border-color: var(--ancla-cyan-primary);
  color: var(--ancla-navy-deep);
  font-weight: 700;
}

.ancla-modality-radio {
  accent-color: var(--ancla-cyan-primary);
  margin-right: 8px;
}

/* Selector de Extras Opcionales (Vela, Baleares, etc.) */
.ancla-extras-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ancla-extra-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--ancla-white);
  border: 1px solid var(--ancla-slate-300);
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transition: var(--ancla-transition);
  font-size: 13px;
  color: var(--ancla-slate-700);
}

.ancla-extra-item:hover {
  border-color: var(--ancla-cyan-primary);
  background: var(--ancla-slate-50);
}

.ancla-extra-checkbox {
  accent-color: var(--ancla-cyan-primary);
  width: 16px;
  height: 16px;
  margin-right: 8px;
}

.ancla-extra-price {
  font-weight: 700;
  color: var(--ancla-cyan-hover);
  font-size: 12px;
}

/* Sección de Precio Base */
.ancla-price-section {
  background: var(--ancla-slate-50);
  border-radius: var(--ancla-radius-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--ancla-slate-100);
}

.ancla-base-price-wrapper {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.ancla-price-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ancla-slate-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ancla-price-amount {
  font-size: 32px;
  font-weight: 800;
  color: var(--ancla-navy-deep);
  line-height: 1;
}

.ancla-price-unit {
  font-size: 14px;
  font-weight: 500;
  color: var(--ancla-slate-500);
}

/* Selector de Cantidad de Personas */
.ancla-qty-section {
  margin-bottom: 20px;
}

.ancla-qty-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.ancla-qty-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--ancla-slate-700);
}

.ancla-qty-controls {
  display: flex;
  align-items: center;
  background: var(--ancla-slate-100);
  border-radius: 12px;
  padding: 4px;
  border: 1px solid var(--ancla-slate-300);
  width: fit-content;
}

.ancla-qty-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: none;
  background: var(--ancla-white);
  color: var(--ancla-navy-deep);
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ancla-transition);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.ancla-qty-btn:hover:not(:disabled) {
  background: var(--ancla-cyan-primary);
  color: var(--ancla-white);
}

.ancla-qty-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.ancla-qty-input {
  width: 48px;
  height: 36px;
  border: none;
  background: transparent;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--ancla-navy-deep);
  -moz-appearance: textfield;
}

.ancla-qty-input::-webkit-outer-spin-button,
.ancla-qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Box de Desglose Económico */
.ancla-breakdown-box {
  background: linear-gradient(145deg, #f8fafc, #f1f5f9);
  border-radius: var(--ancla-radius-md);
  padding: 16px;
  margin-bottom: 20px;
  border: 1px solid var(--ancla-slate-300);
}

.ancla-breakdown-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--ancla-slate-700);
  margin-bottom: 8px;
}

.ancla-breakdown-row.discount-row {
  color: var(--ancla-emerald);
  font-weight: 600;
}

.ancla-breakdown-row.total-row {
  font-size: 16px;
  font-weight: 800;
  color: var(--ancla-navy-deep);
  border-top: 1px stroke #cbd5e1;
  padding-top: 10px;
  margin-top: 8px;
  margin-bottom: 0;
}

.ancla-discount-banner {
  background: var(--ancla-emerald-light);
  border: 1px solid rgba(16, 185, 129, 0.3);
  color: #065f46;
  font-size: 12px;
  font-weight: 700;
  padding: 8px 12px;
  border-radius: 8px;
  margin-top: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ancla-per-person-effective {
  font-size: 12px;
  color: var(--ancla-slate-500);
  text-align: right;
  margin-top: 4px;
}

/* Botón Principal */
.ancla-btn-submit {
  width: 100%;
  height: 52px;
  min-height: 52px;
  background: linear-gradient(135deg, var(--ancla-cyan-primary), var(--ancla-cyan-hover));
  color: var(--ancla-white);
  border: none;
  padding: 0 16px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: var(--ancla-shadow-btn);
  transition: var(--ancla-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  white-space: nowrap;
  box-sizing: border-box;
}

.ancla-btn-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Selector de Plazos Alma (2x, 3x, 4x) */
.ancla-alma-selector-wrapper {
  margin-top: 14px;
  padding: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ancla-alma-selector-title {
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  display: flex;
  align-items: center;
  gap: 6px;
}

.ancla-alma-pills {
  display: flex;
  gap: 6px;
}

.ancla-alma-pill {
  flex: 1;
  height: 40px;
  min-height: 40px;
  background: #ffffff;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  padding: 0 4px;
  font-size: 11.5px;
  font-weight: 700;
  color: #334155;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  white-space: nowrap;
  box-sizing: border-box;
}

.ancla-alma-pill:hover {
  border-color: #6366f1;
  color: #4f46e5;
  background: #f5f3ff;
}

.ancla-alma-pill.active {
  border-color: #4f46e5;
  background: #eef2ff;
  color: #4338ca;
  box-shadow: 0 2px 8px rgba(79, 70, 229, 0.2);
}

/* Grupo de Botones de Compra y Pago a Plazos Alma */
.ancla-btn-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.ancla-btn-alma {
  width: 100%;
  height: 52px;
  min-height: 52px;
  background: rgba(11, 25, 44, 0.03);
  color: var(--ancla-navy-deep);
  border: 1.5px solid var(--ancla-navy-deep);
  padding: 0 14px;
  border-radius: 14px;
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--ancla-transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  white-space: nowrap;
  box-sizing: border-box;
}

.ancla-btn-alma:hover:not(:disabled) {
  background: var(--ancla-navy-deep);
  color: var(--ancla-white);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(11, 25, 44, 0.2);
}

.ancla-btn-alma:disabled {
  opacity: 0.6;
  cursor: wait;
}

/* Formulario Modal del Comprador */
.ancla-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 25, 44, 0.6);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.ancla-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.ancla-modal-content {
  background: var(--ancla-white);
  border-radius: var(--ancla-radius-lg);
  max-width: 480px;
  width: 100%;
  padding: 32px;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ancla-modal-overlay.active .ancla-modal-content {
  transform: translateY(0);
}

.ancla-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--ancla-slate-100);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ancla-slate-500);
}

.ancla-form-group {
  margin-bottom: 16px;
}

.ancla-form-label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--ancla-slate-700);
  margin-bottom: 6px;
}

.ancla-form-input {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--ancla-slate-300);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
}

.ancla-form-input:focus {
  border-color: var(--ancla-cyan-primary);
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.15);
}

/* Estados Especiales */
.ancla-state-box {
  text-align: center;
  padding: 60px 20px;
  background: var(--ancla-white);
  border-radius: var(--ancla-radius-lg);
  box-shadow: var(--ancla-shadow-card);
  max-width: 500px;
  margin: 0 auto;
}

.ancla-spinner {
  width: 44px;
  height: 44px;
  border: 4px solid var(--ancla-slate-100);
  border-top-color: var(--ancla-cyan-primary);
  border-radius: 50%;
  animation: ancla-spin 0.8s linear infinite;
  margin: 0 auto 20px;
}

@keyframes ancla-spin {
  to { transform: rotate(360deg); }
}

/* Skeletons para estado de carga */
.ancla-skeleton-card {
  height: 480px;
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: ancla-skeleton-loading 1.5s infinite;
  border-radius: var(--ancla-radius-lg);
}

@keyframes ancla-skeleton-loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Acordeón Redsys InSite en Tarjeta */
.ancla-insite-accordion {
  margin-top: 16px;
  background: linear-gradient(135deg, #f8fafc 0%, #f0fdf4 100%);
  border: 2px solid #00b4d8;
  border-radius: var(--ancla-radius-md);
  padding: 20px 18px;
  box-shadow: 0 10px 25px -5px rgba(0, 180, 216, 0.15);
  animation: ancla-accordion-slide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes ancla-accordion-slide {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ancla-insite-title {
  font-size: 15px;
  font-weight: 800;
  color: var(--ancla-navy-deep);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.ancla-insite-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ancla-insite-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ancla-insite-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--ancla-slate-700);
}

.ancla-insite-input-wrapper {
  position: relative;
}

.ancla-insite-input-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ancla-insite-input {
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px 10px 36px;
  border: 1.5px solid #cbd5e1;
  border-radius: 10px;
  font-size: 13.5px;
  font-weight: 600;
  color: #0f172a;
  background: #ffffff;
  outline: none;
  transition: all 0.2s ease;
}

.ancla-insite-input:focus {
  border-color: #00b4d8;
  box-shadow: 0 0 0 3px rgba(0, 180, 216, 0.18);
}

.ancla-insite-row {
  display: flex;
  gap: 10px;
}

.ancla-insite-row .ancla-insite-field {
  flex: 1;
}

.ancla-btn-insite-pay {
  width: 100%;
  padding: 14px;
  margin-top: 8px;
  font-size: 15px;
  font-weight: 800;
  border-radius: 12px;
  background: linear-gradient(135deg, #00b4d8 0%, #0077b6 100%);
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(0, 180, 216, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.2s;
}

.ancla-btn-insite-pay:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 180, 216, 0.45);
}

.ancla-insite-security-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #059669;
  margin-top: 10px;
  text-align: center;
}

