/**
 * Secondary Button with Rocket Arrow Animation
 * Used for newsletter "POWIADOM MNIE" and contact "WYŚLIJ" buttons
 */

.liofivit-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 4px 4px 4px 16px;
    background-color: transparent;
    border: 1px solid var(--contrast, #000);
    border-radius: 32px;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: -0.42px;
    color: var(--contrast, #000);
    text-transform: uppercase;
    white-space: nowrap;
    outline: none;
    width: auto;
    flex-shrink: 0;
}

/* Button text */
.liofivit-btn-secondary-text {
    display: block;
    line-height: normal;
}

/* Arrow circle container */
.liofivit-btn-secondary-circle {
    position: relative;
    width: 36px;
    height: 36px;
    background-color: var(--contrast, #000);
    border: 1px solid #090909;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

/* Arrow icon */
.liofivit-btn-secondary-arrow {
    position: absolute;
    width: 20px;
    height: 20px;
    stroke: var(--base-3, #fff);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
    transform-origin: center;
}

/* Hover state */
.liofivit-btn-secondary:hover {
    background-color: var(--contrast, #000);
    color: var(--base-3, #fff);
}

.liofivit-btn-secondary:hover .liofivit-btn-secondary-circle {
    background-color: #464646;
}

/* Active/Click state colors (immediate) */
.liofivit-btn-secondary:active {
    background-color: var(--contrast, #000);
    color: var(--base-3, #fff);
}

.liofivit-btn-secondary:active .liofivit-btn-secondary-circle {
    background-color: #464646;
}
