.switch-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 15px !important;
  margin-top: 25px;
  cursor: pointer;
  user-select: none;
}

.switch-wrapper input {
  display: none;
}

.switch-slider {
  width: 50px;
  height: 26px;
  background: #ccc;
  border-radius: 30px;
  position: relative;
  transition: 0.3s ease;
}

.switch-slider::before {
  content: "";
  width: 22px;
  height: 22px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 2px;
  left: 2px;
  transition: 0.3s ease;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.switch-wrapper input:checked + .switch-slider {
  background: #28a745;
}

.switch-wrapper input:checked + .switch-slider::before {
  transform: translateX(24px);
}

.switch-text {
  font-size: 0.95rem;
  color: #444;
  transition: 0.3s ease;
  max-width: 600px;
  line-height: 1.4;
}

.switch-wrapper input:checked + .switch-slider + .switch-text {
  color: #28a745;
}

#agb-check.is-invalid + .switch-slider + .switch-text {
  color: #d9534f;
}

.order-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 10px;
}

.order-steps .step {
  text-align: center;
  flex: 1;
  opacity: 0.4;
  transition: 0.3s;
}

.order-steps .step.active {
  opacity: 1;
  transform: translateY(-3px);
}

.step-number {
  display: inline-block;
  width: 42px;
  height: 42px;
  background: #0d6efd;
  color: #fff;
  border-radius: 50%;
  line-height: 42px;
  font-weight: bold;
  margin-bottom: 8px;
}

.order-step {
  display: none;
}

.order-step.active {
  display: block;
}

.package-card {
  cursor: pointer;
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  display: block;
  transition: 0.3s;
}

.package-card .card-body {
  position: relative;
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
}

.package-card:hover .card-body {
  border-color: #0d6efd;
  box-shadow: 0 0 12px rgba(13, 110, 253, 0.25);
}

.package-card input {
  display: none;
}

.package-card input:checked + .card-body {
  border-color: #28a745 !important;
  background: #e9f9ee;
  box-shadow: 0 0 14px rgba(40, 167, 69, 0.4);
}

.package-card input:checked + .card-body::after {
  content: "\2713"; /* ? */
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  color: #28a745;
  font-weight: bold;
}

.price-tag {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d6efd;
}

.btn-next, .btn-prev, .btn-submit {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.2s;
}

.btn-next:hover, .btn-prev:hover, .btn-submit:hover {
  background: #0b5ed7;
}

.btn-prev {
  background: #6c757d;
}

.checkbox-item {
  display: block;
  margin-bottom: 10px;
}
.page-title .title-wrapper {
  max-width: 800px;
  margin: 0 auto;
  padding: 1rem 0;
}
.order-info-box {
  background: #f8f9fa;
  border-left: 4px solid #0d6efd;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 15px;
}
/* ------------------------------
   FORMULAR
------------------------------ */

.order-step h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.order-step label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

.order-step .form-control {
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  padding: 10px 14px;
  font-size: 15px;
  transition: 0.25s;
  background: #fff;
}

.order-step .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.25);
}

.checkbox-item {
  background: #f8f9fa;
  padding: 10px 14px;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  margin-bottom: 10px;
  transition: 0.25s;
  cursor: pointer;
}

.checkbox-item:hover {
  border-color: #0d6efd;
  background: #eef6ff;
}

.checkbox-item input {
  margin-right: 8px;
}

.order-info-box {
  background: #f0f7ff;
  border-left: 4px solid #0d6efd;
  padding: 15px 20px;
  border-radius: 6px;
  font-size: 15px;
  color: #003d80;
  box-shadow: 0 0 8px rgba(0, 80, 160, 0.1);
}

.btn-next, .btn-prev, .btn-submit {
  background: #0d6efd;
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: 8px;
  cursor: pointer;
  transition: 0.25s;
  font-size: 15px;
  font-weight: 600;
}

.btn-next:hover, .btn-submit:hover {
  background: #0b5ed7;
}

.btn-prev {
  background: #6c757d;
}

.btn-prev:hover {
  background: #5a6268;
}

.order-section .container {
  margin-top: 40px;
}

.order-step {
  animation: fadeIn 0.25s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.was-validated .form-control:invalid,
.form-control.is-invalid {
  border-color: #dc3545;
}

.was-validated .form-control:valid,
.form-control.is-valid {
  border-color: #28a745;
}
/* ------------------------------
   FORM CARD DESIGN
------------------------------ */

.order-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 30px 35px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.08);
  border: 1px solid #e5e5e5;
  animation: fadeIn 0.25s ease-out;
}

.order-card h3 {
  font-weight: 700;
  margin-bottom: 20px;
  color: #1a1a1a;
}

.order-card .form-control {
  border-radius: 8px;
  border: 1px solid #d0d0d0;
  padding: 10px 14px;
  font-size: 15px;
  transition: 0.25s;
}

.order-card .form-control:focus {
  border-color: #0d6efd;
  box-shadow: 0 0 8px rgba(13, 110, 253, 0.25);
}

.order-card label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
  color: #333;
}

.order-card .btn-next,
.order-card .btn-prev {
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
}

.order-card .btn-next {
  background: #0d6efd;
  color: #fff;
}

.order-card .btn-next:hover {
  background: #0b5ed7;
}

.order-card .btn-prev {
  background: #6c757d;
  color: #fff;
}

.order-card .btn-prev:hover {
  background: #5a6268;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(5px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hosting-card {
  cursor: pointer;
  display: block;
}

.hosting-body {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  transition: 0.3s;
  background: #fff;
  position: relative;
}

.hosting-card:hover .hosting-body {
  border-color: #0d6efd;
  box-shadow: 0 0 12px rgba(13,110,253,0.25);
}

.hosting-card input {
  display: none;
}

.hosting-card input:checked + .hosting-body {
  border-color: #28a745 !important;
  background: #e9f9ee;
  box-shadow: 0 0 14px rgba(40,167,69,0.4);
}

.hosting-card input:checked + .hosting-body::after {
  content: "\2714";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  color: #28a745;
  font-weight: bold;
}

.hosting-features {
  margin-top: 10px;
  padding-left: 18px;
}

.hosting-features li {
  font-size: 14px;
  margin-bottom: 4px;
}

.price-tag {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d6efd;
}

.setup-fee {
  font-size: 0.9rem;
  color: #666;
}
.extra-card {
  cursor: pointer;
  display: block;
}

.extra-body {
  border: 2px solid #e0e0e0;
  border-radius: 12px;
  padding: 15px 20px;
  background: #fff;
  transition: 0.3s;
  position: relative;
}

.extra-card:hover .extra-body {
  border-color: #0d6efd;
  box-shadow: 0 0 12px rgba(13,110,253,0.25);
}

.extra-card input {
  display: none;
}

.extra-card input:checked + .extra-body {
  border-color: #28a745 !important;
  background: #e9f9ee;
  box-shadow: 0 0 14px rgba(40,167,69,0.4);
}

.extra-card input:checked + .extra-body::after {
  content: "\2714";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 22px;
  color: #28a745;
  font-weight: bold;
}
.summary-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px 25px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.06);
}

.summary-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.summary-card li {
  padding: 8px 0;
  border-bottom: 1px solid #eee;
}

.summary-card li:last-child {
  border-bottom: none;
}

.agb-check input {
  margin-right: 6px;
}
.price-box-premium {
  background: #ffffff;
  border-radius: 14px;
  padding: 25px 30px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.price-box-premium h4 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.price-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 1rem;
}

.price-row.total {
  font-size: 1.2rem;
  padding-top: 10px;
}

.price-row span:last-child,
.price-row strong:last-child {
  font-weight: 600;
}
.summary-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid #e5e5e5;
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.summary-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 30px;
}

.summary-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.summary-column h4 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  border-bottom: 1px solid #eee;
  padding-bottom: 6px;
}

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

.summary-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.summary-list strong {
  font-weight: 600;
}
.page-title {
  text-align: left !important;
}

#agb-hint {
  display: none;
  color: #d9534f;
  font-size: 14px;
  margin-top: 6px;
  animation: fadeIn 0.3s ease-in-out;
}

.shake {
  animation: shakeAnim 0.4s ease-in-out;
}

@keyframes shakeAnim {
  0% { transform: scale(1); }
  25% { transform: scale(1.15); }
  50% { transform: scale(0.9); }
  75% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.order-steps {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Mobile */
@media (max-width: 768px) {
  .title-order-wrapper h1 {
    font-size: 18px !important;
    line-height: 1.3 !important;
    text-align: center;
  }

  .title-order-wrapper p {
    font-size: 14px !important;
    line-height: 1.4 !important;
    text-align: center;
    margin-top: 8px;
  }

  .small-trust {
    font-size: 12px !important;
    text-align: center;
    margin-top: 10px !important;
  }

  .small-trust i {
    font-size: 14px !important;
  }
}
@media (max-width: 768px) {

  .order-steps {
    display: flex;
    flex-direction: column !important;
    gap: 10px !important;
    width: 100%;
  }

  .order-steps .step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: #f7f7f7;
  }

  .step-number {
    width: 28px !important;
    height: 28px !important;
    margin: 0 !important;
    font-size: 14px !important;
   display: flex !important;
   align-items: center !important;
   justify-content: center !important;
  }

  .section, .section {
    padding: 0 !important;
  }

  .step-title {
    font-size: 14px !important;
  }
}
@media (max-width: 768px) {

  .summary-wrapper {
    padding: 18px 16px !important;
    border-radius: 10px !important;
  }

  .summary-title {
    font-size: 1.2rem !important;
    margin-bottom: 18px !important;
    text-align: center;
  }

  .summary-columns {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
  }

  .summary-column h4 {
    font-size: 1rem !important;
    margin-bottom: 8px !important;
    padding-bottom: 4px !important;
  }

  .summary-list li {
    font-size: 0.9rem !important;
    margin-bottom: 6px !important;
  }

  .summary-card {
    padding: 14px 16px !important;
    border-radius: 10px !important;
  }

  .summary-card li {
    padding: 6px 0 !important;
  }
}
@media (max-width: 768px) {

  .switch-slider {
    width: 34px !important;
    height: 18px !important;
    border-radius: 20px !important;
  }

  .switch-slider::before {
    width: 14px !important;
    height: 14px !important;
    top: 2px !important;
    left: 2px !important;
  }

  input:checked + .switch-slider::before {
    transform: translateX(16px) !important;
  }

  .switch-text {
    font-size: 12px !important;
    line-height: 1.3 !important;
    color: #444 !important;
    max-width: 100% !important;
  }

  .switch-wrapper,
  .cookie-category {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
  }

  .cookie-cat-info,
  .switch-text {
    flex: 1 !important;
    text-align: left !important;
  }
}

@media (max-width: 768px) {

  .btn-next,
  .btn-prev,
  .btn-submit {
    padding: 8px 16px !important;
    font-size: 13px !important;
    border-radius: 6px !important;
  }
}
@media (max-width: 768px) {

  .extra-body {
    font-size: 12px !important;
    line-height: 1.35 !important;
    padding: 12px 14px !important;
    border-radius: 10px !important;
  }

  .extra-body strong {
    font-size: 13px !important;
  }
}
