.btn-accent-outline {
    padding: 12px 30px;
    border: 2px solid var(--accent-color);
    border-radius: 25px;
    color: var(--accent-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    background: transparent;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-accent-outline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--accent-color);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-accent-outline:hover {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 107, 0.2);
}

.btn-accent-outline:hover::before {
    width: 100%;
}

.btn-accent-outline i {
    transition: transform 0.3s ease;
}

.btn-accent-outline:hover i {
    transform: translateX(4px);
} 