/* 
 * Styles for the Full Cart / View Cart button
 */

/* Push the button container to the bottom of the flex column */
.widget_shopping_cart_content {
    display: flex;
    flex-direction: column;
    height: 100%; /* Ensure it takes full height if not already */
    position: relative; /* Anchor for absolute positioning */
}

.wfcl-full-cart-button {
    position: absolute !important;
    bottom: 10px !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
    padding: 0 20px !important;
    z-index: 10;
    width: auto !important; /* Let padding handle width */
    text-align: center;
}

/* Style the button to match the standard "View Cart" button */
.wfcl-full-cart-button .button {
    width: 100%;
    border-radius: 35px !important; /* Force rounded corners as requested */
    background-color: #f3f3f3;
    color: #3e3e3e;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    padding: 12px 20px;
    line-height: 1;
    display: block;
}

.wfcl-full-cart-button .button:hover {
    background-color: #e6e6e6;
    color: #000;
}
