#fw-section-links-list-168db023-7667-497d-b157-e27ea54cf52d {

/* Target the buttons specifically inside the list */
.link-list__cta .button {
    /* 1. Make it Bigger & Bolder */
    font-size: 1.25rem !important;
    padding: 15px 30px !important;
    font-weight: 800 !important;

    /* 2. Smooth Animation Settings */
    /* Transition scale (transform) and text color */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94), color 0.3s ease;
    
    /* 3. FIXES FOR BLUR & SHAKE */
    transform: translateZ(0); 
    backface-visibility: hidden; 
    will-change: transform, color; 
    -webkit-font-smoothing: subpixel-antialiased;
}

/* The Hover Effect */
.link-list__cta .button:hover {
    /* Zoom slightly */
    transform: scale(1.05) translateZ(0);
    
    /* Brighter Lightning Blue Text */
    color: #00F0FF !important; 
}
}


#fw-section-header {

/* Hides the cart icon and text */
.cart-widget {
    display: none !important;
}
}