@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600;800&display=swap');

.buy-now-fab {
  position: fixed;
  bottom: 32%;
  right: 0;
  display: flex;
  align-items: center;
  height: 64px;
  background: #e6202d;
  border-radius: 32px 0 0 32px;
  box-shadow: 0 8px 24px rgba(230, 57, 70, 0.4);
  cursor: pointer;
  overflow: hidden;
  width: 64px;
  transition: width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
  z-index: 9999;
}

.buy-now-fab:hover, .buy-now-fab:focus-visible { 
    width: 230px;
}

.buy-now-fab .icon-wrap {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.buy-now-fab .icon-wrap svg {
    width: 26px;
    height: 26px;
    stroke: #ffffff;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.buy-now-fab .label {
    white-space: nowrap;
    color: #ffffff;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    line-height: 1.15;
    opacity: 0;
    transition: opacity 0.25s ease 0.1s;
}

.buy-now-fab:hover .label, .buy-now-fab:focus-visible .label {
    opacity: 1;
}

.buy-now-fab .arrow-circle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
    margin-right: 10px;
    margin-left: auto;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 0.25s ease 0.1s, transform 0.25s ease 0.1s;
}

.buy-now-fab:hover .arrow-circle, .buy-now-fab:focus-visible .arrow-circle { opacity: 1;
    transform: scale(1);
}

.buy-now-fab .arrow-circle svg {
    width: 18px;
    height: 18px;
    stroke: #e63946;
    fill: none;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}