/* Cart - Proceed to Checkout (Black Button, White Text) */
a.wc-block-components-button.wc-block-cart__submit-button {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    border-radius: 6px;
}

/* Hover */
a.wc-block-components-button.wc-block-cart__submit-button:hover {
    background-color: #111111 !important;
    color: #FFFFFF !important;
}

/* Remove ALL default icons completely */
.product-inner .action-links a i,
.product-inner .action-links a svg,
.product-inner .action-links a:before,
.product-inner .action-links a span {
    display: none !important;
}

/* Add SINGLE outline heart */
.product-inner .action-links a::after {
    content: "♡";
    font-size: 20px;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    line-height: 36px;
}



/* Product page Add to Cart button - always black */
.single-product .single_add_to_cart_button {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

/* When disabled (before size select) */
.single-product .single_add_to_cart_button.disabled,
.single-product .single_add_to_cart_button:disabled {
    background-color: #000000 !important;
    color: #FFFFFF !important;
    opacity: 1 !important;
}

/* Hover */
.single-product .single_add_to_cart_button:hover {
    background-color: #111111 !important;
}


/* === MY ACCOUNT MODERN DASHBOARD === */

.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

/* LEFT MENU */
.woocommerce-MyAccount-navigation {
    background: #ffffff;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    min-width: 260px;
}

.woocommerce-MyAccount-navigation ul {
    margin: 0;
    padding: 0;
}

.woocommerce-MyAccount-navigation ul li {
    list-style: none;
    margin-bottom: 6px;
}

.woocommerce-MyAccount-navigation ul li a {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    border-radius: 10px;
    color: #333;
    font-weight: 500;
    transition: all 0.3s ease;
}

.woocommerce-MyAccount-navigation ul li a:hover {
    background: #000;
    color: #fff;
}

.woocommerce-MyAccount-navigation ul li.is-active a {
    background: #000;
    color: #fff;
}

/* RIGHT CONTENT */
.woocommerce-MyAccount-content {
    background: #ffffff;
    border-radius: 14px;
    padding: 30px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    flex: 1;
}

/* HEADINGS */
.woocommerce-MyAccount-content h2,
.woocommerce-MyAccount-content h3 {
    font-weight: 600;
    margin-bottom: 15px;
}

/* BUTTONS */
.woocommerce-account .button {
    background: #000 !important;
    color: #fff !important;
    border-radius: 8px;
}

/* MOBILE FRIENDLY */
@media (max-width: 768px) {

    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-MyAccount-navigation {
        width: 100%;
        margin-bottom: 20px;
    }

    .woocommerce-MyAccount-content {
        width: 100%;
        padding: 20px;
    }

    .woocommerce-MyAccount-navigation ul li a {
        justify-content: center;
    }
}



