.vat-toggle-container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: "Poppins", sans-serif;
}

.vat-toggle-label {
    font-size: 16px;
    color: #fff;
    transition: color 0.3s ease;
}

.vat-switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 24px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #34c759; /* Apple Green */
}

input:focus + .slider {
  box-shadow: 0 0 1px #34c759;
}

input:checked + .slider:before {
  transform: translateX(14px);
}

.slider.round {
  border-radius: 32px;
}

.slider.round:before {
  border-radius: 50%;
}

/* Increased specificity to override potential theme styles */
.woocommerce .price .vat-suffix {
    font-size: 14px !important;
    font-weight: 300 !important; /* Corresponds to 'light' */
}

/* Style for the disabled state */
.vat-toggle-container.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}
