/**
 * ADEPT QUALITY SERVICES / ADEQUS
 * Amazon Seller Account Setup & Maintenance Cost Calculator - Styles
 */

.amazon-calc-wrapper {
  --amz-primary: #0A2540;
  --amz-secondary: #00AEEF;
  --amz-accent: #2563EB;
  --amz-success: #10B981;
  --amz-warning: #F59E0B;
}

/* Custom Range Slider */
input[type=range].amz-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 7px;
  background: #E2E8F0;
  border-radius: 9999px;
  outline: none;
  transition: background 0.15s ease-in-out;
}

input[type=range].amz-slider:hover {
  background: #CBD5E1;
}

input[type=range].amz-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00AEEF;
  cursor: pointer;
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 174, 239, 0.4);
  transition: transform 0.15s ease, background-color 0.15s ease;
}

input[type=range].amz-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  background: #0098D4;
}

input[type=range].amz-slider::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #00AEEF;
  cursor: pointer;
  border: 3px solid #FFFFFF;
  box-shadow: 0 2px 6px rgba(0, 174, 239, 0.4);
}

/* Price update animation */
@keyframes amzPriceFlash {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.05);
    color: #00AEEF;
  }
  100% {
    transform: scale(1);
  }
}

.price-update-flash {
  animation: amzPriceFlash 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Smooth step fade in */
@keyframes amzStepFade {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.amz-step-panel {
  display: none;
  animation: amzStepFade 0.25s ease-out forwards;
}

.amz-step-panel.active {
  display: block;
}

/* Custom scrollbars */
#amazonPrintModal ::-webkit-scrollbar,
.custom-scrollbar::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
#amazonPrintModal ::-webkit-scrollbar-track,
.custom-scrollbar::-webkit-scrollbar-track {
  background: #f1f5f9;
}
#amazonPrintModal ::-webkit-scrollbar-thumb,
.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 9999px;
}

/* Print optimizations */
@media print {
  nav, footer, .print\\:hidden, #amazonStickyBar, #amazonSidebarCol, .step-nav-buttons, #globalTrustBar {
    display: none !important;
  }
  body {
    background: #FFFFFF !important;
    color: #000000 !important;
    font-size: 11pt !important;
  }
  #printableQuotationContent {
    padding: 0 !important;
    border: none !important;
  }
}
