/* Insurance Comparator Calculator Styles */

/* Hero */
.ins-hero {
  background: linear-gradient(135deg, #1E3A5F 0%, #D97706 60%, #1E88E5 100%);
  color: white;
  padding: 80px 0 60px;
  text-align: center;
}

.ins-hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.2;
}

.ins-hero .lead {
  font-size: 1.15rem;
  opacity: 0.92;
  margin-bottom: 32px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.ins-hero-badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 0;
}

.ins-hero-badge {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 24px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Calculator Section */
.ins-calculator-section {
  padding: 48px 0;
  background: #f8faff;
}

/* Calculator Card */
.ins-card {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.ins-card-header {
  text-align: center;
  margin-bottom: 2rem;
}

.ins-card-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.ins-card-subtitle {
  color: #6b7280;
  font-size: 0.9rem;
}

/* Form Groups */
.ins-form-group {
  margin-bottom: 1.75rem;
}

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

.ins-form-input {
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background: white;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.ins-form-input:focus {
  outline: none;
  border-color: #D97706;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.1);
  transform: translateY(-1px);
}

.ins-form-hint {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-top: 4px;
}

/* Value Display */
.ins-value-display {
  font-size: 0.95rem;
  font-weight: 700;
  color: #D97706;
  text-align: right;
  min-width: 120px;
}

.ins-slider-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ins-slider-row input[type="range"] {
  flex: 1;
}

/* Custom Range Slider */
input[type="range"].ins-range {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 6px;
  border-radius: 3px;
  background: #e5e7eb;
  outline: none;
  margin: 8px 0;
}

input[type="range"].ins-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D97706, #1E88E5);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
  transition: transform 0.15s ease;
}

input[type="range"].ins-range::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

input[type="range"].ins-range::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: linear-gradient(135deg, #D97706, #1E88E5);
  cursor: pointer;
  border: none;
  box-shadow: 0 2px 8px rgba(217, 119, 6, 0.4);
}

/* Section Divider */
.ins-section-label {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #6b7280;
  margin-bottom: 16px;
  margin-top: 8px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e5e7eb;
}

/* Insurance Type Card */
.ins-type-card {
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  border-left: 4px solid #e5e7eb;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin-bottom: 20px;
  transition: border-color 0.2s;
}

.ins-type-card.ins-type-mandatory {
  border-left-color: #059669;
}

.ins-type-card.ins-type-recommended {
  border-left-color: #D97706;
}

.ins-type-card.ins-type-conditional {
  border-left-color: #dc2626;
}

.ins-type-card.ins-type-temporary {
  border-left-color: #6b7280;
}

.ins-type-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.ins-type-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #1E3A5F;
}

.ins-type-description {
  font-size: 0.85rem;
  color: #6b7280;
  margin: 4px 0 12px 0;
  line-height: 1.5;
}

/* Status Badges */
.ins-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ins-badge-mandatory {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.ins-badge-recommended {
  background: #fffbeb;
  color: #D97706;
  border: 1px solid #fde68a;
}

.ins-badge-conditional {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.ins-badge-temporary {
  background: #f3f4f6;
  color: #6b7280;
  border: 1px solid #d1d5db;
}

/* Toggle Switch (bank vs own policy) */
.ins-toggle-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 12px 0;
}

.ins-toggle-label {
  font-size: 0.9rem;
  color: #374151;
  font-weight: 500;
  cursor: pointer;
}

.ins-toggle-switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.ins-toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.ins-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #d1d5db;
  border-radius: 26px;
  transition: all 0.3s ease;
}

.ins-toggle-slider::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: white;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.ins-toggle-switch input:checked + .ins-toggle-slider {
  background: linear-gradient(135deg, #059669, #10b981);
}

.ins-toggle-switch input:checked + .ins-toggle-slider::before {
  transform: translateX(22px);
}

.ins-own-fields {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.3s ease;
}

.ins-own-fields.ins-own-visible {
  max-height: 200px;
  opacity: 1;
  margin-top: 12px;
}

/* LTV Badge */
.ins-ltv-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 8px;
}

.ins-ltv-safe {
  background: #ecfdf5;
  color: #059669;
  border: 1px solid #a7f3d0;
}

.ins-ltv-warning {
  background: #fffbeb;
  color: #D97706;
  border: 1px solid #fde68a;
}

.ins-ltv-danger {
  background: #fef2f2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

/* Conditional UNWW visibility */
.ins-hidden {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0 !important;
  padding: 0 !important;
  transition: max-height 0.35s ease, opacity 0.25s ease, margin 0.3s ease;
  border: none !important;
}

/* Primary Button */
.btn-ins-primary {
  background: linear-gradient(135deg, #D97706, #1E88E5);
  color: white;
  border: none;
  border-radius: 12px;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 1.05rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  transition: all 0.3s ease;
  font-family: 'Inter', sans-serif;
}

.btn-ins-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(217, 119, 6, 0.3);
}

/* Disclaimer */
.ins-disclaimer {
  background: #fff8e1;
  border: 1px solid #ffd54f;
  border-radius: 10px;
  padding: 14px 18px;
  font-size: 0.82rem;
  color: #5d4037;
  margin-top: 24px;
  line-height: 1.6;
}

/* Result Card */
.ins-result-card {
  background: white;
  border-radius: 16px;
  padding: 32px;
  border: 2px solid #e5e7eb;
  margin-top: 24px;
}

/* Summary Grid (3 columns: bank / optimized / savings) */
.ins-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 28px;
}

.ins-summary-item {
  text-align: center;
  padding: 20px 12px;
  border-radius: 12px;
  background: #f8faff;
  border: 1px solid #e5e7eb;
}

.ins-summary-item:nth-child(3) {
  background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
  border-color: #a7f3d0;
}

.ins-summary-label {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  margin-bottom: 6px;
}

.ins-summary-value {
  font-size: 1.8rem;
  font-weight: 900;
  color: #1E3A5F;
}

.ins-summary-item:nth-child(2) .ins-summary-value {
  color: #D97706;
}

.ins-summary-item:nth-child(3) .ins-summary-value {
  color: #059669;
}

.ins-summary-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  margin-top: 2px;
}

/* Savings Highlight Animation */
@keyframes insSavingsPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(5, 150, 105, 0.2); }
  50% { box-shadow: 0 0 0 8px rgba(5, 150, 105, 0); }
}

.ins-savings-highlight {
  animation: insSavingsPulse 2s ease-in-out 1;
}

/* Monthly Comparison Bars */
.ins-monthly-comparison {
  margin: 24px 0;
}

.ins-monthly-comparison h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 16px;
}

.ins-monthly-bar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.ins-monthly-bar-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #374151;
  min-width: 130px;
  flex-shrink: 0;
}

.ins-monthly-bar-track {
  flex: 1;
  height: 28px;
  background: #f1f5f9;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}

.ins-monthly-bar-fill {
  height: 100%;
  border-radius: 8px;
  transition: width 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 10px;
}

.ins-monthly-bar-fill.ins-bar-bank {
  background: linear-gradient(135deg, #dc2626, #ef4444);
}

.ins-monthly-bar-fill.ins-bar-optimized {
  background: linear-gradient(135deg, #059669, #10b981);
}

.ins-monthly-bar-amount {
  font-size: 0.82rem;
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

/* Breakdown Table */
.ins-breakdown-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
}

.ins-breakdown-table th {
  background: #1E3A5F;
  color: white;
  padding: 10px 14px;
  font-weight: 700;
  text-align: left;
  font-size: 0.82rem;
}

.ins-breakdown-table th:first-child {
  border-radius: 8px 0 0 0;
}

.ins-breakdown-table th:last-child {
  border-radius: 0 8px 0 0;
}

.ins-breakdown-table td {
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  color: #374151;
}

.ins-td-value {
  text-align: right;
  font-weight: 600;
  white-space: nowrap;
}

.ins-td-savings {
  text-align: right;
  font-weight: 700;
  color: #059669;
  white-space: nowrap;
}

.ins-total-row td {
  border-top: 2px solid #1E3A5F;
  border-bottom: none;
  padding-top: 14px;
  font-size: 1rem;
}

.ins-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  display: inline-block;
  flex-shrink: 0;
}

/* Cost Distribution Bar */
.ins-bar-track {
  display: flex;
  height: 24px;
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}

.ins-bar-segment {
  transition: width 0.5s ease;
  min-width: 2px;
}

.ins-bar-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 10px;
  justify-content: center;
}

.ins-bar-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.78rem;
  color: #64748b;
  font-weight: 600;
}

/* Save & Compare */
.ins-save-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.btn-ins-secondary {
  padding: 10px 20px;
  border: 2px solid #e5e7eb;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: white;
  color: #64748b;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-ins-secondary:hover {
  border-color: #D97706;
  color: #D97706;
}

.btn-ins-accent {
  padding: 10px 20px;
  border: 2px solid #059669;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  background: #ecfdf5;
  color: #059669;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.btn-ins-accent:hover {
  background: #059669;
  color: white;
}

/* Saved results grid */
.ins-compare-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.ins-compare-card {
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
  position: relative;
}

.ins-compare-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  background: none;
  border: none;
  color: #94a3b8;
  cursor: pointer;
  padding: 2px;
  font-size: 1rem;
  line-height: 1;
}

.ins-compare-remove:hover {
  color: #dc2626;
}

.ins-compare-big {
  font-size: 1.6rem;
  font-weight: 900;
  color: #059669;
  margin-bottom: 2px;
}

.ins-compare-sub {
  font-size: 0.78rem;
  color: #94a3b8;
  font-weight: 600;
  margin-bottom: 8px;
}

.ins-compare-detail {
  font-size: 0.82rem;
  color: #64748b;
  margin-bottom: 2px;
}

/* Educational Section */
.ins-edu-section {
  padding: 64px 0;
  background: white;
}

.ins-edu-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #1E3A5F;
  margin-bottom: 16px;
}

.ins-edu-section p {
  color: #555;
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.ins-edu-definition {
  background: linear-gradient(135deg, #fffbeb 0%, #f0f7ff 100%);
  border-left: 4px solid #D97706;
  border-radius: 0 12px 12px 0;
  padding: 20px 24px;
  margin: 20px 0 32px;
  font-size: 1.02rem;
  line-height: 1.8;
  color: #1E3A5F;
}

/* Comparison table */
.ins-compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 32px;
  font-size: 0.92rem;
}

.ins-compare-table thead th {
  background: #1E3A5F;
  color: white;
  padding: 12px 16px;
  font-weight: 700;
  text-align: left;
}

.ins-compare-table thead th:first-child {
  border-radius: 8px 0 0 0;
}

.ins-compare-table thead th:last-child {
  border-radius: 0 8px 0 0;
}

.ins-compare-table tbody td {
  padding: 12px 16px;
  border-bottom: 1px solid #e5e7eb;
  color: #374151;
}

.ins-compare-table tbody tr:nth-child(even) {
  background: #f8faff;
}

.ins-cell-yes {
  color: #059669;
  font-weight: 600;
}

.ins-cell-no {
  color: #dc2626;
  font-weight: 600;
}

/* Checklist */
.ins-checklist {
  list-style: none;
  padding: 0;
  margin: 16px 0 32px;
}

.ins-checklist li {
  padding: 8px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: #374151;
}

.ins-check-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
}

.ins-check-icon.yes {
  background: #ecfdf5;
  color: #059669;
}

/* Steps */
.ins-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 24px 0 0;
}

.ins-step-card {
  background: #f8faff;
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.ins-step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #D97706, #1E88E5);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  margin: 0 auto 12px;
}

.ins-step-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 8px;
}

.ins-step-card p {
  color: #64748b;
  font-size: 0.88rem;
  margin: 0;
}

/* FAQ Section */
.ins-faq-section {
  background: #f8faff;
  padding: 64px 0;
}

.ins-faq-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: #1E3A5F;
  text-align: center;
  margin-bottom: 12px;
}

.ins-faq-lead {
  text-align: center;
  color: #64748b;
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.ins-faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
  background: white;
}

.ins-faq-question {
  padding: 18px 24px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #1E3A5F;
  font-size: 0.95rem;
  transition: background 0.15s;
}

.ins-faq-question:hover {
  background: #fffbeb;
}

.ins-faq-answer {
  padding: 0 24px 0;
  color: #555;
  font-size: 0.93rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  line-height: 1.7;
}

.ins-faq-answer.open {
  max-height: 1000px;
  padding: 0 24px 18px;
}

.ins-faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.ins-faq-question.active .ins-faq-chevron {
  transform: rotate(180deg);
}

/* CTA Section */
.ins-final-cta {
  background: linear-gradient(135deg, #1E3A5F 0%, #D97706 60%, #1E88E5 100%);
  color: white;
  padding: 64px 0;
  text-align: center;
}

.ins-final-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.ins-final-cta p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 28px;
}

.ins-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-ins-cta-white {
  background: white;
  color: #D97706;
  border: none;
  border-radius: 10px;
  padding: 16px 28px;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-ins-cta-white:hover {
  background: #fffbeb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  color: #D97706;
}

.btn-ins-cta-outline {
  background: transparent;
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-ins-cta-outline:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

/* Related Articles */
.ins-related-articles {
  padding: 48px 0;
  background: white;
}

.ins-related-articles h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #1E3A5F;
  text-align: center;
  margin-bottom: 32px;
}

.ins-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ins-article-card {
  background: #f8faff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  text-decoration: none;
  transition: all 0.2s ease;
  display: block;
}

.ins-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
  border-color: #D97706;
}

.ins-article-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1E3A5F;
  margin-bottom: 8px;
}

.ins-article-card p {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.5;
  margin: 0;
}

/* Responsive */
@media (max-width: 991px) {
  .ins-card {
    padding: 1.5rem;
  }

  .ins-summary-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

@media (max-width: 767px) {
  .ins-hero h1 {
    font-size: 1.9rem;
  }

  .ins-hero .lead {
    font-size: 1rem;
  }

  .ins-summary-value {
    font-size: 1.4rem;
  }

  .ins-steps {
    grid-template-columns: 1fr;
  }

  .ins-compare-grid {
    grid-template-columns: 1fr;
  }

  .ins-cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .ins-monthly-bar-label {
    min-width: 90px;
    font-size: 0.78rem;
  }

  .ins-breakdown-table {
    font-size: 0.82rem;
  }

  .ins-breakdown-table th,
  .ins-breakdown-table td {
    padding: 8px 10px;
  }

  .ins-type-card {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .ins-hero h1 {
    font-size: 1.6rem;
  }

  .ins-save-row {
    flex-direction: column;
  }
}

/* Toast notification */
.ins-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.ins-toast-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.ins-toast-content {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #1e293b;
  color: #fff;
  padding: 14px 24px;
  border-radius: 12px;
  font-size: 0.95rem;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
  max-width: 440px;
}
