/* ═══════════════════════════════════════════
   Thm-mothercare-v1 Bold — CTA Floating
   Full-width black bar with yellow top border
   ═══════════════════════════════════════════ */

body {
  padding-bottom: 60px;
}

.mc-cta-floating {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  background: #0A0A0A;
  border-top: 3px solid #EAB308;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  animation: mc-bold-slide-up 0.4s ease-out;
}

@keyframes mc-bold-slide-up {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

.mc-cta-floating__btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 2px;
  border-radius: 0;
  transition: all 0.15s ease;
  color: #FFFFFF;
  background: transparent;
  border: none;
  font-family: 'Arial Black', sans-serif;
  white-space: nowrap;
}

.mc-cta-floating__btn:hover {
  background: #7F1D1D;
}

.mc-cta-floating__btn--primary {
  background: #7F1D1D;
  color: #FFFFFF;
}

.mc-cta-floating__btn--primary:hover {
  background: #991B1B;
}

.mc-cta-floating__divider {
  width: 1px;
  height: 28px;
  background: #57534E;
  margin: 0;
}

/* Responsive */
@media (max-width: 480px) {
  body {
    padding-bottom: 120px;
  }

  .mc-cta-floating {
    flex-direction: column;
    width: 100%;
    bottom: 0;
    padding: 8px 0;
    gap: 0;
  }

  .mc-cta-floating__btn {
    width: 100%;
    text-align: center;
    padding: 12px 24px;
  }

  .mc-cta-floating__divider {
    width: 60%;
    height: 1px;
  }
}
