.sfp-sticky-footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #1e1e26; /* secondary */
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  display: none;
  flex-direction: column;
  font-family: 'Inter', system-ui, sans-serif;
}

.sfp-sticky-footer.visible {
  display: flex;
}

.sfp-pricing-toggle {
  position: fixed;
  bottom: 100px;
  right: 24px;
  background: #2b2b35;
  border-radius: 999px;
  padding: 1px;
  display: flex;
  align-items: center;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  z-index: 10000;
  transition: opacity 0.3s ease;
}

.sfp-toggle-option {
  color: #ccc;
  padding: 4px 8px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
  user-select: none;
}

.sfp-toggle-option.active {
  background-color: #5344f4;
  color: #fff;
}

.sfp-container {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-left: 5%;
  padding-right: 5%;
  justify-content: space-between;
}

.sfp-product {
  display: flex;
  align-items: center;
  background: #2a2a34;
  padding: 12px 16px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  flex: 1 1 300px;
  transition: background 0.3s ease;
}

.sfp-product:hover {
  background: #2f2f3a;
}

.sfp-product-image img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.sfp-product-content {
  margin-left: 12px;
  flex-grow: 1;
}

.sfp-product-content h3 {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
}

.sfp-support-text {
  font-size: 12px;
  color: #bbbbbb;
  margin: 0;
}

.sfp-price {
  font-size: 16px;
  font-weight: 600;
  margin: 0 12px;
  color: #ffffff;
}

.sfp-checkout {
  background-color: #5344f4;
  color: #ffffff;
  border: none;
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(83, 68, 244, 0.4);
}

.sfp-checkout:hover {
  background-color: #4234d0;
  box-shadow: 0 4px 12px rgba(83, 68, 244, 0.5);
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .sfp-container {
    flex-direction: column;
  }

  .sfp-product {
    flex-direction: row;
    justify-content: space-between;
  }

  .sfp-product-content {
    margin-left: 10px;
  }

  .sfp-pricing-toggle {
    align-self: flex-start;
  }
}
@media (max-width: 768px) {
  .sfp-sticky-footer.visible {
    display: none;
  }
  .sfp-container .sfp-product {
    display: none;
  }

  .sfp-pricing-toggle {
    display: none;
  }
}
