/* Devices Specfic Overrides Focus on 'Reassuring' Tone */

/* Heart Pulse Ambient Rings */
.pulse-ring-container {
    width: 600px;
    height: 600px;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border: 2px solid var(--color-accent-gold);
    border-radius: 50%;
    opacity: 0;
    animation: ripple 6s infinite cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pulse-ring-2 {
    animation-delay: 2s;
    width: 300px;
    height: 300px;
}

.pulse-ring-3 {
    animation-delay: 4s;
    width: 400px;
    height: 400px;
}

@keyframes ripple {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 0.6;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.6);
        opacity: 0;
    }
}

/* Card Hover Extents */
.hover-lift {
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.hover-lift:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

/* Base Arrow Interaction */
.hover-arrow svg {
    transition: transform var(--transition-fast) ease-out;
}

.hover-arrow:hover svg {
    transform: translateX(6px);
}

/* Stepper Transitions */
.transition-bg {
    transition: background-color 0.4s ease-out, border-color 0.4s ease-out, color 0.4s ease-out;
}

/* Accordion Safeties (Consistent matching) */
#devicesFaqAccordion .accordion-button:not(.collapsed) {
    background-color: var(--color-bg-soft) !important;
    color: var(--color-primary-dark) !important;
    box-shadow: none;
}

#devicesFaqAccordion .accordion-button:focus {
    border-color: var(--color-accent-gold);
    box-shadow: 0 0 0 0.25rem rgba(212, 175, 55, 0.25);
}

#devicesFaqAccordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%234A7C59'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}

#devicesFaqAccordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23284A33'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}