/* #region ==========================================================
   COMPONENTS

   Contains:
   - Buttons
   - Cards
   - Forms
   - Navigation
   - Lists
   - Reusable UI components
   ========================================================== */



/* #region ========== Button Components ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .22s ease;
  cursor: pointer;
  white-space: nowrap;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--color-accent);
  color: var(--color-bg);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px var(--color-accent-shadow);
}
.btn-ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.30);
}
.btn-ghost:hover {
  border-color: var(--color-accent-muted);
  color: var(--color-accent-hover);
}
.btn-inline {
  margin-top: 36px;
}
.btn-full {
  width: 100%;
  margin-bottom: 15px;
}
/* #endregion */

/* #region ========== Floating Actions Components ========== */
.floating-action {
  position: fixed;
  z-index: 1001;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

#scrollToTop {
  bottom: 20px;
  right: 20px;
  display: none;
  padding: 10px 15px;
  background: #0a0a0a;
  color: white;
  border: 1px solid var(--color-bg);
}

#scrollToTop:hover {
  background: #333;
  transform: translateY(-1px);
}

#goToJunkPricing {
  bottom: 70px;
  right: 20px;
  display: none;
  padding: 10px 15px;
  background: var(--brand-accent);
  font-weight: 400;
  color: var(--color-text);
  border: 1px solid var(--color-bg);
}

#goToJunkPricing:hover {
  background: #333;
  transform: translateY(-1px);
}

/* #endregion */

/* #region ========== Numbered List Components ========== */
.numbered-list {
  list-style: none;
  counter-reset: step;
  padding: 0;
}
.numbered-list li {
  position: relative;
  padding: 16px 0 16px 56px;
  border-bottom: 1px solid var(--color-border);
  counter-increment: step;
}
.numbered-list li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0; top: 18px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 0.95rem;
  color: var(--color-accent-muted);
  letter-spacing: 0.04em;
}
.numbered-list li:last-child { 
    border-bottom: 0; 
}
.numbered-list li strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 4px;
}
/* #endregion */

/* #region ========== List Components ========== */
.check-list, 
.cross-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.check-list li, .cross-list li {
  position: relative;
  padding: 10px 0 10px 32px;
  font-size: 0.96rem;
  border-bottom: 1px solid var(--color-border);
}
.check-list li:last-child, .cross-list li:last-child { 
    border-bottom: 0; 
}
.check-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 14px;
  width: 16px; height: 10px;
  border-left: 2px solid var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
  transform: rotate(-45deg);
}
.cross-list li::before,
.cross-list li::after {
  content: '';
  position: absolute;
  left: 0px; top: 23px;
  width: 14px; height: 2px;
  background: #8a3a3a;
}
.cross-list li::before { 
    transform: rotate(45deg); 
}
.cross-list li::after  { 
    transform: rotate(-45deg); 
}

/* #endregion */

/* #region ========== Notice Components ========== */
.info-notice {
  display: flex;
  gap: 14px;
  padding: 20px 22px;
  background: rgba(201,163,73,0.08);
  border: 1px solid var(--color-accent-shadow);
  border-radius: var(--radius-lg);
  margin: 28px 0;
}
.info-notice svg {
  flex-shrink: 0;
  margin-top: 2px;
}
.info-notice p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.55;
}
/* #endregion */
