.btn-fancy {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 28px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    border-radius: 50px;
    background: linear-gradient(45deg, #9c6b2f, #d4a95c);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* subtle glow on hover */
.btn-fancy:hover {
    background: linear-gradient(45deg, #b07a35, #f5c66b);
    box-shadow: 0 6px 20px rgba(156,107,47,0.6);
    transform: translateY(-2px);
}

/* Shine effect */
.btn-fancy::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg, 
        transparent, 
        rgba(255, 255, 255, 0.5), 
        transparent
    );
    transition: all 0.6s ease;
}

.btn-fancy:hover::before {
    left: 100%;
}

/* Icon animation */
.btn-fancy i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-fancy:hover i {
    transform: translateX(6px);
}
