/* Base styles for Loxa snippets */

.loxa-card {

  border-radius: 12px;
  padding: 12px 16px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  margin: 1rem 0 1rem 0;
  color: #0f172a;
}

.loxa-add-on-badge {
  background: #ebfafa; /* light pastel blue */
  display: block;
  max-width: 100%;
}

.loxa-extended-badge {
  background: #f5edfa;
  display: block;
  max-width: 100%;
}

.loxa-hybrid-inclusive {
  background: #f5f3f0;
  display: block;
  max-width: 100%;
}
.loxa-inclusive-badge {
  background: #f5fae1;
  display: block;
  max-width: 100%;
}
.loxa-inclusive-description {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #1f2933;
}

.loxa-add-on-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.loxa-hybrid-inclusive-inner {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.loxa-add-on-main {
  display: flex;
  align-items: center;
  gap: 8px;
}
.loxa-hybrid-inclusive-main {
  display: flex;
  align-items: center;
  gap: 8px;
}

.loxa-hybrid-inclusive-icon {
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background-color: #d4d4d4; /* grey circle */
  color: #000000; /* white tick, via stroke=currentColor on svg */
  flex-shrink: 0;
  padding: 5px; /* extra padding makes the tick appear smaller inside the circle */
}

.loxa-add-on-logo {
  height: 24px;
  width: auto;
  flex-shrink: 0;
}

.loxa-add-on-title {

  color: #0f172a;
}

.loxa-hybrid-inclusive-title {

  color: #0f172a;
}

.loxa-add-on-description {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #1f2933;
}

.loxa-hybrid-inclusive-description {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #1f2933;
}

/* "What's covered" list */

.loxa-whats-covered-title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
}

.loxa-whats-covered-list {
  list-style: none;
  margin: 0;
  padding-left: 0;
}

.loxa-whats-covered-list li {
  position: relative;
  padding-left: 20px;
  margin: 2px 0;
}

.loxa-whats-covered-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #059669; /* green tick */
  font-weight: 700;
}

.loxa-add-on-toggle {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  border: 1px solid #94a3b8;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
}

.loxa-add-on-toggle-indicator {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
}

.loxa-learn-more-link {
  padding: 0;
  margin: 0;
  border: none;
  background: none;
  color: #2563eb;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}


.loxa-learn-more-link:hover,
.loxa-learn-more-link:focus-visible {
  text-decoration: underline;
}

.loxa-learn-more-link-text {
  text-decoration: inherit;
}

/* Make the checkbox larger and use a black accent */
.loxa-offer-checkbox {
  width: 20px;
  height: 20px;
  transform: scale(1.2);        /* scale up; tweak as needed */
  transform-origin: center;
  accent-color: #000000;        /* black checkbox / check instead of blue */
}

