/* ========================================
   GALLERY BUTTON - NUCLEAR OVERRIDE
   Load this AFTER functions.php customizer CSS
======================================== */

/* Force default state */
.gallery-see-all-btn,
button.gallery-see-all-btn,
[type="button"].gallery-see-all-btn {
    background: #FFFFFF !important;
    background-color: #FFFFFF !important;
    color: #5A4F42 !important;
    outline: 1px solid #5A4F42 !important;
    outline-offset: -1px !important;
    border: none !important;
}

/* Force hover state */
.gallery-see-all-btn:hover,
button.gallery-see-all-btn:hover,
[type="button"].gallery-see-all-btn:hover {
    background: #5A4F42 !important;
    background-color: #5A4F42 !important;
    color: #FFFFFF !important;
}

/* Force active/focus state */
.gallery-see-all-btn:active,
.gallery-see-all-btn:focus,
button.gallery-see-all-btn:active,
button.gallery-see-all-btn:focus {
    background: #5A4F42 !important;
    background-color: #5A4F42 !important;
    color: #FFFFFF !important;
    outline: 2px solid #5A4F42 !important;
    outline-offset: 2px !important;
}

/* Remove transparent override */
.gallery-see-all-btn:hover,
.gallery-see-all-btn:focus {
    background-color: #5A4F42 !important; /* NOT transparent! */
}