.elementor-111 .elementor-element.elementor-element-aadebf0{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-043410a *//* ========== Section: Calculator ========== */
#cartwarden-calc {
  background: #ffffff;
  padding: 80px 20px;
}

#cartwarden-calc h2 {
  font-size: 30px;
  text-align: center;
  color: #213247;
  margin-bottom: 16px;
  font-weight: 700;
  font-family: 'Roboto', sans-serif;
}

#cartwarden-calc p {
  text-align: center;
  color: #728188;
  font-size: 16px;
  margin-bottom: 40px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

#cw-calc-form {
  display: grid;
  gap: 24px;
  max-width: 500px;
  margin: 0 auto;
}

#cw-calc-form label {
  font-size: 15px;
  color: #213247;
  font-weight: 600;
  display: block;
}

.cw-calc-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  border: 2px solid #dce1e6;
  border-radius: 8px;
  margin-top: 6px;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.cw-calc-input:focus {
  border-color: #f85d03;
  box-shadow: 0 0 0 2px rgba(248, 93, 3, 0.2);
  outline: none;
}

#cw-calc-results {
  margin-top: 40px;
  text-align: center;
  display: none;
}

#cw-calc-results p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #213247;
}

#lostRevenue,
#recoveredRevenue {
  font-size: 1.8em;
  font-weight: bold;
  display: block;
  margin-top: 4px;
}

#lostRevenue {
  color: #d20000;
}

#recoveredRevenue {
  color: #f85d03;
}

#cw-dynamic-cta {
  margin-top: 30px;
}

#cw-dynamic-button {
  background: #f85d03;
  color: #fff;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
  box-shadow: 0 4px 12px rgba(248, 93, 3, 0.15);
}

#cw-dynamic-button:hover {
  background: #ff6a00;
  box-shadow: 0 6px 18px rgba(248, 93, 3, 0.25);
}

/* ========== Responsive ========== */
@media (max-width: 640px) {
  #cartwarden-calc h2 {
    font-size: 24px;
  }
  .cw-calc-input {
    font-size: 14px;
  }
  #cw-dynamic-button {
    width: 100%;
    text-align: center;
  }
}

/* ========== Alert Mockup ========== */
.cw-alert-mockup.branded {
  width: 100%;
  max-width: 320px;
  background: #ffffff;
  border: 1px solid #fcd9c7;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(248, 93, 3, 0.1);
  overflow: hidden;
  font-family: 'Arial', sans-serif;
  opacity: 0;
  transform: translateY(20px);
  animation: slideFadeUp 0.9s ease-out 0.3s forwards;
}

.cw-alert-header {
  background: #f85d03;
  color: #fff;
  font-weight: bold;
  padding: 12px 16px;
  font-size: 15px;
}

.cw-alert-body {
  padding: 16px;
  font-size: 14.5px;
  color: #213247;
  line-height: 1.5;
}

.cw-alert-footer {
  padding: 12px 16px;
  background: #fff7f2;
  text-align: right;
}

.cw-alert-button {
  background: #f85d03;
  color: #fff;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: bold;
  transition: all 0.25s ease;
  box-shadow: 0 2px 6px rgba(248, 93, 3, 0.15);
}

.cw-alert-button:hover {
  background: #ff6a00;
  color: #fff;
  box-shadow: 0 4px 12px rgba(248, 93, 3, 0.3);
  transform: translateY(-1px);
  border: 1px solid #f85d03;
}

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

/* ========== Upgraded Stat Badge ========== */
.cw-stat-badge-upgraded {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff7f2;
  border-left: 4px solid #f85d03;
  color: #213247;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.03);
  margin-top: 24px;
  max-width: 320px;
  font-family: 'Roboto', sans-serif;
}

.cw-stat-icon {
  min-width: 20px;
  min-height: 20px;
  flex-shrink: 0;
}

/* ========== Modal (Frosted + Premium Style) ========== */
.cw-modal {
  display: none;
  position: fixed;
  z-index: 999;
  inset: 0;
  backdrop-filter: blur(6px);
  background-color: rgba(0, 0, 0, 0.4);
}

.cw-modal-content {
  background: #fafafa;
  border: 2px solid #f85d03;
  margin: 10% auto;
  padding: 24px 32px;
  border-radius: 16px;
  width: 90%;
  max-width: 440px;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  position: relative;
  animation: fadeIn 0.3s ease-out;
}

.cw-modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 24px;
  cursor: pointer;
  color: #888;
  font-weight: bold;
}

.cw-modal-close:hover {
  color: #f85d03;
}

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

.cw-sample-message {
  background-color: transparent;
  color: #213247;
  padding: 16px 20px;
  margin: 20px auto;
  max-width: 360px;
  font-size: 15px;
  line-height: 1.6;
  border-radius: 16px;
  font-family: 'Arial', sans-serif;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
}

.cw-sample-message a {
  color: #f85d03;
  text-decoration: underline;
  font-weight: 600;
}

.cw-sample-message small {
  display: block;
  margin-top: 12px;
  font-size: 13px;
  color: #888;
}

@media (max-width: 480px) {
  .cw-sample-message {
    font-size: 14px;
    max-width: 90%;
  }
}/* End custom CSS */