/* Additional custom styles beyond Tailwind */


/* Sale sticker – overlaps CTA buttons like a store price tag */
.cta-sticker-wrap {
    position: relative;
    display: inline-block;
}

.sale-sticker {
    position: absolute;
    top: -30px;
    right: -34px;
    width: 77px;
    height: 77px;
    background: #e91e63;
    color: #fff;
    border-radius: 50%;
    transform: rotate(12deg);
    font-weight: 700;
    line-height: 1.15;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1px;
}

/* Price block inside the button */
.btn-price-wrap {
    display: inline-flex;
    flex-direction: row;
    align-items: baseline;
    gap: 4px;
    vertical-align: middle;
    margin-left: 6px;
}

.btn-old-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 0.65em;
}

.btn-new-price {
    font-size: 1em;
    font-weight: 700;
}

/* On the teal banner the button is white/teal */
.btn-old-price--dark {
    opacity: 0.5;
}

.sale-sticker .sticker-label {
    font-size: 0.55rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    line-height: 1.2;
    padding: 0 6px;
}

@media (max-width: 767px) {
    .hidden-mobile {
        display: none;
    }

    .cta-sticker-wrap {
        display: table;
        margin: 0 auto;
    }

    .sale-sticker .new-price {
        display: none;
    }

    .btn-old-price {
        display: none !important;
    }

    .sale-sticker .sticker-label {
        word-spacing: 9999px;
        font-size: 0.7rem;
    }
}

.sale-sticker .new-price {
    font-size: 1rem;
    line-height: 1;
}

@media (max-width: 640px) {
    .sale-sticker {
        width: 64px;
        height: 64px;
        top: -26px;
        right: -12px;
    }

    .sale-sticker .sticker-label {
        font-size: 0.7rem;
        padding: 0 4px;
    }

    .sale-sticker .new-price {
        font-size: 0.85rem;
    }
}
/* Testimonials carousel */
.testimonials-carousel {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonials-window {
    overflow: hidden;
    flex: 1;
    touch-action: pan-y;
}

.testimonials-track {
    display: flex;
    gap: 1.5rem;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.testimonials-track .review {
    flex: 0 0 calc(33.333% - 1rem);
}

.testimonials-arrow {
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    border: 2px solid #339999;
    color: #339999;
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}

.testimonials-arrow:hover:not(:disabled) {
    background: #339999;
    color: #fff;
}

.testimonials-arrow:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.testimonials-arrow svg {
    width: 1.1rem;
    height: 1.1rem;
}

.testimonials-dots {
    display: none;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.testimonials-dot {
    width: 0.625rem;
    height: 0.625rem;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s;
}

.testimonials-dot.active {
    background: #339999;
}

@media (max-width: 768px) {
    .testimonials-track .review {
        flex: 0 0 100%;
    }

    .testimonials-track {
        gap: 0;
    }

    .testimonials-arrow {
        display: none;
    }

    .testimonials-dots {
        display: flex;
    }
}
