/* ==================== */
/* Buttons              */
/* ==================== */

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 999px;
    font-family: Jost, 'medium', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.55, 0, 0.1, 1);
    text-decoration: none;
    background-color: #f05b89;
    color: #fff;
}

.btn:hover {
    transform: translateY(-2px);
    color: #fff;
    box-shadow: 0 5px 10px rgba(240, 91, 137, 0.3);
}

.btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 5px rgba(240, 91, 137, 0.2);
    box-shadow: inset 0 5px 5px rgba(0, 0, 0, 0.3);
}

/* Carousel Buttons */

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #f05b89;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 2rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
    transition: background-color 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.carousel-btn img {
    width: 20px;
    height: 20px;
}

.carousel-btn:hover {
    background-color: #d94070;
    transform: translateY(-50%) scale(1.08);
}

.carousel-btn--prev {
    left: -25px;
}

.carousel-btn--next {
    right: -25px;
}
