:root {
  --dtpc-blue: #0f225c;
  --dtpc-orange: #f9560a;
  --dtpc-dark: #2f3031;
  --dtpc-gray: #e0e0e0;
  --dtpc-radius-lg: 16px;
  --dtpc-radius-md: 10px;
  --dtpc-shadow-soft: 0 15px 40px rgba(0, 0, 0, 0.08);
}
.swal2-icon.swal2-info {
  border-color: var(--dtpc-orange) !important;
  color: var(--dtpc-orange) !important;
}
.swal2-styled.swal2-confirm {
  background-color: var(--dtpc-orange) !important;
  border-color: var(--dtpc-orange) !important;
}
.dtpc-wrapper {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: #1f2933;
  max-width: 1000px;
  margin: 2.5rem auto;
}

.dtpc-inner {
  background: #ffffff;
  border-radius: var(--dtpc-radius-lg);
  box-shadow: var(--dtpc-shadow-soft);
  padding: 2rem 1.5rem 1.5rem;
  border-top: 4px solid var(--dtpc-orange);
}

@media (max-width: 640px) {
  .dtpc-inner {
    padding: 1.5rem 1rem 1rem;
  }
}

.dtpc-heading {
  margin: 0 0 0.35rem;
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--dtpc-blue);
}

.dtpc-subheading {
  margin: 0 0 1.75rem;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4b5563;
}

.dtpc-zip-col {
  margin-top: 20px;
}
/* Slider rows */

.dtpc-sliders {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.dtpc-slider-row {
  padding: 1rem 1.7rem 1.7rem;
  border-radius: var(--dtpc-radius-md);
  background: linear-gradient(90deg, #f9fafb 0%, #ffffff 55%, #fdf5f0 100%);
  border: 1px solid #e5e7eb;
}

.dtpc-slider-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 3rem;
}

.dtpc-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dtpc-blue);
}

.dtpc-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dtpc-dark);
}

.dtpc-slider-body {
  position: relative;
}

.dtpc-slider-track {
  position: relative;
  padding-top: 0.85rem;
}

.dtpc-range {
  width: 100%;
  -webkit-appearance: none;
  appearance: none;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    var(--dtpc-orange) 65%,
    var(--dtpc-blue) 100%
  );
  outline: none;
  margin-top: 0.5rem;
}

/* Range thumb */

.dtpc-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid var(--dtpc-orange);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(249, 86, 10, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dtpc-range::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #ffffff;
  border: 3px solid var(--dtpc-orange);
  cursor: pointer;
  box-shadow: 0 0 0 3px rgba(249, 86, 10, 0.2);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.dtpc-range::-webkit-slider-thumb:hover,
.dtpc-range::-moz-range-thumb:hover {
  transform: scale(1.05);
  box-shadow: 0 0 0 4px rgba(249, 86, 10, 0.3);
}

/* Ticks / labels under the slider */

.dtpc-slider-ticks {
  display: flex;
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0.35rem;
  justify-items: stretch;
  justify-content: space-between;
}

.dtpc-slider-ticks span {
  text-align: center;
}

.dtpc-slider-ticks--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.dtpc-slider-ticks--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Floating icons */

.dtpc-slider-icon {
  position: absolute;
  top: 0;
  left: 0%;
  transform: translateX(-50%) scale(0.85);
  transform-origin: bottom center;
  transition: left 0.25s ease, transform 0.25s ease;
  pointer-events: auto;
  cursor: grab;
}
.dtpc-slider-icon:active {
  cursor: grabbing;
}

/* Dumpster icon (CSS only, simple but brand aligned) */

.dtpc-dumpster-shell {
  position: relative;
  width: 58px;
  height: 30px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--dtpc-blue), #111827);
  box-shadow: 0 6px 12px rgba(15, 34, 92, 0.45);
  overflow: hidden;
}

.dtpc-dumpster-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  border-bottom: 4px solid var(--dtpc-orange);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.dtpc-dumpster-debris {
  position: absolute;
  bottom: 0;
  left: 8%;
  width: 84%;
  height: 20%;
  background: repeating-linear-gradient(
    -45deg,
    #fbbf24,
    #fbbf24 5px,
    #f97316 5px,
    #f97316 10px
  );
  border-radius: 4px 4px 0 0;
  transition: height 0.25s ease;
}

/* Calendar icon */

.dtpc-calendar-shell {
  width: 48px;
  height: 40px;
  border-radius: 8px;
  background: #ffffff;
  border: 2px solid var(--dtpc-blue);
  box-shadow: 0 6px 12px rgba(15, 34, 92, 0.28);
  display: flex;
  flex-direction: column;
}

.dtpc-calendar-header {
  height: 14px;
  background: var(--dtpc-orange);
  border-radius: 6px 6px 0 0;
}

.dtpc-calendar-dots {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 7px;
  gap: 3px;
  padding: 7px 7px 6px;
}

.dtpc-calendar-dots::before,
.dtpc-calendar-dots::after {
  content: "";
}

/* Bottom section: zip + price */

.dtpc-bottom {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
  align-items: stretch;
}

@media (max-width: 768px) {
  .dtpc-bottom {
    flex-direction: column;
  }
}

.dtpc-zip-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--dtpc-blue);
  margin-bottom: 0.4rem;
}

.dtpc-zip-input {
  width: 100%;
  border: 1px solid #d1d5db;
  padding: 0.6rem 0.9rem;
  font-size: 20px;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  border-radius: 10px;
  min-height: 60px;
}

.dtpc-zip-input:focus {
  border-color: var(--dtpc-orange);
  box-shadow: 0 0 0 3px rgba(249, 86, 10, 0.18);
}

.dtpc-zip-help {
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #6b7280;
}

/* Price box */

.dtpc-price-box {
  background: linear-gradient(135deg, var(--dtpc-blue), #060b1b);
  border-radius: var(--dtpc-radius-lg);
  padding: 1.2rem 1.5rem 1.3rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  position: relative;
  overflow: hidden;
}
/* .dtpc-price-box::after {
    content: '';
    width: 100%;
    height: 100%;
    background-image: url(../img/logo.png);
    background-repeat: no-repeat;
    position: absolute;
    right: 0;
    bottom: 0;
    background-size: 130px;
    background-position: right 44px;
    opacity: 0.7;
} */
/* .dtpc-price-box::after {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 999px;
  border: 12px solid rgba(249, 86, 10, 0.25);
  right: -40px;
  bottom: -40px;
} */

.dtpc-price-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.8;
}

.dtpc-price-value {
  font-size: 2rem;
  font-weight: 800;
}

.dtpc-price-note {
  font-size: 1rem;
  opacity: 0.85;
  max-width: 100%;
}

/* Utility hover animation for wrapper */

.dtpc-inner:hover {
  transform: translateY(-2px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.18);
}

/* SVG Calendar Icon Styling */

.dtpc-slider-icon--calendar svg {
  width: 40px;
  height: 40px;
  fill: var(--dtpc-blue);
  background: #ffffff;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(15, 34, 92, 0.25);
  transition: transform 0.25s ease, fill 0.25s ease;
}

/* Active / scaled state automatically controlled by JS */
.dtpc-slider-row[data-slider="duration"] .dtpc-slider-icon svg {
  transform-origin: center bottom;
}

.dtpc-slider-icon--calendar svg path:first-child {
  fill: var(--dtpc-blue);
}

.dtpc-slider-icon--calendar svg circle {
  fill: var(--dtpc-orange);
}

.dtpc-dumpster-svg {
  width: 58px;
  height: auto !important;
  fill: var(--dtpc-blue);
  transition: transform 0.25s ease, fill 0.25s ease;
  filter: drop-shadow(0 6px 10px rgba(15, 34, 92, 0.35));
  max-width: none !important;
  transform-origin: bottom center;
}

/* Weight slider visual intensity */
.dtpc-slider-row[data-slider="weight"] .dtpc-dumpster-svg {
  fill: var(--dtpc-orange);
}

/* Gradient Weight Icon */
.dtpc-weight-svg {
  width: 30px;
  height: 30px;
  filter: drop-shadow(0 10px 18px rgba(15, 34, 92, 0.35));
  transition: transform 0.25s ease, filter 0.25s ease;
}

/* Enhanced visual when scaling */
.dtpc-slider-row[data-slider="weight"] .dtpc-weight-svg {
  transform-origin: bottom center;
}

/* Optional hover enhancement */
.dtpc-slider-row[data-slider="weight"]:hover .dtpc-weight-svg {
  filter: drop-shadow(0 14px 24px rgba(249, 86, 10, 0.5));
}

.dtpc-slider-icon.dtpc-slider-icon--calendar {
  top: -32px;
}
.dtpc-slider-icon.dtpc-slider-icon--dumpster-weight {
  top: -22px;
}
.dtpc-slider-icon.dtpc-slider-icon--dumpster {
  top: -25px;
}

.dtpc-price-box {
  background: linear-gradient(135deg, var(--dtpc-blue), #060b1b);
  border-radius: var(--dtpc-radius-lg);
  padding: 1.2rem 1.5rem 1.3rem;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.5rem;
  position: relative;
  overflow: hidden;
}

.dtpc-price-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.dtpc-price-text-group {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dtpc-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  border-radius: 999px;
  background: var(--dtpc-orange);
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  border: none;
  box-shadow: 0 0 0 0 rgba(249, 86, 10, 0.6);
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease;
  animation: dtpc-order-glow 1.6s ease-out infinite,
    dtpc-order-blink 1.6s ease-out infinite;
  width: 250px;
}

.dtpc-order-btn:hover {
  transform: translateY(-1px);
}

@keyframes dtpc-order-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(249, 86, 10, 0.7);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(249, 86, 10, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(249, 86, 10, 0.7);
  }
}

@keyframes dtpc-order-blink {
  0%,
  60% {
    opacity: 1;
  }
  80% {
    opacity: 0.45;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 640px) {
  .dtpc-price-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .dtpc-order-btn {
    width: 100%;
    text-align: center;
  }

  .dtpc-price-note {
    max-width: 100%;
  }
}
