:root{--page-title-display:none;}/* Start custom CSS for wc-elements, class: .elementor-element-ad8fa22 *//* ===== DESKTOP LAYOUT ===== */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    padding-top: 100px;
}

/* Sidebar */
.woocommerce-MyAccount-navigation {
    width: 500px;
    background: #fff;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Fjern bullets */
.woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;

}

/* Links = sorte */
.woocommerce-MyAccount-navigation a {
    display: block;
    padding: 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #111 !important;
    transition: 0.2s;
    text-align: center;
        font-weight: 400;

}

/* Hover */
.woocommerce-MyAccount-navigation a:hover {
    background: #f9f3f2;
    color: #d19e9b !important;
        font-weight: 400;

}

/* Aktiv */
.woocommerce-MyAccount-navigation .is-active a {
    background: #e0bab8;
    color: #fff !important;
    font-weight: 400;
}

/* Content */
.woocommerce-MyAccount-content {
    flex: 1;
    background: #fff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Sørg for ALLE links (fx "Log ud") er sorte */
.woocommerce-MyAccount-content a {
    color: #111 !important;
}

.woocommerce-MyAccount-content a:hover {
    color: #d19e9b !important;
}


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

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

    /* Sidebar bliver top-menu */
    .woocommerce-MyAccount-navigation {
        width: 100%;
        border-radius: 12px;
        padding: 10px;
    }

    .woocommerce-MyAccount-navigation ul {
        display: flex;
        overflow-x: auto;
        gap: 10px;
    }

    .woocommerce-MyAccount-navigation li {
        flex: 0 0 auto;
    }

    .woocommerce-MyAccount-navigation a {
        white-space: nowrap;
        padding: 10px 14px;
        font-size: 14px;
        background: #f7f7f7;
    }

    .woocommerce-MyAccount-navigation .is-active a {
        background: #f9f3f2;
    }

    /* Content spacing */
    .woocommerce-MyAccount-content {
        padding: 20px;
    }
}/* End custom CSS */