.f748-fare-key-wrapper
{
  font-family: 'Montserrat', sans-serif;
  max-width: 900px;
  margin: 15px auto 20px auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.f748-fare-toggle
{
  display: none;
  background: #F8FAFC;
  border: 1px solid #005EB8;
  color: #005EB8;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 10px;
  box-shadow: 0 2px 8px rgba(0, 94, 184, 0.1);
  transition: all 0.3s ease;
}

.f748-fare-toggle svg
{
  width: 18px;
  height: 18px;
  fill: currentColor;
  transition: transform 0.3s ease;
}

.f748-fare-toggle.is-open svg
{
  transform: rotate(180deg);
}

.f748-fare-grid
{
  display: flex;
  gap: 20px;
  align-items: stretch;
}

.f748-card
{
  flex: 1;
  background: #fff;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 20px;
  position: relative;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
  transition: transform 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.f748-card.smart-fare
{
  border: 2px solid #005EB8;
  box-shadow: 0 6px 20px rgba(0, 94, 184, 0.12);
  transform: translateY(-2px);
}

.f748-badge
{
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: #005EB8;
  color: #fff;
  padding: 3px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.f748-fare-title
{
  font-size: 1.15rem;
  font-weight: 800;
  color: #0C2340;
  margin: 0 0 15px 0;
  text-transform: uppercase;
  text-align: center;
}

.f748-card.smart-fare .f748-fare-title
{
  color: #005EB8;
}

.f748-benefits
{
  list-style: none;
  padding: 0;
  margin: 0;
}

.f748-benefits li
{
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: #475569;
  margin-bottom: 10px;
  line-height: 1.4;
}

.f748-benefits li:last-child
{
  margin-bottom: 0;
}

.f748-benefits li strong
{
  color: #0C2340;
  font-weight: 700;
}

.f748-icon
{
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
}

.f748-icon-basic
{
  fill: #94A3B8;
}

.f748-icon-smart
{
  fill: #005EB8;
}

@media (max-width: 768px)
{
  .f748-fare-toggle
  {
    display: flex;
  }

  .f748-fare-grid
  {
    display: none;
    flex-direction: column;
    gap: 20px;
    margin-top: 10px;
  }

  .f748-fare-grid.is-open
  {
    display: flex;
  }

  .f748-card.smart-fare
  {
    transform: translateY(0);
    order: -1;
  }
}