/* Added missing styles */



/* Added missing styles end */

.spt-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 2em 0;
}

.spt-column {
  flex: 1 1 30%;
  background: #fff;
  padding: 20px;
  border: 1px solid #eee;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.spt-column:hover {
  transform: translateY(-5px);
}

.spt-price {
  font-size: 2em;
  color: #f60;
  margin: 0.5em 0;
}

.spt-button {
  display: inline-block;
  margin-top: 1em;
  padding: 10px 20px;
  background: #f60;
  color: #fff !important;
  text-decoration: none;
  border-radius: 20px;
  transition: background 0.3s ease;
}

.spt-button:hover {
  background: #e55a00;
}

.spt-button.spt-featured {
  background: #333;
}

.spt-button.spt-featured:hover {
  background: #111;
}

.spt-hide {
    display: none;
}

.spt-toggle-wrap {
  position: relative;
  display: inline-flex;
  border: 2px solid #f60;
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 1.5em;
  font-size: 16px;
  background: #fff;
}

.spt-toggle-wrap input[type="radio"] {
  position: absolute;
  opacity: 0;
}

.spt-toggle-option {
  position: relative;
  padding: 10px 20px;
  z-index: 2;
  cursor: pointer;
  user-select: none;
  transition: color 0.3s ease;
  color: #f60;
  font-weight: 600;
  flex: 1;
  text-align: center;
}

.spt-toggle-wrap input[type="radio"]:checked + .spt-toggle-option {
  color: #fff;
}

.spt-toggle-highlighter {
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 2px;
  width: calc(50% - 2px);
  background: #f60;
  border-radius: 999px;
  transition: transform 0.25s ease;
  z-index: 1;
}

/* Move highlighter for monthly */
/* #spt-monthly-3066:checked ~ .spt-toggle-highlighter {
  transform: translateX(0);
}*/
.spt-toggle-wrap input[type="radio"]:nth-of-type(1):checked ~ .spt-toggle-highlighter {
  transform: translateX(0);
}

/* Move highlighter for yearly */
/* #spt-yearly-3066:checked ~ .spt-toggle-highlighter {
  transform: translateX(100%);
} */
.spt-toggle-wrap input[type="radio"]:nth-of-type(2):checked ~ .spt-toggle-highlighter {
  transform: translateX(100%);
}

/* === Responsive Design === */
.spt-table {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}

.spt-column {
  flex: 1 1 220px;
  max-width: 300px;
  background: #fff;
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
}

.spt-column:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0,0,0,0.1);
}

.spt-column h3{
    color: #ff6800 !important;
    margin-bottom: 0 !important;
}

.spt-column ul{
   padding-left: 0 !important; 
}

.spt-highlight {
  border: 3px solid #000;
  background: #f5f5f5;
}

.spt-price {
  font-size: 2.2em;
  font-weight: bold;
  margin: 5px 0;
}

.spt-price.yearly.spt-hide {
  display: none;
}

/* Toggle Controls */
.spt-toggle-wrap {
  text-align: center;
  margin-bottom: 15px;
}

.spt-toggle-option {
  margin: 0 10px;
  cursor: pointer;
}

/* Feature list icons (emoji-based for now) */
.spt-column ul {
  list-style: none;
  padding: 0;
}

/*.spt-column ul li::before {
  content: "✔️ ";
  color: green;
  margin-right: 6px;
} */

.spt-icon {
  margin-right: 6px;
  font-weight: bold;
}

.spt-icon.included {
  color: green;
}

.spt-icon.excluded {
  color: red;
}

/* -----------------------------------------
  SIMPLE PRICING TABLE ICON GUIDE
  ------------------------------------------
  To assign an icon to a feature:
  - Prefix the feature with a class, e.g. ic-tick
  - The class must match one defined below

  Example Feature Input:
    ic-tick Fast Support
    ic-cross No Offline Mode

  You can use:
    ✔ Direct characters in content: "✔"
    ✔ Unicode escapes: content: "\2714";
    ✘ HTML entities like &check; will NOT work

  Customize icons by editing these rules:
----------------------------------------- */

.ic-tick::before {
  content: "\2713";
  color: #5dda00;
  margin-right: 6px;
  font-size: 15px;
  font-weight: 700;
}

.ic-cross::before {
  content: "\2716";
  color: #ff6800;
  margin-right: 6px;
  font-size: 15px;
  font-weight: 700;
}

.ic-box::before {
  content: "▣";
  color: orange;
  margin-right: 6px;
  font-size: 15px;
  font-weight: 700;
}

.ic-circle::before {
  content: "●";
  color: #444;
  margin-right: 6px;
  font-size: 15px;
  font-weight: 700;
}
