:root {
  --primary-color: #d60058;
  --text-color: #323653;
  --border-color: #e2e8f0;
  --bg-light: #fdfbfb;
}

.ml-funnel-wrapper * {
  box-sizing: border-box;
  color: var(--text-color) !important;
  font-family: 'Lustria', Georgia, "Times New Roman", serif !important; 
}
.product_addon_area .wooco_item_selected {
  border-color: var(--primary-color) !important;
  background: #fff5f8 !important;
}
.wooco_component_product_selection_list .wooco_component_product_selection_list_item.wooco_item_selected .wooco_component_product_selection_list_item_choose span:before {
  background-color: #d60058 !important;
}

.ml-funnel-container .wooco_component_product_selection_list_item_image img {
  display: none;
}
/*.wapf-input:checked {
    appearance: none;
    -webkit-appearance: none;
    background-color: #d60058 !important;
    border-color: #d60058 !important;
}*/
.ml-funnel-container {
  max-width: 600px;
  margin: 40px auto;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  padding: 40px;
  border: 1px solid #f1f5f9;
}
.ml-funnel-container.fullw {
 max-width: 1200px;
}
.ml-progress-wrapper {
  margin-bottom: 35px;
}
.ml-progress-bg {
  width: 100%;
  height: 6px;
  background: #f1f5f9;
  border-radius: 10px;
  overflow: hidden;
}
.ml-progress-fill {
  width: 4%;
  height: 100%;
  background: var(--primary-color) !important;
  transition: width 0.4s ease;
}
.ml-step-counter {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
  opacity: 0.8;
}

.ml-frame {
  display: none;
}
.ml-frame.active {
  display: block;
  animation: fadeInFrame 0.3s ease-out forwards;
}

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

h2 {
  font-size: 26px;
  line-height: 1.3;
  margin-top: 0;
  margin-bottom: 25px;
  font-weight: 500;
}
p.subtitle {
  font-size: 16px;
  margin-top: -15px;
  margin-bottom: 25px;
  opacity: 0.85;
}
.ml-form-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 12px;
}

input[type="text"], input[type="email"], input[type="tel"], select {
  width: 100%;
  padding: 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 18px;
  background: var(--bg-light);
  outline: none;
  transition: border-color 0.2s;
}
input:focus, select:focus {
  border-color: var(--primary-color);
}
.product_addon_area .single_add_to_cart_button {
  display: none;
}
.product_addon_area {
  display: none;
}
.product_addon_area.showitnow {
  display: block;
}
.ml-options-grid {
  display: grid;
  gap: 14px;
  margin-bottom: 20px;
}
.activecard {
    border-color: var(--primary-color) !important;
    background: #fff5f8 !important;
}
#frame-m-packages .ml-options-grid {
  display: flex;
}
#frame-m-packages .ml-selection-card {
  width: 33%;
}
.ml-selection-card {
  border: 1px solid var(--border-color);
  padding: 18px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-light);
  transition: all 0.2s ease;
}
.ml-selection-card:hover {
  border-color: var(--primary-color);
  background: #fff5f8;
}
.ml-selection-card input {
  margin: 0;
  width: 20px;
  height: 20px;
  accent-color: var(--primary-color) !important;
}

.ml-actions-row {
  display: flex;
  justify-content: space-between;
  margin-top: 35px;
  gap: 15px;
}
.ml-btn {
  padding: 14px 28px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
  text-align: center;
}
.ml-btn-continue {
  background: var(--primary-color) !important;
  color: white !important;
  flex-grow: 1;
}
.ml-btn-continue * { color: white !important; }
.ml-btn-continue:hover { opacity: 0.9; }
.ml-btn-back {
  background: #e2e8f0 !important;
  color: #4a5568 !important;
}
.ml-btn-back:hover { background: #cbd5e1 !important; }

.ml-invoice-sheet {
  background: #fff8f9;
  padding: 24px;
  border-radius: 10px;
  margin-top: 25px;
  border: 1px dashed var(--primary-color);
}
.ml-invoice-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 16px;
}
.ml-grand-total {
  font-size: 22px;
  font-weight: bold;
  border-top: 1px solid var(--border-color);
  padding-top: 12px;
  margin-top: 12px;
  color: var(--primary-color) !important;
}
.ml-grand-total * { color: var(--primary-color) !important; }

.ml-alert-block {
  color: #dc2626 !important;
  font-size: 16px;
  margin-top: 15px;
  display: none;
  font-weight: 600;
}
.ml-alert-block * { color: #dc2626 !important; }

.ml-coupon-box {
  background: #f0fdf4;
  border: 1px dashed #22c55e;
  padding: 15px;
  border-radius: 8px;
  margin-top: 15px;
  font-size: 16px;
  text-align: center;
}

.custom-checkbox-ln {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 15px 0;
}

.custom-checkbox-ln input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    accent-color: #e91e63; /* Change to your brand color */
    cursor: pointer;
}

.custom-checkbox-ln label {
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    cursor: pointer;
}

.custom-checkbox-ln a {
    color: #e91e63;
    text-decoration: none;
    font-weight: 500;
}

.custom-checkbox-ln a:hover {
    text-decoration: underline;
}


@media only screen and (max-width: 767px) {
    /* Your mobile CSS here */
    .ml-funnel-container {
      padding: 15px;
    }
    .ml-actions-row {
      gap: 5px;
    }
    #frame-1-route .ml-actions-row {
      gap: 0px;
    }
    .ml-selection-card {
      font-size: 14px;
    }
    .ml-btn {
      padding: 10px 20px;
    }
    #frame-m-packages .ml-options-grid {
      flex-direction: column;
    }
    #frame-m-packages .ml-selection-card {
      width: 100%;
    }
}